mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 06:44:06 +02:00
move float bool bugs
This commit is contained in:
parent
1d9c4a6454
commit
ac115086cc
1 changed files with 2 additions and 2 deletions
|
@ -268,10 +268,10 @@ public:
|
|||
void setQuadraticAttenuation(float value) { _quadraticAttenuation = value; _quadraticAttenuationChanged = true; }
|
||||
|
||||
float getExponent() const { return _exponent; }
|
||||
void setExponent(bool value) { _exponent = value; _exponentChanged = true; }
|
||||
void setExponent(float value) { _exponent = value; _exponentChanged = true; }
|
||||
|
||||
float getCutoff() const { return _cutoff; }
|
||||
void setCutoff(bool value) { _cutoff = value; _cutoffChanged = true; }
|
||||
void setCutoff(float value) { _cutoff = value; _cutoffChanged = true; }
|
||||
|
||||
void setLastEdited(quint64 usecTime) { _lastEdited = usecTime; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue