Hey,
right now we are trying to program a level based zelda fake. :D
and our main problem is that we cannot get access of a variable in World class with an actor class. So basically in the World class we created three hearts and now we want to have access in actor class act at one of these hearts. And then later remove it.
We kind of already have a solution with:
Object herz = ((getWorld()).getObjects(Herz.class)).get(0);
Actor herz2 = (Actor) herz;
if(bombe != null) {
getWorld().removeObject(bombe);
getWorld().removeObject(herz2);
it would be awesome if you could help me. =D
PS: sry I know in theory how to write access (btw i can't edit the topic name)

