content/hifi-content/jimi/json/dvaScript2.js
2022-02-13 23:57:50 +01:00

13 lines
398 B
JavaScript

(function() {
var dvaID = "{4d37c172-9315-4076-a091-a322d5428535}"; // ID number in edit entity
this.enterEntity = function(entityID) { // If you enter the zone, this will trigger
Entities.editEntity(dvaID, {visible: true});
};
this.leaveEntity = function(entityID) { // If you leave the zone, this will trigger
Entities.editEntity(dvaID, {visible: false});
};
});