Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Escape

Escape key.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Field
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
Escape = 27

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Update() { if (Input.GetKeyDown(KeyCode.Escape)) { Debug.Log("Escape key was pressed"); } if (Input.GetKeyUp(KeyCode.Escape)) { Debug.Log("Escape key was released"); } if (Input.GetKey(KeyCode.Escape)) { Debug.Log("Escape key is being pressed"); } }}