Answers for "unity enable and disable gameobject"

C#
15

unity c# set gameobject active

gameObject.SetActive(true)
Posted by: Guest on February-09-2020
10

unity enable gameobject

GameObject.Find("PlayMenu 3").SetActive(false);
// you could also store a GameObject as  variable
Posted by: Guest on May-10-2020
11

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
4

deactivate a gameobject unity

public void SetActive(bool value);
Posted by: Guest on March-26-2020
0

how to enable and disable gameobjects c#

public Gameobject test;

test.SetActive(false);
Posted by: Guest on July-07-2021
0

unity enable and disable gameobject

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

Code answers related to "unity enable and disable gameobject"

C# Answers by Framework

Browse Popular Code Answers by Language