Refactoring.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / humaninput / UserInputTracker.java
index 8e02ddf..dedfd78 100755 (executable)
@@ -229,7 +229,7 @@ public class UserInputTracker
         // track mouse wheel movements
         final double actualAcceleration = 50 * avatar.avatarAcceleration * (1 + (avatar.getMovementSpeed() / 10));
 
-        avatar.getMovementDirection().y += (wheelMovedDirection * actualAcceleration);
+        avatar.getMovementVector().y += (wheelMovedDirection * actualAcceleration);
         avatar.enforceSpeedLimit();
 
         // check if view shall be repainted