Skip to content

Commit 88bde23

Browse files
FrancescoC-unitysebastienlagarde
authored andcommitted
Force post process parent setting to be before child settings #799
1 parent c8e4097 commit 88bde23

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

com.unity.render-pipelines.high-definition/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
141141
- Workaround an issue caused by GetKernelThreadGroupSizes failing to retrieve correct group size.
142142
- Fixed transparent motion vector framesetting not sanitized.
143143
- Fix reflection probe frame settings override
144+
- Fixed wrong order of post process frame settings.
144145

145146
### Changed
146147
- Rejecting history for ray traced reflections based on a threshold evaluated on the neighborhood of the sampled history.

com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/Settings/FrameSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public enum FrameSettingsField
138138
[FrameSettingsField(0, autoName: Distortion, tooltip: "When enabled, HDRP processes a distortion render pass for Cameras using these Frame Settings (Depends on \"Distortion\" in current HDRP Asset).")]
139139
Distortion = 14,
140140
/// <summary>When enabled, HDRP processes a post-processing render pass for Cameras using these Frame Settings.</summary>
141-
[FrameSettingsField(0, displayedName: "Post-process", tooltip: "When enabled, HDRP processes a post-processing render pass for Cameras using these Frame Settings.")]
141+
[FrameSettingsField(0, displayedName: "Post-process", customOrderInGroup: 17, tooltip: "When enabled, HDRP processes a post-processing render pass for Cameras using these Frame Settings.")]
142142
Postprocess = 15,
143143
/// <summary>When enabled, HDRP render user written post processes.</summary>
144144
[FrameSettingsField(0, displayedName: "Custom Post-process", positiveDependencies: new[] { Postprocess }, customOrderInGroup: 17, tooltip: "When enabled, HDRP render user written post processes.")]

0 commit comments

Comments
 (0)