remove console.log

This commit is contained in:
Peter Cottle 2015-08-29 08:39:29 -07:00
parent 10e0355576
commit 78b87b3c47

View file

@ -420,7 +420,6 @@ var VisNode = VisBase.extend({
cy: y
});
// continuation calculation
console.log('our speed', (vx * vx + vy * vy), 'height', Math.abs(y- maxHeight));
if ((vx * vx + vy * vy) < 0.1 && Math.abs(y - maxHeight) <= 0.1) {
// dont need to animate anymore, we are on ground
return false;