diff --git a/src/components/character-controller.js b/src/components/character-controller.js
index e6db4c82b5c4fde1f1272fc77444790d7ef990ae..d294172f5139b061384bab66b162effe2ab6058a 100644
--- a/src/components/character-controller.js
+++ b/src/components/character-controller.js
@@ -114,6 +114,9 @@ AFRAME.registerComponent("character-controller", {
       pivotRotationMatrix.makeRotationAxis(rotationAxis, pivot.rotation.y);
       pivotRotationInvMatrix.makeRotationAxis(rotationAxis, -pivot.rotation.y);
       this.updateVelocity(deltaSeconds);
+      if (this.velocity.x === 0 && this.velocity.y === 0 && this.velocity.z === 0) {
+        return;
+      }
       move.makeTranslation(this.velocity.x * distance, this.velocity.y * distance, this.velocity.z * distance);
       yawMatrix.makeRotationAxis(rotationAxis, rotationDelta);