how to not show the cursor in unity code example
Example: cursor not visible unity c#
using UnityEngine;
using System.Collections;
public class CursorScript : MonoBehaviour
{
// Use this for initialization
void Start()
{
//Set Cursor to not be visible
Cursor.visible = false;
}
}