“Unity Activer GameObject” Réponses codées

Unity Comment définir GameObjkect activé

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

Unity Activer GameObject

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

Unity Activer 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

Réponses similaires à “Unity Activer GameObject”

Questions similaires à “Unity Activer GameObject”

Plus de réponses similaires à “Unity Activer GameObject” dans C#

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code