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
1 change: 1 addition & 0 deletions com.unity.render-pipelines.high-definition/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fixed an inconsistency between perf mode and quality mode for material simplification in RTGI (case 1350590).
- Fixed an issue that clamped the volumetric clouds offset value (case 1357318).
- Fixed the volumetric clouds having no control over the vertical wind (case 1354920).
- Fixed the fallback sun for volumetric clouds having a non null intensity (case 1353955).

### Changed
- Changed Window/Render Pipeline/HD Render Pipeline Wizard to Window/Rendering/HDRP Wizard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ void UpdateShaderVariableslClouds(ref ShaderVariablesClouds cb, HDCamera hdCamer
cb._SunRight = Vector3.right;
cb._SunUp = Vector3.forward;

cb._SunLightColor = Vector3.one;
cb._SunLightColor = Vector3.zero;
cb._ExposureSunColor = 0;
}

Expand Down