visible
Determines whether the hardware pointer is visible or not.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static bool visible { get; set; }
Remarks
Set this to true to reveal the cursor. Set it to false to hide the cursor. Note that in CursorLockMode.Locked mode, the cursor is invisible regardless of the value of this property.
Examples
using UnityEngine;using System.Collections;public class CursorScript : MonoBehaviour{ // Use this for initialization void Start() { //Set Cursor to not be visible Cursor.visible = false; }}