Enable Or Disable Gameobject Unity 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

Example 3: how to disable a gameObject unity c#


public GameObject gameObj;//the gameobject you want to disable in the scene

gameObj.SetActive(true); //set the object to active
gameObj.SetActive(false);//set the object to disable

gameObject.SetActive(true);//change the state of the current gameobject to active
gameObject.SetActive(false);//change the state of the current gameobject to disable

Example 4: how to deactivate an object unity


Object.SetActive(true / false);

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable