From 45ba6786869aad82fb07f6f9f9a279158e299a37 Mon Sep 17 00:00:00 2001 From: Eric Levin Date: Wed, 29 Apr 2015 23:40:53 -0700 Subject: [PATCH] can now fling up and down as well as in xz plane --- examples/grab.js | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/grab.js b/examples/grab.js index 4e0c536a1b..dc250b9d27 100644 --- a/examples/grab.js +++ b/examples/grab.js @@ -100,7 +100,6 @@ function flingObject() { flingVelocity = Vec3.subtract(entityProps.position, prevPosition); flingVelocity = Vec3.multiply(flingMultiplier, flingVelocity); - flingVelocity.y = 0; Entities.editEntity(grabbedEntity, { velocity: flingVelocity });