I’m learning Unity and decided to go with the Input System, so far everything have been easy enough but today I was trying to make the player to always look at the cursor on 2D so I added an action that gives me back the Mouse/Position, when I run the scene and don’t move the mouse at all, it always returns 0, 0 however. This happens even if I use Mouse.current.position.ReadValue().
I tried the same thing but with using Input.mousePosition instead and it returns the position of the mouse correctly even if I don’t move it at all.
I’m learning and want the weapon for the player always pointing in the direction that the mouse currently is at, it looks rather weird when the weapon stays dead in the middle when there is a mouse, just haven’t moved it yet.