Another adjustment to 'under the sea'
authorTomas Wenström <tomas.wenstrom@gmail.com>
Thu, 24 Aug 2017 20:12:13 +0000 (22:12 +0200)
committerTomas Wenström <tomas.wenstrom@gmail.com>
Thu, 24 Aug 2017 20:12:13 +0000 (22:12 +0200)
src/kaka/cakelight/AmbientMode.java

index 29a861c..2b10e31 100644 (file)
@@ -65,7 +65,7 @@ public class AmbientMode extends Mode { // TODO split into DynamicAmbient and St
                 double x = frame.xOf(i);
                 double y = frame.yOf(i);
                 double b = Math.pow(Math.min(1, Math.max(0, noise.getr(0.0, 1.0, 1, x, y, time / 7000.0))), 1.5);
-                double g = Math.min(b, Math.max(0, noise.getr(-1.0, 1.0, 0.5, x*3, y*3, time / 5000.0)));
+                double g = Math.min(1, Math.max(0, noise.getr(-b, b, 0.5, x*3, y*3, time / 5000.0)));
                 frame.setLedColor(i, Color.rgb(0, g, b));
             }
         } else if (type == 2) {