Skip to content
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

Internal/master #7521

Merged
merged 39 commits into from
Jun 30, 2022
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
b0b760e
[YAMATO][HDRP] Divided HDRP playmode test run time by two.
JulienIgnace-Unity Jun 15, 2022
e55505a
New iteration on the water system.
anisunity Jun 15, 2022
b9601b7
[RND-175][URP-964] SSAO Improvements
ellioman Jun 15, 2022
db55fe7
MTT-1785 Marked player settings BuildTargetGroup API as obsolete
cdmazom Jun 15, 2022
62cc093
[URP] Render Graph hotfixes (v2)
jonuuukas Jun 15, 2022
955a832
[URP][2D] Fix vertex color for Sprite Shapes in default URP shaders a…
kennytann Jun 22, 2022
883dd15
[HDRP] Updates to Diffusion profiles handling
adrien-de-tocqueville Jun 22, 2022
61df766
[URP][2D] Fix bug where render target is incorrect when post process …
kennytann Jun 22, 2022
0b1571d
Rendering Layers
lukaschod Jun 22, 2022
a5d317d
Deprecated DrawX commands on the SRPContext + Updated URP&HDRP (v2)
debaetsd Jun 22, 2022
f529672
Changed ACES luminance fit to allow pure whites
sebastienlagarde Jun 22, 2022
e76b183
URP Automatic Alpha-To-Coverage Regression Fixes
gmitrano-unity Jun 22, 2022
46f4136
[URP] Depth Priming + DepthNormalsPass + MSAA fix
manuele-bonanno Jun 22, 2022
6c4197e
Significant improvements to TAA ghosting, added control for jitter sc…
FrancescoC-unity Jun 22, 2022
3b27c69
[Fogbugz 1375978, 1413534] Fixed pb dof artifacts
pmavridis Jun 22, 2022
5e9057a
[VFX] Update Cube Mesh Test
PaulDemeulenaere Jun 22, 2022
e454c59
[Fogbugz # 1423890] Virtual Texturing feedback support feedback for t…
kecho Jun 22, 2022
180c3cf
Fix incorrect use of half for lighting attenuation.
eh-unity Jun 28, 2022
7529e50
[URP] Fixing broken Foundation tests on iPhone
ellioman Jun 28, 2022
f3de423
Add debug view for Motion Vector Intensities
FrancescoC-unity Jun 28, 2022
e26054d
[HDRP] Fix compile error on certain platforms that load the denoising…
pmavridis Jun 28, 2022
fdfd800
[URP] MSAA Swapbuffer fix for Post-processing (v2)
jonuuukas Jun 28, 2022
c38dda0
[23.1][URP][2D] Fix Light2D upgrading issue with m_AlphaBlendOnOverla…
kennytann Jun 28, 2022
82c5374
Fix explicit precision texture declaration macros to emit Texture2D<h…
joravainen Jun 28, 2022
ddf46a2
[URP] Moving the Render Graph toggle from Global Settings to the URP …
manuele-bonanno Jun 28, 2022
24102a0
Public Api doc improvements for URP, 2D URP and Core
ellioman Jun 28, 2022
3a97459
Add Apple Silicon reference images for URP test projects
theopnv Jun 28, 2022
aee83ab
[HDRP] bunch of bug fixes for HDRP (version 5)
sebastienlagarde Jun 28, 2022
1f501a7
Bump graphics packages to 15.0.0
theopnv Jun 28, 2022
76a5e5a
Fix HDRP Yamato issues
sebastienlagarde Jun 28, 2022
d8e5463
[HDRP] quality Review HDRP doc by doc team - 2 - bis
sebastienlagarde Jun 28, 2022
f26d188
[URP] PostPro project: Adding a #if check for XRSettings conditional …
ellioman Jun 28, 2022
7ba7cdf
[VFX] Fix MotionVector with TargetOffset
PaulDemeulenaere Jun 28, 2022
8eb03c2
[URP][RenderGraph] Added URP postfx passes to URP Render Graph (v5)
thomas-zeng Jun 28, 2022
c5ab2fd
[RPW] Tooltips improvement
kirill-titov-u Jun 28, 2022
0e80090
Add .buginfo files to URP folders
pbbastian Jun 28, 2022
043969f
[HDRP] Always use diffusion profiles in previews
adrien-de-tocqueville Jun 28, 2022
9ae0537
[RPW] Allow shader from HDRP and URP correctly fallback to error shader
kirill-titov-u Jun 28, 2022
ba30079
A error is thrown when creating an Output Particle Lit Decal
julienamsellem Jun 28, 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
A error is thrown when creating an Output Particle Lit Decal
https://jira.unity3d.com/browse/UUM-6685

- Create or open a VFX Graph
- Right click to open the context menu
- Create an Output Particle Lit Decal

=> An exception is thrown in the console and the output context is broken (see screenshot)

Actual result
![](https://jira.unity3d.com/secure/attachment/491614/Unity_Q0marrXciA.png )
Expected result
![](https://jira.unity3d.com/secure/attachment/491615/Unity_Mp1e7nkKOj.png )
  • Loading branch information
julienamsellem committed Jun 28, 2022
commit ba30079cc002a2918388a57dbe4fe2a1f678a2c9
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ void DelayedNotifyValueChange()

protected override void UpdateIndeterminate()
{
m_VectorField.indeterminate = indeterminate;
if (m_VectorField != null)
m_VectorField.indeterminate = indeterminate;
if (m_Slider != null)
m_Slider.indeterminate = indeterminate;
}
Expand Down