mirror of
https://github.com/overte-org/overte.git
synced 2025-05-08 23:38:55 +02:00
31 lines
No EOL
517 B
JavaScript
31 lines
No EOL
517 B
JavaScript
(function() {
|
|
|
|
function Box () {
|
|
this.oldColor = {};
|
|
this.oldColorKnown = false;
|
|
}
|
|
|
|
Box.prototype = {
|
|
preload: function(entityID) {
|
|
print("preload");
|
|
|
|
this.entityID = entityID;
|
|
this.storeOldColor(entityID);
|
|
},
|
|
startDistantGrab:function(){
|
|
|
|
},
|
|
continueDistantGrab:function(){
|
|
|
|
},
|
|
releaseGrab:function(){
|
|
|
|
}
|
|
setHand:function(){
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return new Box();
|
|
}); |