Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

Event.capsLock

public bool capsLock;

Description

Is Caps Lock on? (Read Only)

Returns true if Caps Lock is switched on.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { Event e = Event.current; if (e.capsLock) GUI.Label(new Rect(10, 10, 100, 20), "CapsLock on."); else GUI.Label(new Rect(10, 10, 100, 20), "CapsLock off."); } }