How to quit application through script in Unity? -- Unity
How to quit application through script in Unity? -- Unity
Stop running game at runtime.
Debug.Break();
Close the Unity Application.
EditorApplication.Exit(0);
Quit the deployed game/App.
Application.Quit();
source:
Comments
Post a Comment