暫無描述
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.

Ceiling.shadergraph 41KB

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