move float bool bugs

This commit is contained in:
ZappoMan 2014-10-30 00:26:06 -07:00
parent 1d9c4a6454
commit ac115086cc

View file

@ -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; }