From b3605a4f62f60be2fd35ccf961b1aea13b7d58a9 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 22 Apr 2026 13:58:54 +0200 Subject: [PATCH] auto-git: [change] src/app/App.tsx --- src/app/App.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 74206341..86d04864 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -2065,6 +2065,17 @@ function formatBoxVolumeModeLabel(mode: BoxBrushVolumeMode): string { return "Water"; case "fog": return "Fog"; + case "light": + return "Light"; + } +} + +function formatBoxLightFalloffLabel(mode: BoxBrushLightFalloffMode): string { + switch (mode) { + case "linear": + return "Linear"; + case "smoothstep": + return "Smoothstep"; } }