From b55d58b9feda1fa2224c5ad39857b43020d152e2 Mon Sep 17 00:00:00 2001 From: Jarrod Doyle Date: Sun, 22 Sep 2024 15:03:24 +0100 Subject: [PATCH] Fix incorrect radius on object light --- KeepersCompound.Lightmapper/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KeepersCompound.Lightmapper/Program.cs b/KeepersCompound.Lightmapper/Program.cs index 0355ade..1471989 100644 --- a/KeepersCompound.Lightmapper/Program.cs +++ b/KeepersCompound.Lightmapper/Program.cs @@ -51,7 +51,7 @@ class Program { position = brush.position, color = HsbToRgb(lightColor.Hue * 360, lightColor.Saturation, light.Brightness), - radius = light.Brightness, + radius = light.Radius, }); } else