I want to check if there are anymore zombies on the screen. Is there a way to use FindWithTag? I tried if(GameObject.FindWithTag(“Zombie”) == null) but that did not work. Thanks!
This is probably an equivalent, but what about:
if (!GameObject.FindWithTag("Zombie"))
print("No Zombies");