danpost wrote...
add to the zombie act method, if intersecting person, then if counter is 10 remove self else remove person.// in act method of Zombie class
Actor person = getOneIntersectingObject(Person.class);
if (person null)
{
if (bigZombieCounter == 10) getWorld().removeObject(this);
else getWorld().removeObject(person);
}
