13 lines
398 B
JavaScript
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});
|
|
};
|
|
|
|
|
|
});
|