“Unity habilitar gameObject” Código de respuesta

unidad cómo configurar gameObjkect habilitado

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

Unity habilitar gameObject

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

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

Respuestas similares a “Unity habilitar gameObject”

Preguntas similares a “Unity habilitar gameObject”

Más respuestas relacionadas con “Unity habilitar gameObject” en C#

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código