Skip to content
Closed
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.universal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fixed multi-edit for UniversalRenderPipelineAsset.
- Fixed artifacts in Speed Tree 8 billboard LODs due to SpeedTree LOD smoothing/crossfading [case 1348407]
- Drawing order of SRPDefaultUnlit is now the same as the Built-in Render Pipeline. [case 1325883](https://issuetracker.unity3d.com/product/unity/issues/guid/1325883/)
- Fixed ShaderGraph needing updated normals for ShadowCaster in URP.

## [7.7.0] - 2021-04-28

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ class UniversalPBRSubShader : IPBRSubShader
},

// Required fields
requiredAttributes = new List<string>()
requiredVaryings = new List<string>()
{
"Attributes.normalOS",
"Varyings.normalWS",
},

// Render State Overrides
Expand Down