暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WhiteBalance.shadergraph 42KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767
  1. {
  2. "m_SGVersion": 3,
  3. "m_Type": "UnityEditor.ShaderGraph.GraphData",
  4. "m_ObjectId": "8e6e0285f7b44c159228a1a71fbcee71",
  5. "m_Properties": [],
  6. "m_Keywords": [],
  7. "m_Dropdowns": [],
  8. "m_CategoryData": [
  9. {
  10. "m_Id": "5a4136f07d1a4b57877959995b57c910"
  11. }
  12. ],
  13. "m_Nodes": [
  14. {
  15. "m_Id": "a9944a6fc3244549a1ed6a8f9a7c9335"
  16. },
  17. {
  18. "m_Id": "4b1f7d3b5fa744cf962df93c8b6d8beb"
  19. },
  20. {
  21. "m_Id": "dfc60742bba140128dec395986763268"
  22. },
  23. {
  24. "m_Id": "ab6ed77087e24794818b56b069a75cf0"
  25. },
  26. {
  27. "m_Id": "4a621135fb734ffea8f3bdc0e89ca394"
  28. },
  29. {
  30. "m_Id": "990bf8978a2e451d805c3a591f6adaae"
  31. },
  32. {
  33. "m_Id": "df30c1771cd14b5bbc5340a7e2c47195"
  34. },
  35. {
  36. "m_Id": "fd6e72799e944032b5a29aebbdd5cfac"
  37. },
  38. {
  39. "m_Id": "fba060d709634162ab541959e032e5c5"
  40. },
  41. {
  42. "m_Id": "c5e60c52b7554606b370e258ee71fedb"
  43. },
  44. {
  45. "m_Id": "24bb58753c344dbbb9a18d6bf66545ac"
  46. },
  47. {
  48. "m_Id": "34ddcc5982d24832b53fb0d8ad812b6d"
  49. },
  50. {
  51. "m_Id": "451a31fbb82743c28f39451725414e47"
  52. }
  53. ],
  54. "m_GroupDatas": [
  55. {
  56. "m_Id": "845a334628d34a4fa87ec25bea1c0cf8"
  57. },
  58. {
  59. "m_Id": "c73776c75e1847318d3cdadd171abda4"
  60. }
  61. ],
  62. "m_StickyNoteDatas": [
  63. {
  64. "m_Id": "8e340dcd245e49a6961d43d1db06862c"
  65. },
  66. {
  67. "m_Id": "28e89ea3ec3048a8bd2b4cbec05da7b1"
  68. },
  69. {
  70. "m_Id": "115bd1b0e7c44db39241b90b002183ab"
  71. }
  72. ],
  73. "m_Edges": [
  74. {
  75. "m_OutputSlot": {
  76. "m_Node": {
  77. "m_Id": "990bf8978a2e451d805c3a591f6adaae"
  78. },
  79. "m_SlotId": 0
  80. },
  81. "m_InputSlot": {
  82. "m_Node": {
  83. "m_Id": "df30c1771cd14b5bbc5340a7e2c47195"
  84. },
  85. "m_SlotId": 0
  86. }
  87. },
  88. {
  89. "m_OutputSlot": {
  90. "m_Node": {
  91. "m_Id": "c5e60c52b7554606b370e258ee71fedb"
  92. },
  93. "m_SlotId": 1
  94. },
  95. "m_InputSlot": {
  96. "m_Node": {
  97. "m_Id": "24bb58753c344dbbb9a18d6bf66545ac"
  98. },
  99. "m_SlotId": 2
  100. }
  101. },
  102. {
  103. "m_OutputSlot": {
  104. "m_Node": {
  105. "m_Id": "fba060d709634162ab541959e032e5c5"
  106. },
  107. "m_SlotId": 0
  108. },
  109. "m_InputSlot": {
  110. "m_Node": {
  111. "m_Id": "24bb58753c344dbbb9a18d6bf66545ac"
  112. },
  113. "m_SlotId": 0
  114. }
  115. },
  116. {
  117. "m_OutputSlot": {
  118. "m_Node": {
  119. "m_Id": "fd6e72799e944032b5a29aebbdd5cfac"
  120. },
  121. "m_SlotId": 1
  122. },
  123. "m_InputSlot": {
  124. "m_Node": {
  125. "m_Id": "df30c1771cd14b5bbc5340a7e2c47195"
  126. },
  127. "m_SlotId": 1
  128. }
  129. }
  130. ],
  131. "m_VertexContext": {
  132. "m_Position": {
  133. "x": 0.0,
  134. "y": 0.0
  135. },
  136. "m_Blocks": [
  137. {
  138. "m_Id": "a9944a6fc3244549a1ed6a8f9a7c9335"
  139. },
  140. {
  141. "m_Id": "4b1f7d3b5fa744cf962df93c8b6d8beb"
  142. },
  143. {
  144. "m_Id": "dfc60742bba140128dec395986763268"
  145. }
  146. ]
  147. },
  148. "m_FragmentContext": {
  149. "m_Position": {
  150. "x": 0.0,
  151. "y": 200.0
  152. },
  153. "m_Blocks": [
  154. {
  155. "m_Id": "ab6ed77087e24794818b56b069a75cf0"
  156. },
  157. {
  158. "m_Id": "34ddcc5982d24832b53fb0d8ad812b6d"
  159. },
  160. {
  161. "m_Id": "451a31fbb82743c28f39451725414e47"
  162. }
  163. ]
  164. },
  165. "m_PreviewData": {
  166. "serializedMesh": {
  167. "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
  168. "m_Guid": ""
  169. },
  170. "preventRotation": false
  171. },
  172. "m_Path": "Shader Graphs",
  173. "m_GraphPrecision": 1,
  174. "m_PreviewMode": 2,
  175. "m_OutputNode": {
  176. "m_Id": ""
  177. },
  178. "m_SubDatas": [],
  179. "m_ActiveTargets": [
  180. {
  181. "m_Id": "d4b4b22a5b8145988ddab7c0339d7c48"
  182. },
  183. {
  184. "m_Id": "38a5818884cf459eac28ae8774e72f6c"
  185. },
  186. {
  187. "m_Id": "7819dd8955a24b70859e444e6fa783b9"
  188. }
  189. ]
  190. }
  191. {
  192. "m_SGVersion": 0,
  193. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  194. "m_ObjectId": "02decc6de5244bc3af35a11dfe3d9373",
  195. "m_Id": 4,
  196. "m_DisplayName": "Smooth Delta",
  197. "m_SlotType": 1,
  198. "m_Hidden": false,
  199. "m_ShaderOutputName": "Smooth Delta",
  200. "m_StageCapability": 3,
  201. "m_Value": 0.0,
  202. "m_DefaultValue": 0.0,
  203. "m_Labels": []
  204. }
  205. {
  206. "m_SGVersion": 0,
  207. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  208. "m_ObjectId": "04caae5507604bb6b42ce4e930f197a4",
  209. "m_Id": 3,
  210. "m_DisplayName": "Delta Time",
  211. "m_SlotType": 1,
  212. "m_Hidden": false,
  213. "m_ShaderOutputName": "Delta Time",
  214. "m_StageCapability": 3,
  215. "m_Value": 0.0,
  216. "m_DefaultValue": 0.0,
  217. "m_Labels": []
  218. }
  219. {
  220. "m_SGVersion": 0,
  221. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  222. "m_ObjectId": "0620bd685f6a490689e82668629aceb9",
  223. "m_Id": 2,
  224. "m_DisplayName": "Cosine Time",
  225. "m_SlotType": 1,
  226. "m_Hidden": false,
  227. "m_ShaderOutputName": "Cosine Time",
  228. "m_StageCapability": 3,
  229. "m_Value": 0.0,
  230. "m_DefaultValue": 0.0,
  231. "m_Labels": []
  232. }
  233. {
  234. "m_SGVersion": 0,
  235. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  236. "m_ObjectId": "0b265c3542a34445b1347a88b051c966",
  237. "m_Id": 5,
  238. "m_DisplayName": "G",
  239. "m_SlotType": 1,
  240. "m_Hidden": false,
  241. "m_ShaderOutputName": "G",
  242. "m_StageCapability": 2,
  243. "m_Value": 0.0,
  244. "m_DefaultValue": 0.0,
  245. "m_Labels": []
  246. }
  247. {
  248. "m_SGVersion": 0,
  249. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  250. "m_ObjectId": "10063c480ccc426294bc3f7ea6935970",
  251. "m_Id": 0,
  252. "m_DisplayName": "RGBA",
  253. "m_SlotType": 1,
  254. "m_Hidden": false,
  255. "m_ShaderOutputName": "RGBA",
  256. "m_StageCapability": 2,
  257. "m_Value": {
  258. "x": 0.0,
  259. "y": 0.0,
  260. "z": 0.0,
  261. "w": 0.0
  262. },
  263. "m_DefaultValue": {
  264. "x": 0.0,
  265. "y": 0.0,
  266. "z": 0.0,
  267. "w": 0.0
  268. },
  269. "m_Labels": []
  270. }
  271. {
  272. "m_SGVersion": 0,
  273. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  274. "m_ObjectId": "115bd1b0e7c44db39241b90b002183ab",
  275. "m_Title": "",
  276. "m_Content": "Changing Tint between -1 and 1 changes the color values from green to magenta and back.",
  277. "m_TextSize": 0,
  278. "m_Theme": 0,
  279. "m_Position": {
  280. "serializedVersion": "2",
  281. "x": -405.5000305175781,
  282. "y": 408.0000305175781,
  283. "width": 200.00001525878907,
  284. "height": 100.00003051757813
  285. },
  286. "m_Group": {
  287. "m_Id": "c73776c75e1847318d3cdadd171abda4"
  288. }
  289. }
  290. {
  291. "m_SGVersion": 0,
  292. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData",
  293. "m_ObjectId": "187d6041761d45cc81318e64ea6c37d9",
  294. "m_MaterialNeedsUpdateHash": 0,
  295. "m_SurfaceType": 0,
  296. "m_RenderingPass": 1,
  297. "m_BlendMode": 0,
  298. "m_ZTest": 4,
  299. "m_ZWrite": false,
  300. "m_TransparentCullMode": 2,
  301. "m_OpaqueCullMode": 2,
  302. "m_SortPriority": 0,
  303. "m_AlphaTest": false,
  304. "m_TransparentDepthPrepass": false,
  305. "m_TransparentDepthPostpass": false,
  306. "m_SupportLodCrossFade": false,
  307. "m_DoubleSidedMode": 0,
  308. "m_DOTSInstancing": false,
  309. "m_CustomVelocity": false,
  310. "m_Tessellation": false,
  311. "m_TessellationMode": 0,
  312. "m_TessellationFactorMinDistance": 20.0,
  313. "m_TessellationFactorMaxDistance": 50.0,
  314. "m_TessellationFactorTriangleSize": 100.0,
  315. "m_TessellationShapeFactor": 0.75,
  316. "m_TessellationBackFaceCullEpsilon": -0.25,
  317. "m_TessellationMaxDisplacement": 0.009999999776482582,
  318. "m_DebugSymbols": false,
  319. "m_Version": 2,
  320. "inspectorFoldoutMask": 0
  321. }
  322. {
  323. "m_SGVersion": 0,
  324. "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot",
  325. "m_ObjectId": "2288c52746534157b4423d64e3412b01",
  326. "m_Id": 0,
  327. "m_DisplayName": "Tangent",
  328. "m_SlotType": 0,
  329. "m_Hidden": false,
  330. "m_ShaderOutputName": "Tangent",
  331. "m_StageCapability": 1,
  332. "m_Value": {
  333. "x": 0.0,
  334. "y": 0.0,
  335. "z": 0.0
  336. },
  337. "m_DefaultValue": {
  338. "x": 0.0,
  339. "y": 0.0,
  340. "z": 0.0
  341. },
  342. "m_Labels": [],
  343. "m_Space": 0
  344. }
  345. {
  346. "m_SGVersion": 0,
  347. "m_Type": "UnityEditor.ShaderGraph.WhiteBalanceNode",
  348. "m_ObjectId": "24bb58753c344dbbb9a18d6bf66545ac",
  349. "m_Group": {
  350. "m_Id": "c73776c75e1847318d3cdadd171abda4"
  351. },
  352. "m_Name": "White Balance",
  353. "m_DrawState": {
  354. "m_Expanded": true,
  355. "m_Position": {
  356. "serializedVersion": "2",
  357. "x": -408.4999694824219,
  358. "y": 76.49998474121094,
  359. "width": 208.00001525878907,
  360. "height": 326.0
  361. }
  362. },
  363. "m_Slots": [
  364. {
  365. "m_Id": "c6075e19dfc4456cb1aa7fd176e087f9"
  366. },
  367. {
  368. "m_Id": "c1bb168242ad4acdbdfc28248a1d821c"
  369. },
  370. {
  371. "m_Id": "d5ae8928ca734598bd9071d24cf864af"
  372. },
  373. {
  374. "m_Id": "d92d138f11cb4e67b342f08091860aee"
  375. }
  376. ],
  377. "synonyms": [],
  378. "m_Precision": 0,
  379. "m_PreviewExpanded": true,
  380. "m_DismissedVersion": 0,
  381. "m_PreviewMode": 0,
  382. "m_CustomColors": {
  383. "m_SerializableColors": []
  384. }
  385. }
  386. {
  387. "m_SGVersion": 0,
  388. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  389. "m_ObjectId": "28b42744a975432cab15d1d3c09147c7",
  390. "m_Id": 2,
  391. "m_DisplayName": "Tint",
  392. "m_SlotType": 0,
  393. "m_Hidden": false,
  394. "m_ShaderOutputName": "Tint",
  395. "m_StageCapability": 3,
  396. "m_Value": 0.0,
  397. "m_DefaultValue": 0.0,
  398. "m_Labels": []
  399. }
  400. {
  401. "m_SGVersion": 0,
  402. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  403. "m_ObjectId": "28e89ea3ec3048a8bd2b4cbec05da7b1",
  404. "m_Title": "",
  405. "m_Content": "Changing Temperature between -1 and 1 changes the color values from cool to warm and back.",
  406. "m_TextSize": 0,
  407. "m_Theme": 0,
  408. "m_Position": {
  409. "serializedVersion": "2",
  410. "x": -992.0000610351563,
  411. "y": 415.0000305175781,
  412. "width": 200.0,
  413. "height": 100.00003051757813
  414. },
  415. "m_Group": {
  416. "m_Id": "845a334628d34a4fa87ec25bea1c0cf8"
  417. }
  418. }
  419. {
  420. "m_SGVersion": 0,
  421. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  422. "m_ObjectId": "30b712df50d04540859d26a1efc16f61",
  423. "m_Id": 3,
  424. "m_DisplayName": "Out",
  425. "m_SlotType": 1,
  426. "m_Hidden": false,
  427. "m_ShaderOutputName": "Out",
  428. "m_StageCapability": 3,
  429. "m_Value": {
  430. "x": 0.0,
  431. "y": 0.0,
  432. "z": 0.0
  433. },
  434. "m_DefaultValue": {
  435. "x": 0.0,
  436. "y": 0.0,
  437. "z": 0.0
  438. },
  439. "m_Labels": []
  440. }
  441. {
  442. "m_SGVersion": 0,
  443. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  444. "m_ObjectId": "34ddcc5982d24832b53fb0d8ad812b6d",
  445. "m_Group": {
  446. "m_Id": ""
  447. },
  448. "m_Name": "SurfaceDescription.Emission",
  449. "m_DrawState": {
  450. "m_Expanded": true,
  451. "m_Position": {
  452. "serializedVersion": "2",
  453. "x": 0.0,
  454. "y": 0.0,
  455. "width": 0.0,
  456. "height": 0.0
  457. }
  458. },
  459. "m_Slots": [
  460. {
  461. "m_Id": "85a1db38aef744ab81b387ac1a03cf0a"
  462. }
  463. ],
  464. "synonyms": [],
  465. "m_Precision": 0,
  466. "m_PreviewExpanded": true,
  467. "m_DismissedVersion": 0,
  468. "m_PreviewMode": 0,
  469. "m_CustomColors": {
  470. "m_SerializableColors": []
  471. },
  472. "m_SerializedDescriptor": "SurfaceDescription.Emission"
  473. }
  474. {
  475. "m_SGVersion": 0,
  476. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget",
  477. "m_ObjectId": "38a5818884cf459eac28ae8774e72f6c",
  478. "m_ActiveSubTarget": {
  479. "m_Id": "44c61081f70d4ff1984a0f5e93e83120"
  480. },
  481. "m_Datas": [
  482. {
  483. "m_Id": "729c6846125a4a1e93d627e9b3fc103b"
  484. },
  485. {
  486. "m_Id": "187d6041761d45cc81318e64ea6c37d9"
  487. },
  488. {
  489. "m_Id": "691e925395104520b1273427c96e4a77"
  490. }
  491. ],
  492. "m_CustomEditorGUI": "",
  493. "m_SupportVFX": false,
  494. "m_SupportLineRendering": false
  495. }
  496. {
  497. "m_SGVersion": 0,
  498. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  499. "m_ObjectId": "397e4ee6739c4ddcb5e55bf3274ed6aa",
  500. "m_Id": 1,
  501. "m_DisplayName": "Texture",
  502. "m_SlotType": 0,
  503. "m_Hidden": false,
  504. "m_ShaderOutputName": "Texture",
  505. "m_StageCapability": 3,
  506. "m_BareResource": false,
  507. "m_Texture": {
  508. "m_SerializedTexture": "{\"texture\":{\"fileID\":2800000,\"guid\":\"ade6c320c9b59a94d9bb43c5a437e2ef\",\"type\":3}}",
  509. "m_Guid": ""
  510. },
  511. "m_DefaultType": 0
  512. }
  513. {
  514. "m_SGVersion": 0,
  515. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitSubTarget",
  516. "m_ObjectId": "44c61081f70d4ff1984a0f5e93e83120"
  517. }
  518. {
  519. "m_SGVersion": 0,
  520. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  521. "m_ObjectId": "451a31fbb82743c28f39451725414e47",
  522. "m_Group": {
  523. "m_Id": ""
  524. },
  525. "m_Name": "SurfaceDescription.Alpha",
  526. "m_DrawState": {
  527. "m_Expanded": true,
  528. "m_Position": {
  529. "serializedVersion": "2",
  530. "x": 0.0,
  531. "y": 0.0,
  532. "width": 0.0,
  533. "height": 0.0
  534. }
  535. },
  536. "m_Slots": [
  537. {
  538. "m_Id": "8358924c9151480b9707c8a148205c6e"
  539. }
  540. ],
  541. "synonyms": [],
  542. "m_Precision": 0,
  543. "m_PreviewExpanded": true,
  544. "m_DismissedVersion": 0,
  545. "m_PreviewMode": 0,
  546. "m_CustomColors": {
  547. "m_SerializableColors": []
  548. },
  549. "m_SerializedDescriptor": "SurfaceDescription.Alpha"
  550. }
  551. {
  552. "m_SGVersion": 2,
  553. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget",
  554. "m_ObjectId": "4819a58b6e0d404aa94a5c9639739f6c"
  555. }
  556. {
  557. "m_SGVersion": 0,
  558. "m_Type": "UnityEditor.ShaderGraph.WhiteBalanceNode",
  559. "m_ObjectId": "4a621135fb734ffea8f3bdc0e89ca394",
  560. "m_Group": {
  561. "m_Id": ""
  562. },
  563. "m_Name": "White Balance",
  564. "m_DrawState": {
  565. "m_Expanded": true,
  566. "m_Position": {
  567. "serializedVersion": "2",
  568. "x": -966.5,
  569. "y": -230.50001525878907,
  570. "width": 186.5,
  571. "height": 142.0
  572. }
  573. },
  574. "m_Slots": [
  575. {
  576. "m_Id": "7f1cdedc47a9490b86964c3488eaeab3"
  577. },
  578. {
  579. "m_Id": "b02d635ec58641aba76ea1f4a0293f5c"
  580. },
  581. {
  582. "m_Id": "28b42744a975432cab15d1d3c09147c7"
  583. },
  584. {
  585. "m_Id": "6a5b54c8efac4263b4efa63c4937521a"
  586. }
  587. ],
  588. "synonyms": [],
  589. "m_Precision": 0,
  590. "m_PreviewExpanded": false,
  591. "m_DismissedVersion": 0,
  592. "m_PreviewMode": 0,
  593. "m_CustomColors": {
  594. "m_SerializableColors": []
  595. }
  596. }
  597. {
  598. "m_SGVersion": 0,
  599. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  600. "m_ObjectId": "4b1f7d3b5fa744cf962df93c8b6d8beb",
  601. "m_Group": {
  602. "m_Id": ""
  603. },
  604. "m_Name": "VertexDescription.Normal",
  605. "m_DrawState": {
  606. "m_Expanded": true,
  607. "m_Position": {
  608. "serializedVersion": "2",
  609. "x": 0.0,
  610. "y": 0.0,
  611. "width": 0.0,
  612. "height": 0.0
  613. }
  614. },
  615. "m_Slots": [
  616. {
  617. "m_Id": "8556e8bee11c4d9bb37b302780932f8e"
  618. }
  619. ],
  620. "synonyms": [],
  621. "m_Precision": 0,
  622. "m_PreviewExpanded": true,
  623. "m_DismissedVersion": 0,
  624. "m_PreviewMode": 0,
  625. "m_CustomColors": {
  626. "m_SerializableColors": []
  627. },
  628. "m_SerializedDescriptor": "VertexDescription.Normal"
  629. }
  630. {
  631. "m_SGVersion": 0,
  632. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  633. "m_ObjectId": "530c37724bc64515952566efe0a3c1c3",
  634. "m_Id": 0,
  635. "m_DisplayName": "RGBA",
  636. "m_SlotType": 1,
  637. "m_Hidden": false,
  638. "m_ShaderOutputName": "RGBA",
  639. "m_StageCapability": 2,
  640. "m_Value": {
  641. "x": 0.0,
  642. "y": 0.0,
  643. "z": 0.0,
  644. "w": 0.0
  645. },
  646. "m_DefaultValue": {
  647. "x": 0.0,
  648. "y": 0.0,
  649. "z": 0.0,
  650. "w": 0.0
  651. },
  652. "m_Labels": []
  653. }
  654. {
  655. "m_SGVersion": 0,
  656. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  657. "m_ObjectId": "54109dd9284a431085e337af4ebef6cb",
  658. "m_Id": 4,
  659. "m_DisplayName": "R",
  660. "m_SlotType": 1,
  661. "m_Hidden": false,
  662. "m_ShaderOutputName": "R",
  663. "m_StageCapability": 2,
  664. "m_Value": 0.0,
  665. "m_DefaultValue": 0.0,
  666. "m_Labels": []
  667. }
  668. {
  669. "m_SGVersion": 0,
  670. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  671. "m_ObjectId": "548927f5c1c24a2ab88995bd1cbc15c6",
  672. "m_Id": 0,
  673. "m_DisplayName": "Time",
  674. "m_SlotType": 1,
  675. "m_Hidden": false,
  676. "m_ShaderOutputName": "Time",
  677. "m_StageCapability": 3,
  678. "m_Value": 0.0,
  679. "m_DefaultValue": 0.0,
  680. "m_Labels": []
  681. }
  682. {
  683. "m_SGVersion": 0,
  684. "m_Type": "UnityEditor.ShaderGraph.CategoryData",
  685. "m_ObjectId": "5a4136f07d1a4b57877959995b57c910",
  686. "m_Name": "",
  687. "m_ChildObjectList": []
  688. }
  689. {
  690. "m_SGVersion": 0,
  691. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  692. "m_ObjectId": "5e58a29eff044e1890887966a2b8e065",
  693. "m_Id": 2,
  694. "m_DisplayName": "UV",
  695. "m_SlotType": 0,
  696. "m_Hidden": false,
  697. "m_ShaderOutputName": "UV",
  698. "m_StageCapability": 3,
  699. "m_Value": {
  700. "x": 0.0,
  701. "y": 0.0
  702. },
  703. "m_DefaultValue": {
  704. "x": 0.0,
  705. "y": 0.0
  706. },
  707. "m_Labels": [],
  708. "m_Channel": 0
  709. }
  710. {
  711. "m_SGVersion": 0,
  712. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  713. "m_ObjectId": "5f4c16a293aa4cab8a604c96b9852e34",
  714. "m_Id": 0,
  715. "m_DisplayName": "In",
  716. "m_SlotType": 0,
  717. "m_Hidden": false,
  718. "m_ShaderOutputName": "In",
  719. "m_StageCapability": 3,
  720. "m_Value": {
  721. "x": 0.0,
  722. "y": 0.0,
  723. "z": 0.0
  724. },
  725. "m_DefaultValue": {
  726. "x": 0.0,
  727. "y": 0.0,
  728. "z": 0.0
  729. },
  730. "m_Labels": []
  731. }
  732. {
  733. "m_SGVersion": 0,
  734. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  735. "m_ObjectId": "61677461448d46a1994f9a3edd88900e",
  736. "m_Id": 3,
  737. "m_DisplayName": "Sampler",
  738. "m_SlotType": 0,
  739. "m_Hidden": false,
  740. "m_ShaderOutputName": "Sampler",
  741. "m_StageCapability": 3,
  742. "m_BareResource": false
  743. }
  744. {
  745. "m_SGVersion": 0,
  746. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  747. "m_ObjectId": "684db6c06c6c49aaad075a594b44a4b5",
  748. "m_Id": 5,
  749. "m_DisplayName": "G",
  750. "m_SlotType": 1,
  751. "m_Hidden": false,
  752. "m_ShaderOutputName": "G",
  753. "m_StageCapability": 2,
  754. "m_Value": 0.0,
  755. "m_DefaultValue": 0.0,
  756. "m_Labels": []
  757. }
  758. {
  759. "m_SGVersion": 0,
  760. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitData",
  761. "m_ObjectId": "691e925395104520b1273427c96e4a77",
  762. "m_EnableShadowMatte": false,
  763. "m_DistortionOnly": false
  764. }
  765. {
  766. "m_SGVersion": 0,
  767. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  768. "m_ObjectId": "6a5b54c8efac4263b4efa63c4937521a",
  769. "m_Id": 3,
  770. "m_DisplayName": "Out",
  771. "m_SlotType": 1,
  772. "m_Hidden": false,
  773. "m_ShaderOutputName": "Out",
  774. "m_StageCapability": 3,
  775. "m_Value": {
  776. "x": 0.0,
  777. "y": 0.0,
  778. "z": 0.0
  779. },
  780. "m_DefaultValue": {
  781. "x": 0.0,
  782. "y": 0.0,
  783. "z": 0.0
  784. },
  785. "m_Labels": []
  786. }
  787. {
  788. "m_SGVersion": 0,
  789. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  790. "m_ObjectId": "6e577ae86e42466d9897acd63c3951d6",
  791. "m_Id": 7,
  792. "m_DisplayName": "A",
  793. "m_SlotType": 1,
  794. "m_Hidden": false,
  795. "m_ShaderOutputName": "A",
  796. "m_StageCapability": 2,
  797. "m_Value": 0.0,
  798. "m_DefaultValue": 0.0,
  799. "m_Labels": []
  800. }
  801. {
  802. "m_SGVersion": 0,
  803. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData",
  804. "m_ObjectId": "729c6846125a4a1e93d627e9b3fc103b",
  805. "m_Distortion": false,
  806. "m_DistortionMode": 0,
  807. "m_DistortionDepthTest": true,
  808. "m_AddPrecomputedVelocity": false,
  809. "m_TransparentWritesMotionVec": false,
  810. "m_DepthOffset": false,
  811. "m_ConservativeDepthOffset": false,
  812. "m_TransparencyFog": true,
  813. "m_AlphaTestShadow": false,
  814. "m_BackThenFrontRendering": false,
  815. "m_TransparentDepthPrepass": false,
  816. "m_TransparentDepthPostpass": false,
  817. "m_TransparentPerPixelSorting": false,
  818. "m_SupportLodCrossFade": false
  819. }
  820. {
  821. "m_SGVersion": 1,
  822. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget",
  823. "m_ObjectId": "7819dd8955a24b70859e444e6fa783b9",
  824. "m_Datas": [],
  825. "m_ActiveSubTarget": {
  826. "m_Id": "4819a58b6e0d404aa94a5c9639739f6c"
  827. },
  828. "m_AllowMaterialOverride": false,
  829. "m_SurfaceType": 0,
  830. "m_ZTestMode": 4,
  831. "m_ZWriteControl": 0,
  832. "m_AlphaMode": 0,
  833. "m_RenderFace": 2,
  834. "m_AlphaClip": false,
  835. "m_CastShadows": true,
  836. "m_ReceiveShadows": true,
  837. "m_DisableTint": false,
  838. "m_AdditionalMotionVectorMode": 0,
  839. "m_AlembicMotionVectors": false,
  840. "m_SupportsLODCrossFade": false,
  841. "m_CustomEditorGUI": "",
  842. "m_SupportVFX": false
  843. }
  844. {
  845. "m_SGVersion": 0,
  846. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  847. "m_ObjectId": "795c82d4f2f447efa92fbded3344f91d",
  848. "m_Id": 0,
  849. "m_DisplayName": "Base Color",
  850. "m_SlotType": 0,
  851. "m_Hidden": false,
  852. "m_ShaderOutputName": "BaseColor",
  853. "m_StageCapability": 2,
  854. "m_Value": {
  855. "x": 0.5,
  856. "y": 0.5,
  857. "z": 0.5
  858. },
  859. "m_DefaultValue": {
  860. "x": 0.0,
  861. "y": 0.0,
  862. "z": 0.0
  863. },
  864. "m_Labels": [],
  865. "m_ColorMode": 0,
  866. "m_DefaultColor": {
  867. "r": 0.5,
  868. "g": 0.5,
  869. "b": 0.5,
  870. "a": 1.0
  871. }
  872. }
  873. {
  874. "m_SGVersion": 0,
  875. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  876. "m_ObjectId": "7b69ad9778d34ca2b7836363e4d2a98d",
  877. "m_Id": 7,
  878. "m_DisplayName": "A",
  879. "m_SlotType": 1,
  880. "m_Hidden": false,
  881. "m_ShaderOutputName": "A",
  882. "m_StageCapability": 2,
  883. "m_Value": 0.0,
  884. "m_DefaultValue": 0.0,
  885. "m_Labels": []
  886. }
  887. {
  888. "m_SGVersion": 0,
  889. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  890. "m_ObjectId": "7f1cdedc47a9490b86964c3488eaeab3",
  891. "m_Id": 0,
  892. "m_DisplayName": "In",
  893. "m_SlotType": 0,
  894. "m_Hidden": false,
  895. "m_ShaderOutputName": "In",
  896. "m_StageCapability": 3,
  897. "m_Value": {
  898. "x": 0.0,
  899. "y": 0.0,
  900. "z": 0.0
  901. },
  902. "m_DefaultValue": {
  903. "x": 0.0,
  904. "y": 0.0,
  905. "z": 0.0
  906. },
  907. "m_Labels": []
  908. }
  909. {
  910. "m_SGVersion": 0,
  911. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  912. "m_ObjectId": "8358924c9151480b9707c8a148205c6e",
  913. "m_Id": 0,
  914. "m_DisplayName": "Alpha",
  915. "m_SlotType": 0,
  916. "m_Hidden": false,
  917. "m_ShaderOutputName": "Alpha",
  918. "m_StageCapability": 2,
  919. "m_Value": 1.0,
  920. "m_DefaultValue": 1.0,
  921. "m_Labels": []
  922. }
  923. {
  924. "m_SGVersion": 0,
  925. "m_Type": "UnityEditor.ShaderGraph.GroupData",
  926. "m_ObjectId": "845a334628d34a4fa87ec25bea1c0cf8",
  927. "m_Title": "Temperature Adjustments",
  928. "m_Position": {
  929. "x": -1338.0001220703125,
  930. "y": 18.0
  931. }
  932. }
  933. {
  934. "m_SGVersion": 0,
  935. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  936. "m_ObjectId": "84f8baa521f34720934a2b0de83313c1",
  937. "m_Id": 2,
  938. "m_DisplayName": "UV",
  939. "m_SlotType": 0,
  940. "m_Hidden": false,
  941. "m_ShaderOutputName": "UV",
  942. "m_StageCapability": 3,
  943. "m_Value": {
  944. "x": 0.0,
  945. "y": 0.0
  946. },
  947. "m_DefaultValue": {
  948. "x": 0.0,
  949. "y": 0.0
  950. },
  951. "m_Labels": [],
  952. "m_Channel": 0
  953. }
  954. {
  955. "m_SGVersion": 0,
  956. "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
  957. "m_ObjectId": "8556e8bee11c4d9bb37b302780932f8e",
  958. "m_Id": 0,
  959. "m_DisplayName": "Normal",
  960. "m_SlotType": 0,
  961. "m_Hidden": false,
  962. "m_ShaderOutputName": "Normal",
  963. "m_StageCapability": 1,
  964. "m_Value": {
  965. "x": 0.0,
  966. "y": 0.0,
  967. "z": 0.0
  968. },
  969. "m_DefaultValue": {
  970. "x": 0.0,
  971. "y": 0.0,
  972. "z": 0.0
  973. },
  974. "m_Labels": [],
  975. "m_Space": 0
  976. }
  977. {
  978. "m_SGVersion": 0,
  979. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  980. "m_ObjectId": "85a1db38aef744ab81b387ac1a03cf0a",
  981. "m_Id": 0,
  982. "m_DisplayName": "Emission",
  983. "m_SlotType": 0,
  984. "m_Hidden": false,
  985. "m_ShaderOutputName": "Emission",
  986. "m_StageCapability": 2,
  987. "m_Value": {
  988. "x": 0.0,
  989. "y": 0.0,
  990. "z": 0.0
  991. },
  992. "m_DefaultValue": {
  993. "x": 0.0,
  994. "y": 0.0,
  995. "z": 0.0
  996. },
  997. "m_Labels": [],
  998. "m_ColorMode": 1,
  999. "m_DefaultColor": {
  1000. "r": 0.0,
  1001. "g": 0.0,
  1002. "b": 0.0,
  1003. "a": 1.0
  1004. }
  1005. }
  1006. {
  1007. "m_SGVersion": 0,
  1008. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  1009. "m_ObjectId": "8e340dcd245e49a6961d43d1db06862c",
  1010. "m_Title": "White Balance Node",
  1011. "m_Content": "The White Balance Node allows you to adjust color data using Temperature and Tint controls.\n\nTemperature adjusts the data on a gradient between cool (cyan) with a value of -1 and warm (orange) with a value of 1. A value of zero for Temperature makes no adjustments.\n\nTint adjusts the data on a gradient between green using a value of -1 and magenta with a value of 1. A value of zero for Tint makes no adjustments.",
  1012. "m_TextSize": 0,
  1013. "m_Theme": 0,
  1014. "m_Position": {
  1015. "serializedVersion": "2",
  1016. "x": -770.5000610351563,
  1017. "y": -228.50001525878907,
  1018. "width": 223.0,
  1019. "height": 225.00001525878907
  1020. },
  1021. "m_Group": {
  1022. "m_Id": ""
  1023. }
  1024. }
  1025. {
  1026. "m_SGVersion": 0,
  1027. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1028. "m_ObjectId": "8f77585cdee4487db14c2fe51ac51f64",
  1029. "m_Id": 0,
  1030. "m_DisplayName": "Time",
  1031. "m_SlotType": 1,
  1032. "m_Hidden": false,
  1033. "m_ShaderOutputName": "Time",
  1034. "m_StageCapability": 3,
  1035. "m_Value": 0.0,
  1036. "m_DefaultValue": 0.0,
  1037. "m_Labels": []
  1038. }
  1039. {
  1040. "m_SGVersion": 0,
  1041. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  1042. "m_ObjectId": "930afff997174489bafc459fde785d3c",
  1043. "m_Id": 1,
  1044. "m_DisplayName": "Texture",
  1045. "m_SlotType": 0,
  1046. "m_Hidden": false,
  1047. "m_ShaderOutputName": "Texture",
  1048. "m_StageCapability": 3,
  1049. "m_BareResource": false,
  1050. "m_Texture": {
  1051. "m_SerializedTexture": "{\"texture\":{\"fileID\":2800000,\"guid\":\"ade6c320c9b59a94d9bb43c5a437e2ef\",\"type\":3}}",
  1052. "m_Guid": ""
  1053. },
  1054. "m_DefaultType": 0
  1055. }
  1056. {
  1057. "m_SGVersion": 0,
  1058. "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInUnlitSubTarget",
  1059. "m_ObjectId": "98f39f98b15f498c98dd93c6fffb4ea1"
  1060. }
  1061. {
  1062. "m_SGVersion": 0,
  1063. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  1064. "m_ObjectId": "990bf8978a2e451d805c3a591f6adaae",
  1065. "m_Group": {
  1066. "m_Id": "845a334628d34a4fa87ec25bea1c0cf8"
  1067. },
  1068. "m_Name": "Sample Texture 2D",
  1069. "m_DrawState": {
  1070. "m_Expanded": false,
  1071. "m_Position": {
  1072. "serializedVersion": "2",
  1073. "x": -1313.0,
  1074. "y": 76.49998474121094,
  1075. "width": 208.0,
  1076. "height": 338.0
  1077. }
  1078. },
  1079. "m_Slots": [
  1080. {
  1081. "m_Id": "530c37724bc64515952566efe0a3c1c3"
  1082. },
  1083. {
  1084. "m_Id": "ec2b8bdcd63e46b08a85484647dea10e"
  1085. },
  1086. {
  1087. "m_Id": "0b265c3542a34445b1347a88b051c966"
  1088. },
  1089. {
  1090. "m_Id": "c887561470d04eb38bb738fd962b37d4"
  1091. },
  1092. {
  1093. "m_Id": "7b69ad9778d34ca2b7836363e4d2a98d"
  1094. },
  1095. {
  1096. "m_Id": "397e4ee6739c4ddcb5e55bf3274ed6aa"
  1097. },
  1098. {
  1099. "m_Id": "5e58a29eff044e1890887966a2b8e065"
  1100. },
  1101. {
  1102. "m_Id": "61677461448d46a1994f9a3edd88900e"
  1103. }
  1104. ],
  1105. "synonyms": [
  1106. "tex2d"
  1107. ],
  1108. "m_Precision": 0,
  1109. "m_PreviewExpanded": true,
  1110. "m_DismissedVersion": 0,
  1111. "m_PreviewMode": 0,
  1112. "m_CustomColors": {
  1113. "m_SerializableColors": []
  1114. },
  1115. "m_TextureType": 0,
  1116. "m_NormalMapSpace": 0,
  1117. "m_EnableGlobalMipBias": true,
  1118. "m_MipSamplingMode": 0
  1119. }
  1120. {
  1121. "m_SGVersion": 0,
  1122. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1123. "m_ObjectId": "a97939acaf1a4643b29dca3172867db4",
  1124. "m_Id": 6,
  1125. "m_DisplayName": "B",
  1126. "m_SlotType": 1,
  1127. "m_Hidden": false,
  1128. "m_ShaderOutputName": "B",
  1129. "m_StageCapability": 2,
  1130. "m_Value": 0.0,
  1131. "m_DefaultValue": 0.0,
  1132. "m_Labels": []
  1133. }
  1134. {
  1135. "m_SGVersion": 0,
  1136. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1137. "m_ObjectId": "a9944a6fc3244549a1ed6a8f9a7c9335",
  1138. "m_Group": {
  1139. "m_Id": ""
  1140. },
  1141. "m_Name": "VertexDescription.Position",
  1142. "m_DrawState": {
  1143. "m_Expanded": true,
  1144. "m_Position": {
  1145. "serializedVersion": "2",
  1146. "x": 0.0,
  1147. "y": 0.0,
  1148. "width": 0.0,
  1149. "height": 0.0
  1150. }
  1151. },
  1152. "m_Slots": [
  1153. {
  1154. "m_Id": "df91a79339a74681bd20897f82ea8a92"
  1155. }
  1156. ],
  1157. "synonyms": [],
  1158. "m_Precision": 0,
  1159. "m_PreviewExpanded": true,
  1160. "m_DismissedVersion": 0,
  1161. "m_PreviewMode": 0,
  1162. "m_CustomColors": {
  1163. "m_SerializableColors": []
  1164. },
  1165. "m_SerializedDescriptor": "VertexDescription.Position"
  1166. }
  1167. {
  1168. "m_SGVersion": 0,
  1169. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1170. "m_ObjectId": "ab6ed77087e24794818b56b069a75cf0",
  1171. "m_Group": {
  1172. "m_Id": ""
  1173. },
  1174. "m_Name": "SurfaceDescription.BaseColor",
  1175. "m_DrawState": {
  1176. "m_Expanded": true,
  1177. "m_Position": {
  1178. "serializedVersion": "2",
  1179. "x": 0.0,
  1180. "y": 0.0,
  1181. "width": 0.0,
  1182. "height": 0.0
  1183. }
  1184. },
  1185. "m_Slots": [
  1186. {
  1187. "m_Id": "795c82d4f2f447efa92fbded3344f91d"
  1188. }
  1189. ],
  1190. "synonyms": [],
  1191. "m_Precision": 0,
  1192. "m_PreviewExpanded": true,
  1193. "m_DismissedVersion": 0,
  1194. "m_PreviewMode": 0,
  1195. "m_CustomColors": {
  1196. "m_SerializableColors": []
  1197. },
  1198. "m_SerializedDescriptor": "SurfaceDescription.BaseColor"
  1199. }
  1200. {
  1201. "m_SGVersion": 0,
  1202. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1203. "m_ObjectId": "b02d635ec58641aba76ea1f4a0293f5c",
  1204. "m_Id": 1,
  1205. "m_DisplayName": "Temperature",
  1206. "m_SlotType": 0,
  1207. "m_Hidden": false,
  1208. "m_ShaderOutputName": "Temperature",
  1209. "m_StageCapability": 3,
  1210. "m_Value": 0.0,
  1211. "m_DefaultValue": 0.0,
  1212. "m_Labels": []
  1213. }
  1214. {
  1215. "m_SGVersion": 0,
  1216. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1217. "m_ObjectId": "c1bb168242ad4acdbdfc28248a1d821c",
  1218. "m_Id": 1,
  1219. "m_DisplayName": "Temperature",
  1220. "m_SlotType": 0,
  1221. "m_Hidden": false,
  1222. "m_ShaderOutputName": "Temperature",
  1223. "m_StageCapability": 3,
  1224. "m_Value": 0.0,
  1225. "m_DefaultValue": 0.0,
  1226. "m_Labels": []
  1227. }
  1228. {
  1229. "m_SGVersion": 0,
  1230. "m_Type": "UnityEditor.ShaderGraph.TimeNode",
  1231. "m_ObjectId": "c5e60c52b7554606b370e258ee71fedb",
  1232. "m_Group": {
  1233. "m_Id": "c73776c75e1847318d3cdadd171abda4"
  1234. },
  1235. "m_Name": "Time",
  1236. "m_DrawState": {
  1237. "m_Expanded": false,
  1238. "m_Position": {
  1239. "serializedVersion": "2",
  1240. "x": -624.0000610351563,
  1241. "y": 413.50006103515627,
  1242. "width": 104.5,
  1243. "height": 77.0
  1244. }
  1245. },
  1246. "m_Slots": [
  1247. {
  1248. "m_Id": "548927f5c1c24a2ab88995bd1cbc15c6"
  1249. },
  1250. {
  1251. "m_Id": "db5c924d552341d59bff46f447c17eff"
  1252. },
  1253. {
  1254. "m_Id": "c87007d833054240b6efbd27746c2529"
  1255. },
  1256. {
  1257. "m_Id": "da0d0f9db6cd46cb8f801604859546ba"
  1258. },
  1259. {
  1260. "m_Id": "e26d925bd0d24b4d9fc66a4dc30113a3"
  1261. }
  1262. ],
  1263. "synonyms": [],
  1264. "m_Precision": 0,
  1265. "m_PreviewExpanded": true,
  1266. "m_DismissedVersion": 0,
  1267. "m_PreviewMode": 0,
  1268. "m_CustomColors": {
  1269. "m_SerializableColors": []
  1270. }
  1271. }
  1272. {
  1273. "m_SGVersion": 0,
  1274. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1275. "m_ObjectId": "c6075e19dfc4456cb1aa7fd176e087f9",
  1276. "m_Id": 0,
  1277. "m_DisplayName": "In",
  1278. "m_SlotType": 0,
  1279. "m_Hidden": false,
  1280. "m_ShaderOutputName": "In",
  1281. "m_StageCapability": 3,
  1282. "m_Value": {
  1283. "x": 0.0,
  1284. "y": 0.0,
  1285. "z": 0.0
  1286. },
  1287. "m_DefaultValue": {
  1288. "x": 0.0,
  1289. "y": 0.0,
  1290. "z": 0.0
  1291. },
  1292. "m_Labels": []
  1293. }
  1294. {
  1295. "m_SGVersion": 0,
  1296. "m_Type": "UnityEditor.ShaderGraph.GroupData",
  1297. "m_ObjectId": "c73776c75e1847318d3cdadd171abda4",
  1298. "m_Title": "Tint Adjustments",
  1299. "m_Position": {
  1300. "x": -752.5000610351563,
  1301. "y": 18.0
  1302. }
  1303. }
  1304. {
  1305. "m_SGVersion": 0,
  1306. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1307. "m_ObjectId": "c87007d833054240b6efbd27746c2529",
  1308. "m_Id": 2,
  1309. "m_DisplayName": "Cosine Time",
  1310. "m_SlotType": 1,
  1311. "m_Hidden": false,
  1312. "m_ShaderOutputName": "Cosine Time",
  1313. "m_StageCapability": 3,
  1314. "m_Value": 0.0,
  1315. "m_DefaultValue": 0.0,
  1316. "m_Labels": []
  1317. }
  1318. {
  1319. "m_SGVersion": 0,
  1320. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1321. "m_ObjectId": "c887561470d04eb38bb738fd962b37d4",
  1322. "m_Id": 6,
  1323. "m_DisplayName": "B",
  1324. "m_SlotType": 1,
  1325. "m_Hidden": false,
  1326. "m_ShaderOutputName": "B",
  1327. "m_StageCapability": 2,
  1328. "m_Value": 0.0,
  1329. "m_DefaultValue": 0.0,
  1330. "m_Labels": []
  1331. }
  1332. {
  1333. "m_SGVersion": 0,
  1334. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1335. "m_ObjectId": "cb68a499c97f4fafa1762e4d35e178b0",
  1336. "m_Id": 1,
  1337. "m_DisplayName": "Temperature",
  1338. "m_SlotType": 0,
  1339. "m_Hidden": false,
  1340. "m_ShaderOutputName": "Temperature",
  1341. "m_StageCapability": 3,
  1342. "m_Value": 1.0,
  1343. "m_DefaultValue": 0.0,
  1344. "m_Labels": []
  1345. }
  1346. {
  1347. "m_SGVersion": 0,
  1348. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1349. "m_ObjectId": "d1146b5a436e4a8383a546295e13e07d",
  1350. "m_Id": 2,
  1351. "m_DisplayName": "Tint",
  1352. "m_SlotType": 0,
  1353. "m_Hidden": false,
  1354. "m_ShaderOutputName": "Tint",
  1355. "m_StageCapability": 3,
  1356. "m_Value": 0.0,
  1357. "m_DefaultValue": 0.0,
  1358. "m_Labels": []
  1359. }
  1360. {
  1361. "m_SGVersion": 2,
  1362. "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInTarget",
  1363. "m_ObjectId": "d4b4b22a5b8145988ddab7c0339d7c48",
  1364. "m_Datas": [],
  1365. "m_ActiveSubTarget": {
  1366. "m_Id": "98f39f98b15f498c98dd93c6fffb4ea1"
  1367. },
  1368. "m_AllowMaterialOverride": false,
  1369. "m_SurfaceType": 0,
  1370. "m_ZWriteControl": 0,
  1371. "m_ZTestMode": 4,
  1372. "m_AlphaMode": 0,
  1373. "m_RenderFace": 2,
  1374. "m_AlphaClip": false,
  1375. "m_CustomEditorGUI": ""
  1376. }
  1377. {
  1378. "m_SGVersion": 0,
  1379. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1380. "m_ObjectId": "d5ae8928ca734598bd9071d24cf864af",
  1381. "m_Id": 2,
  1382. "m_DisplayName": "Tint",
  1383. "m_SlotType": 0,
  1384. "m_Hidden": false,
  1385. "m_ShaderOutputName": "Tint",
  1386. "m_StageCapability": 3,
  1387. "m_Value": 0.0,
  1388. "m_DefaultValue": 0.0,
  1389. "m_Labels": []
  1390. }
  1391. {
  1392. "m_SGVersion": 0,
  1393. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1394. "m_ObjectId": "d92d138f11cb4e67b342f08091860aee",
  1395. "m_Id": 3,
  1396. "m_DisplayName": "Out",
  1397. "m_SlotType": 1,
  1398. "m_Hidden": false,
  1399. "m_ShaderOutputName": "Out",
  1400. "m_StageCapability": 3,
  1401. "m_Value": {
  1402. "x": 0.0,
  1403. "y": 0.0,
  1404. "z": 0.0
  1405. },
  1406. "m_DefaultValue": {
  1407. "x": 0.0,
  1408. "y": 0.0,
  1409. "z": 0.0
  1410. },
  1411. "m_Labels": []
  1412. }
  1413. {
  1414. "m_SGVersion": 0,
  1415. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1416. "m_ObjectId": "da0d0f9db6cd46cb8f801604859546ba",
  1417. "m_Id": 3,
  1418. "m_DisplayName": "Delta Time",
  1419. "m_SlotType": 1,
  1420. "m_Hidden": false,
  1421. "m_ShaderOutputName": "Delta Time",
  1422. "m_StageCapability": 3,
  1423. "m_Value": 0.0,
  1424. "m_DefaultValue": 0.0,
  1425. "m_Labels": []
  1426. }
  1427. {
  1428. "m_SGVersion": 0,
  1429. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1430. "m_ObjectId": "db5c924d552341d59bff46f447c17eff",
  1431. "m_Id": 1,
  1432. "m_DisplayName": "Sine Time",
  1433. "m_SlotType": 1,
  1434. "m_Hidden": false,
  1435. "m_ShaderOutputName": "Sine Time",
  1436. "m_StageCapability": 3,
  1437. "m_Value": 0.0,
  1438. "m_DefaultValue": 0.0,
  1439. "m_Labels": []
  1440. }
  1441. {
  1442. "m_SGVersion": 0,
  1443. "m_Type": "UnityEditor.ShaderGraph.WhiteBalanceNode",
  1444. "m_ObjectId": "df30c1771cd14b5bbc5340a7e2c47195",
  1445. "m_Group": {
  1446. "m_Id": "845a334628d34a4fa87ec25bea1c0cf8"
  1447. },
  1448. "m_Name": "White Balance",
  1449. "m_DrawState": {
  1450. "m_Expanded": true,
  1451. "m_Position": {
  1452. "serializedVersion": "2",
  1453. "x": -994.0,
  1454. "y": 76.49998474121094,
  1455. "width": 208.00006103515626,
  1456. "height": 326.0
  1457. }
  1458. },
  1459. "m_Slots": [
  1460. {
  1461. "m_Id": "5f4c16a293aa4cab8a604c96b9852e34"
  1462. },
  1463. {
  1464. "m_Id": "cb68a499c97f4fafa1762e4d35e178b0"
  1465. },
  1466. {
  1467. "m_Id": "d1146b5a436e4a8383a546295e13e07d"
  1468. },
  1469. {
  1470. "m_Id": "30b712df50d04540859d26a1efc16f61"
  1471. }
  1472. ],
  1473. "synonyms": [],
  1474. "m_Precision": 0,
  1475. "m_PreviewExpanded": true,
  1476. "m_DismissedVersion": 0,
  1477. "m_PreviewMode": 0,
  1478. "m_CustomColors": {
  1479. "m_SerializableColors": []
  1480. }
  1481. }
  1482. {
  1483. "m_SGVersion": 0,
  1484. "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
  1485. "m_ObjectId": "df91a79339a74681bd20897f82ea8a92",
  1486. "m_Id": 0,
  1487. "m_DisplayName": "Position",
  1488. "m_SlotType": 0,
  1489. "m_Hidden": false,
  1490. "m_ShaderOutputName": "Position",
  1491. "m_StageCapability": 1,
  1492. "m_Value": {
  1493. "x": 0.0,
  1494. "y": 0.0,
  1495. "z": 0.0
  1496. },
  1497. "m_DefaultValue": {
  1498. "x": 0.0,
  1499. "y": 0.0,
  1500. "z": 0.0
  1501. },
  1502. "m_Labels": [],
  1503. "m_Space": 0
  1504. }
  1505. {
  1506. "m_SGVersion": 0,
  1507. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1508. "m_ObjectId": "dfc60742bba140128dec395986763268",
  1509. "m_Group": {
  1510. "m_Id": ""
  1511. },
  1512. "m_Name": "VertexDescription.Tangent",
  1513. "m_DrawState": {
  1514. "m_Expanded": true,
  1515. "m_Position": {
  1516. "serializedVersion": "2",
  1517. "x": 0.0,
  1518. "y": 0.0,
  1519. "width": 0.0,
  1520. "height": 0.0
  1521. }
  1522. },
  1523. "m_Slots": [
  1524. {
  1525. "m_Id": "2288c52746534157b4423d64e3412b01"
  1526. }
  1527. ],
  1528. "synonyms": [],
  1529. "m_Precision": 0,
  1530. "m_PreviewExpanded": true,
  1531. "m_DismissedVersion": 0,
  1532. "m_PreviewMode": 0,
  1533. "m_CustomColors": {
  1534. "m_SerializableColors": []
  1535. },
  1536. "m_SerializedDescriptor": "VertexDescription.Tangent"
  1537. }
  1538. {
  1539. "m_SGVersion": 0,
  1540. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1541. "m_ObjectId": "e26d925bd0d24b4d9fc66a4dc30113a3",
  1542. "m_Id": 4,
  1543. "m_DisplayName": "Smooth Delta",
  1544. "m_SlotType": 1,
  1545. "m_Hidden": false,
  1546. "m_ShaderOutputName": "Smooth Delta",
  1547. "m_StageCapability": 3,
  1548. "m_Value": 0.0,
  1549. "m_DefaultValue": 0.0,
  1550. "m_Labels": []
  1551. }
  1552. {
  1553. "m_SGVersion": 0,
  1554. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1555. "m_ObjectId": "ec2b8bdcd63e46b08a85484647dea10e",
  1556. "m_Id": 4,
  1557. "m_DisplayName": "R",
  1558. "m_SlotType": 1,
  1559. "m_Hidden": false,
  1560. "m_ShaderOutputName": "R",
  1561. "m_StageCapability": 2,
  1562. "m_Value": 0.0,
  1563. "m_DefaultValue": 0.0,
  1564. "m_Labels": []
  1565. }
  1566. {
  1567. "m_SGVersion": 0,
  1568. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1569. "m_ObjectId": "f98e7769f21c4c72aee9e7592a1f8b56",
  1570. "m_Id": 1,
  1571. "m_DisplayName": "Sine Time",
  1572. "m_SlotType": 1,
  1573. "m_Hidden": false,
  1574. "m_ShaderOutputName": "Sine Time",
  1575. "m_StageCapability": 3,
  1576. "m_Value": 0.0,
  1577. "m_DefaultValue": 0.0,
  1578. "m_Labels": []
  1579. }
  1580. {
  1581. "m_SGVersion": 0,
  1582. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  1583. "m_ObjectId": "fba060d709634162ab541959e032e5c5",
  1584. "m_Group": {
  1585. "m_Id": "c73776c75e1847318d3cdadd171abda4"
  1586. },
  1587. "m_Name": "Sample Texture 2D",
  1588. "m_DrawState": {
  1589. "m_Expanded": false,
  1590. "m_Position": {
  1591. "serializedVersion": "2",
  1592. "x": -727.5000610351563,
  1593. "y": 76.49998474121094,
  1594. "width": 208.0,
  1595. "height": 338.0
  1596. }
  1597. },
  1598. "m_Slots": [
  1599. {
  1600. "m_Id": "10063c480ccc426294bc3f7ea6935970"
  1601. },
  1602. {
  1603. "m_Id": "54109dd9284a431085e337af4ebef6cb"
  1604. },
  1605. {
  1606. "m_Id": "684db6c06c6c49aaad075a594b44a4b5"
  1607. },
  1608. {
  1609. "m_Id": "a97939acaf1a4643b29dca3172867db4"
  1610. },
  1611. {
  1612. "m_Id": "6e577ae86e42466d9897acd63c3951d6"
  1613. },
  1614. {
  1615. "m_Id": "930afff997174489bafc459fde785d3c"
  1616. },
  1617. {
  1618. "m_Id": "84f8baa521f34720934a2b0de83313c1"
  1619. },
  1620. {
  1621. "m_Id": "fc9d5ad652a743f4afc97f2d2914cf01"
  1622. }
  1623. ],
  1624. "synonyms": [
  1625. "tex2d"
  1626. ],
  1627. "m_Precision": 0,
  1628. "m_PreviewExpanded": true,
  1629. "m_DismissedVersion": 0,
  1630. "m_PreviewMode": 0,
  1631. "m_CustomColors": {
  1632. "m_SerializableColors": []
  1633. },
  1634. "m_TextureType": 0,
  1635. "m_NormalMapSpace": 0,
  1636. "m_EnableGlobalMipBias": true,
  1637. "m_MipSamplingMode": 0
  1638. }
  1639. {
  1640. "m_SGVersion": 0,
  1641. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  1642. "m_ObjectId": "fc9d5ad652a743f4afc97f2d2914cf01",
  1643. "m_Id": 3,
  1644. "m_DisplayName": "Sampler",
  1645. "m_SlotType": 0,
  1646. "m_Hidden": false,
  1647. "m_ShaderOutputName": "Sampler",
  1648. "m_StageCapability": 3,
  1649. "m_BareResource": false
  1650. }
  1651. {
  1652. "m_SGVersion": 0,
  1653. "m_Type": "UnityEditor.ShaderGraph.TimeNode",
  1654. "m_ObjectId": "fd6e72799e944032b5a29aebbdd5cfac",
  1655. "m_Group": {
  1656. "m_Id": "845a334628d34a4fa87ec25bea1c0cf8"
  1657. },
  1658. "m_Name": "Time",
  1659. "m_DrawState": {
  1660. "m_Expanded": false,
  1661. "m_Position": {
  1662. "serializedVersion": "2",
  1663. "x": -1209.5001220703125,
  1664. "y": 413.5000305175781,
  1665. "width": 104.5,
  1666. "height": 77.00003051757813
  1667. }
  1668. },
  1669. "m_Slots": [
  1670. {
  1671. "m_Id": "8f77585cdee4487db14c2fe51ac51f64"
  1672. },
  1673. {
  1674. "m_Id": "f98e7769f21c4c72aee9e7592a1f8b56"
  1675. },
  1676. {
  1677. "m_Id": "0620bd685f6a490689e82668629aceb9"
  1678. },
  1679. {
  1680. "m_Id": "04caae5507604bb6b42ce4e930f197a4"
  1681. },
  1682. {
  1683. "m_Id": "02decc6de5244bc3af35a11dfe3d9373"
  1684. }
  1685. ],
  1686. "synonyms": [],
  1687. "m_Precision": 0,
  1688. "m_PreviewExpanded": true,
  1689. "m_DismissedVersion": 0,
  1690. "m_PreviewMode": 0,
  1691. "m_CustomColors": {
  1692. "m_SerializableColors": []
  1693. }
  1694. }