how can i make my player look where he is moving with this code setup
horizontalInput = Input.GetAxis("Horizontal");
}
private void FixedUpdate()
{
rigidbodyComponent.velocity = new Vector3(horizontalInput * 2, GetComponent<Rigidbody ().velocity.y, 0);
Comment