From 8ef151a07e8cb981d937c35bbeea3754e2702a74 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 5 May 2026 11:24:29 -0700 Subject: [PATCH] feat(editor): include tileSize/chunkSize constants in WOT metadata --- tools/editor/wowee_terrain.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/editor/wowee_terrain.cpp b/tools/editor/wowee_terrain.cpp index 882234ba..4c536826 100644 --- a/tools/editor/wowee_terrain.cpp +++ b/tools/editor/wowee_terrain.cpp @@ -53,6 +53,8 @@ bool WoweeTerrain::exportOpen(const pipeline::ADTTerrain& terrain, f << "\n"; } f << " ],\n"; + f << " \"tileSize\": 533.33333,\n"; + f << " \"chunkSize\": 33.33333,\n"; f << " \"chunkLayers\": [\n"; for (int ci = 0; ci < 256; ci++) { const auto& chunk = terrain.chunks[ci];