Posts

Showing posts with the label quit application

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: unity3d - How can i stop unity from script? - Stack Overflow