From f26bf5e07b01d56c57fcf1807d0ce7ff702431c8 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 28 Oct 2014 13:19:47 -0700 Subject: [PATCH] duh --- libraries/entities/src/LightEntityItem.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libraries/entities/src/LightEntityItem.h b/libraries/entities/src/LightEntityItem.h index ff5e1e725d..2006efb896 100644 --- a/libraries/entities/src/LightEntityItem.h +++ b/libraries/entities/src/LightEntityItem.h @@ -80,20 +80,20 @@ public: bool getIsSpotlight() const { return _isSpotlight; } void setIsSpotlight(bool value) { _isSpotlight = value; } - bool getConstantAttenuation() const { return _constantAttenuation; } + float getConstantAttenuation() const { return _constantAttenuation; } void setConstantAttenuation(float value) { _constantAttenuation = value; } - bool getLinearAttenuation() const { return _linearAttenuation; } + float getLinearAttenuation() const { return _linearAttenuation; } void setLinearAttenuation(float value) { _linearAttenuation = value; } - bool getQuadraticAttenuation() const { return _quadraticAttenuation; } + float getQuadraticAttenuation() const { return _quadraticAttenuation; } void setQuadraticAttenuation(float value) { _quadraticAttenuation = value; } - bool getExponent() const { return _exponent; } - void setExponent(bool value) { _exponent = value; } + float getExponent() const { return _exponent; } + void setExponent(float value) { _exponent = value; } - bool getCutoff() const { return _cutoff; } - void setCutoff(bool value) { _cutoff = value; } + float getCutoff() const { return _cutoff; } + void setCutoff(float value) { _cutoff = value; } virtual const Shape& getCollisionShapeInMeters() const { return _emptyShape; }