Answers for "show and hide canvas unity"

C#
2

how to hide ui elements unity

GameObject.Find("the object name").SetActive(false);
Posted by: Guest on March-23-2020
1

to hide or show a canvas in unity

CanvasA.gameObject.SetActive(false); CanvasB.gameObject.SetActive(true);
Posted by: Guest on August-06-2020

C# Answers by Framework

Browse Popular Code Answers by Language