com.valectric.mooserunner 2.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/CLI~/mooserunnerCli.exe +0 -0
  3. package/CLI~/mooserunnerCliDaemon.exe +0 -0
  4. package/Editor/GUI/MooseRunnerFail.png +0 -0
  5. package/Editor/GUI/MooseRunnerFail.png.meta +140 -0
  6. package/Editor/GUI/MooseRunnerGreenLED.png +0 -0
  7. package/Editor/GUI/MooseRunnerGreenLED.png.meta +140 -0
  8. package/Editor/GUI/MooseRunnerLogoBannerSmall.png +0 -0
  9. package/Editor/GUI/MooseRunnerLogoBannerSmall.png.meta +140 -0
  10. package/Editor/GUI/MooseRunnerNotRun.png +0 -0
  11. package/Editor/GUI/MooseRunnerNotRun.png.meta +140 -0
  12. package/Editor/GUI/MooseRunnerPass.png +0 -0
  13. package/Editor/GUI/MooseRunnerPass.png.meta +140 -0
  14. package/Editor/GUI/MooseRunnerYellowLED.png +0 -0
  15. package/Editor/GUI/MooseRunnerYellowLED.png.meta +140 -0
  16. package/Editor/MooseRunner.Editor.asmdef +17 -0
  17. package/Editor/MooseRunner.Editor.asmdef.meta +7 -0
  18. package/Editor/MooseRunner.Internal.Editor.dll +0 -0
  19. package/Editor/MooseRunner.Internal.Editor.dll.meta +33 -0
  20. package/Editor/MooseRunner.SessionRecorder.dll +0 -0
  21. package/Editor/MooseRunner.SessionRecorder.dll.meta +33 -0
  22. package/Editor/MooseRunner.Worker.dll +0 -0
  23. package/Editor/MooseRunner.Worker.dll.meta +33 -0
  24. package/Editor/_WrapperStub.cs +3 -0
  25. package/Editor/_WrapperStub.cs.meta +11 -0
  26. package/LICENSE.md +28 -0
  27. package/README.md +347 -0
  28. package/Runtime/Helpers/DoNotDestroyOnTeardown/DoNotDestroyOnTeardown.cs +262 -0
  29. package/Runtime/Helpers/DoNotDestroyOnTeardown/DoNotDestroyOnTeardown.cs.meta +2 -0
  30. package/Runtime/Helpers/DoNotDestroyOnTeardown/MooseRunner.helper.asmdef +18 -0
  31. package/Runtime/Helpers/DoNotDestroyOnTeardown/MooseRunner.helper.asmdef.meta +7 -0
  32. package/Runtime/MooseRunner.Helpers.Runtime.dll +0 -0
  33. package/Runtime/MooseRunner.Helpers.Runtime.dll.meta +27 -0
  34. package/Runtime/MooseRunner.Internal.dll +0 -0
  35. package/Runtime/MooseRunner.Internal.dll.meta +27 -0
  36. package/Runtime/MooseRunner.Multiplaytest.Types.dll +0 -0
  37. package/Runtime/MooseRunner.Multiplaytest.Types.dll.meta +27 -0
  38. package/Runtime/MooseRunner.Runtime.asmdef +20 -0
  39. package/Runtime/MooseRunner.Runtime.asmdef.meta +7 -0
  40. package/Runtime/MooseRunner.SessionRecorder.Runtime.dll +0 -0
  41. package/Runtime/MooseRunner.SessionRecorder.Runtime.dll.meta +27 -0
  42. package/Runtime/MooseRunner.dll +0 -0
  43. package/Runtime/MooseRunner.dll.meta +27 -0
  44. package/Runtime/_WrapperStub.cs +3 -0
  45. package/Runtime/_WrapperStub.cs.meta +11 -0
  46. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/BatchCancellationTests.cs +37 -0
  47. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/BatchCancellationTests.cs.meta +2 -0
  48. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/CancellationTokenTests.cs +186 -0
  49. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/CancellationTokenTests.cs.meta +2 -0
  50. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/MooseRunner.Demo.CancellationTokens.Tests.asmdef +28 -0
  51. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/MooseRunner.Demo.CancellationTokens.Tests.asmdef.meta +7 -0
  52. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/SetupTeardownCancellationTests.cs +84 -0
  53. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/SetupTeardownCancellationTests.cs.meta +2 -0
  54. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/TESTING_INSTRUCTIONS.md +491 -0
  55. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/TESTING_INSTRUCTIONS.md.meta +7 -0
  56. package/Samples~/Demos/MooseRunner.Demo.ErrorHandling.Tests/ErrorHandelingTest.cs +177 -0
  57. package/Samples~/Demos/MooseRunner.Demo.ErrorHandling.Tests/ErrorHandelingTest.cs.meta +11 -0
  58. package/Samples~/Demos/MooseRunner.Demo.ErrorHandling.Tests/MooseRunner.Demo.ErrorHandling.Tests.asmdef +28 -0
  59. package/Samples~/Demos/MooseRunner.Demo.ErrorHandling.Tests/MooseRunner.Demo.ErrorHandling.Tests.asmdef.meta +7 -0
  60. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/LogEntry.cs +51 -0
  61. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/LogEntry.cs.meta +11 -0
  62. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/LogFileParser.cs +70 -0
  63. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/LogFileParser.cs.meta +11 -0
  64. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunner.Demo.Flow.TestSupport.asmdef +22 -0
  65. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunner.Demo.Flow.TestSupport.asmdef.meta +7 -0
  66. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference.json +62 -0
  67. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference.json.meta +7 -0
  68. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference_2.json +33 -0
  69. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference_2.json.meta +7 -0
  70. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference_No_UniTask.json +57 -0
  71. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference_No_UniTask.json.meta +7 -0
  72. package/Samples~/Demos/MooseRunner.Demo.OrderAttribute/MethodOrderAttributeTests.cs +62 -0
  73. package/Samples~/Demos/MooseRunner.Demo.OrderAttribute/MethodOrderAttributeTests.cs.meta +2 -0
  74. package/Samples~/Demos/MooseRunner.Demo.OrderAttribute/MooseRunner.Demo.OrderAttribute.asmdef +20 -0
  75. package/Samples~/Demos/MooseRunner.Demo.OrderAttribute/MooseRunner.Demo.OrderAttribute.asmdef.meta +7 -0
  76. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/CatAnimation.controller +276 -0
  77. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/CatAnimation.controller.meta +8 -0
  78. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Enemy.cs +101 -0
  79. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Enemy.cs.meta +11 -0
  80. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/FireComponent.cs +19 -0
  81. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/FireComponent.cs.meta +3 -0
  82. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Model/Ghost_cat.fbx +0 -0
  83. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Model/Ghost_cat.fbx.meta +547 -0
  84. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Model.meta +8 -0
  85. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/MooseRunner.Demo.RealUseCase.asmdef +29 -0
  86. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/MooseRunner.Demo.RealUseCase.asmdef.meta +7 -0
  87. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/RealUseCaseScene.unity +4758 -0
  88. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/RealUseCaseScene.unity.meta +7 -0
  89. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/RealUseCaseTest.cs +307 -0
  90. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/RealUseCaseTest.cs.meta +3 -0
  91. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Resources/Ghost_cat.prefab +157 -0
  92. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Resources/Ghost_cat.prefab.meta +7 -0
  93. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Resources.meta +8 -0
  94. package/Samples~/Demos/MooseRunner.Demo.Support/MessageDisplayManager.cs +291 -0
  95. package/Samples~/Demos/MooseRunner.Demo.Support/MessageDisplayManager.cs.meta +11 -0
  96. package/Samples~/Demos/MooseRunner.Demo.Support/MooseRunner.Demo.Support.asmdef +19 -0
  97. package/Samples~/Demos/MooseRunner.Demo.Support/MooseRunner.Demo.Support.asmdef.meta +7 -0
  98. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestBase1.cs +71 -0
  99. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestBase1.cs.meta +11 -0
  100. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestClass1.cs +301 -0
  101. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestClass1.cs.meta +11 -0
  102. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestClass2.cs +69 -0
  103. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestClass2.cs.meta +11 -0
  104. package/Samples~/Demos/MooseRunner.Demo.Tests/ExplicitAttributeTests.cs +36 -0
  105. package/Samples~/Demos/MooseRunner.Demo.Tests/ExplicitAttributeTests.cs.meta +2 -0
  106. package/Samples~/Demos/MooseRunner.Demo.Tests/HumanReviewModeDemo.cs +99 -0
  107. package/Samples~/Demos/MooseRunner.Demo.Tests/HumanReviewModeDemo.cs.meta +2 -0
  108. package/Samples~/Demos/MooseRunner.Demo.Tests/InstanceHandlingVerificationTest.cs +99 -0
  109. package/Samples~/Demos/MooseRunner.Demo.Tests/InstanceHandlingVerificationTest.cs.meta +2 -0
  110. package/Samples~/Demos/MooseRunner.Demo.Tests/MooseRunner.Demo.Tests.asmdef +23 -0
  111. package/Samples~/Demos/MooseRunner.Demo.Tests/MooseRunner.Demo.Tests.asmdef.meta +7 -0
  112. package/Samples~/Demos/MooseRunner.Demo.Tests/PauseTestExecutionDemo.cs +74 -0
  113. package/Samples~/Demos/MooseRunner.Demo.Tests/PauseTestExecutionDemo.cs.meta +2 -0
  114. package/Samples~/Demos/TestResources/OneCamera/Materials/Background.mat +137 -0
  115. package/Samples~/Demos/TestResources/OneCamera/Materials/Background.mat.meta +8 -0
  116. package/Samples~/Demos/TestResources/OneCamera/Materials/Background.png +0 -0
  117. package/Samples~/Demos/TestResources/OneCamera/Materials/Background.png.meta +127 -0
  118. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.mat +71 -0
  119. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.mat.meta +8 -0
  120. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.png +0 -0
  121. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.png.meta +127 -0
  122. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.shadergraph +1910 -0
  123. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.shadergraph.meta +10 -0
  124. package/Samples~/Demos/TestResources/OneCamera/Materials/GridNormal.png +0 -0
  125. package/Samples~/Demos/TestResources/OneCamera/Materials/GridNormal.png.meta +127 -0
  126. package/Samples~/Demos/TestResources/OneCamera/Materials.meta +8 -0
  127. package/Samples~/Demos/TestResources/OneCamera/OneCameraScene.unity +598 -0
  128. package/Samples~/Demos/TestResources/OneCamera/OneCameraScene.unity.meta +7 -0
  129. package/Samples~/Demos/TestResources/OneCamera.meta +8 -0
  130. package/Third Party Notices.md +37 -0
  131. package/package.json +38 -0
