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.
Thanks for your help, but I tinkered with it and got it done. Here is the code.