Skip to content

Commit 6cea68f

Browse files
authored
Task/hdrp outline issue (#329)
* Updated HDRP graphics test project version for Unity 2023.1.x * fixed: null reference exception in HDRPToonGUI-Tessellation.cs
1 parent 64a97cb commit 6cea68f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

TestProjects/HdrpGraphicsTest-2023.1/Packages/manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"dependencies": {
3-
"com.unity.ai.navigation": "1.1.3",
4-
"com.unity.ide.rider": "3.0.22",
3+
"com.unity.ai.navigation": "1.1.4",
4+
"com.unity.ide.rider": "3.0.24",
55
"com.unity.ide.visualstudio": "2.0.18",
66
"com.unity.package-validation-suite": "0.10.0-preview",
77
"com.unity.raytracedhardshadow": "https://github.com/unity3d-jp/RaytracedHardShadow.git#bbba12aaf3e7c6fb1c198746ef9a0fcf408b79b9",
88
"com.unity.recorder": "4.0.1",
99
"com.unity.render-pipelines.high-definition": "15.0.6",
10-
"com.unity.test-framework": "1.3.5",
10+
"com.unity.test-framework": "1.3.7",
1111
"com.unity.test-framework.build": "0.0.1-preview.14",
1212
"com.unity.test-framework.utp-reporter": "1.0.2-preview",
1313
"com.unity.testframework.graphics": "7.17.1-exp.1",
1414
"com.unity.textmeshpro": "3.0.6",
1515
"com.unity.toonshader": "file:../../../com.unity.toonshader",
1616
"com.unity.ugui": "1.0.0",
17-
"com.unity.xr.management": "4.3.3",
17+
"com.unity.xr.management": "4.4.0",
1818
"com.unity.modules.ai": "1.0.0",
1919
"com.unity.modules.androidjni": "1.0.0",
2020
"com.unity.modules.animation": "1.0.0",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
m_EditorVersion: 2023.1.0f1
2-
m_EditorVersionWithRevision: 2023.1.0f1 (a008fa768e6c)
1+
m_EditorVersion: 2023.1.9f1
2+
m_EditorVersionWithRevision: 2023.1.9f1 (f3f94c8cdc49)

TestProjects/HdrpGraphicsTest-2023.1/ProjectSettings/VFXManager.asset

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ VFXManager:
1212
m_MaxDeltaTime: 0.05
1313
m_MaxScrubTime: 30
1414
m_MaxCapacity: 100000000
15-
m_CompiledVersion: 6
16-
m_RuntimeVersion: 33
15+
m_CompiledVersion: 7
16+
m_RuntimeVersion: 34
1717
m_RuntimeResources: {fileID: 11400000, guid: bc10b42afe3813544bffd38ae2cd893d, type: 2}
1818
m_BatchEmptyLifetime: 300

com.unity.toonshader/Editor/HDRP/HDRPToonGUI-Tessellation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ void DrawDelayedFloatProperty(MaterialProperty prop, GUIContent content)
9898
}
9999
void TessellationModePopup()
100100
{
101-
EditorGUI.showMixedValue = tessellationMode.hasMixedValue;
101+
EditorGUI.showMixedValue = tessellationMode == null ? false: tessellationMode.hasMixedValue;
102102
TessellationMode mode = TessellationMode.None;
103103
mode = (TessellationMode)tessellationMode?.floatValue;
104104

0 commit comments

Comments
 (0)