“Unidade Ativar GameObject” Respostas de código

unidade como definir o gameObjkect habilitado

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

Unidade Ativar GameObject

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

Unidade Ativar 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

Respostas semelhantes a “Unidade Ativar GameObject”

Perguntas semelhantes a “Unidade Ativar GameObject”

Mais respostas relacionadas para “Unidade Ativar GameObject” em C#

Procure respostas de código populares por idioma

Procurar outros idiomas de código