rotate velocity with object unity code example
Example 1: how to rotate object unity
public Transform Position; // make reference in inspector
Position.Rotate(x, y, z);
Example 2: set rotation to velocity unity
transform.rotation = Quaternion.LookRotation(rigidbody.velocity);