This commit is contained in:
ZappoMan 2014-10-28 13:19:47 -07:00
parent 6c63c2ecd9
commit f26bf5e07b

View file

@ -80,20 +80,20 @@ public:
bool getIsSpotlight() const { return _isSpotlight; } bool getIsSpotlight() const { return _isSpotlight; }
void setIsSpotlight(bool value) { _isSpotlight = value; } void setIsSpotlight(bool value) { _isSpotlight = value; }
bool getConstantAttenuation() const { return _constantAttenuation; } float getConstantAttenuation() const { return _constantAttenuation; }
void setConstantAttenuation(float value) { _constantAttenuation = value; } void setConstantAttenuation(float value) { _constantAttenuation = value; }
bool getLinearAttenuation() const { return _linearAttenuation; } float getLinearAttenuation() const { return _linearAttenuation; }
void setLinearAttenuation(float value) { _linearAttenuation = value; } void setLinearAttenuation(float value) { _linearAttenuation = value; }
bool getQuadraticAttenuation() const { return _quadraticAttenuation; } float getQuadraticAttenuation() const { return _quadraticAttenuation; }
void setQuadraticAttenuation(float value) { _quadraticAttenuation = value; } void setQuadraticAttenuation(float value) { _quadraticAttenuation = value; }
bool getExponent() const { return _exponent; } float getExponent() const { return _exponent; }
void setExponent(bool value) { _exponent = value; } void setExponent(float value) { _exponent = value; }
bool getCutoff() const { return _cutoff; } float getCutoff() const { return _cutoff; }
void setCutoff(bool value) { _cutoff = value; } void setCutoff(float value) { _cutoff = value; }
virtual const Shape& getCollisionShapeInMeters() const { return _emptyShape; } virtual const Shape& getCollisionShapeInMeters() const { return _emptyShape; }