correct indentation for HomeButton.js

This commit is contained in:
Dante Ruiz 2016-12-16 21:51:01 +00:00
parent 8f36090884
commit 61e2fb2366

View file

@ -12,21 +12,21 @@
_this = this;
this.preload = function(entityID) {
print(entityID);
this.entityID = entityID;
print(entityID);
this.entityID = entityID;
}
this.clickDownOnEntity = function(entityID, mouseEvent) {
Messages.sendLocalMessage("home", _this.entityID);
Messages.sendLocalMessage("home", _this.entityID);
}
this.startNearTrigger = function() {
Messages.sendLocalMessage("home", _this.entityID);
Messages.sendLocalMessage("home", _this.entityID);
}
this.startFarTrigger = function() {
Messages.sendLocalMessage("home", _this.entityID);
Messages.sendLocalMessage("home", _this.entityID);
}
});