24 lines
455 B
JavaScript
24 lines
455 B
JavaScript
(function(){
|
|
_this = this;
|
|
|
|
this.preload = function(entityID) {
|
|
print(entityID);
|
|
this.entityID = entityID;
|
|
}
|
|
|
|
this.clickDownOnEntity = function(entityID, mouseEvent) {
|
|
Messages.sendLocalMessage("home", _this.entityID);
|
|
}
|
|
|
|
this.startNearTrigger = function() {
|
|
Messages.sendLocalMessage("home", _this.entityID);
|
|
}
|
|
|
|
|
|
this.startFarTrigger = function() {
|
|
Messages.sendLocalMessage("home", _this.entityID);
|
|
}
|
|
|
|
|
|
|
|
});
|