We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a9c969 commit 01596c2Copy full SHA for 01596c2
PostProcessing/Editor/PostProcessLayerEditor.cs
@@ -162,6 +162,9 @@ void DoAntialiasing()
162
if (RuntimeUtilities.isSinglePassStereoSelected)
163
EditorGUILayout.HelpBox("TAA requires Unity 2017.3+ for Single-pass stereo rendering support.", MessageType.Warning);
164
#endif
165
+ var camera = m_Target.GetComponent<Camera>();
166
+ if (camera.allowDynamicResolution)
167
+ EditorGUILayout.HelpBox("TAA is not supported with Dynamic Resolution.", MessageType.Warning);
168
169
EditorGUILayout.PropertyField(m_TaaJitterSpread);
170
EditorGUILayout.PropertyField(m_TaaStationaryBlending);
0 commit comments