blocksMotion = true;
for (int i = 0; i < 6; i++) {
double x = (random.nextDouble() - 0.5);
double y = (random.nextDouble() - 0.7) * 0.3;
double z = (random.nextDouble() - 0.5);
addSprite(new Sprite(x, y, z, 4 * 8 + 6 + random.nextInt(2), Art.getCol(0x202020)));
}
}