allow isSpotlight to be 0 or 1

This commit is contained in:
Seth Alves 2017-02-16 17:15:52 -08:00
parent 21b0e45b0f
commit b6b6ad780d

View file

@ -1806,7 +1806,7 @@ SelectionDisplay = (function() {
if (selectionManager.selections.length == 1) { if (selectionManager.selections.length == 1) {
var properties = Entities.getEntityProperties(selectionManager.selections[0]); var properties = Entities.getEntityProperties(selectionManager.selections[0]);
if (properties.type == "Light" && properties.isSpotlight === true) { if (properties.type == "Light" && properties.isSpotlight) {
stretchHandlesVisible = false; stretchHandlesVisible = false;
extendedStretchHandlesVisible = false; extendedStretchHandlesVisible = false;
@ -1901,7 +1901,7 @@ SelectionDisplay = (function() {
Overlays.editOverlay(grabberPointLightN, { Overlays.editOverlay(grabberPointLightN, {
visible: false visible: false
}); });
} else if (properties.type == "Light" && properties.isSpotlight === false) { } else if (properties.type == "Light" && !properties.isSpotlight) {
stretchHandlesVisible = false; stretchHandlesVisible = false;
extendedStretchHandlesVisible = false; extendedStretchHandlesVisible = false;
Overlays.editOverlay(grabberPointLightT, { Overlays.editOverlay(grabberPointLightT, {