@@ -0,0 +1,1910 @@
1
+ {
2
+ "m_SGVersion": 3,
3
+ "m_Type": "UnityEditor.ShaderGraph.GraphData",
4
+ "m_ObjectId": "67794519309446719e21afe22e58f75b",
5
+ "m_Properties": [
6
+ {
7
+ "m_Id": "5ff562a28ee34ef391fda322b9e99534"
8
+ },
9
+ {
10
+ "m_Id": "01faca6f35204a8bbaee3b043f44cd37"
11
+ },
12
+ {
13
+ "m_Id": "df9b6419756249abb03312866d77e51b"
14
+ },
15
+ {
16
+ "m_Id": "3bcae863c0094372aad80a9b6f83e06e"
17
+ },
18
+ {
19
+ "m_Id": "e2468b6cf37443b2a8d44896c0ddb503"
20
+ }
21
+ ],
22
+ "m_Keywords": [],
23
+ "m_Dropdowns": [],
24
+ "m_CategoryData": [
25
+ {
26
+ "m_Id": "da8365b36f66487094a3eb3f6b1d624f"
27
+ }
28
+ ],
29
+ "m_Nodes": [
30
+ {
31
+ "m_Id": "91a10d26c19a47318440ebc8ade9c68f"
32
+ },
33
+ {
34
+ "m_Id": "4182fe9f7e4e4d9ebbe3c24952c30816"
35
+ },
36
+ {
37
+ "m_Id": "05c0ca48e63742cc9e3231b924d4dd21"
38
+ },
39
+ {
40
+ "m_Id": "373bd9a95a06455081e3d485dcbf5f50"
41
+ },
42
+ {
43
+ "m_Id": "6c4331e86adc4a88885c299036b782e9"
44
+ },
45
+ {
46
+ "m_Id": "17022ea26ae74976891575cc609e9d1e"
47
+ },
48
+ {
49
+ "m_Id": "1c0ceaf75f0a4fef8e012a5d5a86dae6"
50
+ },
51
+ {
52
+ "m_Id": "468560377beb4b68a771fe6376e2faea"
53
+ },
54
+ {
55
+ "m_Id": "b9c8028d2f014ef7bfd122ff38ee6f1a"
56
+ },
57
+ {
58
+ "m_Id": "d31839a4ee644a69812adb8af2cfb650"
59
+ },
60
+ {
61
+ "m_Id": "9896a592327648fc97b27920e9e83cf2"
62
+ },
63
+ {
64
+ "m_Id": "00683add1fbb4f3e868d90b714f0c875"
65
+ },
66
+ {
67
+ "m_Id": "5d0280f407a1463c94d03d9f1d74e657"
68
+ },
69
+ {
70
+ "m_Id": "b2fd03af974d481fab15dc94368a4f9e"
71
+ },
72
+ {
73
+ "m_Id": "562919582ce3477880e2ca4f9ba4ee53"
74
+ },
75
+ {
76
+ "m_Id": "45a2aefa02cc403ab64d00742aadf911"
77
+ },
78
+ {
79
+ "m_Id": "1e5111b25e9f41a9a271ac806c6cbd2c"
80
+ },
81
+ {
82
+ "m_Id": "4f18e51204754fdebcbdb209dc281c45"
83
+ },
84
+ {
85
+ "m_Id": "0be7ff2ae90c4acf8a0f5ee7ad4fb963"
86
+ }
87
+ ],
88
+ "m_GroupDatas": [],
89
+ "m_StickyNoteDatas": [],
90
+ "m_Edges": [
91
+ {
92
+ "m_OutputSlot": {
93
+ "m_Node": {
94
+ "m_Id": "00683add1fbb4f3e868d90b714f0c875"
95
+ },
96
+ "m_SlotId": 0
97
+ },
98
+ "m_InputSlot": {
99
+ "m_Node": {
100
+ "m_Id": "562919582ce3477880e2ca4f9ba4ee53"
101
+ },
102
+ "m_SlotId": 3
103
+ }
104
+ },
105
+ {
106
+ "m_OutputSlot": {
107
+ "m_Node": {
108
+ "m_Id": "00683add1fbb4f3e868d90b714f0c875"
109
+ },
110
+ "m_SlotId": 0
111
+ },
112
+ "m_InputSlot": {
113
+ "m_Node": {
114
+ "m_Id": "b2fd03af974d481fab15dc94368a4f9e"
115
+ },
116
+ "m_SlotId": 3
117
+ }
118
+ },
119
+ {
120
+ "m_OutputSlot": {
121
+ "m_Node": {
122
+ "m_Id": "0be7ff2ae90c4acf8a0f5ee7ad4fb963"
123
+ },
124
+ "m_SlotId": 0
125
+ },
126
+ "m_InputSlot": {
127
+ "m_Node": {
128
+ "m_Id": "4f18e51204754fdebcbdb209dc281c45"
129
+ },
130
+ "m_SlotId": 1
131
+ }
132
+ },
133
+ {
134
+ "m_OutputSlot": {
135
+ "m_Node": {
136
+ "m_Id": "1e5111b25e9f41a9a271ac806c6cbd2c"
137
+ },
138
+ "m_SlotId": 0
139
+ },
140
+ "m_InputSlot": {
141
+ "m_Node": {
142
+ "m_Id": "562919582ce3477880e2ca4f9ba4ee53"
143
+ },
144
+ "m_SlotId": 6
145
+ }
146
+ },
147
+ {
148
+ "m_OutputSlot": {
149
+ "m_Node": {
150
+ "m_Id": "1e5111b25e9f41a9a271ac806c6cbd2c"
151
+ },
152
+ "m_SlotId": 0
153
+ },
154
+ "m_InputSlot": {
155
+ "m_Node": {
156
+ "m_Id": "b2fd03af974d481fab15dc94368a4f9e"
157
+ },
158
+ "m_SlotId": 6
159
+ }
160
+ },
161
+ {
162
+ "m_OutputSlot": {
163
+ "m_Node": {
164
+ "m_Id": "45a2aefa02cc403ab64d00742aadf911"
165
+ },
166
+ "m_SlotId": 0
167
+ },
168
+ "m_InputSlot": {
169
+ "m_Node": {
170
+ "m_Id": "562919582ce3477880e2ca4f9ba4ee53"
171
+ },
172
+ "m_SlotId": 5
173
+ }
174
+ },
175
+ {
176
+ "m_OutputSlot": {
177
+ "m_Node": {
178
+ "m_Id": "45a2aefa02cc403ab64d00742aadf911"
179
+ },
180
+ "m_SlotId": 0
181
+ },
182
+ "m_InputSlot": {
183
+ "m_Node": {
184
+ "m_Id": "b2fd03af974d481fab15dc94368a4f9e"
185
+ },
186
+ "m_SlotId": 5
187
+ }
188
+ },
189
+ {
190
+ "m_OutputSlot": {
191
+ "m_Node": {
192
+ "m_Id": "4f18e51204754fdebcbdb209dc281c45"
193
+ },
194
+ "m_SlotId": 2
195
+ },
196
+ "m_InputSlot": {
197
+ "m_Node": {
198
+ "m_Id": "6c4331e86adc4a88885c299036b782e9"
199
+ },
200
+ "m_SlotId": 0
201
+ }
202
+ },
203
+ {
204
+ "m_OutputSlot": {
205
+ "m_Node": {
206
+ "m_Id": "562919582ce3477880e2ca4f9ba4ee53"
207
+ },
208
+ "m_SlotId": 0
209
+ },
210
+ "m_InputSlot": {
211
+ "m_Node": {
212
+ "m_Id": "373bd9a95a06455081e3d485dcbf5f50"
213
+ },
214
+ "m_SlotId": 0
215
+ }
216
+ },
217
+ {
218
+ "m_OutputSlot": {
219
+ "m_Node": {
220
+ "m_Id": "5d0280f407a1463c94d03d9f1d74e657"
221
+ },
222
+ "m_SlotId": 0
223
+ },
224
+ "m_InputSlot": {
225
+ "m_Node": {
226
+ "m_Id": "562919582ce3477880e2ca4f9ba4ee53"
227
+ },
228
+ "m_SlotId": 4
229
+ }
230
+ },
231
+ {
232
+ "m_OutputSlot": {
233
+ "m_Node": {
234
+ "m_Id": "5d0280f407a1463c94d03d9f1d74e657"
235
+ },
236
+ "m_SlotId": 0
237
+ },
238
+ "m_InputSlot": {
239
+ "m_Node": {
240
+ "m_Id": "b2fd03af974d481fab15dc94368a4f9e"
241
+ },
242
+ "m_SlotId": 4
243
+ }
244
+ },
245
+ {
246
+ "m_OutputSlot": {
247
+ "m_Node": {
248
+ "m_Id": "9896a592327648fc97b27920e9e83cf2"
249
+ },
250
+ "m_SlotId": 0
251
+ },
252
+ "m_InputSlot": {
253
+ "m_Node": {
254
+ "m_Id": "b2fd03af974d481fab15dc94368a4f9e"
255
+ },
256
+ "m_SlotId": 1
257
+ }
258
+ },
259
+ {
260
+ "m_OutputSlot": {
261
+ "m_Node": {
262
+ "m_Id": "b2fd03af974d481fab15dc94368a4f9e"
263
+ },
264
+ "m_SlotId": 0
265
+ },
266
+ "m_InputSlot": {
267
+ "m_Node": {
268
+ "m_Id": "4f18e51204754fdebcbdb209dc281c45"
269
+ },
270
+ "m_SlotId": 0
271
+ }
272
+ },
273
+ {
274
+ "m_OutputSlot": {
275
+ "m_Node": {
276
+ "m_Id": "d31839a4ee644a69812adb8af2cfb650"
277
+ },
278
+ "m_SlotId": 0
279
+ },
280
+ "m_InputSlot": {
281
+ "m_Node": {
282
+ "m_Id": "562919582ce3477880e2ca4f9ba4ee53"
283
+ },
284
+ "m_SlotId": 1
285
+ }
286
+ }
287
+ ],
288
+ "m_VertexContext": {
289
+ "m_Position": {
290
+ "x": 1147.0,
291
+ "y": 109.00000762939453
292
+ },
293
+ "m_Blocks": [
294
+ {
295
+ "m_Id": "91a10d26c19a47318440ebc8ade9c68f"
296
+ },
297
+ {
298
+ "m_Id": "4182fe9f7e4e4d9ebbe3c24952c30816"
299
+ },
300
+ {
301
+ "m_Id": "05c0ca48e63742cc9e3231b924d4dd21"
302
+ }
303
+ ]
304
+ },
305
+ "m_FragmentContext": {
306
+ "m_Position": {
307
+ "x": 1147.0,
308
+ "y": 547.0
309
+ },
310
+ "m_Blocks": [
311
+ {
312
+ "m_Id": "373bd9a95a06455081e3d485dcbf5f50"
313
+ },
314
+ {
315
+ "m_Id": "6c4331e86adc4a88885c299036b782e9"
316
+ },
317
+ {
318
+ "m_Id": "17022ea26ae74976891575cc609e9d1e"
319
+ },
320
+ {
321
+ "m_Id": "1c0ceaf75f0a4fef8e012a5d5a86dae6"
322
+ },
323
+ {
324
+ "m_Id": "468560377beb4b68a771fe6376e2faea"
325
+ },
326
+ {
327
+ "m_Id": "b9c8028d2f014ef7bfd122ff38ee6f1a"
328
+ }
329
+ ]
330
+ },
331
+ "m_PreviewData": {
332
+ "serializedMesh": {
333
+ "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
334
+ "m_Guid": ""
335
+ },
336
+ "preventRotation": false
337
+ },
338
+ "m_Path": "Shader Graphs",
339
+ "m_GraphPrecision": 1,
340
+ "m_PreviewMode": 2,
341
+ "m_OutputNode": {
342
+ "m_Id": ""
343
+ },
344
+ "m_SubDatas": [],
345
+ "m_ActiveTargets": [
346
+ {
347
+ "m_Id": "9faa0ce36bcc4019933e4eaffa490b55"
348
+ }
349
+ ]
350
+ }
351
+
352
+ {
353
+ "m_SGVersion": 1,
354
+ "m_Type": "UnityEditor.ShaderGraph.PositionNode",
355
+ "m_ObjectId": "00683add1fbb4f3e868d90b714f0c875",
356
+ "m_Group": {
357
+ "m_Id": ""
358
+ },
359
+ "m_Name": "Position",
360
+ "m_DrawState": {
361
+ "m_Expanded": true,
362
+ "m_Position": {
363
+ "serializedVersion": "2",
364
+ "x": -236.00003051757813,
365
+ "y": 344.0000305175781,
366
+ "width": 206.00003051757813,
367
+ "height": 130.99993896484376
368
+ }
369
+ },
370
+ "m_Slots": [
371
+ {
372
+ "m_Id": "9f3aa6c87ff74679bfc90ed265c574cb"
373
+ }
374
+ ],
375
+ "synonyms": [
376
+ "location"
377
+ ],
378
+ "m_Precision": 1,
379
+ "m_PreviewExpanded": false,
380
+ "m_DismissedVersion": 0,
381
+ "m_PreviewMode": 2,
382
+ "m_CustomColors": {
383
+ "m_SerializableColors": []
384
+ },
385
+ "m_Space": 4,
386
+ "m_PositionSource": 0
387
+ }
388
+
389
+ {
390
+ "m_SGVersion": 0,
391
+ "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty",
392
+ "m_ObjectId": "01faca6f35204a8bbaee3b043f44cd37",
393
+ "m_Guid": {
394
+ "m_GuidSerialized": "f8ae3853-1401-4314-bd9c-36868565098f"
395
+ },
396
+ "m_Name": "NormalMap",
397
+ "m_DefaultRefNameVersion": 1,
398
+ "m_RefNameGeneratedByDisplayName": "NormalMap",
399
+ "m_DefaultReferenceName": "_NormalMap",
400
+ "m_OverrideReferenceName": "",
401
+ "m_GeneratePropertyBlock": true,
402
+ "m_UseCustomSlotLabel": false,
403
+ "m_CustomSlotLabel": "",
404
+ "m_DismissedVersion": 0,
405
+ "m_Precision": 0,
406
+ "overrideHLSLDeclaration": false,
407
+ "hlslDeclarationOverride": 0,
408
+ "m_Hidden": false,
409
+ "m_Value": {
410
+ "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
411
+ "m_Guid": ""
412
+ },
413
+ "isMainTexture": false,
414
+ "useTilingAndOffset": false,
415
+ "m_Modifiable": true,
416
+ "m_DefaultType": 0
417
+ }
418
+
419
+ {
420
+ "m_SGVersion": 0,
421
+ "m_Type": "UnityEditor.ShaderGraph.BlockNode",
422
+ "m_ObjectId": "05c0ca48e63742cc9e3231b924d4dd21",
423
+ "m_Group": {
424
+ "m_Id": ""
425
+ },
426
+ "m_Name": "VertexDescription.Tangent",
427
+ "m_DrawState": {
428
+ "m_Expanded": true,
429
+ "m_Position": {
430
+ "serializedVersion": "2",
431
+ "x": 0.0,
432
+ "y": 0.0,
433
+ "width": 0.0,
434
+ "height": 0.0
435
+ }
436
+ },
437
+ "m_Slots": [
438
+ {
439
+ "m_Id": "5ee54e1dc2e8471bb2f4604b6b20de85"
440
+ }
441
+ ],
442
+ "synonyms": [],
443
+ "m_Precision": 0,
444
+ "m_PreviewExpanded": true,
445
+ "m_DismissedVersion": 0,
446
+ "m_PreviewMode": 0,
447
+ "m_CustomColors": {
448
+ "m_SerializableColors": []
449
+ },
450
+ "m_SerializedDescriptor": "VertexDescription.Tangent"
451
+ }
452
+
453
+ {
454
+ "m_SGVersion": 0,
455
+ "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
456
+ "m_ObjectId": "095c4b6c17c44509b4c24124ee6dfaed",
457
+ "m_Id": 0,
458
+ "m_DisplayName": "Blend",
459
+ "m_SlotType": 1,
460
+ "m_Hidden": false,
461
+ "m_ShaderOutputName": "Out",
462
+ "m_StageCapability": 3,
463
+ "m_Value": 0.0,
464
+ "m_DefaultValue": 0.0,
465
+ "m_Labels": []
466
+ }
467
+
468
+ {
469
+ "m_SGVersion": 0,
470
+ "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
471
+ "m_ObjectId": "0b0bb63b600549278080b4ee1e827577",
472
+ "m_Id": 0,
473
+ "m_DisplayName": "Emission",
474
+ "m_SlotType": 0,
475
+ "m_Hidden": false,
476
+ "m_ShaderOutputName": "Emission",
477
+ "m_StageCapability": 2,
478
+ "m_Value": {
479
+ "x": 0.0,
480
+ "y": 0.0,
481
+ "z": 0.0
482
+ },
483
+ "m_DefaultValue": {
484
+ "x": 0.0,
485
+ "y": 0.0,
486
+ "z": 0.0
487
+ },
488
+ "m_Labels": [],
489
+ "m_ColorMode": 1,
490
+ "m_DefaultColor": {
491
+ "r": 0.0,
492
+ "g": 0.0,
493
+ "b": 0.0,
494
+ "a": 1.0
495
+ }
496
+ }
497
+
498
+ {
499
+ "m_SGVersion": 0,
500
+ "m_Type": "UnityEditor.ShaderGraph.PropertyNode",
501
+ "m_ObjectId": "0be7ff2ae90c4acf8a0f5ee7ad4fb963",
502
+ "m_Group": {
503
+ "m_Id": ""
504
+ },
505
+ "m_Name": "Property",
506
+ "m_DrawState": {
507
+ "m_Expanded": true,
508
+ "m_Position": {
509
+ "serializedVersion": "2",
510
+ "x": 563.0,
511
+ "y": 787.0,
512
+ "width": 158.0,
513
+ "height": 34.0
514
+ }
515
+ },
516
+ "m_Slots": [
517
+ {
518
+ "m_Id": "35ea0fc9b6c24b689b8329aa72ea0ad5"
519
+ }
520
+ ],
521
+ "synonyms": [],
522
+ "m_Precision": 0,
523
+ "m_PreviewExpanded": true,
524
+ "m_DismissedVersion": 0,
525
+ "m_PreviewMode": 0,
526
+ "m_CustomColors": {
527
+ "m_SerializableColors": []
528
+ },
529
+ "m_Property": {
530
+ "m_Id": "e2468b6cf37443b2a8d44896c0ddb503"
531
+ }
532
+ }
533
+
534
+ {
535
+ "m_SGVersion": 0,
536
+ "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
537
+ "m_ObjectId": "0c88dad4f89e4394a11eef61cb4bb530",
538
+ "m_Id": 1,
539
+ "m_DisplayName": "Strength",
540
+ "m_SlotType": 0,
541
+ "m_Hidden": false,
542
+ "m_ShaderOutputName": "Strength",
543
+ "m_StageCapability": 3,
544
+ "m_Value": 1.0,
545
+ "m_DefaultValue": 1.0,
546
+ "m_Labels": []
547
+ }
548
+
549
+ {
550
+ "m_SGVersion": 0,
551
+ "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
552
+ "m_ObjectId": "1299090e189844f6946a7809ceafc5dc",
553
+ "m_Id": 5,
554
+ "m_DisplayName": "Tile",
555
+ "m_SlotType": 0,
556
+ "m_Hidden": false,
557
+ "m_ShaderOutputName": "Tile",
558
+ "m_StageCapability": 3,
559
+ "m_Value": 1.0,
560
+ "m_DefaultValue": 1.0,
561
+ "m_Labels": []
562
+ }
563
+
564
+ {
565
+ "m_SGVersion": 0,
566
+ "m_Type": "UnityEditor.ShaderGraph.BlockNode",
567
+ "m_ObjectId": "17022ea26ae74976891575cc609e9d1e",
568
+ "m_Group": {
569
+ "m_Id": ""
570
+ },
571
+ "m_Name": "SurfaceDescription.Metallic",
572
+ "m_DrawState": {
573
+ "m_Expanded": true,
574
+ "m_Position": {
575
+ "serializedVersion": "2",
576
+ "x": 0.0,
577
+ "y": 0.0,
578
+ "width": 0.0,
579
+ "height": 0.0
580
+ }
581
+ },
582
+ "m_Slots": [
583
+ {
584
+ "m_Id": "253435a765614317959e1e5a716d8665"
585
+ }
586
+ ],
587
+ "synonyms": [],
588
+ "m_Precision": 0,
589
+ "m_PreviewExpanded": true,
590
+ "m_DismissedVersion": 0,
591
+ "m_PreviewMode": 0,
592
+ "m_CustomColors": {
593
+ "m_SerializableColors": []
594
+ },
595
+ "m_SerializedDescriptor": "SurfaceDescription.Metallic"
596
+ }
597
+
598
+ {
599
+ "m_SGVersion": 0,
600
+ "m_Type": "UnityEditor.ShaderGraph.BlockNode",
601
+ "m_ObjectId": "1c0ceaf75f0a4fef8e012a5d5a86dae6",
602
+ "m_Group": {
603
+ "m_Id": ""
604
+ },
605
+ "m_Name": "SurfaceDescription.Smoothness",
606
+ "m_DrawState": {
607
+ "m_Expanded": true,
608
+ "m_Position": {
609
+ "serializedVersion": "2",
610
+ "x": 0.0,
611
+ "y": 0.0,
612
+ "width": 0.0,
613
+ "height": 0.0
614
+ }
615
+ },
616
+ "m_Slots": [
617
+ {
618
+ "m_Id": "9608b592f1714f36813dbeff05fb6b96"
619
+ }
620
+ ],
621
+ "synonyms": [],
622
+ "m_Precision": 0,
623
+ "m_PreviewExpanded": true,
624
+ "m_DismissedVersion": 0,
625
+ "m_PreviewMode": 0,
626
+ "m_CustomColors": {
627
+ "m_SerializableColors": []
628
+ },
629
+ "m_SerializedDescriptor": "SurfaceDescription.Smoothness"
630
+ }
631
+
632
+ {
633
+ "m_SGVersion": 0,
634
+ "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
635
+ "m_ObjectId": "1ddbff6922c5404ba4bc76fee3fb22dc",
636
+ "m_Id": 3,
637
+ "m_DisplayName": "Position",
638
+ "m_SlotType": 0,
639
+ "m_Hidden": false,
640
+ "m_ShaderOutputName": "Position",
641
+ "m_StageCapability": 3,
642
+ "m_Value": {
643
+ "x": 0.0,
644
+ "y": 0.0,
645
+ "z": 0.0
646
+ },
647
+ "m_DefaultValue": {
648
+ "x": 0.0,
649
+ "y": 0.0,
650
+ "z": 0.0
651
+ },
652
+ "m_Labels": [],
653
+ "m_Space": 4
654
+ }
655
+
656
+ {
657
+ "m_SGVersion": 0,
658
+ "m_Type": "UnityEditor.ShaderGraph.PropertyNode",
659
+ "m_ObjectId": "1e5111b25e9f41a9a271ac806c6cbd2c",
660
+ "m_Group": {
661
+ "m_Id": ""
662
+ },
663
+ "m_Name": "Property",
664
+ "m_DrawState": {
665
+ "m_Expanded": true,
666
+ "m_Position": {
667
+ "serializedVersion": "2",
668
+ "x": 39.99995422363281,
669
+ "y": 530.0,
670
+ "width": 105.00004577636719,
671
+ "height": 34.0
672
+ }
673
+ },
674
+ "m_Slots": [
675
+ {
676
+ "m_Id": "095c4b6c17c44509b4c24124ee6dfaed"
677
+ }
678
+ ],
679
+ "synonyms": [],
680
+ "m_Precision": 0,
681
+ "m_PreviewExpanded": true,
682
+ "m_DismissedVersion": 0,
683
+ "m_PreviewMode": 0,
684
+ "m_CustomColors": {
685
+ "m_SerializableColors": []
686
+ },
687
+ "m_Property": {
688
+ "m_Id": "3bcae863c0094372aad80a9b6f83e06e"
689
+ }
690
+ }
691
+
692
+ {
693
+ "m_SGVersion": 0,
694
+ "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
695
+ "m_ObjectId": "1e6ca4b01c7d43698c6b342dd431b2fe",
696
+ "m_Id": 0,
697
+ "m_DisplayName": "NormalMap",
698
+ "m_SlotType": 1,
699
+ "m_Hidden": false,
700
+ "m_ShaderOutputName": "Out",
701
+ "m_StageCapability": 3,
702
+ "m_BareResource": false
703
+ }
704
+
705
+ {
706
+ "m_SGVersion": 0,
707
+ "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
708
+ "m_ObjectId": "253435a765614317959e1e5a716d8665",
709
+ "m_Id": 0,
710
+ "m_DisplayName": "Metallic",
711
+ "m_SlotType": 0,
712
+ "m_Hidden": false,
713
+ "m_ShaderOutputName": "Metallic",
714
+ "m_StageCapability": 2,
715
+ "m_Value": 0.0,
716
+ "m_DefaultValue": 0.0,
717
+ "m_Labels": []
718
+ }
719
+
720
+ {
721
+ "m_SGVersion": 2,
722
+ "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalLitSubTarget",
723
+ "m_ObjectId": "28f1212d34c8442cab5f27dbb4c586f4",
724
+ "m_WorkflowMode": 1,
725
+ "m_NormalDropOffSpace": 0,
726
+ "m_ClearCoat": false,
727
+ "m_BlendModePreserveSpecular": true
728
+ }
729
+
730
+ {
731
+ "m_SGVersion": 0,
732
+ "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
733
+ "m_ObjectId": "31058edf864942b0aedc77914cdb3f6e",
734
+ "m_Id": 0,
735
+ "m_DisplayName": "Normal",
736
+ "m_SlotType": 0,
737
+ "m_Hidden": false,
738
+ "m_ShaderOutputName": "Normal",
739
+ "m_StageCapability": 1,
740
+ "m_Value": {
741
+ "x": 0.0,
742
+ "y": 0.0,
743
+ "z": 0.0
744
+ },
745
+ "m_DefaultValue": {
746
+ "x": 0.0,
747
+ "y": 0.0,
748
+ "z": 0.0
749
+ },
750
+ "m_Labels": [],
751
+ "m_Space": 0
752
+ }
753
+
754
+ {
755
+ "m_SGVersion": 0,
756
+ "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
757
+ "m_ObjectId": "35ea0fc9b6c24b689b8329aa72ea0ad5",
758
+ "m_Id": 0,
759
+ "m_DisplayName": "NormalStrength",
760
+ "m_SlotType": 1,
761
+ "m_Hidden": false,
762
+ "m_ShaderOutputName": "Out",
763
+ "m_StageCapability": 3,
764
+ "m_Value": 0.0,
765
+ "m_DefaultValue": 0.0,
766
+ "m_Labels": []
767
+ }
768
+
769
+ {
770
+ "m_SGVersion": 0,
771
+ "m_Type": "UnityEditor.ShaderGraph.BlockNode",
772
+ "m_ObjectId": "373bd9a95a06455081e3d485dcbf5f50",
773
+ "m_Group": {
774
+ "m_Id": ""
775
+ },
776
+ "m_Name": "SurfaceDescription.BaseColor",
777
+ "m_DrawState": {
778
+ "m_Expanded": true,
779
+ "m_Position": {
780
+ "serializedVersion": "2",
781
+ "x": 0.0,
782
+ "y": 0.0,
783
+ "width": 0.0,
784
+ "height": 0.0
785
+ }
786
+ },
787
+ "m_Slots": [
788
+ {
789
+ "m_Id": "71df2724067c4d1884216ad233734c23"
790
+ }
791
+ ],
792
+ "synonyms": [],
793
+ "m_Precision": 0,
794
+ "m_PreviewExpanded": true,
795
+ "m_DismissedVersion": 0,
796
+ "m_PreviewMode": 0,
797
+ "m_CustomColors": {
798
+ "m_SerializableColors": []
799
+ },
800
+ "m_SerializedDescriptor": "SurfaceDescription.BaseColor"
801
+ }
802
+
803
+ {
804
+ "m_SGVersion": 1,
805
+ "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",
806
+ "m_ObjectId": "3bcae863c0094372aad80a9b6f83e06e",
807
+ "m_Guid": {
808
+ "m_GuidSerialized": "e9a59ba0-6543-41be-9f3e-7b13b64f45c7"
809
+ },
810
+ "m_Name": "Blend",
811
+ "m_DefaultRefNameVersion": 1,
812
+ "m_RefNameGeneratedByDisplayName": "Blend",
813
+ "m_DefaultReferenceName": "_Blend",
814
+ "m_OverrideReferenceName": "",
815
+ "m_GeneratePropertyBlock": true,
816
+ "m_UseCustomSlotLabel": false,
817
+ "m_CustomSlotLabel": "",
818
+ "m_DismissedVersion": 0,
819
+ "m_Precision": 0,
820
+ "overrideHLSLDeclaration": false,
821
+ "hlslDeclarationOverride": 0,
822
+ "m_Hidden": false,
823
+ "m_Value": 1000.0,
824
+ "m_FloatType": 0,
825
+ "m_RangeValues": {
826
+ "x": 0.0,
827
+ "y": 1.0
828
+ }
829
+ }
830
+
831
+ {
832
+ "m_SGVersion": 0,
833
+ "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
834
+ "m_ObjectId": "3be4c416d24845caa05456396a5ab05e",
835
+ "m_Id": 2,
836
+ "m_DisplayName": "Sampler",
837
+ "m_SlotType": 0,
838
+ "m_Hidden": false,
839
+ "m_ShaderOutputName": "Sampler",
840
+ "m_StageCapability": 3,
841
+ "m_BareResource": false
842
+ }
843
+
844
+ {
845
+ "m_SGVersion": 0,
846
+ "m_Type": "UnityEditor.ShaderGraph.BlockNode",
847
+ "m_ObjectId": "4182fe9f7e4e4d9ebbe3c24952c30816",
848
+ "m_Group": {
849
+ "m_Id": ""
850
+ },
851
+ "m_Name": "VertexDescription.Normal",
852
+ "m_DrawState": {
853
+ "m_Expanded": true,
854
+ "m_Position": {
855
+ "serializedVersion": "2",
856
+ "x": 0.0,
857
+ "y": 0.0,
858
+ "width": 0.0,
859
+ "height": 0.0
860
+ }
861
+ },
862
+ "m_Slots": [
863
+ {
864
+ "m_Id": "31058edf864942b0aedc77914cdb3f6e"
865
+ }
866
+ ],
867
+ "synonyms": [],
868
+ "m_Precision": 0,
869
+ "m_PreviewExpanded": true,
870
+ "m_DismissedVersion": 0,
871
+ "m_PreviewMode": 0,
872
+ "m_CustomColors": {
873
+ "m_SerializableColors": []
874
+ },
875
+ "m_SerializedDescriptor": "VertexDescription.Normal"
876
+ }
877
+
878
+ {
879
+ "m_SGVersion": 0,
880
+ "m_Type": "UnityEditor.ShaderGraph.PropertyNode",
881
+ "m_ObjectId": "45a2aefa02cc403ab64d00742aadf911",
882
+ "m_Group": {
883
+ "m_Id": ""
884
+ },
885
+ "m_Name": "Property",
886
+ "m_DrawState": {
887
+ "m_Expanded": true,
888
+ "m_Position": {
889
+ "serializedVersion": "2",
890
+ "x": 39.99995422363281,
891
+ "y": 441.0,
892
+ "width": 104.0,
893
+ "height": 33.999969482421878
894
+ }
895
+ },
896
+ "m_Slots": [
897
+ {
898
+ "m_Id": "bebd8b3136244177a4fa4ccffba74308"
899
+ }
900
+ ],
901
+ "synonyms": [],
902
+ "m_Precision": 0,
903
+ "m_PreviewExpanded": true,
904
+ "m_DismissedVersion": 0,
905
+ "m_PreviewMode": 0,
906
+ "m_CustomColors": {
907
+ "m_SerializableColors": []
908
+ },
909
+ "m_Property": {
910
+ "m_Id": "df9b6419756249abb03312866d77e51b"
911
+ }
912
+ }
913
+
914
+ {
915
+ "m_SGVersion": 0,
916
+ "m_Type": "UnityEditor.ShaderGraph.BlockNode",
917
+ "m_ObjectId": "468560377beb4b68a771fe6376e2faea",
918
+ "m_Group": {
919
+ "m_Id": ""
920
+ },
921
+ "m_Name": "SurfaceDescription.Emission",
922
+ "m_DrawState": {
923
+ "m_Expanded": true,
924
+ "m_Position": {
925
+ "serializedVersion": "2",
926
+ "x": 1154.0,
927
+ "y": -20.999963760375978,
928
+ "width": 199.9998779296875,
929
+ "height": 40.999916076660159
930
+ }
931
+ },
932
+ "m_Slots": [
933
+ {
934
+ "m_Id": "0b0bb63b600549278080b4ee1e827577"
935
+ }
936
+ ],
937
+ "synonyms": [],
938
+ "m_Precision": 0,
939
+ "m_PreviewExpanded": true,
940
+ "m_DismissedVersion": 0,
941
+ "m_PreviewMode": 0,
942
+ "m_CustomColors": {
943
+ "m_SerializableColors": []
944
+ },
945
+ "m_SerializedDescriptor": "SurfaceDescription.Emission"
946
+ }
947
+
948
+ {
949
+ "m_SGVersion": 0,
950
+ "m_Type": "UnityEditor.ShaderGraph.NormalStrengthNode",
951
+ "m_ObjectId": "4f18e51204754fdebcbdb209dc281c45",
952
+ "m_Group": {
953
+ "m_Id": ""
954
+ },
955
+ "m_Name": "Normal Strength",
956
+ "m_DrawState": {
957
+ "m_Expanded": true,
958
+ "m_Position": {
959
+ "serializedVersion": "2",
960
+ "x": 743.0,
961
+ "y": 626.0,
962
+ "width": 208.0,
963
+ "height": 302.0
964
+ }
965
+ },
966
+ "m_Slots": [
967
+ {
968
+ "m_Id": "5d0294f696564d25a00e27a9402b3e1c"
969
+ },
970
+ {
971
+ "m_Id": "0c88dad4f89e4394a11eef61cb4bb530"
972
+ },
973
+ {
974
+ "m_Id": "b3bcd40de2894308a012cfdcebc908d3"
975
+ }
976
+ ],
977
+ "synonyms": [
978
+ "intensity"
979
+ ],
980
+ "m_Precision": 0,
981
+ "m_PreviewExpanded": false,
982
+ "m_DismissedVersion": 0,
983
+ "m_PreviewMode": 0,
984
+ "m_CustomColors": {
985
+ "m_SerializableColors": []
986
+ }
987
+ }
988
+
989
+ {
990
+ "m_SGVersion": 0,
991
+ "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
992
+ "m_ObjectId": "534b2bad8108478abcacb9d5f7508d6f",
993
+ "m_Id": 4,
994
+ "m_DisplayName": "Normal",
995
+ "m_SlotType": 0,
996
+ "m_Hidden": false,
997
+ "m_ShaderOutputName": "Normal",
998
+ "m_StageCapability": 3,
999
+ "m_Value": {
1000
+ "x": 0.0,
1001
+ "y": 0.0,
1002
+ "z": 0.0
1003
+ },
1004
+ "m_DefaultValue": {
1005
+ "x": 0.0,
1006
+ "y": 0.0,
1007
+ "z": 0.0
1008
+ },
1009
+ "m_Labels": [],
1010
+ "m_Space": 4
1011
+ }
1012
+
1013
+ {
1014
+ "m_SGVersion": 0,
1015
+ "m_Type": "UnityEditor.ShaderGraph.TriplanarNode",
1016
+ "m_ObjectId": "562919582ce3477880e2ca4f9ba4ee53",
1017
+ "m_Group": {
1018
+ "m_Id": ""
1019
+ },
1020
+ "m_Name": "Triplanar",
1021
+ "m_DrawState": {
1022
+ "m_Expanded": true,
1023
+ "m_Position": {
1024
+ "serializedVersion": "2",
1025
+ "x": 353.0,
1026
+ "y": 131.0,
1027
+ "width": 208.0,
1028
+ "height": 433.0
1029
+ }
1030
+ },
1031
+ "m_Slots": [
1032
+ {
1033
+ "m_Id": "ed8a74c74917457dbfa0b8886a8d8968"
1034
+ },
1035
+ {
1036
+ "m_Id": "7207a0fecb5f4f77a1b5424cb0b710e5"
1037
+ },
1038
+ {
1039
+ "m_Id": "3be4c416d24845caa05456396a5ab05e"
1040
+ },
1041
+ {
1042
+ "m_Id": "6b3efeeeb5b44593920c6c4504083993"
1043
+ },
1044
+ {
1045
+ "m_Id": "534b2bad8108478abcacb9d5f7508d6f"
1046
+ },
1047
+ {
1048
+ "m_Id": "1299090e189844f6946a7809ceafc5dc"
1049
+ },
1050
+ {
1051
+ "m_Id": "faa04c9067ca47c59d641229ed4eb543"
1052
+ }
1053
+ ],
1054
+ "synonyms": [
1055
+ "project"
1056
+ ],
1057
+ "m_Precision": 0,
1058
+ "m_PreviewExpanded": false,
1059
+ "m_DismissedVersion": 0,
1060
+ "m_PreviewMode": 2,
1061
+ "m_CustomColors": {
1062
+ "m_SerializableColors": []
1063
+ },
1064
+ "m_TextureType": 0,
1065
+ "m_InputSpace": 4,
1066
+ "m_NormalOutputSpace": 3
1067
+ }
1068
+
1069
+ {
1070
+ "m_SGVersion": 0,
1071
+ "m_Type": "UnityEditor.ShaderGraph.NormalVectorNode",
1072
+ "m_ObjectId": "5d0280f407a1463c94d03d9f1d74e657",
1073
+ "m_Group": {
1074
+ "m_Id": ""
1075
+ },
1076
+ "m_Name": "Normal Vector",
1077
+ "m_DrawState": {
1078
+ "m_Expanded": true,
1079
+ "m_Position": {
1080
+ "serializedVersion": "2",
1081
+ "x": -236.00003051757813,
1082
+ "y": 474.9999694824219,
1083
+ "width": 206.00003051757813,
1084
+ "height": 131.00003051757813
1085
+ }
1086
+ },
1087
+ "m_Slots": [
1088
+ {
1089
+ "m_Id": "be637a406afe4ec3a50b483f2fb34c5e"
1090
+ }
1091
+ ],
1092
+ "synonyms": [
1093
+ "surface direction"
1094
+ ],
1095
+ "m_Precision": 0,
1096
+ "m_PreviewExpanded": false,
1097
+ "m_DismissedVersion": 0,
1098
+ "m_PreviewMode": 2,
1099
+ "m_CustomColors": {
1100
+ "m_SerializableColors": []
1101
+ },
1102
+ "m_Space": 2
1103
+ }
1104
+
1105
+ {
1106
+ "m_SGVersion": 0,
1107
+ "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
1108
+ "m_ObjectId": "5d0294f696564d25a00e27a9402b3e1c",
1109
+ "m_Id": 0,
1110
+ "m_DisplayName": "In",
1111
+ "m_SlotType": 0,
1112
+ "m_Hidden": false,
1113
+ "m_ShaderOutputName": "In",
1114
+ "m_StageCapability": 3,
1115
+ "m_Value": {
1116
+ "x": 0.0,
1117
+ "y": 0.0,
1118
+ "z": 1.0
1119
+ },
1120
+ "m_DefaultValue": {
1121
+ "x": 0.0,
1122
+ "y": 0.0,
1123
+ "z": 0.0
1124
+ },
1125
+ "m_Labels": []
1126
+ }
1127
+
1128
+ {
1129
+ "m_SGVersion": 0,
1130
+ "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot",
1131
+ "m_ObjectId": "5ee54e1dc2e8471bb2f4604b6b20de85",
1132
+ "m_Id": 0,
1133
+ "m_DisplayName": "Tangent",
1134
+ "m_SlotType": 0,
1135
+ "m_Hidden": false,
1136
+ "m_ShaderOutputName": "Tangent",
1137
+ "m_StageCapability": 1,
1138
+ "m_Value": {
1139
+ "x": 0.0,
1140
+ "y": 0.0,
1141
+ "z": 0.0
1142
+ },
1143
+ "m_DefaultValue": {
1144
+ "x": 0.0,
1145
+ "y": 0.0,
1146
+ "z": 0.0
1147
+ },
1148
+ "m_Labels": [],
1149
+ "m_Space": 0
1150
+ }
1151
+
1152
+ {
1153
+ "m_SGVersion": 0,
1154
+ "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty",
1155
+ "m_ObjectId": "5ff562a28ee34ef391fda322b9e99534",
1156
+ "m_Guid": {
1157
+ "m_GuidSerialized": "528633e8-17cc-4eee-96a5-705582b4fdaa"
1158
+ },
1159
+ "m_Name": "Texture",
1160
+ "m_DefaultRefNameVersion": 1,
1161
+ "m_RefNameGeneratedByDisplayName": "Texture",
1162
+ "m_DefaultReferenceName": "_Texture",
1163
+ "m_OverrideReferenceName": "",
1164
+ "m_GeneratePropertyBlock": true,
1165
+ "m_UseCustomSlotLabel": false,
1166
+ "m_CustomSlotLabel": "",
1167
+ "m_DismissedVersion": 0,
1168
+ "m_Precision": 0,
1169
+ "overrideHLSLDeclaration": false,
1170
+ "hlslDeclarationOverride": 0,
1171
+ "m_Hidden": false,
1172
+ "m_Value": {
1173
+ "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
1174
+ "m_Guid": ""
1175
+ },
1176
+ "isMainTexture": false,
1177
+ "useTilingAndOffset": false,
1178
+ "m_Modifiable": true,
1179
+ "m_DefaultType": 0
1180
+ }
1181
+
1182
+ {
1183
+ "m_SGVersion": 0,
1184
+ "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
1185
+ "m_ObjectId": "666effb4886d44cabd53228de34bac97",
1186
+ "m_Id": 0,
1187
+ "m_DisplayName": "Ambient Occlusion",
1188
+ "m_SlotType": 0,
1189
+ "m_Hidden": false,
1190
+ "m_ShaderOutputName": "Occlusion",
1191
+ "m_StageCapability": 2,
1192
+ "m_Value": 1.0,
1193
+ "m_DefaultValue": 1.0,
1194
+ "m_Labels": []
1195
+ }
1196
+
1197
+ {
1198
+ "m_SGVersion": 0,
1199
+ "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
1200
+ "m_ObjectId": "6b3efeeeb5b44593920c6c4504083993",
1201
+ "m_Id": 3,
1202
+ "m_DisplayName": "Position",
1203
+ "m_SlotType": 0,
1204
+ "m_Hidden": false,
1205
+ "m_ShaderOutputName": "Position",
1206
+ "m_StageCapability": 3,
1207
+ "m_Value": {
1208
+ "x": 0.0,
1209
+ "y": 0.0,
1210
+ "z": 0.0
1211
+ },
1212
+ "m_DefaultValue": {
1213
+ "x": 0.0,
1214
+ "y": 0.0,
1215
+ "z": 0.0
1216
+ },
1217
+ "m_Labels": [],
1218
+ "m_Space": 4
1219
+ }
1220
+
1221
+ {
1222
+ "m_SGVersion": 0,
1223
+ "m_Type": "UnityEditor.ShaderGraph.BlockNode",
1224
+ "m_ObjectId": "6c4331e86adc4a88885c299036b782e9",
1225
+ "m_Group": {
1226
+ "m_Id": ""
1227
+ },
1228
+ "m_Name": "SurfaceDescription.NormalTS",
1229
+ "m_DrawState": {
1230
+ "m_Expanded": true,
1231
+ "m_Position": {
1232
+ "serializedVersion": "2",
1233
+ "x": 0.0,
1234
+ "y": 0.0,
1235
+ "width": 0.0,
1236
+ "height": 0.0
1237
+ }
1238
+ },
1239
+ "m_Slots": [
1240
+ {
1241
+ "m_Id": "7223c53297c24e658556ffe2a65452ad"
1242
+ }
1243
+ ],
1244
+ "synonyms": [],
1245
+ "m_Precision": 0,
1246
+ "m_PreviewExpanded": true,
1247
+ "m_DismissedVersion": 0,
1248
+ "m_PreviewMode": 0,
1249
+ "m_CustomColors": {
1250
+ "m_SerializableColors": []
1251
+ },
1252
+ "m_SerializedDescriptor": "SurfaceDescription.NormalTS"
1253
+ }
1254
+
1255
+ {
1256
+ "m_SGVersion": 0,
1257
+ "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
1258
+ "m_ObjectId": "71df2724067c4d1884216ad233734c23",
1259
+ "m_Id": 0,
1260
+ "m_DisplayName": "Base Color",
1261
+ "m_SlotType": 0,
1262
+ "m_Hidden": false,
1263
+ "m_ShaderOutputName": "BaseColor",
1264
+ "m_StageCapability": 2,
1265
+ "m_Value": {
1266
+ "x": 0.5,
1267
+ "y": 0.5,
1268
+ "z": 0.5
1269
+ },
1270
+ "m_DefaultValue": {
1271
+ "x": 0.0,
1272
+ "y": 0.0,
1273
+ "z": 0.0
1274
+ },
1275
+ "m_Labels": [],
1276
+ "m_ColorMode": 0,
1277
+ "m_DefaultColor": {
1278
+ "r": 0.5,
1279
+ "g": 0.5,
1280
+ "b": 0.5,
1281
+ "a": 1.0
1282
+ }
1283
+ }
1284
+
1285
+ {
1286
+ "m_SGVersion": 0,
1287
+ "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
1288
+ "m_ObjectId": "7207a0fecb5f4f77a1b5424cb0b710e5",
1289
+ "m_Id": 1,
1290
+ "m_DisplayName": "Texture",
1291
+ "m_SlotType": 0,
1292
+ "m_Hidden": false,
1293
+ "m_ShaderOutputName": "Texture",
1294
+ "m_StageCapability": 3,
1295
+ "m_BareResource": false,
1296
+ "m_Texture": {
1297
+ "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
1298
+ "m_Guid": ""
1299
+ },
1300
+ "m_DefaultType": 0
1301
+ }
1302
+
1303
+ {
1304
+ "m_SGVersion": 0,
1305
+ "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
1306
+ "m_ObjectId": "7223c53297c24e658556ffe2a65452ad",
1307
+ "m_Id": 0,
1308
+ "m_DisplayName": "Normal (Tangent Space)",
1309
+ "m_SlotType": 0,
1310
+ "m_Hidden": false,
1311
+ "m_ShaderOutputName": "NormalTS",
1312
+ "m_StageCapability": 2,
1313
+ "m_Value": {
1314
+ "x": 0.0,
1315
+ "y": 0.0,
1316
+ "z": 0.0
1317
+ },
1318
+ "m_DefaultValue": {
1319
+ "x": 0.0,
1320
+ "y": 0.0,
1321
+ "z": 0.0
1322
+ },
1323
+ "m_Labels": [],
1324
+ "m_Space": 3
1325
+ }
1326
+
1327
+ {
1328
+ "m_SGVersion": 0,
1329
+ "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
1330
+ "m_ObjectId": "7f3ab136904c4952b2795e02bb71e664",
1331
+ "m_Id": 6,
1332
+ "m_DisplayName": "Blend",
1333
+ "m_SlotType": 0,
1334
+ "m_Hidden": false,
1335
+ "m_ShaderOutputName": "Blend",
1336
+ "m_StageCapability": 3,
1337
+ "m_Value": 1.0,
1338
+ "m_DefaultValue": 1.0,
1339
+ "m_Labels": []
1340
+ }
1341
+
1342
+ {
1343
+ "m_SGVersion": 0,
1344
+ "m_Type": "UnityEditor.ShaderGraph.BlockNode",
1345
+ "m_ObjectId": "91a10d26c19a47318440ebc8ade9c68f",
1346
+ "m_Group": {
1347
+ "m_Id": ""
1348
+ },
1349
+ "m_Name": "VertexDescription.Position",
1350
+ "m_DrawState": {
1351
+ "m_Expanded": true,
1352
+ "m_Position": {
1353
+ "serializedVersion": "2",
1354
+ "x": 0.0,
1355
+ "y": 0.0,
1356
+ "width": 0.0,
1357
+ "height": 0.0
1358
+ }
1359
+ },
1360
+ "m_Slots": [
1361
+ {
1362
+ "m_Id": "ce2a59c72dce43d7a4045202064f7761"
1363
+ }
1364
+ ],
1365
+ "synonyms": [],
1366
+ "m_Precision": 0,
1367
+ "m_PreviewExpanded": true,
1368
+ "m_DismissedVersion": 0,
1369
+ "m_PreviewMode": 0,
1370
+ "m_CustomColors": {
1371
+ "m_SerializableColors": []
1372
+ },
1373
+ "m_SerializedDescriptor": "VertexDescription.Position"
1374
+ }
1375
+
1376
+ {
1377
+ "m_SGVersion": 0,
1378
+ "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
1379
+ "m_ObjectId": "9608b592f1714f36813dbeff05fb6b96",
1380
+ "m_Id": 0,
1381
+ "m_DisplayName": "Smoothness",
1382
+ "m_SlotType": 0,
1383
+ "m_Hidden": false,
1384
+ "m_ShaderOutputName": "Smoothness",
1385
+ "m_StageCapability": 2,
1386
+ "m_Value": 0.5,
1387
+ "m_DefaultValue": 0.5,
1388
+ "m_Labels": []
1389
+ }
1390
+
1391
+ {
1392
+ "m_SGVersion": 0,
1393
+ "m_Type": "UnityEditor.ShaderGraph.PropertyNode",
1394
+ "m_ObjectId": "9896a592327648fc97b27920e9e83cf2",
1395
+ "m_Group": {
1396
+ "m_Id": ""
1397
+ },
1398
+ "m_Name": "Property",
1399
+ "m_DrawState": {
1400
+ "m_Expanded": true,
1401
+ "m_Position": {
1402
+ "serializedVersion": "2",
1403
+ "x": 184.99998474121095,
1404
+ "y": 606.0,
1405
+ "width": 144.0000457763672,
1406
+ "height": 34.0
1407
+ }
1408
+ },
1409
+ "m_Slots": [
1410
+ {
1411
+ "m_Id": "1e6ca4b01c7d43698c6b342dd431b2fe"
1412
+ }
1413
+ ],
1414
+ "synonyms": [],
1415
+ "m_Precision": 0,
1416
+ "m_PreviewExpanded": true,
1417
+ "m_DismissedVersion": 0,
1418
+ "m_PreviewMode": 0,
1419
+ "m_CustomColors": {
1420
+ "m_SerializableColors": []
1421
+ },
1422
+ "m_Property": {
1423
+ "m_Id": "01faca6f35204a8bbaee3b043f44cd37"
1424
+ }
1425
+ }
1426
+
1427
+ {
1428
+ "m_SGVersion": 0,
1429
+ "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
1430
+ "m_ObjectId": "9ed8cefcaeab4b95a8b3896b36cb1d18",
1431
+ "m_Id": 2,
1432
+ "m_DisplayName": "Sampler",
1433
+ "m_SlotType": 0,
1434
+ "m_Hidden": false,
1435
+ "m_ShaderOutputName": "Sampler",
1436
+ "m_StageCapability": 3,
1437
+ "m_BareResource": false
1438
+ }
1439
+
1440
+ {
1441
+ "m_SGVersion": 0,
1442
+ "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
1443
+ "m_ObjectId": "9f3aa6c87ff74679bfc90ed265c574cb",
1444
+ "m_Id": 0,
1445
+ "m_DisplayName": "Out",
1446
+ "m_SlotType": 1,
1447
+ "m_Hidden": false,
1448
+ "m_ShaderOutputName": "Out",
1449
+ "m_StageCapability": 3,
1450
+ "m_Value": {
1451
+ "x": 0.0,
1452
+ "y": 0.0,
1453
+ "z": 0.0
1454
+ },
1455
+ "m_DefaultValue": {
1456
+ "x": 0.0,
1457
+ "y": 0.0,
1458
+ "z": 0.0
1459
+ },
1460
+ "m_Labels": []
1461
+ }
1462
+
1463
+ {
1464
+ "m_SGVersion": 1,
1465
+ "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget",
1466
+ "m_ObjectId": "9faa0ce36bcc4019933e4eaffa490b55",
1467
+ "m_Datas": [],
1468
+ "m_ActiveSubTarget": {
1469
+ "m_Id": "28f1212d34c8442cab5f27dbb4c586f4"
1470
+ },
1471
+ "m_AllowMaterialOverride": false,
1472
+ "m_SurfaceType": 0,
1473
+ "m_ZTestMode": 4,
1474
+ "m_ZWriteControl": 0,
1475
+ "m_AlphaMode": 0,
1476
+ "m_RenderFace": 2,
1477
+ "m_AlphaClip": false,
1478
+ "m_CastShadows": true,
1479
+ "m_ReceiveShadows": true,
1480
+ "m_SupportsLODCrossFade": false,
1481
+ "m_CustomEditorGUI": "",
1482
+ "m_SupportVFX": false
1483
+ }
1484
+
1485
+ {
1486
+ "m_SGVersion": 0,
1487
+ "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
1488
+ "m_ObjectId": "a2accce04c7f447ba373046dc08e7cd7",
1489
+ "m_Id": 0,
1490
+ "m_DisplayName": "Out",
1491
+ "m_SlotType": 1,
1492
+ "m_Hidden": false,
1493
+ "m_ShaderOutputName": "Out",
1494
+ "m_StageCapability": 2,
1495
+ "m_Value": {
1496
+ "x": 0.0,
1497
+ "y": 0.0,
1498
+ "z": 0.0,
1499
+ "w": 0.0
1500
+ },
1501
+ "m_DefaultValue": {
1502
+ "x": 0.0,
1503
+ "y": 0.0,
1504
+ "z": 0.0,
1505
+ "w": 0.0
1506
+ },
1507
+ "m_Labels": []
1508
+ }
1509
+
1510
+ {
1511
+ "m_SGVersion": 0,
1512
+ "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
1513
+ "m_ObjectId": "a9709c4adf9046098ed4ff23f1bf04b6",
1514
+ "m_Id": 1,
1515
+ "m_DisplayName": "Texture",
1516
+ "m_SlotType": 0,
1517
+ "m_Hidden": false,
1518
+ "m_ShaderOutputName": "Texture",
1519
+ "m_StageCapability": 3,
1520
+ "m_BareResource": false,
1521
+ "m_Texture": {
1522
+ "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
1523
+ "m_Guid": ""
1524
+ },
1525
+ "m_DefaultType": 3
1526
+ }
1527
+
1528
+ {
1529
+ "m_SGVersion": 0,
1530
+ "m_Type": "UnityEditor.ShaderGraph.TriplanarNode",
1531
+ "m_ObjectId": "b2fd03af974d481fab15dc94368a4f9e",
1532
+ "m_Group": {
1533
+ "m_Id": ""
1534
+ },
1535
+ "m_Name": "Triplanar",
1536
+ "m_DrawState": {
1537
+ "m_Expanded": true,
1538
+ "m_Position": {
1539
+ "serializedVersion": "2",
1540
+ "x": 353.0000305175781,
1541
+ "y": 606.0000610351563,
1542
+ "width": 208.00003051757813,
1543
+ "height": 433.00006103515627
1544
+ }
1545
+ },
1546
+ "m_Slots": [
1547
+ {
1548
+ "m_Id": "a2accce04c7f447ba373046dc08e7cd7"
1549
+ },
1550
+ {
1551
+ "m_Id": "a9709c4adf9046098ed4ff23f1bf04b6"
1552
+ },
1553
+ {
1554
+ "m_Id": "9ed8cefcaeab4b95a8b3896b36cb1d18"
1555
+ },
1556
+ {
1557
+ "m_Id": "1ddbff6922c5404ba4bc76fee3fb22dc"
1558
+ },
1559
+ {
1560
+ "m_Id": "ca2b7ce1bc1c4a659daea083706f4760"
1561
+ },
1562
+ {
1563
+ "m_Id": "d6e5513ee79744efb2a80ced6ba01eb3"
1564
+ },
1565
+ {
1566
+ "m_Id": "7f3ab136904c4952b2795e02bb71e664"
1567
+ }
1568
+ ],
1569
+ "synonyms": [
1570
+ "project"
1571
+ ],
1572
+ "m_Precision": 0,
1573
+ "m_PreviewExpanded": false,
1574
+ "m_DismissedVersion": 0,
1575
+ "m_PreviewMode": 2,
1576
+ "m_CustomColors": {
1577
+ "m_SerializableColors": []
1578
+ },
1579
+ "m_TextureType": 1,
1580
+ "m_InputSpace": 4,
1581
+ "m_NormalOutputSpace": 3
1582
+ }
1583
+
1584
+ {
1585
+ "m_SGVersion": 0,
1586
+ "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
1587
+ "m_ObjectId": "b3bcd40de2894308a012cfdcebc908d3",
1588
+ "m_Id": 2,
1589
+ "m_DisplayName": "Out",
1590
+ "m_SlotType": 1,
1591
+ "m_Hidden": false,
1592
+ "m_ShaderOutputName": "Out",
1593
+ "m_StageCapability": 3,
1594
+ "m_Value": {
1595
+ "x": 0.0,
1596
+ "y": 0.0,
1597
+ "z": 0.0
1598
+ },
1599
+ "m_DefaultValue": {
1600
+ "x": 0.0,
1601
+ "y": 0.0,
1602
+ "z": 0.0
1603
+ },
1604
+ "m_Labels": []
1605
+ }
1606
+
1607
+ {
1608
+ "m_SGVersion": 0,
1609
+ "m_Type": "UnityEditor.ShaderGraph.BlockNode",
1610
+ "m_ObjectId": "b9c8028d2f014ef7bfd122ff38ee6f1a",
1611
+ "m_Group": {
1612
+ "m_Id": ""
1613
+ },
1614
+ "m_Name": "SurfaceDescription.Occlusion",
1615
+ "m_DrawState": {
1616
+ "m_Expanded": true,
1617
+ "m_Position": {
1618
+ "serializedVersion": "2",
1619
+ "x": 0.0,
1620
+ "y": 0.0,
1621
+ "width": 0.0,
1622
+ "height": 0.0
1623
+ }
1624
+ },
1625
+ "m_Slots": [
1626
+ {
1627
+ "m_Id": "666effb4886d44cabd53228de34bac97"
1628
+ }
1629
+ ],
1630
+ "synonyms": [],
1631
+ "m_Precision": 0,
1632
+ "m_PreviewExpanded": true,
1633
+ "m_DismissedVersion": 0,
1634
+ "m_PreviewMode": 0,
1635
+ "m_CustomColors": {
1636
+ "m_SerializableColors": []
1637
+ },
1638
+ "m_SerializedDescriptor": "SurfaceDescription.Occlusion"
1639
+ }
1640
+
1641
+ {
1642
+ "m_SGVersion": 0,
1643
+ "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
1644
+ "m_ObjectId": "be637a406afe4ec3a50b483f2fb34c5e",
1645
+ "m_Id": 0,
1646
+ "m_DisplayName": "Out",
1647
+ "m_SlotType": 1,
1648
+ "m_Hidden": false,
1649
+ "m_ShaderOutputName": "Out",
1650
+ "m_StageCapability": 3,
1651
+ "m_Value": {
1652
+ "x": 0.0,
1653
+ "y": 0.0,
1654
+ "z": 1.0
1655
+ },
1656
+ "m_DefaultValue": {
1657
+ "x": 0.0,
1658
+ "y": 0.0,
1659
+ "z": 0.0
1660
+ },
1661
+ "m_Labels": []
1662
+ }
1663
+
1664
+ {
1665
+ "m_SGVersion": 0,
1666
+ "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
1667
+ "m_ObjectId": "bebd8b3136244177a4fa4ccffba74308",
1668
+ "m_Id": 0,
1669
+ "m_DisplayName": "Tiling",
1670
+ "m_SlotType": 1,
1671
+ "m_Hidden": false,
1672
+ "m_ShaderOutputName": "Out",
1673
+ "m_StageCapability": 3,
1674
+ "m_Value": 0.0,
1675
+ "m_DefaultValue": 0.0,
1676
+ "m_Labels": []
1677
+ }
1678
+
1679
+ {
1680
+ "m_SGVersion": 0,
1681
+ "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
1682
+ "m_ObjectId": "ca2b7ce1bc1c4a659daea083706f4760",
1683
+ "m_Id": 4,
1684
+ "m_DisplayName": "Normal",
1685
+ "m_SlotType": 0,
1686
+ "m_Hidden": false,
1687
+ "m_ShaderOutputName": "Normal",
1688
+ "m_StageCapability": 3,
1689
+ "m_Value": {
1690
+ "x": 0.0,
1691
+ "y": 0.0,
1692
+ "z": 0.0
1693
+ },
1694
+ "m_DefaultValue": {
1695
+ "x": 0.0,
1696
+ "y": 0.0,
1697
+ "z": 0.0
1698
+ },
1699
+ "m_Labels": [],
1700
+ "m_Space": 4
1701
+ }
1702
+
1703
+ {
1704
+ "m_SGVersion": 0,
1705
+ "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
1706
+ "m_ObjectId": "ce2a59c72dce43d7a4045202064f7761",
1707
+ "m_Id": 0,
1708
+ "m_DisplayName": "Position",
1709
+ "m_SlotType": 0,
1710
+ "m_Hidden": false,
1711
+ "m_ShaderOutputName": "Position",
1712
+ "m_StageCapability": 1,
1713
+ "m_Value": {
1714
+ "x": 0.0,
1715
+ "y": 0.0,
1716
+ "z": 0.0
1717
+ },
1718
+ "m_DefaultValue": {
1719
+ "x": 0.0,
1720
+ "y": 0.0,
1721
+ "z": 0.0
1722
+ },
1723
+ "m_Labels": [],
1724
+ "m_Space": 0
1725
+ }
1726
+
1727
+ {
1728
+ "m_SGVersion": 0,
1729
+ "m_Type": "UnityEditor.ShaderGraph.PropertyNode",
1730
+ "m_ObjectId": "d31839a4ee644a69812adb8af2cfb650",
1731
+ "m_Group": {
1732
+ "m_Id": ""
1733
+ },
1734
+ "m_Name": "Property",
1735
+ "m_DrawState": {
1736
+ "m_Expanded": true,
1737
+ "m_Position": {
1738
+ "serializedVersion": "2",
1739
+ "x": 205.0000457763672,
1740
+ "y": 131.00001525878907,
1741
+ "width": 123.99998474121094,
1742
+ "height": 33.999969482421878
1743
+ }
1744
+ },
1745
+ "m_Slots": [
1746
+ {
1747
+ "m_Id": "e1fe4e129f0a4ac7a24176ce52c0a205"
1748
+ }
1749
+ ],
1750
+ "synonyms": [],
1751
+ "m_Precision": 0,
1752
+ "m_PreviewExpanded": true,
1753
+ "m_DismissedVersion": 0,
1754
+ "m_PreviewMode": 0,
1755
+ "m_CustomColors": {
1756
+ "m_SerializableColors": []
1757
+ },
1758
+ "m_Property": {
1759
+ "m_Id": "5ff562a28ee34ef391fda322b9e99534"
1760
+ }
1761
+ }
1762
+
1763
+ {
1764
+ "m_SGVersion": 0,
1765
+ "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
1766
+ "m_ObjectId": "d6e5513ee79744efb2a80ced6ba01eb3",
1767
+ "m_Id": 5,
1768
+ "m_DisplayName": "Tile",
1769
+ "m_SlotType": 0,
1770
+ "m_Hidden": false,
1771
+ "m_ShaderOutputName": "Tile",
1772
+ "m_StageCapability": 3,
1773
+ "m_Value": 1.0,
1774
+ "m_DefaultValue": 1.0,
1775
+ "m_Labels": []
1776
+ }
1777
+
1778
+ {
1779
+ "m_SGVersion": 0,
1780
+ "m_Type": "UnityEditor.ShaderGraph.CategoryData",
1781
+ "m_ObjectId": "da8365b36f66487094a3eb3f6b1d624f",
1782
+ "m_Name": "",
1783
+ "m_ChildObjectList": [
1784
+ {
1785
+ "m_Id": "5ff562a28ee34ef391fda322b9e99534"
1786
+ },
1787
+ {
1788
+ "m_Id": "01faca6f35204a8bbaee3b043f44cd37"
1789
+ },
1790
+ {
1791
+ "m_Id": "e2468b6cf37443b2a8d44896c0ddb503"
1792
+ },
1793
+ {
1794
+ "m_Id": "df9b6419756249abb03312866d77e51b"
1795
+ },
1796
+ {
1797
+ "m_Id": "3bcae863c0094372aad80a9b6f83e06e"
1798
+ }
1799
+ ]
1800
+ }
1801
+
1802
+ {
1803
+ "m_SGVersion": 1,
1804
+ "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",
1805
+ "m_ObjectId": "df9b6419756249abb03312866d77e51b",
1806
+ "m_Guid": {
1807
+ "m_GuidSerialized": "bcf8dc78-d0bc-45c0-8f71-32ee59877743"
1808
+ },
1809
+ "m_Name": "Tiling",
1810
+ "m_DefaultRefNameVersion": 1,
1811
+ "m_RefNameGeneratedByDisplayName": "Tiling",
1812
+ "m_DefaultReferenceName": "_Tiling",
1813
+ "m_OverrideReferenceName": "",
1814
+ "m_GeneratePropertyBlock": true,
1815
+ "m_UseCustomSlotLabel": false,
1816
+ "m_CustomSlotLabel": "",
1817
+ "m_DismissedVersion": 0,
1818
+ "m_Precision": 0,
1819
+ "overrideHLSLDeclaration": false,
1820
+ "hlslDeclarationOverride": 0,
1821
+ "m_Hidden": false,
1822
+ "m_Value": 1.0,
1823
+ "m_FloatType": 0,
1824
+ "m_RangeValues": {
1825
+ "x": 0.0,
1826
+ "y": 1.0
1827
+ }
1828
+ }
1829
+
1830
+ {
1831
+ "m_SGVersion": 0,
1832
+ "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
1833
+ "m_ObjectId": "e1fe4e129f0a4ac7a24176ce52c0a205",
1834
+ "m_Id": 0,
1835
+ "m_DisplayName": "Texture",
1836
+ "m_SlotType": 1,
1837
+ "m_Hidden": false,
1838
+ "m_ShaderOutputName": "Out",
1839
+ "m_StageCapability": 3,
1840
+ "m_BareResource": false
1841
+ }
1842
+
1843
+ {
1844
+ "m_SGVersion": 1,
1845
+ "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",
1846
+ "m_ObjectId": "e2468b6cf37443b2a8d44896c0ddb503",
1847
+ "m_Guid": {
1848
+ "m_GuidSerialized": "6a0b6a04-eab5-4649-9002-9644098f8416"
1849
+ },
1850
+ "m_Name": "NormalStrength",
1851
+ "m_DefaultRefNameVersion": 1,
1852
+ "m_RefNameGeneratedByDisplayName": "NormalStrength",
1853
+ "m_DefaultReferenceName": "_NormalStrength",
1854
+ "m_OverrideReferenceName": "",
1855
+ "m_GeneratePropertyBlock": true,
1856
+ "m_UseCustomSlotLabel": false,
1857
+ "m_CustomSlotLabel": "",
1858
+ "m_DismissedVersion": 0,
1859
+ "m_Precision": 0,
1860
+ "overrideHLSLDeclaration": false,
1861
+ "hlslDeclarationOverride": 0,
1862
+ "m_Hidden": false,
1863
+ "m_Value": 0.0,
1864
+ "m_FloatType": 0,
1865
+ "m_RangeValues": {
1866
+ "x": 0.0,
1867
+ "y": 1.0
1868
+ }
1869
+ }
1870
+
1871
+ {
1872
+ "m_SGVersion": 0,
1873
+ "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
1874
+ "m_ObjectId": "ed8a74c74917457dbfa0b8886a8d8968",
1875
+ "m_Id": 0,
1876
+ "m_DisplayName": "Out",
1877
+ "m_SlotType": 1,
1878
+ "m_Hidden": false,
1879
+ "m_ShaderOutputName": "Out",
1880
+ "m_StageCapability": 2,
1881
+ "m_Value": {
1882
+ "x": 0.0,
1883
+ "y": 0.0,
1884
+ "z": 0.0,
1885
+ "w": 0.0
1886
+ },
1887
+ "m_DefaultValue": {
1888
+ "x": 0.0,
1889
+ "y": 0.0,
1890
+ "z": 0.0,
1891
+ "w": 0.0
1892
+ },
1893
+ "m_Labels": []
1894
+ }
1895
+
1896
+ {
1897
+ "m_SGVersion": 0,
1898
+ "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
1899
+ "m_ObjectId": "faa04c9067ca47c59d641229ed4eb543",
1900
+ "m_Id": 6,
1901
+ "m_DisplayName": "Blend",
1902
+ "m_SlotType": 0,
1903
+ "m_Hidden": false,
1904
+ "m_ShaderOutputName": "Blend",
1905
+ "m_StageCapability": 3,
1906
+ "m_Value": 1.0,
1907
+ "m_DefaultValue": 1.0,
1908
+ "m_Labels": []
1909
+ }
1910
+