From e61a89da9e7e25ef8396d564e1561497956fac70 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 13 May 2026 03:02:35 +0200 Subject: [PATCH] Add edge definitions (soft shoulders) to scene document serialization test --- .../serialization/scene-document-json.test.ts | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/tests/serialization/scene-document-json.test.ts b/tests/serialization/scene-document-json.test.ts index c391ae3b..30b0b6b7 100644 --- a/tests/serialization/scene-document-json.test.ts +++ b/tests/serialization/scene-document-json.test.ts @@ -835,7 +835,23 @@ describe("scene document JSON", () => { falloff: 0.5, heightOffset: 0.03, terrainConform: true, - materialId: null + materialId: null, + edges: { + left: { + enabled: false, + kind: "softShoulder", + width: 0.35, + height: 0.12, + materialId: null + }, + right: { + enabled: false, + kind: "softShoulder", + width: 0.35, + height: 0.12, + materialId: null + } + } }); });