Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,12 @@ public override void OnInspectorGUI()

using (new QualityScope(this))
{
PropertyField(m_MaximumRadiusInPixels, EditorGUIUtility.TrTextContent("Maximum Radius In Pixels", "This poses a maximum radius in pixels that we consider. It is very important to keep this as tight as possible to preserve good performance. Note that this is the value used for 1080p when *not* running the effect at full resolution, it will be scaled accordingly for other resolutions."));
PropertyField(m_FullResolution, EditorGUIUtility.TrTextContent("Full Resolution", "The effect runs at full resolution. This increases quality, but also decreases performance significantly."));
PropertyField(m_StepCount, EditorGUIUtility.TrTextContent("Step Count", "Number of steps to take along one signed direction during horizon search (this is the number of steps in positive and negative direction)."));
using (new HDEditorUtils.IndentScope())
{
PropertyField(m_MaximumRadiusInPixels, EditorGUIUtility.TrTextContent("Maximum Radius In Pixels", "This poses a maximum radius in pixels that we consider. It is very important to keep this as tight as possible to preserve good performance. Note that this is the value used for 1080p when *not* running the effect at full resolution, it will be scaled accordingly for other resolutions."));
PropertyField(m_FullResolution, EditorGUIUtility.TrTextContent("Full Resolution", "The effect runs at full resolution. This increases quality, but also decreases performance significantly."));
PropertyField(m_StepCount, EditorGUIUtility.TrTextContent("Step Count", "Number of steps to take along one signed direction during horizon search (this is the number of steps in positive and negative direction)."));
}

PropertyField(m_TemporalAccumulation, EditorGUIUtility.TrTextContent("Temporal Accumulation", "Whether the results are accumulated over time or not. This can get better results cheaper, but it can lead to temporal artifacts. Requires Motion Vectors to be enabled."));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public override void OnInspectorGUI()

base.OnInspectorGUI();

using (new HDEditorUtils.IndentScope())
using (new QualityScope(this))
{
PropertyField(m_SampleCount, EditorGUIUtility.TrTextContent("Sample Count", "Controls the number of samples HDRP uses for ray casting."));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sealed class ChromaticAberrationEditor : VolumeComponentWithQualityEditor
public override void OnEnable()
{
var o = new PropertyFetcher<ChromaticAberration>(serializedObject);

m_SpectralLUT = Unpack(o.Find(x => x.spectralLut));
m_Intensity = Unpack(o.Find(x => x.intensity));
m_MaxSamples = Unpack(o.Find("m_MaxSamples"));
Expand All @@ -29,6 +29,7 @@ public override void OnInspectorGUI()

base.OnInspectorGUI();

using (new HDEditorUtils.IndentScope())
using (new QualityScope(this))
{
PropertyField(m_MaxSamples);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public override void OnInspectorGUI()

base.OnInspectorGUI();

using (new HDEditorUtils.IndentScope())
using (new QualityScope(this))
{
PropertyField(m_SampleCount);
Expand Down