“Sprawdź, czy GameObject istnieje jedność” Kod odpowiedzi

Sprawdź, czy GameObject istnieje jedność

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

Unity C# Sprawdź, ile istnieje obiekt

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

Sprawdź, czy GameObject istnieje jedność

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

Odpowiedzi podobne do “Sprawdź, czy GameObject istnieje jedność”

Pytania podobne do “Sprawdź, czy GameObject istnieje jedność”

Więcej pokrewnych odpowiedzi na “Sprawdź, czy GameObject istnieje jedność” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu