Answers for "unity disable object in script"

12

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
Posted by: Guest on May-23-2020
2

how to deactivate objects through scripts in unity

public GameObject Name = GameObject.Find("Name");

Name.enabled = true;
Posted by: Guest on April-30-2020
1

disable script in unity

GameObject.Find("Cube").GetComponent<MoveObject>().enabled = false;
Posted by: Guest on April-21-2021

Code answers related to "unity disable object in script"

Browse Popular Code Answers by Language