Rotation faster on lower fps,rotation sensitifity

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);

Well actually you have Time.deltaTime which covers the framerate drop issue for games. You may not notice it, but it will rotate the same way it should have rotated without the drop. I think it’s a “how you feel the game” issue. If this is still not what you want, try removing Time.deltaTime just to see.