Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Cursor.visible

public static bool visible;

Description

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; } }