Hello! Im making a bird view game and I want to make my character rotate with mouse moves on y axis and 360 degree. Can someone help me please.
Thanks, atkn007
Hello! Im making a bird view game and I want to make my character rotate with mouse moves on y axis and 360 degree. Can someone help me please.
Thanks, atkn007
You want that you character looks at the mouse position?
I just use gameObject.transform.Rotate(0, Input.GetAxis(“Mouse X”) * sensitivityX, 0);
To rotate a turret along X Axis with mouse…