Unity在编辑器模式下取消运行
通过宏定义判断当前在什么环境下
然后对其进行操作

#if UNITY_EDITOR
UnityEditor.EditorApplication.isPlaying = false;
#else
Application.Quit();
#endif