summaryrefslogtreecommitdiff
path: root/indra/llinventory/llsettingssky.cpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-10-28 22:53:24 +0200
committerGitHub <noreply@github.com>2024-10-28 22:53:24 +0200
commit9c0a6d1b0e5e9d6da6a63ff367f40ab08c064bbe (patch)
tree70ee7701d7a24a0759915f8050786ed43a8a2a7a /indra/llinventory/llsettingssky.cpp
parent0ef7a9b39cf72da1211039ab22bdf8f9f6a2c984 (diff)
parentb2f1e8899b32f681e13705d684db9a93d18450ae (diff)
Merge pull request #2966 from secondlife/marchcat/c-develop
develop → Maint C sync
Diffstat (limited to 'indra/llinventory/llsettingssky.cpp')
-rw-r--r--indra/llinventory/llsettingssky.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llinventory/llsettingssky.cpp b/indra/llinventory/llsettingssky.cpp
index 3685915ffd..ce6244d038 100644
--- a/indra/llinventory/llsettingssky.cpp
+++ b/indra/llinventory/llsettingssky.cpp
@@ -1995,6 +1995,7 @@ F32 LLSettingsSky::getCloudShadow() const
void LLSettingsSky::setCloudShadow(F32 val)
{
mCloudShadow = val;
+ setDirtyFlag(true);
setLLSDDirty();
}
@@ -2051,6 +2052,7 @@ F32 LLSettingsSky::getMaxY() const
void LLSettingsSky::setMaxY(F32 val)
{
mMaxY = val;
+ setDirtyFlag(true);
setLLSDDirty();
}
@@ -2062,6 +2064,7 @@ LLQuaternion LLSettingsSky::getMoonRotation() const
void LLSettingsSky::setMoonRotation(const LLQuaternion &val)
{
mMoonRotation = val;
+ setDirtyFlag(true);
setLLSDDirty();
}
@@ -2073,6 +2076,7 @@ F32 LLSettingsSky::getMoonScale() const
void LLSettingsSky::setMoonScale(F32 val)
{
mMoonScale = val;
+ setDirtyFlag(true);
setLLSDDirty();
}
@@ -2095,6 +2099,7 @@ F32 LLSettingsSky::getMoonBrightness() const
void LLSettingsSky::setMoonBrightness(F32 brightness_factor)
{
mMoonBrightness = brightness_factor;
+ setDirtyFlag(true);
setLLSDDirty();
}
@@ -2131,6 +2136,7 @@ LLColor3 LLSettingsSky::getSunlightColorClamped() const
void LLSettingsSky::setSunlightColor(const LLColor3 &val)
{
mSunlightColor = val;
+ setDirtyFlag(true);
setLLSDDirty();
}
@@ -2142,6 +2148,7 @@ LLQuaternion LLSettingsSky::getSunRotation() const
void LLSettingsSky::setSunRotation(const LLQuaternion &val)
{
mSunRotation = val;
+ setDirtyFlag(true);
setLLSDDirty();
}
@@ -2153,6 +2160,7 @@ F32 LLSettingsSky::getSunScale() const
void LLSettingsSky::setSunScale(F32 val)
{
mSunScale = val;
+ setDirtyFlag(true);
setLLSDDirty();
}