Posterior a indagar en diversos repositorios y páginas webs finalmente hemos descubierto la solución que te compartiremos a continuación.
Ejemplo 1: cómo deshabilitar un gameObject unity c#
publicGameObject gameObj;//the gameobject you want to disable in the scene
gameObj.SetActive(true);//set the object to active
gameObj.SetActive(false);//set the object to disable
gameObject.SetActive(true);//change the state of the current gameobject to active
gameObject.SetActive(false);//change the state of the current gameobject to disable
Ejemplo 2: cómo desactivar objetos mediante scripts en unity
publicGameObject Name = GameObject.Find("Name");
Name.enabled =true;
valoraciones y comentarios
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)