“Destruir el objeto del juego” Código de respuesta

Cómo destruir un objeto en la unidad

Destroy(gameObject);
Envious Emu

Destruir la unidad de GameObject

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

Destruir el objeto del juego

//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

Respuestas similares a “Destruir el objeto del juego”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código