overte/scripts/developer/tests/basicEntityTest/myEntityScript.js
2016-04-26 11:24:38 -07:00

23 lines
No EOL
439 B
JavaScript

(function() {
var _this;
MyEntity = function() {
_this = this;
};
MyEntity.prototype = {
preload: function(entityID) {
this.entityID = entityID;
var randNum = Math.random().toFixed(3);
print("PRELOAD ENTITY SCRIPT!!!", randNum)
},
};
// entity scripts always need to return a newly constructed object of our type
return new MyEntity();
});