mirror of
https://github.com/lubosz/overte.git
synced 2025-08-27 09:25:47 +02:00
modifying variable naming to fit convention
This commit is contained in:
parent
5b4eb92281
commit
7360629d31
1 changed files with 3 additions and 3 deletions
|
@ -84,9 +84,9 @@ Script.include("/~/system/libraries/controllers.js");
|
|||
return overlayType === "web3d" || triggerPressed;
|
||||
}
|
||||
} else if (intersection.type === Picks.INTERSECTED_ENTITY) {
|
||||
var entityProperty = Entities.getEntityProperties(objectID);
|
||||
var entityType = entityProperty.type;
|
||||
var isLocked = entityProperty.locked;
|
||||
var entityProperties = Entities.getEntityProperties(objectID);
|
||||
var entityType = entityProperties.type;
|
||||
var isLocked = entityProperties.locked;
|
||||
return entityType === "Web" && (!isLocked || triggerPressed);
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue