Add anim light cutoff to lighting settings
This commit is contained in:
parent
bf602a6964
commit
196f739afd
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue