Ei kuvausta
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.

Distance.shadergraph 48KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064
  1. {
  2. "m_SGVersion": 3,
  3. "m_Type": "UnityEditor.ShaderGraph.GraphData",
  4. "m_ObjectId": "a10055fbc22d4e10bbd822b27225efff",
  5. "m_Properties": [],
  6. "m_Keywords": [],
  7. "m_Dropdowns": [],
  8. "m_CategoryData": [
  9. {
  10. "m_Id": "4290ddd1d3994c9f9588bdb2b8c40735"
  11. }
  12. ],
  13. "m_Nodes": [
  14. {
  15. "m_Id": "bff876e8bbb64d61b4df6ab7d7a5ed29"
  16. },
  17. {
  18. "m_Id": "cbb372ec42a34eda9381ebc162ceb34f"
  19. },
  20. {
  21. "m_Id": "cf43d0f4e01644268deccfd1ab73cbe0"
  22. },
  23. {
  24. "m_Id": "eaa48fdc220a44d89d94d4621f1b153d"
  25. },
  26. {
  27. "m_Id": "44f11c1c018b4690af8f271a33b51b87"
  28. },
  29. {
  30. "m_Id": "431aff4f6768408fbd363f888dedfbe7"
  31. },
  32. {
  33. "m_Id": "51d08e38cf934d70a75955f6a27945e2"
  34. },
  35. {
  36. "m_Id": "ca70bc32933749d489b6fa25cf25905c"
  37. },
  38. {
  39. "m_Id": "c7d890153afa4e58a66c7be40c06b50b"
  40. },
  41. {
  42. "m_Id": "2d9a9e00dd12438486a35ea296c047c7"
  43. },
  44. {
  45. "m_Id": "9577d2b218154f72b665d1acc2eee4d2"
  46. },
  47. {
  48. "m_Id": "14790fd03f5746418cac32392c4bf5a1"
  49. },
  50. {
  51. "m_Id": "fa464c0350514f88964dc2b9fe6c459f"
  52. },
  53. {
  54. "m_Id": "f9561f2f06f0439b8a57047f6150a900"
  55. },
  56. {
  57. "m_Id": "a53692fa133a4b52a1413a7d8494a10b"
  58. },
  59. {
  60. "m_Id": "ea79f4b7d0ca430fafd31ca02973d7ee"
  61. },
  62. {
  63. "m_Id": "893f42b16e4f4086959ec09d704f870b"
  64. }
  65. ],
  66. "m_GroupDatas": [
  67. {
  68. "m_Id": "43009d1c7681439e8b02a1f64b983d89"
  69. },
  70. {
  71. "m_Id": "ed626672a3a44cf1a06697345101e900"
  72. }
  73. ],
  74. "m_StickyNoteDatas": [
  75. {
  76. "m_Id": "7d09ac4de7a84fd996e3356379687211"
  77. },
  78. {
  79. "m_Id": "856390e5e8c649bb8bc2c43d9650084e"
  80. },
  81. {
  82. "m_Id": "7a8ae348e8444fb0ad0ae71f9dfbf6af"
  83. },
  84. {
  85. "m_Id": "a64892fce793425e939c2c76c3916658"
  86. },
  87. {
  88. "m_Id": "77556f4904f5437bb1c7624031710c5e"
  89. },
  90. {
  91. "m_Id": "eed6a47aad1f4ab699d6698e7a1c4a5b"
  92. }
  93. ],
  94. "m_Edges": [
  95. {
  96. "m_OutputSlot": {
  97. "m_Node": {
  98. "m_Id": "14790fd03f5746418cac32392c4bf5a1"
  99. },
  100. "m_SlotId": 2
  101. },
  102. "m_InputSlot": {
  103. "m_Node": {
  104. "m_Id": "fa464c0350514f88964dc2b9fe6c459f"
  105. },
  106. "m_SlotId": 0
  107. }
  108. },
  109. {
  110. "m_OutputSlot": {
  111. "m_Node": {
  112. "m_Id": "2d9a9e00dd12438486a35ea296c047c7"
  113. },
  114. "m_SlotId": 0
  115. },
  116. "m_InputSlot": {
  117. "m_Node": {
  118. "m_Id": "14790fd03f5746418cac32392c4bf5a1"
  119. },
  120. "m_SlotId": 1
  121. }
  122. },
  123. {
  124. "m_OutputSlot": {
  125. "m_Node": {
  126. "m_Id": "431aff4f6768408fbd363f888dedfbe7"
  127. },
  128. "m_SlotId": 0
  129. },
  130. "m_InputSlot": {
  131. "m_Node": {
  132. "m_Id": "51d08e38cf934d70a75955f6a27945e2"
  133. },
  134. "m_SlotId": 0
  135. }
  136. },
  137. {
  138. "m_OutputSlot": {
  139. "m_Node": {
  140. "m_Id": "9577d2b218154f72b665d1acc2eee4d2"
  141. },
  142. "m_SlotId": 0
  143. },
  144. "m_InputSlot": {
  145. "m_Node": {
  146. "m_Id": "14790fd03f5746418cac32392c4bf5a1"
  147. },
  148. "m_SlotId": 0
  149. }
  150. },
  151. {
  152. "m_OutputSlot": {
  153. "m_Node": {
  154. "m_Id": "c7d890153afa4e58a66c7be40c06b50b"
  155. },
  156. "m_SlotId": 1
  157. },
  158. "m_InputSlot": {
  159. "m_Node": {
  160. "m_Id": "2d9a9e00dd12438486a35ea296c047c7"
  161. },
  162. "m_SlotId": 1
  163. }
  164. },
  165. {
  166. "m_OutputSlot": {
  167. "m_Node": {
  168. "m_Id": "ca70bc32933749d489b6fa25cf25905c"
  169. },
  170. "m_SlotId": 0
  171. },
  172. "m_InputSlot": {
  173. "m_Node": {
  174. "m_Id": "51d08e38cf934d70a75955f6a27945e2"
  175. },
  176. "m_SlotId": 1
  177. }
  178. },
  179. {
  180. "m_OutputSlot": {
  181. "m_Node": {
  182. "m_Id": "f9561f2f06f0439b8a57047f6150a900"
  183. },
  184. "m_SlotId": 1
  185. },
  186. "m_InputSlot": {
  187. "m_Node": {
  188. "m_Id": "a53692fa133a4b52a1413a7d8494a10b"
  189. },
  190. "m_SlotId": 0
  191. }
  192. },
  193. {
  194. "m_OutputSlot": {
  195. "m_Node": {
  196. "m_Id": "fa464c0350514f88964dc2b9fe6c459f"
  197. },
  198. "m_SlotId": 1
  199. },
  200. "m_InputSlot": {
  201. "m_Node": {
  202. "m_Id": "f9561f2f06f0439b8a57047f6150a900"
  203. },
  204. "m_SlotId": 0
  205. }
  206. }
  207. ],
  208. "m_VertexContext": {
  209. "m_Position": {
  210. "x": 0.0,
  211. "y": 0.0
  212. },
  213. "m_Blocks": [
  214. {
  215. "m_Id": "bff876e8bbb64d61b4df6ab7d7a5ed29"
  216. },
  217. {
  218. "m_Id": "cbb372ec42a34eda9381ebc162ceb34f"
  219. },
  220. {
  221. "m_Id": "cf43d0f4e01644268deccfd1ab73cbe0"
  222. }
  223. ]
  224. },
  225. "m_FragmentContext": {
  226. "m_Position": {
  227. "x": 0.0,
  228. "y": 200.0
  229. },
  230. "m_Blocks": [
  231. {
  232. "m_Id": "eaa48fdc220a44d89d94d4621f1b153d"
  233. },
  234. {
  235. "m_Id": "ea79f4b7d0ca430fafd31ca02973d7ee"
  236. },
  237. {
  238. "m_Id": "893f42b16e4f4086959ec09d704f870b"
  239. }
  240. ]
  241. },
  242. "m_PreviewData": {
  243. "serializedMesh": {
  244. "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
  245. "m_Guid": ""
  246. },
  247. "preventRotation": false
  248. },
  249. "m_Path": "Shader Graphs",
  250. "m_GraphPrecision": 1,
  251. "m_PreviewMode": 2,
  252. "m_OutputNode": {
  253. "m_Id": ""
  254. },
  255. "m_ActiveTargets": [
  256. {
  257. "m_Id": "4aea8c25fc0b45f2a2aa19697ab5d511"
  258. },
  259. {
  260. "m_Id": "ee1f2c367e674d44a167cb0b4f78eb49"
  261. },
  262. {
  263. "m_Id": "9772cced10804bc6b73dcdbd57975873"
  264. }
  265. ]
  266. }
  267. {
  268. "m_SGVersion": 0,
  269. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  270. "m_ObjectId": "009ba8d7421141f58c341e63565a0b50",
  271. "m_Id": 3,
  272. "m_DisplayName": "Delta Time",
  273. "m_SlotType": 1,
  274. "m_Hidden": false,
  275. "m_ShaderOutputName": "Delta Time",
  276. "m_StageCapability": 3,
  277. "m_Value": 0.0,
  278. "m_DefaultValue": 0.0,
  279. "m_Labels": []
  280. }
  281. {
  282. "m_SGVersion": 0,
  283. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  284. "m_ObjectId": "087419e529954de7817ba7c38660c943",
  285. "m_Id": 0,
  286. "m_DisplayName": "Out",
  287. "m_SlotType": 1,
  288. "m_Hidden": false,
  289. "m_ShaderOutputName": "Out",
  290. "m_StageCapability": 3,
  291. "m_Value": {
  292. "x": 0.0,
  293. "y": 0.0,
  294. "z": 0.0
  295. },
  296. "m_DefaultValue": {
  297. "x": 0.0,
  298. "y": 0.0,
  299. "z": 0.0
  300. },
  301. "m_Labels": []
  302. }
  303. {
  304. "m_SGVersion": 0,
  305. "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot",
  306. "m_ObjectId": "135b4fd5509c4f60a065dd783f0e9b4e",
  307. "m_Id": 0,
  308. "m_DisplayName": "Tangent",
  309. "m_SlotType": 0,
  310. "m_Hidden": false,
  311. "m_ShaderOutputName": "Tangent",
  312. "m_StageCapability": 1,
  313. "m_Value": {
  314. "x": 0.0,
  315. "y": 0.0,
  316. "z": 0.0
  317. },
  318. "m_DefaultValue": {
  319. "x": 0.0,
  320. "y": 0.0,
  321. "z": 0.0
  322. },
  323. "m_Labels": [],
  324. "m_Space": 0
  325. }
  326. {
  327. "m_SGVersion": 0,
  328. "m_Type": "UnityEditor.ShaderGraph.DistanceNode",
  329. "m_ObjectId": "14790fd03f5746418cac32392c4bf5a1",
  330. "m_Group": {
  331. "m_Id": "ed626672a3a44cf1a06697345101e900"
  332. },
  333. "m_Name": "Distance",
  334. "m_DrawState": {
  335. "m_Expanded": true,
  336. "m_Position": {
  337. "serializedVersion": "2",
  338. "x": -867.0000610351563,
  339. "y": 59.99999237060547,
  340. "width": 127.5,
  341. "height": 117.99999237060547
  342. }
  343. },
  344. "m_Slots": [
  345. {
  346. "m_Id": "c9ae865df31b440da204987d5f6b8408"
  347. },
  348. {
  349. "m_Id": "d11440a5670944b696e0f71dcfdaae0b"
  350. },
  351. {
  352. "m_Id": "48974c5bcdaf4fa7b3c1ed3d580166ab"
  353. }
  354. ],
  355. "synonyms": [],
  356. "m_Precision": 0,
  357. "m_PreviewExpanded": false,
  358. "m_DismissedVersion": 0,
  359. "m_PreviewMode": 0,
  360. "m_CustomColors": {
  361. "m_SerializableColors": []
  362. }
  363. }
  364. {
  365. "m_SGVersion": 0,
  366. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  367. "m_ObjectId": "14be238b3d3c45f9a32058aa60fba1e9",
  368. "m_Id": 0,
  369. "m_DisplayName": "Out",
  370. "m_SlotType": 1,
  371. "m_Hidden": false,
  372. "m_ShaderOutputName": "Out",
  373. "m_StageCapability": 3,
  374. "m_Value": {
  375. "x": 0.0,
  376. "y": 0.0,
  377. "z": 0.0
  378. },
  379. "m_DefaultValue": {
  380. "x": 0.0,
  381. "y": 0.0,
  382. "z": 0.0
  383. },
  384. "m_Labels": []
  385. }
  386. {
  387. "m_SGVersion": 0,
  388. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  389. "m_ObjectId": "154d6c3e7f294239b83018c498c2ab2d",
  390. "m_Id": 1,
  391. "m_DisplayName": "X",
  392. "m_SlotType": 0,
  393. "m_Hidden": false,
  394. "m_ShaderOutputName": "X",
  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.DynamicVectorMaterialSlot",
  403. "m_ObjectId": "15a40cf568f944c5824cde058bc2ebff",
  404. "m_Id": 2,
  405. "m_DisplayName": "Out",
  406. "m_SlotType": 1,
  407. "m_Hidden": false,
  408. "m_ShaderOutputName": "Out",
  409. "m_StageCapability": 3,
  410. "m_Value": {
  411. "x": 0.0,
  412. "y": 0.0,
  413. "z": 0.0,
  414. "w": 0.0
  415. },
  416. "m_DefaultValue": {
  417. "x": 0.0,
  418. "y": 0.0,
  419. "z": 0.0,
  420. "w": 0.0
  421. }
  422. }
  423. {
  424. "m_SGVersion": 0,
  425. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  426. "m_ObjectId": "224db4c80ab345ff91c1f19e09f94b32",
  427. "m_Id": 0,
  428. "m_DisplayName": "Base Color",
  429. "m_SlotType": 0,
  430. "m_Hidden": false,
  431. "m_ShaderOutputName": "BaseColor",
  432. "m_StageCapability": 2,
  433. "m_Value": {
  434. "x": 0.5,
  435. "y": 0.5,
  436. "z": 0.5
  437. },
  438. "m_DefaultValue": {
  439. "x": 0.0,
  440. "y": 0.0,
  441. "z": 0.0
  442. },
  443. "m_Labels": [],
  444. "m_ColorMode": 0,
  445. "m_DefaultColor": {
  446. "r": 0.5,
  447. "g": 0.5,
  448. "b": 0.5,
  449. "a": 1.0
  450. }
  451. }
  452. {
  453. "m_SGVersion": 0,
  454. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  455. "m_ObjectId": "254a0a908bf34e569380b82b451812e9",
  456. "m_Id": 0,
  457. "m_DisplayName": "Alpha",
  458. "m_SlotType": 0,
  459. "m_Hidden": false,
  460. "m_ShaderOutputName": "Alpha",
  461. "m_StageCapability": 2,
  462. "m_Value": 1.0,
  463. "m_DefaultValue": 1.0,
  464. "m_Labels": []
  465. }
  466. {
  467. "m_SGVersion": 0,
  468. "m_Type": "UnityEditor.ShaderGraph.Vector3Node",
  469. "m_ObjectId": "2d9a9e00dd12438486a35ea296c047c7",
  470. "m_Group": {
  471. "m_Id": "ed626672a3a44cf1a06697345101e900"
  472. },
  473. "m_Name": "Vector 3",
  474. "m_DrawState": {
  475. "m_Expanded": true,
  476. "m_Position": {
  477. "serializedVersion": "2",
  478. "x": -1110.5001220703125,
  479. "y": 130.00001525878907,
  480. "width": 127.50006103515625,
  481. "height": 125.00003051757813
  482. }
  483. },
  484. "m_Slots": [
  485. {
  486. "m_Id": "154d6c3e7f294239b83018c498c2ab2d"
  487. },
  488. {
  489. "m_Id": "e2868f62ea46483bb6f3cd0048804960"
  490. },
  491. {
  492. "m_Id": "82cbff1f9ad145caa7ab6bb872b4fbaf"
  493. },
  494. {
  495. "m_Id": "14be238b3d3c45f9a32058aa60fba1e9"
  496. }
  497. ],
  498. "synonyms": [
  499. "3",
  500. "v3",
  501. "vec3",
  502. "float3"
  503. ],
  504. "m_Precision": 0,
  505. "m_PreviewExpanded": true,
  506. "m_DismissedVersion": 0,
  507. "m_PreviewMode": 0,
  508. "m_CustomColors": {
  509. "m_SerializableColors": []
  510. },
  511. "m_Value": {
  512. "x": 0.0,
  513. "y": 0.0,
  514. "z": 0.0
  515. }
  516. }
  517. {
  518. "m_SGVersion": 0,
  519. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  520. "m_ObjectId": "35efbde7a408425c9a99d02dd6391b6d",
  521. "m_Id": 1,
  522. "m_DisplayName": "B",
  523. "m_SlotType": 0,
  524. "m_Hidden": false,
  525. "m_ShaderOutputName": "B",
  526. "m_StageCapability": 3,
  527. "m_Value": {
  528. "x": 0.0,
  529. "y": 0.0,
  530. "z": 0.0,
  531. "w": 0.0
  532. },
  533. "m_DefaultValue": {
  534. "x": 0.0,
  535. "y": 0.0,
  536. "z": 0.0,
  537. "w": 0.0
  538. }
  539. }
  540. {
  541. "m_SGVersion": 2,
  542. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget",
  543. "m_ObjectId": "3edc8fa1c1574b2fb3ab7ede47ef31c8"
  544. }
  545. {
  546. "m_SGVersion": 0,
  547. "m_Type": "UnityEditor.ShaderGraph.CategoryData",
  548. "m_ObjectId": "4290ddd1d3994c9f9588bdb2b8c40735",
  549. "m_Name": "",
  550. "m_ChildObjectList": []
  551. }
  552. {
  553. "m_SGVersion": 0,
  554. "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
  555. "m_ObjectId": "42f3bbedc8dc42daabfff75314e2db8f",
  556. "m_Id": 0,
  557. "m_DisplayName": "Normal",
  558. "m_SlotType": 0,
  559. "m_Hidden": false,
  560. "m_ShaderOutputName": "Normal",
  561. "m_StageCapability": 1,
  562. "m_Value": {
  563. "x": 0.0,
  564. "y": 0.0,
  565. "z": 0.0
  566. },
  567. "m_DefaultValue": {
  568. "x": 0.0,
  569. "y": 0.0,
  570. "z": 0.0
  571. },
  572. "m_Labels": [],
  573. "m_Space": 0
  574. }
  575. {
  576. "m_SGVersion": 0,
  577. "m_Type": "UnityEditor.ShaderGraph.GroupData",
  578. "m_ObjectId": "43009d1c7681439e8b02a1f64b983d89",
  579. "m_Title": "Scene Depth",
  580. "m_Position": {
  581. "x": -2009.0001220703125,
  582. "y": -61.50001907348633
  583. }
  584. }
  585. {
  586. "m_SGVersion": 0,
  587. "m_Type": "UnityEditor.ShaderGraph.CameraNode",
  588. "m_ObjectId": "431aff4f6768408fbd363f888dedfbe7",
  589. "m_Group": {
  590. "m_Id": "43009d1c7681439e8b02a1f64b983d89"
  591. },
  592. "m_Name": "Camera",
  593. "m_DrawState": {
  594. "m_Expanded": false,
  595. "m_Position": {
  596. "serializedVersion": "2",
  597. "x": -1874.5001220703125,
  598. "y": -3.0000030994415285,
  599. "width": 96.5,
  600. "height": 76.99998474121094
  601. }
  602. },
  603. "m_Slots": [
  604. {
  605. "m_Id": "b70ca32686f94463adc180f953c216d9"
  606. },
  607. {
  608. "m_Id": "9c234e17ab19453d87b14f14e6a2bb24"
  609. },
  610. {
  611. "m_Id": "4efc662a0d634ae9aeb1317538cc06e2"
  612. },
  613. {
  614. "m_Id": "a22e2a5333e642738a67aefa9420cee3"
  615. },
  616. {
  617. "m_Id": "dca46a4eacbd464f87d372f14f42eb55"
  618. },
  619. {
  620. "m_Id": "83182984d46d484faf699392d1f80df9"
  621. },
  622. {
  623. "m_Id": "5864852a5de84b988e5db82b65fdb89e"
  624. },
  625. {
  626. "m_Id": "9de9a3adc3ec41aa828f17d7b77d93d5"
  627. }
  628. ],
  629. "synonyms": [
  630. "position",
  631. "direction",
  632. "orthographic",
  633. "near plane",
  634. "far plane",
  635. "width",
  636. "height"
  637. ],
  638. "m_Precision": 0,
  639. "m_PreviewExpanded": true,
  640. "m_DismissedVersion": 0,
  641. "m_PreviewMode": 0,
  642. "m_CustomColors": {
  643. "m_SerializableColors": []
  644. }
  645. }
  646. {
  647. "m_SGVersion": 0,
  648. "m_Type": "UnityEditor.ShaderGraph.DistanceNode",
  649. "m_ObjectId": "44f11c1c018b4690af8f271a33b51b87",
  650. "m_Group": {
  651. "m_Id": ""
  652. },
  653. "m_Name": "Distance",
  654. "m_DrawState": {
  655. "m_Expanded": true,
  656. "m_Position": {
  657. "serializedVersion": "2",
  658. "x": -1177.0001220703125,
  659. "y": -231.50003051757813,
  660. "width": 126.0,
  661. "height": 118.00000762939453
  662. }
  663. },
  664. "m_Slots": [
  665. {
  666. "m_Id": "efe8c88b2cfd408f8ed69c06161726c5"
  667. },
  668. {
  669. "m_Id": "35efbde7a408425c9a99d02dd6391b6d"
  670. },
  671. {
  672. "m_Id": "87a09be0a10e4c2b925def206aa35102"
  673. }
  674. ],
  675. "synonyms": [],
  676. "m_Precision": 0,
  677. "m_PreviewExpanded": false,
  678. "m_DismissedVersion": 0,
  679. "m_PreviewMode": 0,
  680. "m_CustomColors": {
  681. "m_SerializableColors": []
  682. }
  683. }
  684. {
  685. "m_SGVersion": 0,
  686. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  687. "m_ObjectId": "478c2bbd35a549e691de702dede99a7e",
  688. "m_Id": 0,
  689. "m_DisplayName": "Emission",
  690. "m_SlotType": 0,
  691. "m_Hidden": false,
  692. "m_ShaderOutputName": "Emission",
  693. "m_StageCapability": 2,
  694. "m_Value": {
  695. "x": 0.0,
  696. "y": 0.0,
  697. "z": 0.0
  698. },
  699. "m_DefaultValue": {
  700. "x": 0.0,
  701. "y": 0.0,
  702. "z": 0.0
  703. },
  704. "m_Labels": [],
  705. "m_ColorMode": 1,
  706. "m_DefaultColor": {
  707. "r": 0.0,
  708. "g": 0.0,
  709. "b": 0.0,
  710. "a": 1.0
  711. }
  712. }
  713. {
  714. "m_SGVersion": 0,
  715. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  716. "m_ObjectId": "48974c5bcdaf4fa7b3c1ed3d580166ab",
  717. "m_Id": 2,
  718. "m_DisplayName": "Out",
  719. "m_SlotType": 1,
  720. "m_Hidden": false,
  721. "m_ShaderOutputName": "Out",
  722. "m_StageCapability": 3,
  723. "m_Value": 0.0,
  724. "m_DefaultValue": 0.0,
  725. "m_Labels": []
  726. }
  727. {
  728. "m_SGVersion": 2,
  729. "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInTarget",
  730. "m_ObjectId": "4aea8c25fc0b45f2a2aa19697ab5d511",
  731. "m_ActiveSubTarget": {
  732. "m_Id": "4aebe1c058d345ad845ef748f0cef1ef"
  733. },
  734. "m_AllowMaterialOverride": false,
  735. "m_SurfaceType": 0,
  736. "m_ZWriteControl": 0,
  737. "m_ZTestMode": 4,
  738. "m_AlphaMode": 0,
  739. "m_RenderFace": 2,
  740. "m_AlphaClip": false,
  741. "m_CustomEditorGUI": ""
  742. }
  743. {
  744. "m_SGVersion": 0,
  745. "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInUnlitSubTarget",
  746. "m_ObjectId": "4aebe1c058d345ad845ef748f0cef1ef"
  747. }
  748. {
  749. "m_SGVersion": 0,
  750. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  751. "m_ObjectId": "4c1ffc15680b430781990c578de634aa",
  752. "m_Id": 0,
  753. "m_DisplayName": "Time",
  754. "m_SlotType": 1,
  755. "m_Hidden": false,
  756. "m_ShaderOutputName": "Time",
  757. "m_StageCapability": 3,
  758. "m_Value": 0.0,
  759. "m_DefaultValue": 0.0,
  760. "m_Labels": []
  761. }
  762. {
  763. "m_SGVersion": 0,
  764. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitData",
  765. "m_ObjectId": "4ec1cb2736154fe0983593585df207f1",
  766. "m_EnableShadowMatte": false,
  767. "m_DistortionOnly": false
  768. }
  769. {
  770. "m_SGVersion": 0,
  771. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  772. "m_ObjectId": "4efc662a0d634ae9aeb1317538cc06e2",
  773. "m_Id": 2,
  774. "m_DisplayName": "Orthographic",
  775. "m_SlotType": 1,
  776. "m_Hidden": false,
  777. "m_ShaderOutputName": "Orthographic",
  778. "m_StageCapability": 3,
  779. "m_Value": 0.0,
  780. "m_DefaultValue": 0.0,
  781. "m_Labels": []
  782. }
  783. {
  784. "m_SGVersion": 0,
  785. "m_Type": "UnityEditor.ShaderGraph.DistanceNode",
  786. "m_ObjectId": "51d08e38cf934d70a75955f6a27945e2",
  787. "m_Group": {
  788. "m_Id": "43009d1c7681439e8b02a1f64b983d89"
  789. },
  790. "m_Name": "Distance",
  791. "m_DrawState": {
  792. "m_Expanded": true,
  793. "m_Position": {
  794. "serializedVersion": "2",
  795. "x": -1732.5001220703125,
  796. "y": 17.999982833862306,
  797. "width": 208.0,
  798. "height": 302.00006103515627
  799. }
  800. },
  801. "m_Slots": [
  802. {
  803. "m_Id": "cf78980b8a324731a1b62a764e28917d"
  804. },
  805. {
  806. "m_Id": "f2fac993479949c59a977f7783be468c"
  807. },
  808. {
  809. "m_Id": "edfbddea8a4a440b99bb414ebdbac83b"
  810. }
  811. ],
  812. "synonyms": [],
  813. "m_Precision": 0,
  814. "m_PreviewExpanded": true,
  815. "m_DismissedVersion": 0,
  816. "m_PreviewMode": 0,
  817. "m_CustomColors": {
  818. "m_SerializableColors": []
  819. }
  820. }
  821. {
  822. "m_SGVersion": 0,
  823. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  824. "m_ObjectId": "5864852a5de84b988e5db82b65fdb89e",
  825. "m_Id": 6,
  826. "m_DisplayName": "Width",
  827. "m_SlotType": 1,
  828. "m_Hidden": false,
  829. "m_ShaderOutputName": "Width",
  830. "m_StageCapability": 3,
  831. "m_Value": 1.0,
  832. "m_DefaultValue": 1.0,
  833. "m_Labels": []
  834. }
  835. {
  836. "m_SGVersion": 0,
  837. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitSubTarget",
  838. "m_ObjectId": "5b15a0523e194d6e88a82ed86e5c1f63"
  839. }
  840. {
  841. "m_SGVersion": 0,
  842. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  843. "m_ObjectId": "5bb4069d5ae04253b84844b75e7877eb",
  844. "m_Id": 1,
  845. "m_DisplayName": "Out",
  846. "m_SlotType": 1,
  847. "m_Hidden": false,
  848. "m_ShaderOutputName": "Out",
  849. "m_StageCapability": 3,
  850. "m_Value": {
  851. "x": 0.0,
  852. "y": 0.0,
  853. "z": 0.0,
  854. "w": 0.0
  855. },
  856. "m_DefaultValue": {
  857. "x": 0.0,
  858. "y": 0.0,
  859. "z": 0.0,
  860. "w": 0.0
  861. }
  862. }
  863. {
  864. "m_SGVersion": 0,
  865. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  866. "m_ObjectId": "77556f4904f5437bb1c7624031710c5e",
  867. "m_Title": "",
  868. "m_Content": "Measuring the distance between the animated point and the object space position creates a gradient that's dark when the point is close to the pivot and bright when it's further away.",
  869. "m_TextSize": 0,
  870. "m_Theme": 0,
  871. "m_Position": {
  872. "serializedVersion": "2",
  873. "x": -895.5000610351563,
  874. "y": 191.00001525878907,
  875. "width": 200.0,
  876. "height": 110.50001525878906
  877. },
  878. "m_Group": {
  879. "m_Id": "ed626672a3a44cf1a06697345101e900"
  880. }
  881. }
  882. {
  883. "m_SGVersion": 0,
  884. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  885. "m_ObjectId": "7a8ae348e8444fb0ad0ae71f9dfbf6af",
  886. "m_Title": "",
  887. "m_Content": "Moving point inside the object. The animated value becomes the point's X coordinate - so the point is moving back and forth.",
  888. "m_TextSize": 0,
  889. "m_Theme": 0,
  890. "m_Position": {
  891. "serializedVersion": "2",
  892. "x": -1149.5001220703125,
  893. "y": 271.0000305175781,
  894. "width": 200.00006103515626,
  895. "height": 100.0
  896. },
  897. "m_Group": {
  898. "m_Id": "ed626672a3a44cf1a06697345101e900"
  899. }
  900. }
  901. {
  902. "m_SGVersion": 0,
  903. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  904. "m_ObjectId": "7d09ac4de7a84fd996e3356379687211",
  905. "m_Title": "Distance Node",
  906. "m_Content": "The Distance Node is used to measure the distance between two points.",
  907. "m_TextSize": 0,
  908. "m_Theme": 0,
  909. "m_Position": {
  910. "serializedVersion": "2",
  911. "x": -1043.0001220703125,
  912. "y": -222.00001525878907,
  913. "width": 200.00006103515626,
  914. "height": 100.00000762939453
  915. },
  916. "m_Group": {
  917. "m_Id": ""
  918. }
  919. }
  920. {
  921. "m_SGVersion": 0,
  922. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  923. "m_ObjectId": "82cbff1f9ad145caa7ab6bb872b4fbaf",
  924. "m_Id": 3,
  925. "m_DisplayName": "Z",
  926. "m_SlotType": 0,
  927. "m_Hidden": false,
  928. "m_ShaderOutputName": "Z",
  929. "m_StageCapability": 3,
  930. "m_Value": -0.5,
  931. "m_DefaultValue": 0.0,
  932. "m_Labels": [
  933. "Z"
  934. ]
  935. }
  936. {
  937. "m_SGVersion": 0,
  938. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  939. "m_ObjectId": "83182984d46d484faf699392d1f80df9",
  940. "m_Id": 5,
  941. "m_DisplayName": "Z Buffer Sign",
  942. "m_SlotType": 1,
  943. "m_Hidden": false,
  944. "m_ShaderOutputName": "Z Buffer Sign",
  945. "m_StageCapability": 3,
  946. "m_Value": 1.0,
  947. "m_DefaultValue": 1.0,
  948. "m_Labels": []
  949. }
  950. {
  951. "m_SGVersion": 0,
  952. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  953. "m_ObjectId": "856390e5e8c649bb8bc2c43d9650084e",
  954. "m_Title": "",
  955. "m_Content": "Here we use the Distance Node to measure the distance between the Camera Position and the Position of the current pixel. This gives us scene depth.",
  956. "m_TextSize": 0,
  957. "m_Theme": 0,
  958. "m_Position": {
  959. "serializedVersion": "2",
  960. "x": -1952.5001220703125,
  961. "y": 220.00003051757813,
  962. "width": 200.0,
  963. "height": 100.0
  964. },
  965. "m_Group": {
  966. "m_Id": "43009d1c7681439e8b02a1f64b983d89"
  967. }
  968. }
  969. {
  970. "m_SGVersion": 0,
  971. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  972. "m_ObjectId": "87a09be0a10e4c2b925def206aa35102",
  973. "m_Id": 2,
  974. "m_DisplayName": "Out",
  975. "m_SlotType": 1,
  976. "m_Hidden": false,
  977. "m_ShaderOutputName": "Out",
  978. "m_StageCapability": 3,
  979. "m_Value": 0.0,
  980. "m_DefaultValue": 0.0,
  981. "m_Labels": []
  982. }
  983. {
  984. "m_SGVersion": 0,
  985. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  986. "m_ObjectId": "893f42b16e4f4086959ec09d704f870b",
  987. "m_Group": {
  988. "m_Id": ""
  989. },
  990. "m_Name": "SurfaceDescription.Alpha",
  991. "m_DrawState": {
  992. "m_Expanded": true,
  993. "m_Position": {
  994. "serializedVersion": "2",
  995. "x": 0.0,
  996. "y": 0.0,
  997. "width": 0.0,
  998. "height": 0.0
  999. }
  1000. },
  1001. "m_Slots": [
  1002. {
  1003. "m_Id": "254a0a908bf34e569380b82b451812e9"
  1004. }
  1005. ],
  1006. "synonyms": [],
  1007. "m_Precision": 0,
  1008. "m_PreviewExpanded": true,
  1009. "m_DismissedVersion": 0,
  1010. "m_PreviewMode": 0,
  1011. "m_CustomColors": {
  1012. "m_SerializableColors": []
  1013. },
  1014. "m_SerializedDescriptor": "SurfaceDescription.Alpha"
  1015. }
  1016. {
  1017. "m_SGVersion": 0,
  1018. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1019. "m_ObjectId": "8d7b095c22ae4b72a0fc78ce4c817c60",
  1020. "m_Id": 0,
  1021. "m_DisplayName": "In",
  1022. "m_SlotType": 0,
  1023. "m_Hidden": false,
  1024. "m_ShaderOutputName": "In",
  1025. "m_StageCapability": 3,
  1026. "m_Value": {
  1027. "x": 0.0,
  1028. "y": 0.0,
  1029. "z": 0.0,
  1030. "w": 0.0
  1031. },
  1032. "m_DefaultValue": {
  1033. "x": 0.0,
  1034. "y": 0.0,
  1035. "z": 0.0,
  1036. "w": 0.0
  1037. }
  1038. }
  1039. {
  1040. "m_SGVersion": 0,
  1041. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1042. "m_ObjectId": "8e1056a8a03749cd8e9f1bf7bca87966",
  1043. "m_Id": 1,
  1044. "m_DisplayName": "Sine Time",
  1045. "m_SlotType": 1,
  1046. "m_Hidden": false,
  1047. "m_ShaderOutputName": "Sine Time",
  1048. "m_StageCapability": 3,
  1049. "m_Value": 0.0,
  1050. "m_DefaultValue": 0.0,
  1051. "m_Labels": []
  1052. }
  1053. {
  1054. "m_SGVersion": 0,
  1055. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData",
  1056. "m_ObjectId": "8f479bc3ac4447f7b171d994d4078f61",
  1057. "m_Distortion": false,
  1058. "m_DistortionMode": 0,
  1059. "m_DistortionDepthTest": true,
  1060. "m_AddPrecomputedVelocity": false,
  1061. "m_TransparentWritesMotionVec": false,
  1062. "m_DepthOffset": false,
  1063. "m_ConservativeDepthOffset": false,
  1064. "m_TransparencyFog": true,
  1065. "m_AlphaTestShadow": false,
  1066. "m_BackThenFrontRendering": false,
  1067. "m_TransparentDepthPrepass": false,
  1068. "m_TransparentDepthPostpass": false,
  1069. "m_TransparentPerPixelSorting": false,
  1070. "m_SupportLodCrossFade": false
  1071. }
  1072. {
  1073. "m_SGVersion": 0,
  1074. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1075. "m_ObjectId": "91d970f925ef4a35b0dee818c11eb728",
  1076. "m_Id": 1,
  1077. "m_DisplayName": "B",
  1078. "m_SlotType": 0,
  1079. "m_Hidden": false,
  1080. "m_ShaderOutputName": "B",
  1081. "m_StageCapability": 3,
  1082. "m_Value": {
  1083. "x": 8.0,
  1084. "y": 2.0,
  1085. "z": 2.0,
  1086. "w": 2.0
  1087. },
  1088. "m_DefaultValue": {
  1089. "x": 0.0,
  1090. "y": 0.0,
  1091. "z": 0.0,
  1092. "w": 0.0
  1093. }
  1094. }
  1095. {
  1096. "m_SGVersion": 0,
  1097. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1098. "m_ObjectId": "93b6d28b177743e7b5f6147f19f45f48",
  1099. "m_Id": 0,
  1100. "m_DisplayName": "A",
  1101. "m_SlotType": 0,
  1102. "m_Hidden": false,
  1103. "m_ShaderOutputName": "A",
  1104. "m_StageCapability": 3,
  1105. "m_Value": {
  1106. "x": 0.0,
  1107. "y": 0.0,
  1108. "z": 0.0,
  1109. "w": 0.0
  1110. },
  1111. "m_DefaultValue": {
  1112. "x": 0.0,
  1113. "y": 0.0,
  1114. "z": 0.0,
  1115. "w": 0.0
  1116. }
  1117. }
  1118. {
  1119. "m_SGVersion": 0,
  1120. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1121. "m_ObjectId": "946d177d8a1646b0a03c851f8f2f4abe",
  1122. "m_Id": 0,
  1123. "m_DisplayName": "Out",
  1124. "m_SlotType": 1,
  1125. "m_Hidden": false,
  1126. "m_ShaderOutputName": "Out",
  1127. "m_StageCapability": 3,
  1128. "m_Value": {
  1129. "x": 0.0,
  1130. "y": 0.0,
  1131. "z": 0.0
  1132. },
  1133. "m_DefaultValue": {
  1134. "x": 0.0,
  1135. "y": 0.0,
  1136. "z": 0.0
  1137. },
  1138. "m_Labels": []
  1139. }
  1140. {
  1141. "m_SGVersion": 1,
  1142. "m_Type": "UnityEditor.ShaderGraph.PositionNode",
  1143. "m_ObjectId": "9577d2b218154f72b665d1acc2eee4d2",
  1144. "m_Group": {
  1145. "m_Id": "ed626672a3a44cf1a06697345101e900"
  1146. },
  1147. "m_Name": "Position",
  1148. "m_DrawState": {
  1149. "m_Expanded": true,
  1150. "m_Position": {
  1151. "serializedVersion": "2",
  1152. "x": -1189.0001220703125,
  1153. "y": -1.5000216960906983,
  1154. "width": 206.00006103515626,
  1155. "height": 130.50003051757813
  1156. }
  1157. },
  1158. "m_Slots": [
  1159. {
  1160. "m_Id": "946d177d8a1646b0a03c851f8f2f4abe"
  1161. }
  1162. ],
  1163. "synonyms": [
  1164. "location"
  1165. ],
  1166. "m_Precision": 1,
  1167. "m_PreviewExpanded": false,
  1168. "m_DismissedVersion": 0,
  1169. "m_PreviewMode": 2,
  1170. "m_CustomColors": {
  1171. "m_SerializableColors": []
  1172. },
  1173. "m_Space": 0,
  1174. "m_PositionSource": 0
  1175. }
  1176. {
  1177. "m_SGVersion": 1,
  1178. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget",
  1179. "m_ObjectId": "9772cced10804bc6b73dcdbd57975873",
  1180. "m_Datas": [],
  1181. "m_ActiveSubTarget": {
  1182. "m_Id": "3edc8fa1c1574b2fb3ab7ede47ef31c8"
  1183. },
  1184. "m_AllowMaterialOverride": false,
  1185. "m_SurfaceType": 0,
  1186. "m_ZTestMode": 4,
  1187. "m_ZWriteControl": 0,
  1188. "m_AlphaMode": 0,
  1189. "m_RenderFace": 2,
  1190. "m_AlphaClip": false,
  1191. "m_CastShadows": true,
  1192. "m_ReceiveShadows": true,
  1193. "m_AdditionalMotionVectorMode": 0,
  1194. "m_AlembicMotionVectors": false,
  1195. "m_SupportsLODCrossFade": false,
  1196. "m_CustomEditorGUI": "",
  1197. "m_SupportVFX": false
  1198. }
  1199. {
  1200. "m_SGVersion": 0,
  1201. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1202. "m_ObjectId": "9c234e17ab19453d87b14f14e6a2bb24",
  1203. "m_Id": 1,
  1204. "m_DisplayName": "Direction",
  1205. "m_SlotType": 1,
  1206. "m_Hidden": false,
  1207. "m_ShaderOutputName": "Direction",
  1208. "m_StageCapability": 3,
  1209. "m_Value": {
  1210. "x": 0.0,
  1211. "y": 0.0,
  1212. "z": 0.0
  1213. },
  1214. "m_DefaultValue": {
  1215. "x": 0.0,
  1216. "y": 0.0,
  1217. "z": 0.0
  1218. },
  1219. "m_Labels": []
  1220. }
  1221. {
  1222. "m_SGVersion": 0,
  1223. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1224. "m_ObjectId": "9de9a3adc3ec41aa828f17d7b77d93d5",
  1225. "m_Id": 7,
  1226. "m_DisplayName": "Height",
  1227. "m_SlotType": 1,
  1228. "m_Hidden": false,
  1229. "m_ShaderOutputName": "Height",
  1230. "m_StageCapability": 3,
  1231. "m_Value": 1.0,
  1232. "m_DefaultValue": 1.0,
  1233. "m_Labels": []
  1234. }
  1235. {
  1236. "m_SGVersion": 0,
  1237. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData",
  1238. "m_ObjectId": "a056d5749a124da494c599718e21010f",
  1239. "m_MaterialNeedsUpdateHash": 0,
  1240. "m_SurfaceType": 0,
  1241. "m_RenderingPass": 1,
  1242. "m_BlendMode": 0,
  1243. "m_ZTest": 4,
  1244. "m_ZWrite": false,
  1245. "m_TransparentCullMode": 2,
  1246. "m_OpaqueCullMode": 2,
  1247. "m_SortPriority": 0,
  1248. "m_AlphaTest": false,
  1249. "m_TransparentDepthPrepass": false,
  1250. "m_TransparentDepthPostpass": false,
  1251. "m_SupportLodCrossFade": false,
  1252. "m_DoubleSidedMode": 0,
  1253. "m_DOTSInstancing": false,
  1254. "m_CustomVelocity": false,
  1255. "m_Tessellation": false,
  1256. "m_TessellationMode": 0,
  1257. "m_TessellationFactorMinDistance": 20.0,
  1258. "m_TessellationFactorMaxDistance": 50.0,
  1259. "m_TessellationFactorTriangleSize": 100.0,
  1260. "m_TessellationShapeFactor": 0.75,
  1261. "m_TessellationBackFaceCullEpsilon": -0.25,
  1262. "m_TessellationMaxDisplacement": 0.009999999776482582,
  1263. "m_DebugSymbols": false,
  1264. "m_Version": 2,
  1265. "inspectorFoldoutMask": 0
  1266. }
  1267. {
  1268. "m_SGVersion": 0,
  1269. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1270. "m_ObjectId": "a22e2a5333e642738a67aefa9420cee3",
  1271. "m_Id": 3,
  1272. "m_DisplayName": "Near Plane",
  1273. "m_SlotType": 1,
  1274. "m_Hidden": false,
  1275. "m_ShaderOutputName": "Near Plane",
  1276. "m_StageCapability": 3,
  1277. "m_Value": 0.0,
  1278. "m_DefaultValue": 0.0,
  1279. "m_Labels": []
  1280. }
  1281. {
  1282. "m_SGVersion": 0,
  1283. "m_Type": "UnityEditor.ShaderGraph.PowerNode",
  1284. "m_ObjectId": "a53692fa133a4b52a1413a7d8494a10b",
  1285. "m_Group": {
  1286. "m_Id": "ed626672a3a44cf1a06697345101e900"
  1287. },
  1288. "m_Name": "Power",
  1289. "m_DrawState": {
  1290. "m_Expanded": true,
  1291. "m_Position": {
  1292. "serializedVersion": "2",
  1293. "x": -375.0000305175781,
  1294. "y": 101.50001525878906,
  1295. "width": 208.0,
  1296. "height": 302.0
  1297. }
  1298. },
  1299. "m_Slots": [
  1300. {
  1301. "m_Id": "93b6d28b177743e7b5f6147f19f45f48"
  1302. },
  1303. {
  1304. "m_Id": "91d970f925ef4a35b0dee818c11eb728"
  1305. },
  1306. {
  1307. "m_Id": "15a40cf568f944c5824cde058bc2ebff"
  1308. }
  1309. ],
  1310. "synonyms": [],
  1311. "m_Precision": 0,
  1312. "m_PreviewExpanded": true,
  1313. "m_DismissedVersion": 0,
  1314. "m_PreviewMode": 0,
  1315. "m_CustomColors": {
  1316. "m_SerializableColors": []
  1317. }
  1318. }
  1319. {
  1320. "m_SGVersion": 0,
  1321. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  1322. "m_ObjectId": "a64892fce793425e939c2c76c3916658",
  1323. "m_Title": "",
  1324. "m_Content": "Using the Sine of Time to create a cycling animated value.",
  1325. "m_TextSize": 0,
  1326. "m_Theme": 0,
  1327. "m_Position": {
  1328. "serializedVersion": "2",
  1329. "x": -1457.5001220703125,
  1330. "y": 217.50003051757813,
  1331. "width": 200.0,
  1332. "height": 100.0
  1333. },
  1334. "m_Group": {
  1335. "m_Id": "ed626672a3a44cf1a06697345101e900"
  1336. }
  1337. }
  1338. {
  1339. "m_SGVersion": 0,
  1340. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1341. "m_ObjectId": "b70ca32686f94463adc180f953c216d9",
  1342. "m_Id": 0,
  1343. "m_DisplayName": "Position",
  1344. "m_SlotType": 1,
  1345. "m_Hidden": false,
  1346. "m_ShaderOutputName": "Position",
  1347. "m_StageCapability": 3,
  1348. "m_Value": {
  1349. "x": 0.0,
  1350. "y": 0.0,
  1351. "z": 0.0
  1352. },
  1353. "m_DefaultValue": {
  1354. "x": 0.0,
  1355. "y": 0.0,
  1356. "z": 0.0
  1357. },
  1358. "m_Labels": []
  1359. }
  1360. {
  1361. "m_SGVersion": 0,
  1362. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1363. "m_ObjectId": "bff876e8bbb64d61b4df6ab7d7a5ed29",
  1364. "m_Group": {
  1365. "m_Id": ""
  1366. },
  1367. "m_Name": "VertexDescription.Position",
  1368. "m_DrawState": {
  1369. "m_Expanded": true,
  1370. "m_Position": {
  1371. "serializedVersion": "2",
  1372. "x": 0.0,
  1373. "y": 0.0,
  1374. "width": 0.0,
  1375. "height": 0.0
  1376. }
  1377. },
  1378. "m_Slots": [
  1379. {
  1380. "m_Id": "e1233d24dc43451b97883c916a2dd4af"
  1381. }
  1382. ],
  1383. "synonyms": [],
  1384. "m_Precision": 0,
  1385. "m_PreviewExpanded": true,
  1386. "m_DismissedVersion": 0,
  1387. "m_PreviewMode": 0,
  1388. "m_CustomColors": {
  1389. "m_SerializableColors": []
  1390. },
  1391. "m_SerializedDescriptor": "VertexDescription.Position"
  1392. }
  1393. {
  1394. "m_SGVersion": 0,
  1395. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1396. "m_ObjectId": "c7a3de6659484ceb82e6bd9e89f10a0a",
  1397. "m_Id": 1,
  1398. "m_DisplayName": "Out",
  1399. "m_SlotType": 1,
  1400. "m_Hidden": false,
  1401. "m_ShaderOutputName": "Out",
  1402. "m_StageCapability": 3,
  1403. "m_Value": {
  1404. "x": 0.0,
  1405. "y": 0.0,
  1406. "z": 0.0,
  1407. "w": 0.0
  1408. },
  1409. "m_DefaultValue": {
  1410. "x": 0.0,
  1411. "y": 0.0,
  1412. "z": 0.0,
  1413. "w": 0.0
  1414. }
  1415. }
  1416. {
  1417. "m_SGVersion": 0,
  1418. "m_Type": "UnityEditor.ShaderGraph.TimeNode",
  1419. "m_ObjectId": "c7d890153afa4e58a66c7be40c06b50b",
  1420. "m_Group": {
  1421. "m_Id": "ed626672a3a44cf1a06697345101e900"
  1422. },
  1423. "m_Name": "Time",
  1424. "m_DrawState": {
  1425. "m_Expanded": false,
  1426. "m_Position": {
  1427. "serializedVersion": "2",
  1428. "x": -1409.5001220703125,
  1429. "y": 130.00001525878907,
  1430. "width": 104.5,
  1431. "height": 76.99998474121094
  1432. }
  1433. },
  1434. "m_Slots": [
  1435. {
  1436. "m_Id": "4c1ffc15680b430781990c578de634aa"
  1437. },
  1438. {
  1439. "m_Id": "8e1056a8a03749cd8e9f1bf7bca87966"
  1440. },
  1441. {
  1442. "m_Id": "de366b5452f24074924d7a224b1bedf5"
  1443. },
  1444. {
  1445. "m_Id": "009ba8d7421141f58c341e63565a0b50"
  1446. },
  1447. {
  1448. "m_Id": "ebf3abb77cc749d1b0473695ab13fa2c"
  1449. }
  1450. ],
  1451. "synonyms": [],
  1452. "m_Precision": 0,
  1453. "m_PreviewExpanded": true,
  1454. "m_DismissedVersion": 0,
  1455. "m_PreviewMode": 0,
  1456. "m_CustomColors": {
  1457. "m_SerializableColors": []
  1458. }
  1459. }
  1460. {
  1461. "m_SGVersion": 0,
  1462. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1463. "m_ObjectId": "c9ae865df31b440da204987d5f6b8408",
  1464. "m_Id": 0,
  1465. "m_DisplayName": "A",
  1466. "m_SlotType": 0,
  1467. "m_Hidden": false,
  1468. "m_ShaderOutputName": "A",
  1469. "m_StageCapability": 3,
  1470. "m_Value": {
  1471. "x": 0.0,
  1472. "y": 0.0,
  1473. "z": 0.0,
  1474. "w": 0.0
  1475. },
  1476. "m_DefaultValue": {
  1477. "x": 0.0,
  1478. "y": 0.0,
  1479. "z": 0.0,
  1480. "w": 0.0
  1481. }
  1482. }
  1483. {
  1484. "m_SGVersion": 1,
  1485. "m_Type": "UnityEditor.ShaderGraph.PositionNode",
  1486. "m_ObjectId": "ca70bc32933749d489b6fa25cf25905c",
  1487. "m_Group": {
  1488. "m_Id": "43009d1c7681439e8b02a1f64b983d89"
  1489. },
  1490. "m_Name": "Position",
  1491. "m_DrawState": {
  1492. "m_Expanded": true,
  1493. "m_Position": {
  1494. "serializedVersion": "2",
  1495. "x": -1984.0001220703125,
  1496. "y": 73.99998474121094,
  1497. "width": 206.0,
  1498. "height": 130.50003051757813
  1499. }
  1500. },
  1501. "m_Slots": [
  1502. {
  1503. "m_Id": "087419e529954de7817ba7c38660c943"
  1504. }
  1505. ],
  1506. "synonyms": [
  1507. "location"
  1508. ],
  1509. "m_Precision": 1,
  1510. "m_PreviewExpanded": false,
  1511. "m_DismissedVersion": 0,
  1512. "m_PreviewMode": 2,
  1513. "m_CustomColors": {
  1514. "m_SerializableColors": []
  1515. },
  1516. "m_Space": 4,
  1517. "m_PositionSource": 0
  1518. }
  1519. {
  1520. "m_SGVersion": 0,
  1521. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1522. "m_ObjectId": "cbb372ec42a34eda9381ebc162ceb34f",
  1523. "m_Group": {
  1524. "m_Id": ""
  1525. },
  1526. "m_Name": "VertexDescription.Normal",
  1527. "m_DrawState": {
  1528. "m_Expanded": true,
  1529. "m_Position": {
  1530. "serializedVersion": "2",
  1531. "x": 0.0,
  1532. "y": 0.0,
  1533. "width": 0.0,
  1534. "height": 0.0
  1535. }
  1536. },
  1537. "m_Slots": [
  1538. {
  1539. "m_Id": "42f3bbedc8dc42daabfff75314e2db8f"
  1540. }
  1541. ],
  1542. "synonyms": [],
  1543. "m_Precision": 0,
  1544. "m_PreviewExpanded": true,
  1545. "m_DismissedVersion": 0,
  1546. "m_PreviewMode": 0,
  1547. "m_CustomColors": {
  1548. "m_SerializableColors": []
  1549. },
  1550. "m_SerializedDescriptor": "VertexDescription.Normal"
  1551. }
  1552. {
  1553. "m_SGVersion": 0,
  1554. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1555. "m_ObjectId": "cf43d0f4e01644268deccfd1ab73cbe0",
  1556. "m_Group": {
  1557. "m_Id": ""
  1558. },
  1559. "m_Name": "VertexDescription.Tangent",
  1560. "m_DrawState": {
  1561. "m_Expanded": true,
  1562. "m_Position": {
  1563. "serializedVersion": "2",
  1564. "x": 0.0,
  1565. "y": 0.0,
  1566. "width": 0.0,
  1567. "height": 0.0
  1568. }
  1569. },
  1570. "m_Slots": [
  1571. {
  1572. "m_Id": "135b4fd5509c4f60a065dd783f0e9b4e"
  1573. }
  1574. ],
  1575. "synonyms": [],
  1576. "m_Precision": 0,
  1577. "m_PreviewExpanded": true,
  1578. "m_DismissedVersion": 0,
  1579. "m_PreviewMode": 0,
  1580. "m_CustomColors": {
  1581. "m_SerializableColors": []
  1582. },
  1583. "m_SerializedDescriptor": "VertexDescription.Tangent"
  1584. }
  1585. {
  1586. "m_SGVersion": 0,
  1587. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1588. "m_ObjectId": "cf78980b8a324731a1b62a764e28917d",
  1589. "m_Id": 0,
  1590. "m_DisplayName": "A",
  1591. "m_SlotType": 0,
  1592. "m_Hidden": false,
  1593. "m_ShaderOutputName": "A",
  1594. "m_StageCapability": 3,
  1595. "m_Value": {
  1596. "x": 0.0,
  1597. "y": 0.0,
  1598. "z": 0.0,
  1599. "w": 0.0
  1600. },
  1601. "m_DefaultValue": {
  1602. "x": 0.0,
  1603. "y": 0.0,
  1604. "z": 0.0,
  1605. "w": 0.0
  1606. }
  1607. }
  1608. {
  1609. "m_SGVersion": 0,
  1610. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1611. "m_ObjectId": "d11440a5670944b696e0f71dcfdaae0b",
  1612. "m_Id": 1,
  1613. "m_DisplayName": "B",
  1614. "m_SlotType": 0,
  1615. "m_Hidden": false,
  1616. "m_ShaderOutputName": "B",
  1617. "m_StageCapability": 3,
  1618. "m_Value": {
  1619. "x": 0.0,
  1620. "y": 0.0,
  1621. "z": 0.0,
  1622. "w": 0.0
  1623. },
  1624. "m_DefaultValue": {
  1625. "x": 0.0,
  1626. "y": 0.0,
  1627. "z": 0.0,
  1628. "w": 0.0
  1629. }
  1630. }
  1631. {
  1632. "m_SGVersion": 0,
  1633. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1634. "m_ObjectId": "dca46a4eacbd464f87d372f14f42eb55",
  1635. "m_Id": 4,
  1636. "m_DisplayName": "Far Plane",
  1637. "m_SlotType": 1,
  1638. "m_Hidden": false,
  1639. "m_ShaderOutputName": "Far Plane",
  1640. "m_StageCapability": 3,
  1641. "m_Value": 1.0,
  1642. "m_DefaultValue": 1.0,
  1643. "m_Labels": []
  1644. }
  1645. {
  1646. "m_SGVersion": 0,
  1647. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1648. "m_ObjectId": "de366b5452f24074924d7a224b1bedf5",
  1649. "m_Id": 2,
  1650. "m_DisplayName": "Cosine Time",
  1651. "m_SlotType": 1,
  1652. "m_Hidden": false,
  1653. "m_ShaderOutputName": "Cosine Time",
  1654. "m_StageCapability": 3,
  1655. "m_Value": 0.0,
  1656. "m_DefaultValue": 0.0,
  1657. "m_Labels": []
  1658. }
  1659. {
  1660. "m_SGVersion": 0,
  1661. "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
  1662. "m_ObjectId": "e1233d24dc43451b97883c916a2dd4af",
  1663. "m_Id": 0,
  1664. "m_DisplayName": "Position",
  1665. "m_SlotType": 0,
  1666. "m_Hidden": false,
  1667. "m_ShaderOutputName": "Position",
  1668. "m_StageCapability": 1,
  1669. "m_Value": {
  1670. "x": 0.0,
  1671. "y": 0.0,
  1672. "z": 0.0
  1673. },
  1674. "m_DefaultValue": {
  1675. "x": 0.0,
  1676. "y": 0.0,
  1677. "z": 0.0
  1678. },
  1679. "m_Labels": [],
  1680. "m_Space": 0
  1681. }
  1682. {
  1683. "m_SGVersion": 0,
  1684. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1685. "m_ObjectId": "e2868f62ea46483bb6f3cd0048804960",
  1686. "m_Id": 2,
  1687. "m_DisplayName": "Y",
  1688. "m_SlotType": 0,
  1689. "m_Hidden": false,
  1690. "m_ShaderOutputName": "Y",
  1691. "m_StageCapability": 3,
  1692. "m_Value": 0.0,
  1693. "m_DefaultValue": 0.0,
  1694. "m_Labels": [
  1695. "Y"
  1696. ]
  1697. }
  1698. {
  1699. "m_SGVersion": 0,
  1700. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1701. "m_ObjectId": "ea79f4b7d0ca430fafd31ca02973d7ee",
  1702. "m_Group": {
  1703. "m_Id": ""
  1704. },
  1705. "m_Name": "SurfaceDescription.Emission",
  1706. "m_DrawState": {
  1707. "m_Expanded": true,
  1708. "m_Position": {
  1709. "serializedVersion": "2",
  1710. "x": 0.0,
  1711. "y": 0.0,
  1712. "width": 0.0,
  1713. "height": 0.0
  1714. }
  1715. },
  1716. "m_Slots": [
  1717. {
  1718. "m_Id": "478c2bbd35a549e691de702dede99a7e"
  1719. }
  1720. ],
  1721. "synonyms": [],
  1722. "m_Precision": 0,
  1723. "m_PreviewExpanded": true,
  1724. "m_DismissedVersion": 0,
  1725. "m_PreviewMode": 0,
  1726. "m_CustomColors": {
  1727. "m_SerializableColors": []
  1728. },
  1729. "m_SerializedDescriptor": "SurfaceDescription.Emission"
  1730. }
  1731. {
  1732. "m_SGVersion": 0,
  1733. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1734. "m_ObjectId": "eaa48fdc220a44d89d94d4621f1b153d",
  1735. "m_Group": {
  1736. "m_Id": ""
  1737. },
  1738. "m_Name": "SurfaceDescription.BaseColor",
  1739. "m_DrawState": {
  1740. "m_Expanded": true,
  1741. "m_Position": {
  1742. "serializedVersion": "2",
  1743. "x": 0.0,
  1744. "y": 0.0,
  1745. "width": 0.0,
  1746. "height": 0.0
  1747. }
  1748. },
  1749. "m_Slots": [
  1750. {
  1751. "m_Id": "224db4c80ab345ff91c1f19e09f94b32"
  1752. }
  1753. ],
  1754. "synonyms": [],
  1755. "m_Precision": 0,
  1756. "m_PreviewExpanded": true,
  1757. "m_DismissedVersion": 0,
  1758. "m_PreviewMode": 0,
  1759. "m_CustomColors": {
  1760. "m_SerializableColors": []
  1761. },
  1762. "m_SerializedDescriptor": "SurfaceDescription.BaseColor"
  1763. }
  1764. {
  1765. "m_SGVersion": 0,
  1766. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1767. "m_ObjectId": "ebf3abb77cc749d1b0473695ab13fa2c",
  1768. "m_Id": 4,
  1769. "m_DisplayName": "Smooth Delta",
  1770. "m_SlotType": 1,
  1771. "m_Hidden": false,
  1772. "m_ShaderOutputName": "Smooth Delta",
  1773. "m_StageCapability": 3,
  1774. "m_Value": 0.0,
  1775. "m_DefaultValue": 0.0,
  1776. "m_Labels": []
  1777. }
  1778. {
  1779. "m_SGVersion": 0,
  1780. "m_Type": "UnityEditor.ShaderGraph.GroupData",
  1781. "m_ObjectId": "ed626672a3a44cf1a06697345101e900",
  1782. "m_Title": "Artificial Internal Light Source",
  1783. "m_Position": {
  1784. "x": -1482.5001220703125,
  1785. "y": -60.00004959106445
  1786. }
  1787. }
  1788. {
  1789. "m_SGVersion": 0,
  1790. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1791. "m_ObjectId": "edfbddea8a4a440b99bb414ebdbac83b",
  1792. "m_Id": 2,
  1793. "m_DisplayName": "Out",
  1794. "m_SlotType": 1,
  1795. "m_Hidden": false,
  1796. "m_ShaderOutputName": "Out",
  1797. "m_StageCapability": 3,
  1798. "m_Value": 0.0,
  1799. "m_DefaultValue": 0.0,
  1800. "m_Labels": []
  1801. }
  1802. {
  1803. "m_SGVersion": 0,
  1804. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget",
  1805. "m_ObjectId": "ee1f2c367e674d44a167cb0b4f78eb49",
  1806. "m_ActiveSubTarget": {
  1807. "m_Id": "5b15a0523e194d6e88a82ed86e5c1f63"
  1808. },
  1809. "m_Datas": [
  1810. {
  1811. "m_Id": "8f479bc3ac4447f7b171d994d4078f61"
  1812. },
  1813. {
  1814. "m_Id": "a056d5749a124da494c599718e21010f"
  1815. },
  1816. {
  1817. "m_Id": "4ec1cb2736154fe0983593585df207f1"
  1818. }
  1819. ],
  1820. "m_CustomEditorGUI": "",
  1821. "m_SupportVFX": false,
  1822. "m_SupportLineRendering": false
  1823. }
  1824. {
  1825. "m_SGVersion": 0,
  1826. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  1827. "m_ObjectId": "eed6a47aad1f4ab699d6698e7a1c4a5b",
  1828. "m_Title": "",
  1829. "m_Content": "Saturating and inverting the gradient gives us a mask that looks like a light source inside the volume.",
  1830. "m_TextSize": 0,
  1831. "m_Theme": 0,
  1832. "m_Position": {
  1833. "serializedVersion": "2",
  1834. "x": -612.5000610351563,
  1835. "y": 202.00001525878907,
  1836. "width": 200.00003051757813,
  1837. "height": 100.00001525878906
  1838. },
  1839. "m_Group": {
  1840. "m_Id": "ed626672a3a44cf1a06697345101e900"
  1841. }
  1842. }
  1843. {
  1844. "m_SGVersion": 0,
  1845. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1846. "m_ObjectId": "efe8c88b2cfd408f8ed69c06161726c5",
  1847. "m_Id": 0,
  1848. "m_DisplayName": "A",
  1849. "m_SlotType": 0,
  1850. "m_Hidden": false,
  1851. "m_ShaderOutputName": "A",
  1852. "m_StageCapability": 3,
  1853. "m_Value": {
  1854. "x": 0.0,
  1855. "y": 0.0,
  1856. "z": 0.0,
  1857. "w": 0.0
  1858. },
  1859. "m_DefaultValue": {
  1860. "x": 0.0,
  1861. "y": 0.0,
  1862. "z": 0.0,
  1863. "w": 0.0
  1864. }
  1865. }
  1866. {
  1867. "m_SGVersion": 0,
  1868. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1869. "m_ObjectId": "f2fac993479949c59a977f7783be468c",
  1870. "m_Id": 1,
  1871. "m_DisplayName": "B",
  1872. "m_SlotType": 0,
  1873. "m_Hidden": false,
  1874. "m_ShaderOutputName": "B",
  1875. "m_StageCapability": 3,
  1876. "m_Value": {
  1877. "x": 0.0,
  1878. "y": 0.0,
  1879. "z": 0.0,
  1880. "w": 0.0
  1881. },
  1882. "m_DefaultValue": {
  1883. "x": 0.0,
  1884. "y": 0.0,
  1885. "z": 0.0,
  1886. "w": 0.0
  1887. }
  1888. }
  1889. {
  1890. "m_SGVersion": 0,
  1891. "m_Type": "UnityEditor.ShaderGraph.OneMinusNode",
  1892. "m_ObjectId": "f9561f2f06f0439b8a57047f6150a900",
  1893. "m_Group": {
  1894. "m_Id": "ed626672a3a44cf1a06697345101e900"
  1895. },
  1896. "m_Name": "One Minus",
  1897. "m_DrawState": {
  1898. "m_Expanded": true,
  1899. "m_Position": {
  1900. "serializedVersion": "2",
  1901. "x": -533.0000610351563,
  1902. "y": 59.99999237060547,
  1903. "width": 127.50006103515625,
  1904. "height": 94.00000762939453
  1905. }
  1906. },
  1907. "m_Slots": [
  1908. {
  1909. "m_Id": "fdc42dd4039f4319af2b1d58fb9d4cc0"
  1910. },
  1911. {
  1912. "m_Id": "5bb4069d5ae04253b84844b75e7877eb"
  1913. }
  1914. ],
  1915. "synonyms": [
  1916. "complement",
  1917. "invert",
  1918. "opposite"
  1919. ],
  1920. "m_Precision": 0,
  1921. "m_PreviewExpanded": false,
  1922. "m_DismissedVersion": 0,
  1923. "m_PreviewMode": 0,
  1924. "m_CustomColors": {
  1925. "m_SerializableColors": []
  1926. }
  1927. }
  1928. {
  1929. "m_SGVersion": 0,
  1930. "m_Type": "UnityEditor.ShaderGraph.SaturateNode",
  1931. "m_ObjectId": "fa464c0350514f88964dc2b9fe6c459f",
  1932. "m_Group": {
  1933. "m_Id": "ed626672a3a44cf1a06697345101e900"
  1934. },
  1935. "m_Name": "Saturate",
  1936. "m_DrawState": {
  1937. "m_Expanded": true,
  1938. "m_Position": {
  1939. "serializedVersion": "2",
  1940. "x": -660.5000610351563,
  1941. "y": 59.99999237060547,
  1942. "width": 127.5,
  1943. "height": 94.00000762939453
  1944. }
  1945. },
  1946. "m_Slots": [
  1947. {
  1948. "m_Id": "8d7b095c22ae4b72a0fc78ce4c817c60"
  1949. },
  1950. {
  1951. "m_Id": "c7a3de6659484ceb82e6bd9e89f10a0a"
  1952. }
  1953. ],
  1954. "synonyms": [
  1955. "clamp"
  1956. ],
  1957. "m_Precision": 0,
  1958. "m_PreviewExpanded": false,
  1959. "m_DismissedVersion": 0,
  1960. "m_PreviewMode": 0,
  1961. "m_CustomColors": {
  1962. "m_SerializableColors": []
  1963. }
  1964. }
  1965. {
  1966. "m_SGVersion": 0,
  1967. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1968. "m_ObjectId": "fdc42dd4039f4319af2b1d58fb9d4cc0",
  1969. "m_Id": 0,
  1970. "m_DisplayName": "In",
  1971. "m_SlotType": 0,
  1972. "m_Hidden": false,
  1973. "m_ShaderOutputName": "In",
  1974. "m_StageCapability": 3,
  1975. "m_Value": {
  1976. "x": 1.0,
  1977. "y": 1.0,
  1978. "z": 1.0,
  1979. "w": 1.0
  1980. },
  1981. "m_DefaultValue": {
  1982. "x": 0.0,
  1983. "y": 0.0,
  1984. "z": 0.0,
  1985. "w": 0.0
  1986. }
  1987. }