Юнити пишет: "MissingReferenceException: The object of type 'GameObject' has been destroyed but you are still trying to access it.". Я понимаю суть ошибки, но в скрипте не знаю как оформить. Скрипт:
using UnityEngine;
using System.Collections;
public class Destroy : MonoBehaviour
{
public GameObject explosion; //игровой объект для взрыва астеройда
public GameObject playerExplosion; //игровой объект для взрыва корабля игрока
void OnTriggerEnter(Collider other)
{
Instantiate(explosion, transform.position, transform.rotation); //создание взрыва при уничтожении астеройда
if (other.tag == "Player" || other.tag == "Govno")
{
Instantiate(playerExplosion, other.transform.position, other.transform.rotation); //создание взрыва при уничтожении корабля игрока
}
Destroy(other.gameObject);
Destroy(gameObject);
}
}