Answers for "unity gameobject disabled"

C#
19

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
-1

unity find disabled gameobject

Camera[] cams = Resources.FindObjectsOfTypeAll<Camera>();
Posted by: Guest on June-16-2021
-2

unity enable and disable gameobject

GameObject GO = GameObject.Find("GameObjectName");
Posted by: Guest on October-10-2021

C# Answers by Framework

Browse Popular Code Answers by Language