Answers for "how to make a quit button in unity"

C#
7

quit button unity

void quitGame() {
     Application.Quit();
 }
Posted by: Guest on August-27-2020
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
1

exit button unity code

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

exit button unity code

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

Code answers related to "how to make a quit button in unity"

C# Answers by Framework

Browse Popular Code Answers by Language