Skip to content
This repository was archived by the owner on Nov 30, 2020. It is now read-only.

Commit 984927d

Browse files
committed
Added a note in the motion blur UI about multi-frame blending lowering the color precision
1 parent 96bf37d commit 984927d

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

PostProcessing/Editor/Models/MotionBlurModelEditor.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,15 @@ public override void OnInspectorGUI()
185185

186186
EditorGUILayout.LabelField("Multiple Frame Blending", EditorStyles.boldLabel);
187187
EditorGUI.indentLevel++;
188-
m_GraphDrawer.DrawBlendingGraph(m_FrameBlending.floatValue);
188+
189+
float fbValue = m_FrameBlending.floatValue;
190+
m_GraphDrawer.DrawBlendingGraph(fbValue);
189191
EditorGUILayout.PropertyField(m_FrameBlending);
192+
193+
if (fbValue > 0f)
194+
EditorGUILayout.HelpBox("Multi-Frame Blending lowers precision of the final picture for optimization purposes.", MessageType.Info);
195+
196+
190197
EditorGUI.indentLevel--;
191198
}
192199
}

0 commit comments

Comments
 (0)