wip crux floor

This commit is contained in:
Anuken
2025-06-26 21:24:56 -04:00
parent bbc8d77386
commit 3d5363692c
6 changed files with 12 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ public class ImageTileGenerator{
for(int i = 0; i < 47; i++){
int cx = i % 12, cy = i / 12;
Pixmap cropped = out.crop(cx * cellSize, cy * cellSize, cellSize, cellSize);
outputDir.child(name + "-" + i).writePng(cropped);
outputDir.child(name + "-" + i + ".png").writePng(cropped);
cropped.dispose();
}