disable gameobject unity code example

Example 1: unity c# set gameobject active

gameObject.SetActive(true)

Example 2: unity how to set gameobjkect enabled

//This is for unity
GameObject.SetActive(true);

Example 3: unity enable gameobject

GameObject.Find("PlayMenu 3").SetActive(false);
// you could also store a GameObject as  variable

Example 4: 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 5: how to deactivate an object unity

Object.SetActive(true / false);

Example 6: deactivate a gameobject unity

public void SetActive(bool value);