Hi there I have made a rotation controller for my object.
But the more FPS you have the slower it rotates. Which is very anoying.
This is the rotate code:
float pointer_x = Input.GetAxis("Mouse X");
float _sensitivity = 300;
transform.Rotate(0, (-pointer_x * _sensitivity * Time.deltaTime), 0, Space.World);