Exemplo n.º 1
0
 void OnParticleCollision(GameObject other)
 {
     //попадание в мертвые зоны
     if (other.tag == "Damage")
     {
         myScript.Death();
     }
 }