From e673746d58a993203c252160006199788653abb5 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Tue, 12 May 2015 09:22:53 -0700 Subject: [PATCH] Fix skybox color picker --- examples/html/entityProperties.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/html/entityProperties.html b/examples/html/entityProperties.html index 2bf161dee3..a53b0c666e 100644 --- a/examples/html/entityProperties.html +++ b/examples/html/entityProperties.html @@ -742,7 +742,7 @@ onSubmit: function(hsb, hex, rgb, el) { $(el).css('background-color', '#'+hex); $(el).colpickHide(); - emitColorPropertyUpdate('skybox', rgb.r, rgb.g, rgb.b, 'color'); + emitColorPropertyUpdate('color', rgb.r, rgb.g, rgb.b, 'skybox'); } });