diff --git a/com.unity.render-pipelines.high-definition/Runtime/Sky/HDRISky/HDRISky.cs b/com.unity.render-pipelines.high-definition/Runtime/Sky/HDRISky/HDRISky.cs index d12bc576afd..675e2dc6d82 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/Sky/HDRISky/HDRISky.cs +++ b/com.unity.render-pipelines.high-definition/Runtime/Sky/HDRISky/HDRISky.cs @@ -179,9 +179,6 @@ public override int GetHashCode() /// Whether the settings are deemed very different. public override bool SignificantlyDivergesFrom(SkySettings otherSettings) { - if (otherSettings.GetSkyRendererType() != GetSkyRendererType()) - return true; - HDRISky otherHdriSkySettings = otherSettings as HDRISky; return base.SignificantlyDivergesFrom(otherSettings) || hdriSky.value != otherHdriSkySettings.hdriSky.value;