Merge pull request #4848 from PhilipRosedale/master

update position and rotation from the script, even though we should not have to
This commit is contained in:
Seth Alves 2015-05-12 16:13:29 -07:00
commit 4a533748f4

View file

@ -260,9 +260,11 @@ function update(deltaTime) {
} }
Entities.editEntity(grabbedEntity, { Entities.editEntity(grabbedEntity, {
position: currentPosition,
rotation: currentRotation,
velocity: newVelocity, velocity: newVelocity,
angularVelocity: angularVelocity angularVelocity: angularVelocity
}) });
updateDropLine(targetPosition); updateDropLine(targetPosition);
} }
} }