disabled spectator doll - was falling forever

This commit is contained in:
logsol 2015-02-07 16:16:28 +01:00
parent 93680e3286
commit ac69077e8a

View file

@ -8,7 +8,7 @@ function (Parent, Box2D) {
"use strict"; "use strict";
function SpectatorDoll(physicsEngine, uid, player) { function SpectatorDoll(physicsEngine, uid, player) {
Parent.call(this, physicsEngine, uid); //Parent.call(this, physicsEngine, uid);
} }
SpectatorDoll.prototype = Object.create(Parent.prototype); SpectatorDoll.prototype = Object.create(Parent.prototype);
@ -33,6 +33,9 @@ function (Parent, Box2D) {
SpectatorDoll.prototype.update = function() { SpectatorDoll.prototype.update = function() {
}; };
SpectatorDoll.prototype.destroy = function() {
};
return SpectatorDoll; return SpectatorDoll;