vary colors

This commit is contained in:
James Pollack 2015-12-16 00:58:00 -08:00
parent 9a2d9997e9
commit adf6cf8aa3

View file

@ -48,6 +48,12 @@ var WHITE = {
blue: 255
};
var ORANGE={
red:255,
green:0,
blue:128
}
var SLIDER_DIMENSIONS = {
x: 0.075,
y: 0.075,
@ -309,7 +315,7 @@ function makeSliders(light) {
sliders.push(slidersRef.cutoff);
}
if (USE_EXPONENT_SLIDER === true) {
slidersRef.exponent = new entitySlider(light, PURPLE, 'exponent', 6);
slidersRef.exponent = new entitySlider(light, ORANGE, 'exponent', 6);
sliders.push(slidersRef.exponent);
}
subscribeToSliderMessages();