Created
March 21, 2018 04:27
-
-
Save yasuyuki-kamata/f54d42810cd701dca5591188d632187e to your computer and use it in GitHub Desktop.
UnityエディタのPlayを止める
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class EditorStopTest : MonoBehaviour | |
{ | |
public void Quit() | |
{ | |
#if UNITY_EDITOR | |
UnityEditor.EditorApplication.isPlaying = false; | |
#else | |
Application.Quit(); | |
#endif | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment