diff --git a/script-archive/libraries/overlayManager.js b/script-archive/libraries/overlayManager.js index 4438193313..7e25cc04ec 100644 --- a/script-archive/libraries/overlayManager.js +++ b/script-archive/libraries/overlayManager.js @@ -205,7 +205,7 @@ }; return generateOverlayClass(that, ABSTRACT, [ - "alpha", "glowLevel", "pulseMax", "pulseMin", "pulsePeriod", "glowLevelPulse", + "alpha", "pulseMax", "pulseMin", "pulsePeriod", "alphaPulse", "colorPulse", "visible", "anchor" ]); })(); diff --git a/script-archive/sit.js b/script-archive/sit.js index 70cb086e36..7d86e2cc75 100644 --- a/script-archive/sit.js +++ b/script-archive/sit.js @@ -319,8 +319,6 @@ function addIndicators(modelID) { } models[modelID] = modelID; - } else { - Entities.editEntity(modelID, { glowLevel: 0.0 }); } } diff --git a/scripts/system/edit.js b/scripts/system/edit.js index a8774db228..5f0317da7c 100644 --- a/scripts/system/edit.js +++ b/scripts/system/edit.js @@ -63,7 +63,6 @@ var MIN_ANGULAR_SIZE = 2; var MAX_ANGULAR_SIZE = 45; var allowLargeModels = true; var allowSmallModels = true; -var wantEntityGlow = false; var SPAWN_DISTANCE = 1; var DEFAULT_DIMENSION = 0.20; @@ -800,11 +799,6 @@ function highlightEntityUnderCursor(position, accurateRay) { var sizeOK = (allowLargeModels || angularSize < MAX_ANGULAR_SIZE) && (allowSmallModels || angularSize > MIN_ANGULAR_SIZE); if (entityIntersection.entityID && sizeOK) { - if (wantEntityGlow) { - Entities.editEntity(entityIntersection.entityID, { - glowLevel: 0.25 - }); - } highlightedEntityID = entityIntersection.entityID; selectionDisplay.highlightSelectable(entityIntersection.entityID); }