using UnityEngine; using System.Collections;// Quits the player when the user hits escapepublic class ExampleClass : MonoBehaviour { void Update() { if (Input.GetKey("escape")) { Application.Quit(); } } }
//Quit/Stop Game Application.Quit();