In my game, when you die you are returned to the title screen but the mouse remains invisible until you press escape, and clicking on the screen only makes it disappear again meaning you can’t press them to restart the game. Please help. I am fairly new to unity and I am not sure what to do.
Nevermind. I worked it out. The cursor was locked in my fps controller script so that when I went back to the GUI it was broken (kind of). If you have the same problem just use these lines of code:
Cursor.lockState = CursorLockMode.None;
Cursor.visible = true;