unity how to make the mouse show in an fps code example
Example: unity hide mouse first person
void Start()
{//Makes it invisable
Cursor.visible = false;
//Locks the mouse in place
Cursor.lockState = CursorLockMode.Locked;
// In unity press esc to unlock the mouse and unhide it
}