Skip to content

[HDRP] Backport various PRs #6742

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
Jan 13, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
676abe4
Fix FBX Material
sebastienlagarde Jan 13, 2022
1efbfc7
[HDRP] Fix rendering when adding an incompatible platform to the proj…
alelievr Dec 16, 2021
e0159e3
Updated Physically Based Sky documentation with more warnings about w…
JulienIgnace-Unity Dec 16, 2021
584aef3
Fixed shaders craeted with the custom pass renderers template not bei…
alelievr Dec 16, 2021
a43d0ac
Fixed the fade in mode of the clouds not impacting the volumetric clo…
anisunity Dec 15, 2021
4d23805
Avoid typed load on volumetric fog filtering on platforms that don't …
FrancescoC-unity Dec 16, 2021
a4125a3
Fixed the property name of screen weight distance (#6586)
emilybrown1 Dec 16, 2021
2574e77
Documentation and images for custom mip for texture samplers (#6592)
kecho Dec 15, 2021
d85eec1
Fixed potential asymmetrical resource release in the volumetric cloud…
anisunity Dec 15, 2021
27b6b11
Fixed the intensity of the sky being reduced signficantly even if the…
anisunity Dec 16, 2021
589896f
Fixed the rt screen space shadows not using the correct asset for all…
anisunity Dec 15, 2021
a77ae96
Urp/fix 1378692 #6627
esdasuka Jan 13, 2022
4c3633d
Fixed a crash with render graph viewer #6629
JulienIgnace-Unity Dec 16, 2021
e929054
[HDRP] Fix tile/cluster debug for Decal and Fog #6635
simonb-unity Dec 17, 2021
631c113
Minor rewording of PT doc. (#6637)
eturquin Dec 16, 2021
22b1882
Changed the behavior the max ray length for recursive rendering to m…
anisunity Dec 18, 2021
14cbeeb
Fix (#6649)
FrancescoC-unity Jan 12, 2022
a891c80
[HDRP] Fix issue with dynamic RendererList culling option getting ign…
pmavridis Jan 13, 2022
90ae3cc
Review new warmup cost section (#6683)
Vic-Cooper Jan 13, 2022
6bef275
Path fixes (#6692)
Vic-Cooper Jan 13, 2022
be0516d
fixed typo "pratices" -> "practices" in ToC (#6699)
emilybrown1 Jan 13, 2022
7207148
fixed link to decal.md (#6700)
emilybrown1 Jan 13, 2022
1a9b185
Volume docs bugfixes (#6714)
Vic-Cooper Jan 13, 2022
083b2e2
NeedMotionVectorForTransparent was checking for wrong flag #6719
FrancescoC-unity Jan 12, 2022
ef92126
[HDRP][Tooltips] Fixed some tooltips for Local Volumetric Fog #6722
JMargevics Jan 13, 2022
1f126cc
[Fogbugz # 380357] Fixing negative overflowing of IES attenuation spl…
kecho Jan 11, 2022
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
Prev Previous commit
Next Next commit
Urp/fix 1378692 #6627
  • Loading branch information
esdasuka authored and sebastienlagarde committed Jan 13, 2022
commit a77ae96a8a2ae1af45421221fbd299f0c4e633cb
4 changes: 2 additions & 2 deletions com.unity.render-pipelines.core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [13.1.5] - 2021-12-17

Version Updated
The version number for this package has increased due to a version update of a related graphics package.
### Fixed
- Fixed the issue with the special Turkish i, when looking for the m_IsGlobal property in VolumeEditor. (case 1276892)

## [13.1.4] - 2021-12-04

Expand Down
2 changes: 1 addition & 1 deletion com.unity.render-pipelines.core/Editor/CoreEditorUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static string FindProperty<T, TValue>(Expression<Func<T, TValue>> expr)
// For properties, get the name of the backing field
var name = me.Member is FieldInfo
? me.Member.Name
: "m_" + me.Member.Name.Substring(0, 1).ToUpper() + me.Member.Name.Substring(1);
: "m_" + me.Member.Name.Substring(0, 1).ToUpperInvariant() + me.Member.Name.Substring(1);
members.Add(name);
me = me.Expression as MemberExpression;
}
Expand Down