Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions test/Scripts.Integration.Test/Editor/Builder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -254,10 +254,11 @@ private static void DisableUnityAudio()
// The Progressive Lightmapper does not work on silicone CPUs and there is no GPU in CI
private static void DisableProgressiveLightMapper()
{
#if UNITY_2021_OR_NEWER
#if UNITY_2021_1_OR_NEWER
Lightmapping.lightingSettings = new LightingSettings
{
bakedGI = false
bakedGI = false,
realtimeGI = false
};
#endif
}
Expand Down
Loading