Closed GoogleCodeExporter closed 8 years ago
Original comment by rtaylor205@gmail.com
on 8 Aug 2010 at 5:19
no, it's not fixed.I see you fix code of Layer.clear, but it still doesn't
work. You should do like this:
public void clear() {
for(int i = 0; i < gameObjects.getCount(); i++) {
DrawableObject obj = gameObjects.get(i);
if(obj != null) {
obj .remove();
}
}
gameObjects.clear();
}
Original comment by rayjun...@gmail.com
on 9 Aug 2010 at 1:20
I call scene.clearLayer(0), it doesn't work. But call getLayer(0).clear(), it
works! How strange it is!
Original comment by rayjun...@gmail.com
on 11 Aug 2010 at 7:09
Original issue reported on code.google.com by
rayjun...@gmail.com
on 4 Aug 2010 at 10:01