# HG changeset patch # User drewp@bigasterisk.com # Date 2019-06-10 01:37:53 # Node ID 9cff56d44ac6bc6c7300de6cb1d16c8cc0535f3b # Parent 5e0524c27bdbbcb1e20fd60d3317c6f94505fcda tintable cyc effect wasn't obeying strength curve Ignore-this: e40bceeb7153aa37c93c19796c5bd9a3 diff --git a/light9/effect/effecteval.py b/light9/effect/effecteval.py --- a/light9/effect/effecteval.py +++ b/light9/effect/effecteval.py @@ -457,7 +457,7 @@ def effect_image(effectSettings, strengt def effect_cyc(effectSettings, strength, songTime, noteTime): colorScale = effectSettings.get(L9['colorScale'], '#ffffff') - r, g, b = map(lambda x: x / 255, hex_to_rgb(colorScale)) + r, g, b = map(lambda x: strength * x / 255, hex_to_rgb(colorScale)) out ={ (SKY['cycRed1'], L9['brightness']): r,