overte/examples/lights/box.js
James B. Pollack 0fe4803b04 start
2015-12-12 16:17:00 -08:00

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();
});