I'm enjoying the flexibility in the camera but need to disable the rotate around function bound to the left mouse button. There are input settings for the right mouse button, the middle mouse and mouse wheel but the left mouse is always bound without a way to change.

I haven't been able to find where it is bound in the scripts yet, could I get some direction to where I may disable it?

Thanks!

    rklauer Hi!
    The left mouse button is linked to the "one finger" action on the camera, this is where you can disable it.
    If you need to disable rotation by code you can do that with the latest version:

    cam = GetComponent<CameraBase>();
    cam.DisableRotations = true;

    hope that helps!
    Anthony

      Write a Reply...