From 8085a9e3683985089820590cec4656d7ba9e7549 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 29 Apr 2026 23:17:46 +0200 Subject: [PATCH] Update RuntimeTerrainRenderObjects interface to use detail and distant materials --- src/runtime-three/runtime-host.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/runtime-three/runtime-host.ts b/src/runtime-three/runtime-host.ts index 27e2796e..0e34ab5f 100644 --- a/src/runtime-three/runtime-host.ts +++ b/src/runtime-three/runtime-host.ts @@ -252,7 +252,8 @@ interface RuntimeTerrainRenderChunkObjects { interface RuntimeTerrainRenderObjects { group: Group; chunks: RuntimeTerrainRenderChunkObjects[]; - material: Material; + detailMaterial: Material; + distantMaterial: Material; } function createRuntimeGeometryBrush(brush: RuntimeBoxBrushInstance): Brush {