From bf602a69642bbae3638efcfe1fc70cea050bfec3 Mon Sep 17 00:00:00 2001 From: Jarrod Doyle Date: Thu, 26 Dec 2024 14:03:24 +0000 Subject: [PATCH] Use anim light max brightness for light brightness --- KeepersCompound.Lightmapper/LightMapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KeepersCompound.Lightmapper/LightMapper.cs b/KeepersCompound.Lightmapper/LightMapper.cs index 65e22ea..2c87112 100644 --- a/KeepersCompound.Lightmapper/LightMapper.cs +++ b/KeepersCompound.Lightmapper/LightMapper.cs @@ -272,7 +272,7 @@ public class LightMapper { Position = propAnimLight.Offset, Color = Utils.HsbToRgb(propLightColor.Hue, propLightColor.Saturation, propAnimLight.MaxBrightness), - Brightness = propAnimLight.Brightness, + Brightness = propAnimLight.MaxBrightness, InnerRadius = propAnimLight.InnerRadius, Radius = propAnimLight.Radius, R2 = propAnimLight.Radius * propAnimLight.Radius,