Hi! So I'm making a pokemon themed maze in which there are pokeballs to collect.
The problem is that the paint order is wrong so the pokemon(=enemies) disappear behind the pokeballs.
I tried using setPaintOrder like this:
but now only Pokemon3 is in front of the balls and the other two stil disappearbehind them,.
how can I get all three of them to the front?
setPaintOrder(Pokemon.class,Ball.class);
setPaintOrder(Pokemon2.class,Ball.class);
setPaintOrder(Pokemon3.class,Ball.class);
