hey guys , how to check the speed of mouse movement in godot
Try the function Input.get_last_mouse_velocity().
2 Likes
Otherwise, if you access a InputEventMouseMotion
within one of the _input*(InputEvent)
functions, you can get the velocity of that input event by accessing the velocity
property.