I can't get my Unity player to move in the direction it is facing using Rigidbody

464 Views Asked by At
    public Rigidbody playerBody;
    public float speed = 5f;

    void Update()
    {

        float horizontal = Input.GetAxis("Horizontal");
        float vertical = Input.GetAxis("Vertical");
        playerBody.velocity = new Vector3( horizontal * speed, playerBody.velocity.y, vertical * speed);

    }

I cant get the character to move in the direction the camera is facing.

2

There are 2 best solutions below

0
On

Thanks for your help, but I tinkered with it and got it done. Here is the code.

playerBody.velocity = transform.forward * speed * vertical + transform.up 
                      * playerBody.velocity.y + transform.right * speed * horizontal;
3
On

Try using MovePosition instead of velocity

playerBody.MovePosition(new Vector3( horizontal * speed, playerBody.velocity.y, vertical * speed));