mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 05:09:23 +02:00
duh
This commit is contained in:
parent
6c63c2ecd9
commit
f26bf5e07b
1 changed files with 7 additions and 7 deletions
|
@ -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; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue