using UnityEngine;
using System.Collections;
using UnityEngine.SceneManagement;
public class Destroy : MonoBehaviour
{
public GameObject explosion; //игровой объект для взрыва астеройда
public GameObject playerExplosion; //игровой объект для взрыва корабля игрока
void OnTriggerEnter(Collider other)
{
if (other.tag == "Player")
{
}
Destroy(gameObject);
Destroy(other.gameObject);
}
}