“Überprüfen Sie, ob GameObject Einheit existiert” Code-Antworten

Überprüfen Sie, ob GameObject Einheit existiert

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

Einheit C# Überprüfen Sie, wie viele eines Objekts existieren

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

Überprüfen Sie, ob GameObject Einheit existiert

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

Ähnliche Antworten wie “Überprüfen Sie, ob GameObject Einheit existiert”

Fragen ähnlich wie “Überprüfen Sie, ob GameObject Einheit existiert”

Weitere verwandte Antworten zu “Überprüfen Sie, ob GameObject Einheit existiert” auf C#

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen