mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-09 08:38:43 +08:00
[cpp] Fixed name spacing.
This commit is contained in:
parent
7c398be3b6
commit
e06c4056ae
@ -79,18 +79,18 @@ void spine::Event::setStringValue(const spine::String &inValue) {
|
||||
}
|
||||
|
||||
|
||||
float Event::getVolume() {
|
||||
float spine::Event::getVolume() {
|
||||
return _volume;
|
||||
}
|
||||
|
||||
void Event::setVolume(float inValue) {
|
||||
void spine::Event::setVolume(float inValue) {
|
||||
_volume = inValue;
|
||||
}
|
||||
|
||||
float Event::getBalance() {
|
||||
float spine::Event::getBalance() {
|
||||
return _balance;
|
||||
}
|
||||
|
||||
void Event::setBalance(float inValue) {
|
||||
void spine::Event::setBalance(float inValue) {
|
||||
_balance = inValue;
|
||||
}
|
||||
|
||||
@ -76,27 +76,27 @@ void spine::EventData::setStringValue(const spine::String &inValue) {
|
||||
this->_stringValue = inValue;
|
||||
}
|
||||
|
||||
const String &EventData::getAudioPath() {
|
||||
const spine::String &spine::EventData::getAudioPath() {
|
||||
return _audioPath;
|
||||
}
|
||||
|
||||
void EventData::setAudioPath(const String &inValue) {
|
||||
void spine::EventData::setAudioPath(const spine::String &inValue) {
|
||||
_audioPath = inValue;
|
||||
}
|
||||
|
||||
|
||||
float EventData::getVolume() {
|
||||
float spine::EventData::getVolume() {
|
||||
return _volume;
|
||||
}
|
||||
|
||||
void EventData::setVolume(float inValue) {
|
||||
void spine::EventData::setVolume(float inValue) {
|
||||
_volume = inValue;
|
||||
}
|
||||
|
||||
float EventData::getBalance() {
|
||||
float spine::EventData::getBalance() {
|
||||
return _balance;
|
||||
}
|
||||
|
||||
void EventData::setBalance(float inValue) {
|
||||
void spine::EventData::setBalance(float inValue) {
|
||||
_balance = inValue;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user