Unity 3D – Hide Mouse Cursor
1. Load a Scene
2. Select MainCamera, assign HideCursor.JS
#pragma strict function Start () { // Hide the cursor Screen.showCursor = false; } function Update () { }
3. Build it and run
NOTICE: If you try the game during production you will see the mouse cursor! You have to build to see the final result!