diff --git a/indra/newview/app_settings/settings_alchemy.xml b/indra/newview/app_settings/settings_alchemy.xml index 63d4535c4707d34435a07a6ef3d83bc01d3e010f..37ff7e33720e8b26c703a14be9716a3fb00cdbac 100644 --- a/indra/newview/app_settings/settings_alchemy.xml +++ b/indra/newview/app_settings/settings_alchemy.xml @@ -200,6 +200,17 @@ <key>Value</key> <string>/tp2cam</string> </map> + <key>AlchemyRainbowEffects</key> + <map> + <key>Comment</key> + <string>Makes agent effects rainbows!</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>Boolean</string> + <key>Value</key> + <integer>1</integer> + </map> <key>AlchemyRezUnderLandGroup</key> <map> <key>Comment</key> diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index bd7e256f5b8f78659f42eb1a896d3773a45f3eda..acb837c4ce553f45c9d67d51099def1541fc9074 100644 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -3307,9 +3307,19 @@ BOOL LLAgent::allowOperation(PermissionBit op, return perm.allowOperationBy(op, agent_proxy, group_proxy); } -const LLColor4 &LLAgent::getEffectColor() +const LLColor4 LLAgent::getEffectColor() { - return *mEffectColor; + LLColor4 effect_color = *mEffectColor; + + //<alchemy> Rainbow Particle Effects + static LLCachedControl<bool> AlchemyRainbowEffects(gSavedSettings, "AlchemyRainbowEffects"); + if(AlchemyRainbowEffects) + { + LLColor3 rainbow; + rainbow.setHSL(fmodf((F32)LLFrameTimer::getElapsedSeconds()/4.f, 1.f), 1.f, 0.5f); + effect_color.set(rainbow, 1.0f); + } + return effect_color; } void LLAgent::setEffectColor(const LLColor4 &color) diff --git a/indra/newview/llagent.h b/indra/newview/llagent.h index b2d61e7bbe27381c367a64474a632218673a00a8..8ec71cab046acb54db2d23d6df4d674177470ec2 100644 --- a/indra/newview/llagent.h +++ b/indra/newview/llagent.h @@ -857,7 +857,7 @@ class LLAgent : public LLOldEvents::LLObservable // HUD //-------------------------------------------------------------------- public: - const LLColor4 &getEffectColor(); + const LLColor4 getEffectColor(); void setEffectColor(const LLColor4 &color); private: LLUIColor * mEffectColor;