From 66567a7ba1d664f66a110037990fab6c4fa15029 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 2 May 2026 11:33:59 +0200 Subject: [PATCH] Test serialization of foliage blocker mask in project document JSON --- tests/serialization/project-document-json.test.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/serialization/project-document-json.test.ts b/tests/serialization/project-document-json.test.ts index e510656c..953dae05 100644 --- a/tests/serialization/project-document-json.test.ts +++ b/tests/serialization/project-document-json.test.ts @@ -196,7 +196,12 @@ describe("project document JSON", () => { resolutionZ: 2, values: [0, 0.2, 0.4, 1] }) - } + }, + foliageBlockerMask: createTerrainFoliageBlockerMask({ + resolutionX: 2, + resolutionZ: 2, + values: [0, 0.5, 1, 0] + }) }); const scene = document.scenes[document.activeSceneId]!;