auto-git:

[change] src/app/App.tsx
This commit is contained in:
2026-04-22 13:58:54 +02:00
parent fb823715e5
commit b3605a4f62

View File

@@ -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";
}
}