Answers for "how to make game ui and buttons in unity"

C#
0

unity gui button

if (GUILayout.Button("I am a regular Automatic Layout Button")){
    Debug.Log("Clicked Automatic Layout Button ");
}

if (GUI.Button(new Rect(10, 70, 50, 30), "I am a regular Button"))
    Debug.Log("Clicked Regular Button");
}
Posted by: Guest on November-24-2020

Code answers related to "how to make game ui and buttons in unity"

C# Answers by Framework

Browse Popular Code Answers by Language