I’m making a small 3d space game with the first person player as a ship. The first issue I ran into is the Mouse Look script. When I set the min/max values to ±360 some strange things started to happen. When I look down past 90 degrees, the camera “inverts” the left/right mouse axis, moving the mouse right moves the camera left and vice vercia. I think this has to do with the rotation being off the “world” axis instead off the camera’s axis. What needs to be changed to fix this?
Also what is the best way to implement a “laggy mouse” effect, so the mouselook isnt so choppy? Something like the smoothLookAt script. If it makes any difference, the controller will be a joystick.