“Zniszcz obiekt gry” Kod odpowiedzi

Jak zniszczyć obiekt w jedności

Destroy(gameObject);
Envious Emu

Zniszcz jedność GameObject

Destroy(this.gameObject);
A guy using his dad's PC

Zniszcz obiekt gry

//Box collider is triggered
// Use "Destroy ( other.gameObject );" to destroy other game object
private void OnTriggerEnter ( Collider other )
    {
   //    if(other.tag == "Plane" ){
        Destroy ( this.gameObject );
   // }
    }
//Box collider is not triggered
//  private void OnCollisionEnter ( Collision collision )
//    {
//        Destroy ( gameObject );
//    }
M.Bilal Nawaz

Odpowiedzi podobne do “Zniszcz obiekt gry”

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

Przeglądaj inne języki kodu