Answers for "unity how to add exit button on windows build"

C#
1

how to make a quit button in unity

//need to build to work
    public void quitGame() 
    {
        Application.Quit();
    }
Posted by: Guest on September-20-2021
2

exit button unity code

void doExitGame() {
     Application.Quit();
 }
Posted by: Guest on November-22-2020

C# Answers by Framework

Browse Popular Code Answers by Language