diff --git a/KeepersCompound.Lightmapper/LightMapper.cs b/KeepersCompound.Lightmapper/LightMapper.cs index 2c87112..71977e7 100644 --- a/KeepersCompound.Lightmapper/LightMapper.cs +++ b/KeepersCompound.Lightmapper/LightMapper.cs @@ -25,6 +25,7 @@ public class LightMapper public float MultiSamplingCenterWeight; public bool LightmappedWater; public SunSettings Sunlight; + public uint AnimLightCutoff; } private ResourcePathManager.CampaignResources _campaign; @@ -85,6 +86,7 @@ public class LightMapper MultiSamplingCenterWeight = lmParams.CenterWeight, LightmappedWater = lmParams.LightmappedWater, Sunlight = sunlightSettings, + AnimLightCutoff = lmParams.AnimLightCutoff, }; Timing.TimeStage("Gather Lights", BuildLightList);