“Unity Enable GameObject” Code-Antworten

Einheit, wie man GameObjkect aktiviert

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

Unity Enable GameObject

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

Unity Enable GameObject


 // Drag & Drop the gameobject in the inspector
 public GameObject targetGameObject ;

 public void DisableGameObject()
 {
      targetGameObject.SetActive( false ) ;
 }

 public void EnableGameObject()
 {
      targetGameObject.SetActive( true ) ;
 }

 public void ToggleGameObject()
 {
      if( targetGameObject.activeSelf )
           DisableGameObject() ;
      else
           EnableGameObject();
 }

Sore Starling

Ähnliche Antworten wie “Unity Enable GameObject”

Fragen ähnlich wie “Unity Enable GameObject”

Weitere verwandte Antworten zu “Unity Enable GameObject” auf C#

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen