“Compruebe si GameObject existe Unity” Código de respuesta

Compruebe si GameObject existe Unity

if (GameObject.Find("Name Of GameObject") != null)
{
    // GameObject exists
}
coreyhsGames

Unity C# Verifique cuántos de un objeto existe

TotalAmount = FindObjectsOfType<Object>().Length;
Schiytu37

Compruebe si GameObject existe Unity

GameObject cube;

void Start() {
	cube = GameObject.FindWithTag("cube"); // I like to use tag but there are alot of metos to find a object
}

void Update() {
  	if(cube != null) {
    	Destroy(cube); // if the cube exits the cube will be destoy
    } else if(cube == null) {
    	Debug.Log("No Object"); // else if the cube doesnt exits will it say No Object
    }
}

//I hope i help you this is a simple method do check if object exists
pilot rl

Respuestas similares a “Compruebe si GameObject existe Unity”

Preguntas similares a “Compruebe si GameObject existe Unity”

Más respuestas relacionadas con “Compruebe si GameObject existe Unity” en C#

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código