Mobile app version of vmapp.org
Login or Join
Steve758

: I haven't played this game yet, but as far as I can see are these HSB/HSL transitions (two of the tree values hue, saturation, luminance always stay constant when fading). Unless thats wrong,

@Steve758

I haven't played this game yet, but as far as I can see are these HSB/HSL transitions (two of the tree values hue, saturation, luminance always stay constant when fading).

Unless thats wrong, I assume that it's done by a function, calculating HSB/HSL into RBG colors:

ex. in Java, assuming you are using java.awt.Color

Color c = Color.getHSBColor(hue, saturation, value);
String rgb = Integer.toHexString(c.getRGB());


A random number will be generated and one of these 3 HBL/HSL values will be changed to the generated value. Another number will be generated for the length of the transition.

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Steve758

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme