some attempts to resolve chunking issues

This commit is contained in:
Yggdrasil75
2026-01-19 12:33:29 -05:00
parent 835ac45c9a
commit 310b4233be
2 changed files with 126 additions and 27 deletions

View File

@@ -23,9 +23,9 @@
struct defaults {
int outWidth = 512;
int outHeight = 512;
int gridWidth = 512;
int gridHeight = 512;
int gridDepth = 512;
int gridWidth = 256;
int gridHeight = 256;
int gridDepth = 256;
float fps = 30.0f;
PNoise2 noise = PNoise2(42);
};