Search Issue Tracker
Fixed in 2022.1.X
Votes
0
Found in
2022.1.0a2
Issue ID
1352668
Regression
No
Mouse look script is frame rate dependent in the URP template project
In the empty URP project template, inside Assets/Scripts/SimpleCameraController.cs, there's this like of code:
// Rotation
if (IsCameraRotationAllowed())
{
var mouseMovement = GetInputLookRotation() * Time.deltaTime * 5;
It incorrectly multiplies the mouse movement by delta time, causing it to become frame rate dependent. Mouse input is already frame independent as it's expressed in raw movement units, rather than a state (like keyboard keys) that affects movement over time.
Reproduction steps to see it in action:
1. Create an empty URP project
2. Enter playmode
3. Hold down the right mouse button to enable mouse look, move the mouse and notice its sensitivity.
4. Go to gameview settings and enable VSync
5. Hold down the right mouse button to enable mouse look, move the mouse and notice that the sensitivity isn't the same as it was before enabling VSync.
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
Resolution Note (fix version 2022.1):
Fixed in 2022.1.0a6