Answers for "unity ui quit button"

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

C# Answers by Framework

Browse Popular Code Answers by Language