if(plane.getState()==PlaneState.DEAD){
return;
}
long delta= System.currentTimeMillis()-startTime;
if(delta/10000>bombList.size()){
Bomb newBomb= new Bomb(this);
bombList.add(newBomb);
getChildren().add(newBomb);
}
clouds.stepSimulation();
for(Bomb bomb : bombList){