(05-02-2022, 09:52 PM)josemendez Wrote: Hi there!
You mention your player is a rigidbody. How are you moving him around in response to user input?
Hi, appreciate the quick response. My player is moved by setting the rigidbody velocity to the movement vector of the player. Basically something along the lines of this:
Code:
Rigidbody.velocity = MovementVector * MoveSpeed;