diff --git a/test/Scripts.Integration.Test/Editor/Builder.cs b/test/Scripts.Integration.Test/Editor/Builder.cs index 23629f858..1e16b7407 100644 --- a/test/Scripts.Integration.Test/Editor/Builder.cs +++ b/test/Scripts.Integration.Test/Editor/Builder.cs @@ -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 }