鸟语天空
双击Esc键退出程序
post by:追风剑情 2021-4-12 13:55
using UnityEngine;
/// <summary>
/// 双击键盘上的ESC键退出程序
/// </summary>
public class KeyEscapQuit : MonoBehaviour
{
    private float lastEscTime;
    private void Update()
    {
        //双击Esc键,退出程序
        if (Input.GetKeyDown(KeyCode.Escape))
        {
            if (Time.time - lastEscTime < 0.5f)
            {
                Debug.Log(">>> Quit");
#if UNITY_EDITOR
                //在编辑器中退出Play模式
                UnityEditor.EditorApplication.ExitPlaymode();
#else
                Application.Quit();
#endif
            }
            lastEscTime = Time.time;
        }
    }
}
评论:
发表评论:
昵称

邮件地址 (选填)

个人主页 (选填)

内容