mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Remove glowLevel references in scripts
This commit is contained in:
parent
38f74c1843
commit
5acbed647c
3 changed files with 1 additions and 9 deletions
|
@ -205,7 +205,7 @@
|
|||
};
|
||||
|
||||
return generateOverlayClass(that, ABSTRACT, [
|
||||
"alpha", "glowLevel", "pulseMax", "pulseMin", "pulsePeriod", "glowLevelPulse",
|
||||
"alpha", "pulseMax", "pulseMin", "pulsePeriod",
|
||||
"alphaPulse", "colorPulse", "visible", "anchor"
|
||||
]);
|
||||
})();
|
||||
|
|
|
@ -319,8 +319,6 @@ function addIndicators(modelID) {
|
|||
}
|
||||
|
||||
models[modelID] = modelID;
|
||||
} else {
|
||||
Entities.editEntity(modelID, { glowLevel: 0.0 });
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue