diff --git a/PostProcessing/Runtime/PostProcessLayer.cs b/PostProcessing/Runtime/PostProcessLayer.cs index dc9ac7d4..45433152 100644 --- a/PostProcessing/Runtime/PostProcessLayer.cs +++ b/PostProcessing/Runtime/PostProcessLayer.cs @@ -428,7 +428,8 @@ void OnPreCull() #if UNITY_2018_2_OR_NEWER if (!m_Camera.usePhysicalProperties) #endif - m_Camera.ResetProjectionMatrix(); + if (m_CurrentContext.IsTemporalAntialiasingActive()) + m_Camera.ResetProjectionMatrix(); m_Camera.nonJitteredProjectionMatrix = m_Camera.projectionMatrix; #if ENABLE_VR