Hello Guys,
im using the standart FPS controller script. I would like to disable the MouseX and MouseY axis but not able to find the correct reference in the C# code. All the other inputs should still be active. The charecter have to be able to move but not to look around with the mouse.
Right now i an disabeling the whole script. Im writing Javascript.
what am i doing right now
FPSController.GetComponent("FirstPersonController").enabled = false;
what i would like to do (pseudocode)
FPSController.GetComponent("FirstPersonController") GetComponentMouseX = 0 | GetComponentMouseY = 0;
Greetings BP