enable gameobject unity c# code example
Example 1: unity c# set gameobject active
gameObject.SetActive(true)
Example 2: unity enable gameobject
GameObject.Find("PlayMenu 3").SetActive(false);
// you could also store a GameObject as variable
gameObject.SetActive(true)
GameObject.Find("PlayMenu 3").SetActive(false);
// you could also store a GameObject as variable