Version: 5.3
public static bool visible ;

설명

Should the cursor be visible?

using UnityEngine;
using System.Collections;

public class CursorScript : MonoBehaviour { // Use this for initialization void Start () { //Set Cursor to not be visible Cursor.visible = false; } }