diff options
Diffstat (limited to 'indra/llinventory/llsettingssky.h')
-rw-r--r-- | indra/llinventory/llsettingssky.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llinventory/llsettingssky.h b/indra/llinventory/llsettingssky.h index e0ad480c0a..20b8d01879 100644 --- a/indra/llinventory/llsettingssky.h +++ b/indra/llinventory/llsettingssky.h @@ -62,10 +62,12 @@ public: static const std::string SETTING_LIGHT_NORMAL; static const std::string SETTING_MAX_Y; static const std::string SETTING_MOON_ROTATION; + static const std::string SETTING_MOON_SCALE; static const std::string SETTING_MOON_TEXTUREID; static const std::string SETTING_STAR_BRIGHTNESS; static const std::string SETTING_SUNLIGHT_COLOR; static const std::string SETTING_SUN_ROTATION; + static const std::string SETTING_SUN_SCALE; static const std::string SETTING_SUN_TEXTUREID; static const std::string SETTING_PLANET_RADIUS; @@ -165,6 +167,9 @@ public: LLQuaternion getMoonRotation() const; void setMoonRotation(const LLQuaternion &val); + F32 getMoonScale() const; + void setMoonScale(F32 val); + LLUUID getMoonTextureId() const; void setMoonTextureId(LLUUID id); @@ -177,6 +182,9 @@ public: LLQuaternion getSunRotation() const; void setSunRotation(const LLQuaternion &val) ; + F32 getSunScale() const; + void setSunScale(F32 val); + LLUUID getSunTextureId() const; void setSunTextureId(LLUUID id); |