diff --git a/com.unity.render-pipelines.universal/CHANGELOG.md b/com.unity.render-pipelines.universal/CHANGELOG.md index 7e34349a1ec..1570a7467e5 100644 --- a/com.unity.render-pipelines.universal/CHANGELOG.md +++ b/com.unity.render-pipelines.universal/CHANGELOG.md @@ -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 diff --git a/com.unity.render-pipelines.universal/Editor/ShaderGraph/SubShaders/UniversalPBRSubShader.cs b/com.unity.render-pipelines.universal/Editor/ShaderGraph/SubShaders/UniversalPBRSubShader.cs index d78891fe206..4053235676e 100644 --- a/com.unity.render-pipelines.universal/Editor/ShaderGraph/SubShaders/UniversalPBRSubShader.cs +++ b/com.unity.render-pipelines.universal/Editor/ShaderGraph/SubShaders/UniversalPBRSubShader.cs @@ -165,9 +165,9 @@ class UniversalPBRSubShader : IPBRSubShader }, // Required fields - requiredAttributes = new List() + requiredVaryings = new List() { - "Attributes.normalOS", + "Varyings.normalWS", }, // Render State Overrides