“Periksa apakah GameObject ada Unity” Kode Jawaban

Periksa apakah GameObject ada Unity

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

Persatuan C# Periksa berapa banyak objek yang ada

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

Periksa apakah GameObject ada 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

Jawaban yang mirip dengan “Periksa apakah GameObject ada Unity”

Pertanyaan yang mirip dengan “Periksa apakah GameObject ada Unity”

Lebih banyak jawaban terkait untuk “Periksa apakah GameObject ada Unity” di C#

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya