Re: Mouse Cursor Disabled
Posted: Tue Apr 15, 2025 1:09 pm
Hello Tony,
After debugging, I located the problem in line 355 of UCCSaver.cs, like this:
I don't quite understand why the cursor should be disabled here (unityInput.DisableCursor = true;). I manually changed it to false and there is no problem now. What problem did this code originally want to solve?
After debugging, I located the problem in line 355 of UCCSaver.cs, like this:
Code: Select all
// Hide cursor: (In editor, UnityInput makes cursor visible when paused during scene transition.)
var unityInput = playerInput as UnityInput;
if (unityInput != null) unityInput.DisableCursor = true;