“Unity włącz gameObject” Kod odpowiedzi

Unity Jak ustawić GameObjKect

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

Unity włącz gameObject

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

Unity włącz 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

Odpowiedzi podobne do “Unity włącz gameObject”

Pytania podobne do “Unity włącz gameObject”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu