是否打开了 Caps Lock?(只读)
如果打开了 Caps Lock,则返回 true。
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.");
}
}