mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 22:36:18 +02:00
23 lines
No EOL
439 B
JavaScript
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();
|
|
}); |