This commit is contained in:
James Pollack 2015-10-02 10:44:26 -07:00
parent 82828fdd14
commit c6fa132dc2

View file

@ -36,14 +36,14 @@
x: 0.04, x: 0.04,
y: 0.04, y: 0.04,
z: 0.04 z: 0.04
} };
var BALL_COLOR = { var BALL_COLOR = {
red: 255, red: 255,
green: 255, green: 255,
blue: 255 blue: 255
} };
PingPongGun.prototype = { PingPongGun.prototype = {
hand: null, hand: null,
@ -87,8 +87,7 @@
_t.whichHand = null; _t.whichHand = null;
this.canShootTimeout = Script.setTimeout(function() { this.canShootTimeout = Script.setTimeout(function() {
_t.canShoot = false; _t.canShoot = false;
}, 250);
}, 250)
} }
}, },