You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have noticed that when moving down the dynamic camera (by pressing Q or C), it sometimes slow down a lot, so much it seems like the entire camera froze.
I can still rotate the camera with the mouse when this happens.
Also, I've noticed it only happens when I'm going down directly. If I move (with WASD) while going down, the speed works just fine.
I managed to fix it by moving the input handling function call from FixedUpdate to Update and changing every use of Time.fixedDeltaTime with regular Time.deltaTime.
Making this change also allowed to fix another issue where some inputs like the scroll wheel were not always cought by the code.
The text was updated successfully, but these errors were encountered:
I have noticed that when moving down the dynamic camera (by pressing Q or C), it sometimes slow down a lot, so much it seems like the entire camera froze.
I can still rotate the camera with the mouse when this happens.
Also, I've noticed it only happens when I'm going down directly. If I move (with WASD) while going down, the speed works just fine.
I managed to fix it by moving the input handling function call from FixedUpdate to Update and changing every use of Time.fixedDeltaTime with regular Time.deltaTime.
Making this change also allowed to fix another issue where some inputs like the scroll wheel were not always cought by the code.
The text was updated successfully, but these errors were encountered: