Hey guys, I can’t kill multiple enemies who are using the same Tag.
There’s an order that I have to kill them in.
For example, I have two enemies on scene who are using the same tag “Enemy”.
In order to kill Enemy#2 I must kill Enemy#1.
Does any know a fix for this.
I’ve tried putting my enemies in to an array.
GameObject[] arrayOfGameObjects = GameObject.FindGameObjectsWithTag("Enemy");
But the next bit is how can I use that array as a resolve.
Will be grateful for responses.
Thank you.