双击Esc键退出程序

作者:追风剑情 发布于:2021-4-12 13:55 分类:Unity3d

  1. using UnityEngine;
  2. /// <summary>
  3. /// 双击键盘上的ESC键退出程序
  4. /// </summary>
  5. public class KeyEscapQuit : MonoBehaviour
  6. {
  7. private float lastEscTime;
  8. private void Update()
  9. {
  10. //双击Esc键,退出程序
  11. if (Input.GetKeyDown(KeyCode.Escape))
  12. {
  13. if (Time.time - lastEscTime < 0.5f)
  14. {
  15. Debug.Log(">>> Quit");
  16. #if UNITY_EDITOR
  17. //在编辑器中退出Play模式
  18. UnityEditor.EditorApplication.ExitPlaymode();
  19. #else
  20. Application.Quit();
  21. #endif
  22. }
  23. lastEscTime = Time.time;
  24. }
  25. }
  26. }

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号