From 562973fed24535920cb1722cf10297ce83869477 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 13 May 2026 03:46:22 +0200 Subject: [PATCH] Add support for scene path repeaters and spline corridor assets --- src/app/App.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 2f33a5c0..4971eac1 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -238,6 +238,7 @@ import { areScenePathsEqual, createAppendedScenePathPoint, createScenePath, + createScenePathRepeater, getScenePathLabel, getScenePathPointIndex, getScenePaths, @@ -253,12 +254,24 @@ import { normalizeScenePathTerrainOffset, normalizeScenePathName, normalizeScenePathRoadMaterialId, + normalizeScenePathRepeaterAssetId, + normalizeScenePathRepeaterHeightOffset, + normalizeScenePathRepeaterInset, + normalizeScenePathRepeaterOffset, + normalizeScenePathRepeaterPlacement, + normalizeScenePathRepeaterRandomScale, + normalizeScenePathRepeaterRandomYawDegrees, + normalizeScenePathRepeaterScale, + normalizeScenePathRepeaterSpacing, + normalizeScenePathRepeaterYawOffsetDegrees, type ScenePath, type ScenePathCurveMode, + type ScenePathRepeaterPlacement, type ScenePathRoadEdgeKind, type ScenePathRoadEdgeSide, type ScenePathPoint } from "../document/paths"; +import { BUNDLED_SPLINE_CORRIDOR_ASSETS } from "../spline-corridor/bundled-spline-corridor-assets"; import { areTerrainsEqual, createTerrain,