can you maybe implement, that the blue circles removes themselve, if they touch the edge of the world?
also it would be nice, if you can move :)
if you don't know how:
add this to the act method of the blue circles:
if(this.getX()==0 || this.getX()==getWorld().getWidth() || this.getY()==0 || this.getY()==getWorld().getHeight())
{
removeObject(this)
}
2013/5/13