From 748534cb9aec8b26fa828c490b0a438d3e4c03c9 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Fri, 3 Apr 2015 16:25:28 -0700 Subject: [PATCH] Fix spotlight checkbox on entity properties --- examples/html/entityProperties.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/html/entityProperties.html b/examples/html/entityProperties.html index 0c2e09ef16..a1f1a5ea79 100644 --- a/examples/html/entityProperties.html +++ b/examples/html/entityProperties.html @@ -330,6 +330,8 @@ elLightSections[i].style.display = 'block'; } + elLightSpotLight.checked = properties.isSpotlight; + elLightColorRed.value = properties.color.red; elLightColorGreen.value = properties.color.green; elLightColorBlue.value = properties.color.blue;