Cómo hacer un sistema parcial para destruirse después de terminar
GameObject explosion = Instantiate(_Explosion, transform.position, Quaternion.identity);
Destroy(explosion, explosion.GetComponent<ParticleSystem>().main.duration);
Wrong Wombat