暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

RainRocksExample.shadergraph 69KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877
  1. {
  2. "m_SGVersion": 3,
  3. "m_Type": "UnityEditor.ShaderGraph.GraphData",
  4. "m_ObjectId": "bcbf5f4dac8840149851760299b5887b",
  5. "m_Properties": [
  6. {
  7. "m_Id": "dfa8a4423099447cbc2663ac4a237a73"
  8. },
  9. {
  10. "m_Id": "608c0ed89ba943f898f6678483aadf6a"
  11. }
  12. ],
  13. "m_Keywords": [
  14. {
  15. "m_Id": "e4c12436f7094ecdb608f9999db430c9"
  16. }
  17. ],
  18. "m_Dropdowns": [],
  19. "m_CategoryData": [
  20. {
  21. "m_Id": "ebf2a68a6f1b43f09ed960c6a7ba6be3"
  22. }
  23. ],
  24. "m_Nodes": [
  25. {
  26. "m_Id": "abaf9d608e954db7a52bd2da2492f4a6"
  27. },
  28. {
  29. "m_Id": "f976a82949ed41529d95c4a5addd1737"
  30. },
  31. {
  32. "m_Id": "eb4a93670bad4e2ca268a90167246b84"
  33. },
  34. {
  35. "m_Id": "c167e8be150a4fe8acbf27c4b433d1c5"
  36. },
  37. {
  38. "m_Id": "5c327bd97e354739a76c926919541d6d"
  39. },
  40. {
  41. "m_Id": "1d181ab5aca0406faba1af89b0b3fc71"
  42. },
  43. {
  44. "m_Id": "9fd0779cbcf34d1ea10ba0118785b1ab"
  45. },
  46. {
  47. "m_Id": "5b81c42ae09d4f35a379082479c78c2e"
  48. },
  49. {
  50. "m_Id": "0802e1aea4024a1b94d576e2a4060fd2"
  51. },
  52. {
  53. "m_Id": "00262cd0f3cc4dbebdb0a52cb9103118"
  54. },
  55. {
  56. "m_Id": "784aa15553e64d7eb3cc0dfce853780d"
  57. },
  58. {
  59. "m_Id": "41a4624c43b14f8280b8fd1fce7dae9d"
  60. },
  61. {
  62. "m_Id": "a83d16ca17334feca55dfd28892443bd"
  63. },
  64. {
  65. "m_Id": "a1116b5a2fe748f5a1e59ceec49e5ee9"
  66. },
  67. {
  68. "m_Id": "d7f3962174114caaa46a088e55bd148a"
  69. },
  70. {
  71. "m_Id": "9130af2346a14cb3917bfc112fc87661"
  72. },
  73. {
  74. "m_Id": "17fb1694317e40799fa29d1ee151ab57"
  75. },
  76. {
  77. "m_Id": "9aa52f8daf77413796c476eb70fb6c3c"
  78. },
  79. {
  80. "m_Id": "89b38bef21d3423cb26931527759d091"
  81. },
  82. {
  83. "m_Id": "177427730f8c43b5b71c58e13c550647"
  84. },
  85. {
  86. "m_Id": "336605c6115344afa7e7456ce9e6af18"
  87. }
  88. ],
  89. "m_GroupDatas": [],
  90. "m_StickyNoteDatas": [
  91. {
  92. "m_Id": "da3b013a98fe4fc49a2ff288f76271aa"
  93. }
  94. ],
  95. "m_Edges": [
  96. {
  97. "m_OutputSlot": {
  98. "m_Node": {
  99. "m_Id": "00262cd0f3cc4dbebdb0a52cb9103118"
  100. },
  101. "m_SlotId": 0
  102. },
  103. "m_InputSlot": {
  104. "m_Node": {
  105. "m_Id": "17fb1694317e40799fa29d1ee151ab57"
  106. },
  107. "m_SlotId": 214595695
  108. }
  109. },
  110. {
  111. "m_OutputSlot": {
  112. "m_Node": {
  113. "m_Id": "177427730f8c43b5b71c58e13c550647"
  114. },
  115. "m_SlotId": 0
  116. },
  117. "m_InputSlot": {
  118. "m_Node": {
  119. "m_Id": "9130af2346a14cb3917bfc112fc87661"
  120. },
  121. "m_SlotId": 803411678
  122. }
  123. },
  124. {
  125. "m_OutputSlot": {
  126. "m_Node": {
  127. "m_Id": "17fb1694317e40799fa29d1ee151ab57"
  128. },
  129. "m_SlotId": 1
  130. },
  131. "m_InputSlot": {
  132. "m_Node": {
  133. "m_Id": "9130af2346a14cb3917bfc112fc87661"
  134. },
  135. "m_SlotId": -890318989
  136. }
  137. },
  138. {
  139. "m_OutputSlot": {
  140. "m_Node": {
  141. "m_Id": "336605c6115344afa7e7456ce9e6af18"
  142. },
  143. "m_SlotId": 0
  144. },
  145. "m_InputSlot": {
  146. "m_Node": {
  147. "m_Id": "9130af2346a14cb3917bfc112fc87661"
  148. },
  149. "m_SlotId": -2076319194
  150. }
  151. },
  152. {
  153. "m_OutputSlot": {
  154. "m_Node": {
  155. "m_Id": "41a4624c43b14f8280b8fd1fce7dae9d"
  156. },
  157. "m_SlotId": 0
  158. },
  159. "m_InputSlot": {
  160. "m_Node": {
  161. "m_Id": "9aa52f8daf77413796c476eb70fb6c3c"
  162. },
  163. "m_SlotId": 214595695
  164. }
  165. },
  166. {
  167. "m_OutputSlot": {
  168. "m_Node": {
  169. "m_Id": "784aa15553e64d7eb3cc0dfce853780d"
  170. },
  171. "m_SlotId": 5
  172. },
  173. "m_InputSlot": {
  174. "m_Node": {
  175. "m_Id": "9aa52f8daf77413796c476eb70fb6c3c"
  176. },
  177. "m_SlotId": 4192858
  178. }
  179. },
  180. {
  181. "m_OutputSlot": {
  182. "m_Node": {
  183. "m_Id": "784aa15553e64d7eb3cc0dfce853780d"
  184. },
  185. "m_SlotId": 7
  186. },
  187. "m_InputSlot": {
  188. "m_Node": {
  189. "m_Id": "17fb1694317e40799fa29d1ee151ab57"
  190. },
  191. "m_SlotId": 4192858
  192. }
  193. },
  194. {
  195. "m_OutputSlot": {
  196. "m_Node": {
  197. "m_Id": "9130af2346a14cb3917bfc112fc87661"
  198. },
  199. "m_SlotId": 1
  200. },
  201. "m_InputSlot": {
  202. "m_Node": {
  203. "m_Id": "a1116b5a2fe748f5a1e59ceec49e5ee9"
  204. },
  205. "m_SlotId": 71621326
  206. }
  207. },
  208. {
  209. "m_OutputSlot": {
  210. "m_Node": {
  211. "m_Id": "9130af2346a14cb3917bfc112fc87661"
  212. },
  213. "m_SlotId": 6
  214. },
  215. "m_InputSlot": {
  216. "m_Node": {
  217. "m_Id": "d7f3962174114caaa46a088e55bd148a"
  218. },
  219. "m_SlotId": 71621326
  220. }
  221. },
  222. {
  223. "m_OutputSlot": {
  224. "m_Node": {
  225. "m_Id": "9aa52f8daf77413796c476eb70fb6c3c"
  226. },
  227. "m_SlotId": 1
  228. },
  229. "m_InputSlot": {
  230. "m_Node": {
  231. "m_Id": "9130af2346a14cb3917bfc112fc87661"
  232. },
  233. "m_SlotId": 1131553975
  234. }
  235. },
  236. {
  237. "m_OutputSlot": {
  238. "m_Node": {
  239. "m_Id": "a1116b5a2fe748f5a1e59ceec49e5ee9"
  240. },
  241. "m_SlotId": 1
  242. },
  243. "m_InputSlot": {
  244. "m_Node": {
  245. "m_Id": "c167e8be150a4fe8acbf27c4b433d1c5"
  246. },
  247. "m_SlotId": 0
  248. }
  249. },
  250. {
  251. "m_OutputSlot": {
  252. "m_Node": {
  253. "m_Id": "a1116b5a2fe748f5a1e59ceec49e5ee9"
  254. },
  255. "m_SlotId": 2
  256. },
  257. "m_InputSlot": {
  258. "m_Node": {
  259. "m_Id": "9fd0779cbcf34d1ea10ba0118785b1ab"
  260. },
  261. "m_SlotId": 0
  262. }
  263. },
  264. {
  265. "m_OutputSlot": {
  266. "m_Node": {
  267. "m_Id": "a83d16ca17334feca55dfd28892443bd"
  268. },
  269. "m_SlotId": 3
  270. },
  271. "m_InputSlot": {
  272. "m_Node": {
  273. "m_Id": "00262cd0f3cc4dbebdb0a52cb9103118"
  274. },
  275. "m_SlotId": 2
  276. }
  277. },
  278. {
  279. "m_OutputSlot": {
  280. "m_Node": {
  281. "m_Id": "a83d16ca17334feca55dfd28892443bd"
  282. },
  283. "m_SlotId": 3
  284. },
  285. "m_InputSlot": {
  286. "m_Node": {
  287. "m_Id": "41a4624c43b14f8280b8fd1fce7dae9d"
  288. },
  289. "m_SlotId": 2
  290. }
  291. },
  292. {
  293. "m_OutputSlot": {
  294. "m_Node": {
  295. "m_Id": "a83d16ca17334feca55dfd28892443bd"
  296. },
  297. "m_SlotId": 3
  298. },
  299. "m_InputSlot": {
  300. "m_Node": {
  301. "m_Id": "784aa15553e64d7eb3cc0dfce853780d"
  302. },
  303. "m_SlotId": 2
  304. }
  305. },
  306. {
  307. "m_OutputSlot": {
  308. "m_Node": {
  309. "m_Id": "d7f3962174114caaa46a088e55bd148a"
  310. },
  311. "m_SlotId": 1
  312. },
  313. "m_InputSlot": {
  314. "m_Node": {
  315. "m_Id": "5c327bd97e354739a76c926919541d6d"
  316. },
  317. "m_SlotId": 0
  318. }
  319. },
  320. {
  321. "m_OutputSlot": {
  322. "m_Node": {
  323. "m_Id": "d7f3962174114caaa46a088e55bd148a"
  324. },
  325. "m_SlotId": 2
  326. },
  327. "m_InputSlot": {
  328. "m_Node": {
  329. "m_Id": "0802e1aea4024a1b94d576e2a4060fd2"
  330. },
  331. "m_SlotId": 0
  332. }
  333. }
  334. ],
  335. "m_VertexContext": {
  336. "m_Position": {
  337. "x": 0.0,
  338. "y": 0.0
  339. },
  340. "m_Blocks": [
  341. {
  342. "m_Id": "abaf9d608e954db7a52bd2da2492f4a6"
  343. },
  344. {
  345. "m_Id": "f976a82949ed41529d95c4a5addd1737"
  346. },
  347. {
  348. "m_Id": "eb4a93670bad4e2ca268a90167246b84"
  349. }
  350. ]
  351. },
  352. "m_FragmentContext": {
  353. "m_Position": {
  354. "x": 0.0,
  355. "y": 200.0
  356. },
  357. "m_Blocks": [
  358. {
  359. "m_Id": "c167e8be150a4fe8acbf27c4b433d1c5"
  360. },
  361. {
  362. "m_Id": "5c327bd97e354739a76c926919541d6d"
  363. },
  364. {
  365. "m_Id": "1d181ab5aca0406faba1af89b0b3fc71"
  366. },
  367. {
  368. "m_Id": "9fd0779cbcf34d1ea10ba0118785b1ab"
  369. },
  370. {
  371. "m_Id": "5b81c42ae09d4f35a379082479c78c2e"
  372. },
  373. {
  374. "m_Id": "0802e1aea4024a1b94d576e2a4060fd2"
  375. },
  376. {
  377. "m_Id": "89b38bef21d3423cb26931527759d091"
  378. }
  379. ]
  380. },
  381. "m_PreviewData": {
  382. "serializedMesh": {
  383. "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
  384. "m_Guid": ""
  385. },
  386. "preventRotation": false
  387. },
  388. "m_Path": "Shader Graphs",
  389. "m_GraphPrecision": 1,
  390. "m_PreviewMode": 2,
  391. "m_OutputNode": {
  392. "m_Id": ""
  393. },
  394. "m_SubDatas": [],
  395. "m_ActiveTargets": [
  396. {
  397. "m_Id": "98c3d138e2c049d7a65716b644490a63"
  398. },
  399. {
  400. "m_Id": "97be522839ab4edf948efdd9d4147077"
  401. }
  402. ]
  403. }
  404. {
  405. "m_SGVersion": 0,
  406. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  407. "m_ObjectId": "00262cd0f3cc4dbebdb0a52cb9103118",
  408. "m_Group": {
  409. "m_Id": ""
  410. },
  411. "m_Name": "Sample Texture 2D",
  412. "m_DrawState": {
  413. "m_Expanded": false,
  414. "m_Position": {
  415. "serializedVersion": "2",
  416. "x": -987.5,
  417. "y": 90.00000762939453,
  418. "width": 153.5,
  419. "height": 154.0
  420. }
  421. },
  422. "m_Slots": [
  423. {
  424. "m_Id": "c337d738fae546ed8c3abe779cbefd90"
  425. },
  426. {
  427. "m_Id": "a6f092a9abf54554851ad702fad54d60"
  428. },
  429. {
  430. "m_Id": "0a0d765b6c9147efbdff48258e17c5bd"
  431. },
  432. {
  433. "m_Id": "96575493e059400ba40352f54ccbb92d"
  434. },
  435. {
  436. "m_Id": "06aa46cfb07a404b8318d51427b4a2fc"
  437. },
  438. {
  439. "m_Id": "cdb6083a8ef44f00becf6f2485cc36b0"
  440. },
  441. {
  442. "m_Id": "4234034ea2f242c19280eae50aa9529a"
  443. },
  444. {
  445. "m_Id": "5ebd033af88b4389b5aa9eaa7ccf388d"
  446. }
  447. ],
  448. "synonyms": [
  449. "tex2d"
  450. ],
  451. "m_Precision": 0,
  452. "m_PreviewExpanded": false,
  453. "m_DismissedVersion": 0,
  454. "m_PreviewMode": 0,
  455. "m_CustomColors": {
  456. "m_SerializableColors": []
  457. },
  458. "m_TextureType": 0,
  459. "m_NormalMapSpace": 0,
  460. "m_EnableGlobalMipBias": true,
  461. "m_MipSamplingMode": 0
  462. }
  463. {
  464. "m_SGVersion": 0,
  465. "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
  466. "m_ObjectId": "018f662dcfcc4a43a701ff9ddda3501c",
  467. "m_Id": 0,
  468. "m_DisplayName": "Normal",
  469. "m_SlotType": 0,
  470. "m_Hidden": false,
  471. "m_ShaderOutputName": "Normal",
  472. "m_StageCapability": 1,
  473. "m_Value": {
  474. "x": 0.0,
  475. "y": 0.0,
  476. "z": 0.0
  477. },
  478. "m_DefaultValue": {
  479. "x": 0.0,
  480. "y": 0.0,
  481. "z": 0.0
  482. },
  483. "m_Labels": [],
  484. "m_Space": 0
  485. }
  486. {
  487. "m_SGVersion": 0,
  488. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitData",
  489. "m_ObjectId": "02939ed2230340299120dbf9e56e1d3c",
  490. "m_RayTracing": false,
  491. "m_MaterialType": 0,
  492. "m_MaterialTypeMask": 2,
  493. "m_RefractionModel": 0,
  494. "m_SSSTransmission": true,
  495. "m_EnergyConservingSpecular": true,
  496. "m_ClearCoat": false
  497. }
  498. {
  499. "m_SGVersion": 0,
  500. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitSubTarget",
  501. "m_ObjectId": "04a9c0910c674846a4e96d5e359cb67d"
  502. }
  503. {
  504. "m_SGVersion": 0,
  505. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  506. "m_ObjectId": "06aa46cfb07a404b8318d51427b4a2fc",
  507. "m_Id": 7,
  508. "m_DisplayName": "A",
  509. "m_SlotType": 1,
  510. "m_Hidden": false,
  511. "m_ShaderOutputName": "A",
  512. "m_StageCapability": 2,
  513. "m_Value": 0.0,
  514. "m_DefaultValue": 0.0,
  515. "m_Labels": []
  516. }
  517. {
  518. "m_SGVersion": 0,
  519. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  520. "m_ObjectId": "0802e1aea4024a1b94d576e2a4060fd2",
  521. "m_Group": {
  522. "m_Id": ""
  523. },
  524. "m_Name": "SurfaceDescription.Occlusion",
  525. "m_DrawState": {
  526. "m_Expanded": true,
  527. "m_Position": {
  528. "serializedVersion": "2",
  529. "x": 0.0,
  530. "y": 0.0,
  531. "width": 0.0,
  532. "height": 0.0
  533. }
  534. },
  535. "m_Slots": [
  536. {
  537. "m_Id": "d1f5f008b48b4e91b7f2eae9ce88d4c7"
  538. }
  539. ],
  540. "synonyms": [],
  541. "m_Precision": 0,
  542. "m_PreviewExpanded": true,
  543. "m_DismissedVersion": 0,
  544. "m_PreviewMode": 0,
  545. "m_CustomColors": {
  546. "m_SerializableColors": []
  547. },
  548. "m_SerializedDescriptor": "SurfaceDescription.Occlusion"
  549. }
  550. {
  551. "m_SGVersion": 0,
  552. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  553. "m_ObjectId": "0a0d765b6c9147efbdff48258e17c5bd",
  554. "m_Id": 5,
  555. "m_DisplayName": "G",
  556. "m_SlotType": 1,
  557. "m_Hidden": false,
  558. "m_ShaderOutputName": "G",
  559. "m_StageCapability": 2,
  560. "m_Value": 0.0,
  561. "m_DefaultValue": 0.0,
  562. "m_Labels": []
  563. }
  564. {
  565. "m_SGVersion": 0,
  566. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  567. "m_ObjectId": "0e128848c3384addb388d4e29ccb7208",
  568. "m_Id": 2,
  569. "m_DisplayName": "Alpha",
  570. "m_SlotType": 1,
  571. "m_Hidden": false,
  572. "m_ShaderOutputName": "Alpha",
  573. "m_StageCapability": 3,
  574. "m_Value": 0.0,
  575. "m_DefaultValue": 0.0,
  576. "m_Labels": []
  577. }
  578. {
  579. "m_SGVersion": 0,
  580. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  581. "m_ObjectId": "0ee6188f9e6044afa2d162ffe1cc3d01",
  582. "m_Id": 1,
  583. "m_DisplayName": "RGBA",
  584. "m_SlotType": 1,
  585. "m_Hidden": false,
  586. "m_ShaderOutputName": "RGBA",
  587. "m_StageCapability": 3,
  588. "m_Value": {
  589. "x": 0.0,
  590. "y": 0.0,
  591. "z": 0.0,
  592. "w": 0.0
  593. },
  594. "m_DefaultValue": {
  595. "x": 0.0,
  596. "y": 0.0,
  597. "z": 0.0,
  598. "w": 0.0
  599. },
  600. "m_Labels": []
  601. }
  602. {
  603. "m_SGVersion": 0,
  604. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  605. "m_ObjectId": "1299ed991505413d8295b5974eeca543",
  606. "m_Id": 4192858,
  607. "m_DisplayName": "Alpha",
  608. "m_SlotType": 0,
  609. "m_Hidden": false,
  610. "m_ShaderOutputName": "_Alpha",
  611. "m_StageCapability": 3,
  612. "m_Value": 1.0,
  613. "m_DefaultValue": 0.0,
  614. "m_Labels": []
  615. }
  616. {
  617. "m_SGVersion": 0,
  618. "m_Type": "UnityEditor.ShaderGraph.PropertyNode",
  619. "m_ObjectId": "177427730f8c43b5b71c58e13c550647",
  620. "m_Group": {
  621. "m_Id": ""
  622. },
  623. "m_Name": "Property",
  624. "m_DrawState": {
  625. "m_Expanded": true,
  626. "m_Position": {
  627. "serializedVersion": "2",
  628. "x": -735.5,
  629. "y": 502.0,
  630. "width": 141.49993896484376,
  631. "height": 34.0
  632. }
  633. },
  634. "m_Slots": [
  635. {
  636. "m_Id": "76d30a8489cd4f3f9c87524727306f2a"
  637. }
  638. ],
  639. "synonyms": [],
  640. "m_Precision": 0,
  641. "m_PreviewExpanded": true,
  642. "m_DismissedVersion": 0,
  643. "m_PreviewMode": 0,
  644. "m_CustomColors": {
  645. "m_SerializableColors": []
  646. },
  647. "m_Property": {
  648. "m_Id": "dfa8a4423099447cbc2663ac4a237a73"
  649. }
  650. }
  651. {
  652. "m_SGVersion": 0,
  653. "m_Type": "UnityEditor.ShaderGraph.SubGraphNode",
  654. "m_ObjectId": "17fb1694317e40799fa29d1ee151ab57",
  655. "m_Group": {
  656. "m_Id": ""
  657. },
  658. "m_Name": "AlphaMerge",
  659. "m_DrawState": {
  660. "m_Expanded": true,
  661. "m_Position": {
  662. "serializedVersion": "2",
  663. "x": -774.5,
  664. "y": 189.99998474121095,
  665. "width": 161.0,
  666. "height": 119.00001525878906
  667. }
  668. },
  669. "m_Slots": [
  670. {
  671. "m_Id": "9f3c21abf98e41bcb5d3a4aef8bc7b55"
  672. },
  673. {
  674. "m_Id": "1299ed991505413d8295b5974eeca543"
  675. },
  676. {
  677. "m_Id": "0ee6188f9e6044afa2d162ffe1cc3d01"
  678. }
  679. ],
  680. "synonyms": [],
  681. "m_Precision": 0,
  682. "m_PreviewExpanded": false,
  683. "m_DismissedVersion": 0,
  684. "m_PreviewMode": 0,
  685. "m_CustomColors": {
  686. "m_SerializableColors": []
  687. },
  688. "m_SerializedSubGraph": "{\n \"subGraph\": {\n \"fileID\": -5475051401550479605,\n \"guid\": \"bcc5be5ab9ee6314a9a679d3e54b5a21\",\n \"type\": 3\n }\n}",
  689. "m_PropertyGuids": [
  690. "cd84c0a1-ed33-4f6e-8eab-f6a773fed629",
  691. "5fdb2aad-be5d-43c6-a7eb-f67c0d85d460"
  692. ],
  693. "m_PropertyIds": [
  694. 214595695,
  695. 4192858
  696. ],
  697. "m_Dropdowns": [],
  698. "m_DropdownSelectedEntries": []
  699. }
  700. {
  701. "m_SGVersion": 0,
  702. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  703. "m_ObjectId": "1d181ab5aca0406faba1af89b0b3fc71",
  704. "m_Group": {
  705. "m_Id": ""
  706. },
  707. "m_Name": "SurfaceDescription.Metallic",
  708. "m_DrawState": {
  709. "m_Expanded": true,
  710. "m_Position": {
  711. "serializedVersion": "2",
  712. "x": 0.0,
  713. "y": 0.0,
  714. "width": 0.0,
  715. "height": 0.0
  716. }
  717. },
  718. "m_Slots": [
  719. {
  720. "m_Id": "c78d083bfb3045b2855019f6627cba2e"
  721. }
  722. ],
  723. "synonyms": [],
  724. "m_Precision": 0,
  725. "m_PreviewExpanded": true,
  726. "m_DismissedVersion": 0,
  727. "m_PreviewMode": 0,
  728. "m_CustomColors": {
  729. "m_SerializableColors": []
  730. },
  731. "m_SerializedDescriptor": "SurfaceDescription.Metallic"
  732. }
  733. {
  734. "m_SGVersion": 0,
  735. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  736. "m_ObjectId": "1e65b5779b4a4a4e9de7b0b268f50ef4",
  737. "m_Id": 214595695,
  738. "m_DisplayName": "RGB",
  739. "m_SlotType": 0,
  740. "m_Hidden": false,
  741. "m_ShaderOutputName": "_RGB",
  742. "m_StageCapability": 3,
  743. "m_Value": {
  744. "x": 0.5,
  745. "y": 0.5,
  746. "z": 0.5
  747. },
  748. "m_DefaultValue": {
  749. "x": 0.0,
  750. "y": 0.0,
  751. "z": 0.0
  752. },
  753. "m_Labels": []
  754. }
  755. {
  756. "m_SGVersion": 0,
  757. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  758. "m_ObjectId": "2116cf3a49b340e2804d65f5184308e8",
  759. "m_Id": 0,
  760. "m_DisplayName": "Emission",
  761. "m_SlotType": 0,
  762. "m_Hidden": false,
  763. "m_ShaderOutputName": "Emission",
  764. "m_StageCapability": 2,
  765. "m_Value": {
  766. "x": 0.0,
  767. "y": 0.0,
  768. "z": 0.0
  769. },
  770. "m_DefaultValue": {
  771. "x": 0.0,
  772. "y": 0.0,
  773. "z": 0.0
  774. },
  775. "m_Labels": [],
  776. "m_ColorMode": 1,
  777. "m_DefaultColor": {
  778. "r": 0.0,
  779. "g": 0.0,
  780. "b": 0.0,
  781. "a": 1.0
  782. }
  783. }
  784. {
  785. "m_SGVersion": 0,
  786. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  787. "m_ObjectId": "2a240f304ff8423aa1843a2ab5377d88",
  788. "m_Id": 2,
  789. "m_DisplayName": "Alpha",
  790. "m_SlotType": 1,
  791. "m_Hidden": false,
  792. "m_ShaderOutputName": "Alpha",
  793. "m_StageCapability": 3,
  794. "m_Value": 0.0,
  795. "m_DefaultValue": 0.0,
  796. "m_Labels": []
  797. }
  798. {
  799. "m_SGVersion": 0,
  800. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  801. "m_ObjectId": "2b527252191b454387eb359442d993d9",
  802. "m_Id": 1,
  803. "m_DisplayName": "Tiling",
  804. "m_SlotType": 0,
  805. "m_Hidden": false,
  806. "m_ShaderOutputName": "Tiling",
  807. "m_StageCapability": 3,
  808. "m_Value": {
  809. "x": 2.0,
  810. "y": 2.0
  811. },
  812. "m_DefaultValue": {
  813. "x": 0.0,
  814. "y": 0.0
  815. },
  816. "m_Labels": []
  817. }
  818. {
  819. "m_SGVersion": 0,
  820. "m_Type": "UnityEditor.ShaderGraph.PropertyNode",
  821. "m_ObjectId": "336605c6115344afa7e7456ce9e6af18",
  822. "m_Group": {
  823. "m_Id": ""
  824. },
  825. "m_Name": "Property",
  826. "m_DrawState": {
  827. "m_Expanded": true,
  828. "m_Position": {
  829. "serializedVersion": "2",
  830. "x": -724.5000610351563,
  831. "y": 457.5,
  832. "width": 122.00006103515625,
  833. "height": 33.999969482421878
  834. }
  835. },
  836. "m_Slots": [
  837. {
  838. "m_Id": "614e774febf64cb9b8fc6f4213db4ea3"
  839. }
  840. ],
  841. "synonyms": [],
  842. "m_Precision": 0,
  843. "m_PreviewExpanded": true,
  844. "m_DismissedVersion": 0,
  845. "m_PreviewMode": 0,
  846. "m_CustomColors": {
  847. "m_SerializableColors": []
  848. },
  849. "m_Property": {
  850. "m_Id": "608c0ed89ba943f898f6678483aadf6a"
  851. }
  852. }
  853. {
  854. "m_SGVersion": 0,
  855. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  856. "m_ObjectId": "3865e7bbd92349cfa9bd2bce20bf48e7",
  857. "m_Id": 0,
  858. "m_DisplayName": "RGBA",
  859. "m_SlotType": 1,
  860. "m_Hidden": false,
  861. "m_ShaderOutputName": "RGBA",
  862. "m_StageCapability": 2,
  863. "m_Value": {
  864. "x": 0.0,
  865. "y": 0.0,
  866. "z": 0.0,
  867. "w": 0.0
  868. },
  869. "m_DefaultValue": {
  870. "x": 0.0,
  871. "y": 0.0,
  872. "z": 0.0,
  873. "w": 0.0
  874. },
  875. "m_Labels": []
  876. }
  877. {
  878. "m_SGVersion": 0,
  879. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData",
  880. "m_ObjectId": "38a38fc3fb9148ecbe50e21a2d70c955",
  881. "m_Distortion": false,
  882. "m_DistortionMode": 0,
  883. "m_DistortionDepthTest": true,
  884. "m_AddPrecomputedVelocity": false,
  885. "m_TransparentWritesMotionVec": false,
  886. "m_DepthOffset": false,
  887. "m_ConservativeDepthOffset": false,
  888. "m_TransparencyFog": true,
  889. "m_AlphaTestShadow": false,
  890. "m_BackThenFrontRendering": false,
  891. "m_TransparentDepthPrepass": false,
  892. "m_TransparentDepthPostpass": false,
  893. "m_TransparentPerPixelSorting": false,
  894. "m_SupportLodCrossFade": false
  895. }
  896. {
  897. "m_SGVersion": 0,
  898. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  899. "m_ObjectId": "41a4624c43b14f8280b8fd1fce7dae9d",
  900. "m_Group": {
  901. "m_Id": ""
  902. },
  903. "m_Name": "Sample Texture 2D",
  904. "m_DrawState": {
  905. "m_Expanded": false,
  906. "m_Position": {
  907. "serializedVersion": "2",
  908. "x": -987.5,
  909. "y": 244.0,
  910. "width": 153.5,
  911. "height": 154.00003051757813
  912. }
  913. },
  914. "m_Slots": [
  915. {
  916. "m_Id": "3865e7bbd92349cfa9bd2bce20bf48e7"
  917. },
  918. {
  919. "m_Id": "cc4f4c3d25f34dadbac06bc1ef64925b"
  920. },
  921. {
  922. "m_Id": "ec9ad82da779482589231ed20cc48deb"
  923. },
  924. {
  925. "m_Id": "c7e249f0a6bd43199691cf01ed38890f"
  926. },
  927. {
  928. "m_Id": "b039456db42e459bb56f2df8ca18175f"
  929. },
  930. {
  931. "m_Id": "7f4224f67bf045448bc89febb01153dd"
  932. },
  933. {
  934. "m_Id": "e46b0555833f4916a8306060b2d77a08"
  935. },
  936. {
  937. "m_Id": "78cbe50fb83d4f5c94e3312953108ad9"
  938. }
  939. ],
  940. "synonyms": [
  941. "tex2d"
  942. ],
  943. "m_Precision": 0,
  944. "m_PreviewExpanded": false,
  945. "m_DismissedVersion": 0,
  946. "m_PreviewMode": 0,
  947. "m_CustomColors": {
  948. "m_SerializableColors": []
  949. },
  950. "m_TextureType": 1,
  951. "m_NormalMapSpace": 0,
  952. "m_EnableGlobalMipBias": true,
  953. "m_MipSamplingMode": 0
  954. }
  955. {
  956. "m_SGVersion": 0,
  957. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  958. "m_ObjectId": "4234034ea2f242c19280eae50aa9529a",
  959. "m_Id": 2,
  960. "m_DisplayName": "UV",
  961. "m_SlotType": 0,
  962. "m_Hidden": false,
  963. "m_ShaderOutputName": "UV",
  964. "m_StageCapability": 3,
  965. "m_Value": {
  966. "x": 0.0,
  967. "y": 0.0
  968. },
  969. "m_DefaultValue": {
  970. "x": 0.0,
  971. "y": 0.0
  972. },
  973. "m_Labels": [],
  974. "m_Channel": 0
  975. }
  976. {
  977. "m_SGVersion": 0,
  978. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  979. "m_ObjectId": "4505a3022fce49548e41dc4120a12301",
  980. "m_Id": 803411678,
  981. "m_DisplayName": "RainWetness",
  982. "m_SlotType": 0,
  983. "m_Hidden": false,
  984. "m_ShaderOutputName": "_RainWetness",
  985. "m_StageCapability": 2,
  986. "m_Value": 0.5,
  987. "m_DefaultValue": 0.0,
  988. "m_Labels": []
  989. }
  990. {
  991. "m_SGVersion": 0,
  992. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  993. "m_ObjectId": "4840ff18cb3f4ba3983f22289c5b6765",
  994. "m_Id": 6,
  995. "m_DisplayName": "B",
  996. "m_SlotType": 1,
  997. "m_Hidden": false,
  998. "m_ShaderOutputName": "B",
  999. "m_StageCapability": 2,
  1000. "m_Value": 0.0,
  1001. "m_DefaultValue": 0.0,
  1002. "m_Labels": []
  1003. }
  1004. {
  1005. "m_SGVersion": 0,
  1006. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData",
  1007. "m_ObjectId": "50eefb5a25524a68b3eeb0a8a0da2bf0",
  1008. "m_MaterialNeedsUpdateHash": 0,
  1009. "m_SurfaceType": 0,
  1010. "m_RenderingPass": 1,
  1011. "m_BlendMode": 0,
  1012. "m_ZTest": 4,
  1013. "m_ZWrite": false,
  1014. "m_TransparentCullMode": 2,
  1015. "m_OpaqueCullMode": 2,
  1016. "m_SortPriority": 0,
  1017. "m_AlphaTest": false,
  1018. "m_ExcludeFromTUAndAA": false,
  1019. "m_TransparentDepthPrepass": false,
  1020. "m_TransparentDepthPostpass": false,
  1021. "m_SupportLodCrossFade": false,
  1022. "m_DoubleSidedMode": 0,
  1023. "m_DOTSInstancing": false,
  1024. "m_CustomVelocity": false,
  1025. "m_Tessellation": false,
  1026. "m_TessellationMode": 0,
  1027. "m_TessellationFactorMinDistance": 20.0,
  1028. "m_TessellationFactorMaxDistance": 50.0,
  1029. "m_TessellationFactorTriangleSize": 100.0,
  1030. "m_TessellationShapeFactor": 0.75,
  1031. "m_TessellationBackFaceCullEpsilon": -0.25,
  1032. "m_TessellationMaxDisplacement": 0.009999999776482582,
  1033. "m_DebugSymbols": false,
  1034. "m_Version": 2,
  1035. "inspectorFoldoutMask": 0
  1036. }
  1037. {
  1038. "m_SGVersion": 0,
  1039. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1040. "m_ObjectId": "51036ef5b1fe4ddcb23ba2c9f660d95a",
  1041. "m_Id": 1,
  1042. "m_DisplayName": "ColorSmoothness",
  1043. "m_SlotType": 1,
  1044. "m_Hidden": false,
  1045. "m_ShaderOutputName": "ColorSmoothness",
  1046. "m_StageCapability": 2,
  1047. "m_Value": {
  1048. "x": 0.0,
  1049. "y": 0.0,
  1050. "z": 0.0,
  1051. "w": 0.0
  1052. },
  1053. "m_DefaultValue": {
  1054. "x": 0.0,
  1055. "y": 0.0,
  1056. "z": 0.0,
  1057. "w": 0.0
  1058. },
  1059. "m_Labels": []
  1060. }
  1061. {
  1062. "m_SGVersion": 0,
  1063. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1064. "m_ObjectId": "51ace5d0cf2f4721baebd9e68b0563c3",
  1065. "m_Id": 6,
  1066. "m_DisplayName": "NormalAO",
  1067. "m_SlotType": 1,
  1068. "m_Hidden": false,
  1069. "m_ShaderOutputName": "NormalAO",
  1070. "m_StageCapability": 2,
  1071. "m_Value": {
  1072. "x": 0.0,
  1073. "y": 0.0,
  1074. "z": 0.0,
  1075. "w": 0.0
  1076. },
  1077. "m_DefaultValue": {
  1078. "x": 0.0,
  1079. "y": 0.0,
  1080. "z": 0.0,
  1081. "w": 0.0
  1082. },
  1083. "m_Labels": []
  1084. }
  1085. {
  1086. "m_SGVersion": 0,
  1087. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1088. "m_ObjectId": "5222194488674aaeba979653c550b943",
  1089. "m_Id": -2076319194,
  1090. "m_DisplayName": "IsRaining",
  1091. "m_SlotType": 0,
  1092. "m_Hidden": false,
  1093. "m_ShaderOutputName": "_IsRaining",
  1094. "m_StageCapability": 2,
  1095. "m_Value": 1.0,
  1096. "m_DefaultValue": 0.0,
  1097. "m_Labels": []
  1098. }
  1099. {
  1100. "m_SGVersion": 0,
  1101. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1102. "m_ObjectId": "54aff1c6c9994d01b3ea9c670bc4ec9d",
  1103. "m_Id": 4,
  1104. "m_DisplayName": "R",
  1105. "m_SlotType": 1,
  1106. "m_Hidden": false,
  1107. "m_ShaderOutputName": "R",
  1108. "m_StageCapability": 2,
  1109. "m_Value": 0.0,
  1110. "m_DefaultValue": 0.0,
  1111. "m_Labels": []
  1112. }
  1113. {
  1114. "m_SGVersion": 0,
  1115. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1116. "m_ObjectId": "5b81c42ae09d4f35a379082479c78c2e",
  1117. "m_Group": {
  1118. "m_Id": ""
  1119. },
  1120. "m_Name": "SurfaceDescription.Emission",
  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": "2116cf3a49b340e2804d65f5184308e8"
  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.Emission"
  1145. }
  1146. {
  1147. "m_SGVersion": 0,
  1148. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1149. "m_ObjectId": "5c327bd97e354739a76c926919541d6d",
  1150. "m_Group": {
  1151. "m_Id": ""
  1152. },
  1153. "m_Name": "SurfaceDescription.NormalTS",
  1154. "m_DrawState": {
  1155. "m_Expanded": true,
  1156. "m_Position": {
  1157. "serializedVersion": "2",
  1158. "x": 0.0,
  1159. "y": 0.0,
  1160. "width": 0.0,
  1161. "height": 0.0
  1162. }
  1163. },
  1164. "m_Slots": [
  1165. {
  1166. "m_Id": "eabd3b46d6a2497c9f174dbf90a85a2a"
  1167. }
  1168. ],
  1169. "synonyms": [],
  1170. "m_Precision": 0,
  1171. "m_PreviewExpanded": true,
  1172. "m_DismissedVersion": 0,
  1173. "m_PreviewMode": 0,
  1174. "m_CustomColors": {
  1175. "m_SerializableColors": []
  1176. },
  1177. "m_SerializedDescriptor": "SurfaceDescription.NormalTS"
  1178. }
  1179. {
  1180. "m_SGVersion": 0,
  1181. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  1182. "m_ObjectId": "5ebd033af88b4389b5aa9eaa7ccf388d",
  1183. "m_Id": 3,
  1184. "m_DisplayName": "Sampler",
  1185. "m_SlotType": 0,
  1186. "m_Hidden": false,
  1187. "m_ShaderOutputName": "Sampler",
  1188. "m_StageCapability": 3,
  1189. "m_BareResource": false
  1190. }
  1191. {
  1192. "m_SGVersion": 1,
  1193. "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",
  1194. "m_ObjectId": "608c0ed89ba943f898f6678483aadf6a",
  1195. "m_Guid": {
  1196. "m_GuidSerialized": "5c7cfc89-99a9-47b6-9042-1e68b4d54dc3"
  1197. },
  1198. "m_Name": "IsRaining",
  1199. "m_DefaultRefNameVersion": 1,
  1200. "m_RefNameGeneratedByDisplayName": "IsRaining",
  1201. "m_DefaultReferenceName": "_IsRaining",
  1202. "m_OverrideReferenceName": "",
  1203. "m_GeneratePropertyBlock": true,
  1204. "m_UseCustomSlotLabel": false,
  1205. "m_CustomSlotLabel": "",
  1206. "m_DismissedVersion": 0,
  1207. "m_Precision": 0,
  1208. "overrideHLSLDeclaration": false,
  1209. "hlslDeclarationOverride": 0,
  1210. "m_Hidden": false,
  1211. "m_Value": 1.0,
  1212. "m_FloatType": 1,
  1213. "m_RangeValues": {
  1214. "x": 0.0,
  1215. "y": 1.0
  1216. }
  1217. }
  1218. {
  1219. "m_SGVersion": 0,
  1220. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1221. "m_ObjectId": "614e774febf64cb9b8fc6f4213db4ea3",
  1222. "m_Id": 0,
  1223. "m_DisplayName": "IsRaining",
  1224. "m_SlotType": 1,
  1225. "m_Hidden": false,
  1226. "m_ShaderOutputName": "Out",
  1227. "m_StageCapability": 3,
  1228. "m_Value": 0.0,
  1229. "m_DefaultValue": 0.0,
  1230. "m_Labels": []
  1231. }
  1232. {
  1233. "m_SGVersion": 0,
  1234. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  1235. "m_ObjectId": "65bfe5941ca94be0a19a2b2c72cd1a4f",
  1236. "m_Id": 3,
  1237. "m_DisplayName": "Sampler",
  1238. "m_SlotType": 0,
  1239. "m_Hidden": false,
  1240. "m_ShaderOutputName": "Sampler",
  1241. "m_StageCapability": 3,
  1242. "m_BareResource": false
  1243. }
  1244. {
  1245. "m_SGVersion": 0,
  1246. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  1247. "m_ObjectId": "68b3d4eab31e4e268dcb4d9c0b904d3b",
  1248. "m_Id": 0,
  1249. "m_DisplayName": "Base Color",
  1250. "m_SlotType": 0,
  1251. "m_Hidden": false,
  1252. "m_ShaderOutputName": "BaseColor",
  1253. "m_StageCapability": 2,
  1254. "m_Value": {
  1255. "x": 0.5,
  1256. "y": 0.5,
  1257. "z": 0.5
  1258. },
  1259. "m_DefaultValue": {
  1260. "x": 0.0,
  1261. "y": 0.0,
  1262. "z": 0.0
  1263. },
  1264. "m_Labels": [],
  1265. "m_ColorMode": 0,
  1266. "m_DefaultColor": {
  1267. "r": 0.5,
  1268. "g": 0.5,
  1269. "b": 0.5,
  1270. "a": 1.0
  1271. }
  1272. }
  1273. {
  1274. "m_SGVersion": 0,
  1275. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1276. "m_ObjectId": "72e160252fbf4786a1ce11783c9244d6",
  1277. "m_Id": 1131553975,
  1278. "m_DisplayName": "NormalAO",
  1279. "m_SlotType": 0,
  1280. "m_Hidden": false,
  1281. "m_ShaderOutputName": "_NormalAO",
  1282. "m_StageCapability": 2,
  1283. "m_Value": {
  1284. "x": 0.0,
  1285. "y": 0.0,
  1286. "z": 1.0,
  1287. "w": 1.0
  1288. },
  1289. "m_DefaultValue": {
  1290. "x": 0.0,
  1291. "y": 0.0,
  1292. "z": 0.0,
  1293. "w": 0.0
  1294. },
  1295. "m_Labels": []
  1296. }
  1297. {
  1298. "m_SGVersion": 0,
  1299. "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot",
  1300. "m_ObjectId": "74b0fa943d2443c3966fc18c21d89358",
  1301. "m_Id": 0,
  1302. "m_DisplayName": "Tangent",
  1303. "m_SlotType": 0,
  1304. "m_Hidden": false,
  1305. "m_ShaderOutputName": "Tangent",
  1306. "m_StageCapability": 1,
  1307. "m_Value": {
  1308. "x": 0.0,
  1309. "y": 0.0,
  1310. "z": 0.0
  1311. },
  1312. "m_DefaultValue": {
  1313. "x": 0.0,
  1314. "y": 0.0,
  1315. "z": 0.0
  1316. },
  1317. "m_Labels": [],
  1318. "m_Space": 0
  1319. }
  1320. {
  1321. "m_SGVersion": 0,
  1322. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1323. "m_ObjectId": "754ea56bd6ae4a15a1395262994a5f07",
  1324. "m_Id": -890318989,
  1325. "m_DisplayName": "ColorSmoothness",
  1326. "m_SlotType": 0,
  1327. "m_Hidden": false,
  1328. "m_ShaderOutputName": "_ColorSmoothness",
  1329. "m_StageCapability": 2,
  1330. "m_Value": {
  1331. "x": 0.5,
  1332. "y": 0.5,
  1333. "z": 0.5,
  1334. "w": 0.5
  1335. },
  1336. "m_DefaultValue": {
  1337. "x": 0.0,
  1338. "y": 0.0,
  1339. "z": 0.0,
  1340. "w": 0.0
  1341. },
  1342. "m_Labels": []
  1343. }
  1344. {
  1345. "m_SGVersion": 0,
  1346. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1347. "m_ObjectId": "76d30a8489cd4f3f9c87524727306f2a",
  1348. "m_Id": 0,
  1349. "m_DisplayName": "RainWetness",
  1350. "m_SlotType": 1,
  1351. "m_Hidden": false,
  1352. "m_ShaderOutputName": "Out",
  1353. "m_StageCapability": 3,
  1354. "m_Value": 0.0,
  1355. "m_DefaultValue": 0.0,
  1356. "m_Labels": []
  1357. }
  1358. {
  1359. "m_SGVersion": 0,
  1360. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  1361. "m_ObjectId": "784aa15553e64d7eb3cc0dfce853780d",
  1362. "m_Group": {
  1363. "m_Id": ""
  1364. },
  1365. "m_Name": "Sample Texture 2D",
  1366. "m_DrawState": {
  1367. "m_Expanded": true,
  1368. "m_Position": {
  1369. "serializedVersion": "2",
  1370. "x": -987.5,
  1371. "y": 404.5000305175781,
  1372. "width": 153.5,
  1373. "height": 177.99996948242188
  1374. }
  1375. },
  1376. "m_Slots": [
  1377. {
  1378. "m_Id": "8891d941d3ea4e4cb69a69461fe12133"
  1379. },
  1380. {
  1381. "m_Id": "54aff1c6c9994d01b3ea9c670bc4ec9d"
  1382. },
  1383. {
  1384. "m_Id": "95a402ea16e948e09f7a44d3dd6ef2a2"
  1385. },
  1386. {
  1387. "m_Id": "4840ff18cb3f4ba3983f22289c5b6765"
  1388. },
  1389. {
  1390. "m_Id": "cc232fe7b1654d249fdda200fd8dd6ec"
  1391. },
  1392. {
  1393. "m_Id": "ea5f8bad1548400c81bc051368a573dc"
  1394. },
  1395. {
  1396. "m_Id": "d34a0772a19a4430a8cf6657a02d3189"
  1397. },
  1398. {
  1399. "m_Id": "65bfe5941ca94be0a19a2b2c72cd1a4f"
  1400. }
  1401. ],
  1402. "synonyms": [
  1403. "tex2d"
  1404. ],
  1405. "m_Precision": 0,
  1406. "m_PreviewExpanded": false,
  1407. "m_DismissedVersion": 0,
  1408. "m_PreviewMode": 0,
  1409. "m_CustomColors": {
  1410. "m_SerializableColors": []
  1411. },
  1412. "m_TextureType": 0,
  1413. "m_NormalMapSpace": 0,
  1414. "m_EnableGlobalMipBias": true,
  1415. "m_MipSamplingMode": 0
  1416. }
  1417. {
  1418. "m_SGVersion": 0,
  1419. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  1420. "m_ObjectId": "78cbe50fb83d4f5c94e3312953108ad9",
  1421. "m_Id": 3,
  1422. "m_DisplayName": "Sampler",
  1423. "m_SlotType": 0,
  1424. "m_Hidden": false,
  1425. "m_ShaderOutputName": "Sampler",
  1426. "m_StageCapability": 3,
  1427. "m_BareResource": false
  1428. }
  1429. {
  1430. "m_SGVersion": 0,
  1431. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1432. "m_ObjectId": "7c4717cb7e9c4690a9c47a8679401d3d",
  1433. "m_Id": 2,
  1434. "m_DisplayName": "Offset",
  1435. "m_SlotType": 0,
  1436. "m_Hidden": false,
  1437. "m_ShaderOutputName": "Offset",
  1438. "m_StageCapability": 3,
  1439. "m_Value": {
  1440. "x": 0.0,
  1441. "y": 0.0
  1442. },
  1443. "m_DefaultValue": {
  1444. "x": 0.0,
  1445. "y": 0.0
  1446. },
  1447. "m_Labels": []
  1448. }
  1449. {
  1450. "m_SGVersion": 0,
  1451. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  1452. "m_ObjectId": "7f4224f67bf045448bc89febb01153dd",
  1453. "m_Id": 1,
  1454. "m_DisplayName": "Texture",
  1455. "m_SlotType": 0,
  1456. "m_Hidden": false,
  1457. "m_ShaderOutputName": "Texture",
  1458. "m_StageCapability": 3,
  1459. "m_BareResource": false,
  1460. "m_Texture": {
  1461. "m_SerializedTexture": "{\"texture\":{\"fileID\":2800000,\"guid\":\"7be741f9449557c488d643ae307fe1ab\",\"type\":3}}",
  1462. "m_Guid": ""
  1463. },
  1464. "m_DefaultType": 3
  1465. }
  1466. {
  1467. "m_SGVersion": 0,
  1468. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1469. "m_ObjectId": "82d0754d241443ffba26b1c57ce12367",
  1470. "m_Id": 3,
  1471. "m_DisplayName": "Out",
  1472. "m_SlotType": 1,
  1473. "m_Hidden": false,
  1474. "m_ShaderOutputName": "Out",
  1475. "m_StageCapability": 3,
  1476. "m_Value": {
  1477. "x": 0.0,
  1478. "y": 0.0
  1479. },
  1480. "m_DefaultValue": {
  1481. "x": 0.0,
  1482. "y": 0.0
  1483. },
  1484. "m_Labels": []
  1485. }
  1486. {
  1487. "m_SGVersion": 0,
  1488. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitData",
  1489. "m_ObjectId": "8562934923b3456fad6340587c95d729",
  1490. "m_RayTracing": false,
  1491. "m_MaterialType": 0,
  1492. "m_MaterialTypeMask": 2,
  1493. "m_RefractionModel": 0,
  1494. "m_SSSTransmission": true,
  1495. "m_EnergyConservingSpecular": true,
  1496. "m_ClearCoat": false
  1497. }
  1498. {
  1499. "m_SGVersion": 0,
  1500. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1501. "m_ObjectId": "8891d941d3ea4e4cb69a69461fe12133",
  1502. "m_Id": 0,
  1503. "m_DisplayName": "RGBA",
  1504. "m_SlotType": 1,
  1505. "m_Hidden": false,
  1506. "m_ShaderOutputName": "RGBA",
  1507. "m_StageCapability": 2,
  1508. "m_Value": {
  1509. "x": 0.0,
  1510. "y": 0.0,
  1511. "z": 0.0,
  1512. "w": 0.0
  1513. },
  1514. "m_DefaultValue": {
  1515. "x": 0.0,
  1516. "y": 0.0,
  1517. "z": 0.0,
  1518. "w": 0.0
  1519. },
  1520. "m_Labels": []
  1521. }
  1522. {
  1523. "m_SGVersion": 0,
  1524. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1525. "m_ObjectId": "89b38bef21d3423cb26931527759d091",
  1526. "m_Group": {
  1527. "m_Id": ""
  1528. },
  1529. "m_Name": "SurfaceDescription.BentNormal",
  1530. "m_DrawState": {
  1531. "m_Expanded": true,
  1532. "m_Position": {
  1533. "serializedVersion": "2",
  1534. "x": 0.0,
  1535. "y": 0.0,
  1536. "width": 0.0,
  1537. "height": 0.0
  1538. }
  1539. },
  1540. "m_Slots": [
  1541. {
  1542. "m_Id": "f0bc680d31da40e597f35d4b76406325"
  1543. }
  1544. ],
  1545. "synonyms": [],
  1546. "m_Precision": 0,
  1547. "m_PreviewExpanded": true,
  1548. "m_DismissedVersion": 0,
  1549. "m_PreviewMode": 0,
  1550. "m_CustomColors": {
  1551. "m_SerializableColors": []
  1552. },
  1553. "m_SerializedDescriptor": "SurfaceDescription.BentNormal"
  1554. }
  1555. {
  1556. "m_SGVersion": 0,
  1557. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1558. "m_ObjectId": "8dbe2e845a494ed7b5c6f54eb5d4c7c1",
  1559. "m_Id": 1,
  1560. "m_DisplayName": "RGB",
  1561. "m_SlotType": 1,
  1562. "m_Hidden": false,
  1563. "m_ShaderOutputName": "RGB",
  1564. "m_StageCapability": 3,
  1565. "m_Value": {
  1566. "x": 0.0,
  1567. "y": 0.0,
  1568. "z": 0.0
  1569. },
  1570. "m_DefaultValue": {
  1571. "x": 0.0,
  1572. "y": 0.0,
  1573. "z": 0.0
  1574. },
  1575. "m_Labels": []
  1576. }
  1577. {
  1578. "m_SGVersion": 0,
  1579. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1580. "m_ObjectId": "8dd2a0be91844990a5d1502244a1a2e0",
  1581. "m_Id": 71621326,
  1582. "m_DisplayName": "RGBA",
  1583. "m_SlotType": 0,
  1584. "m_Hidden": false,
  1585. "m_ShaderOutputName": "_RGBA",
  1586. "m_StageCapability": 3,
  1587. "m_Value": {
  1588. "x": 0.5,
  1589. "y": 0.5,
  1590. "z": 0.5,
  1591. "w": 1.0
  1592. },
  1593. "m_DefaultValue": {
  1594. "x": 0.0,
  1595. "y": 0.0,
  1596. "z": 0.0,
  1597. "w": 0.0
  1598. },
  1599. "m_Labels": []
  1600. }
  1601. {
  1602. "m_SGVersion": 0,
  1603. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1604. "m_ObjectId": "8e51b1b1100b4e6daf2d1d1048742922",
  1605. "m_Id": 1,
  1606. "m_DisplayName": "RGB",
  1607. "m_SlotType": 1,
  1608. "m_Hidden": false,
  1609. "m_ShaderOutputName": "RGB",
  1610. "m_StageCapability": 3,
  1611. "m_Value": {
  1612. "x": 0.0,
  1613. "y": 0.0,
  1614. "z": 0.0
  1615. },
  1616. "m_DefaultValue": {
  1617. "x": 0.0,
  1618. "y": 0.0,
  1619. "z": 0.0
  1620. },
  1621. "m_Labels": []
  1622. }
  1623. {
  1624. "m_SGVersion": 0,
  1625. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1626. "m_ObjectId": "8fc3ea4de79f4513b2546856b3690543",
  1627. "m_Id": 1,
  1628. "m_DisplayName": "RGBA",
  1629. "m_SlotType": 1,
  1630. "m_Hidden": false,
  1631. "m_ShaderOutputName": "RGBA",
  1632. "m_StageCapability": 3,
  1633. "m_Value": {
  1634. "x": 0.0,
  1635. "y": 0.0,
  1636. "z": 0.0,
  1637. "w": 0.0
  1638. },
  1639. "m_DefaultValue": {
  1640. "x": 0.0,
  1641. "y": 0.0,
  1642. "z": 0.0,
  1643. "w": 0.0
  1644. },
  1645. "m_Labels": []
  1646. }
  1647. {
  1648. "m_SGVersion": 0,
  1649. "m_Type": "UnityEditor.ShaderGraph.SubGraphNode",
  1650. "m_ObjectId": "9130af2346a14cb3917bfc112fc87661",
  1651. "m_Group": {
  1652. "m_Id": ""
  1653. },
  1654. "m_Name": "RainRocks",
  1655. "m_DrawState": {
  1656. "m_Expanded": true,
  1657. "m_Position": {
  1658. "serializedVersion": "2",
  1659. "x": -548.5,
  1660. "y": 261.0,
  1661. "width": 288.99993896484377,
  1662. "height": 167.0
  1663. }
  1664. },
  1665. "m_Slots": [
  1666. {
  1667. "m_Id": "754ea56bd6ae4a15a1395262994a5f07"
  1668. },
  1669. {
  1670. "m_Id": "72e160252fbf4786a1ce11783c9244d6"
  1671. },
  1672. {
  1673. "m_Id": "5222194488674aaeba979653c550b943"
  1674. },
  1675. {
  1676. "m_Id": "4505a3022fce49548e41dc4120a12301"
  1677. },
  1678. {
  1679. "m_Id": "51036ef5b1fe4ddcb23ba2c9f660d95a"
  1680. },
  1681. {
  1682. "m_Id": "51ace5d0cf2f4721baebd9e68b0563c3"
  1683. }
  1684. ],
  1685. "synonyms": [],
  1686. "m_Precision": 0,
  1687. "m_PreviewExpanded": false,
  1688. "m_DismissedVersion": 0,
  1689. "m_PreviewMode": 0,
  1690. "m_CustomColors": {
  1691. "m_SerializableColors": []
  1692. },
  1693. "m_SerializedSubGraph": "{\n \"subGraph\": {\n \"fileID\": -5475051401550479605,\n \"guid\": \"02baad41bf0d8dc45bd9ab049b8c8d53\",\n \"type\": 3\n }\n}",
  1694. "m_PropertyGuids": [
  1695. "d1a1c343-32aa-49b4-b2b9-53072887a855",
  1696. "703804f3-217b-439c-acac-504393ad8633",
  1697. "4545b299-8186-4a00-af19-512596c829ae",
  1698. "52af962c-b2fd-4042-a90d-af95a63fa1a8"
  1699. ],
  1700. "m_PropertyIds": [
  1701. -890318989,
  1702. 1131553975,
  1703. -2076319194,
  1704. 803411678
  1705. ],
  1706. "m_Dropdowns": [],
  1707. "m_DropdownSelectedEntries": []
  1708. }
  1709. {
  1710. "m_SGVersion": 0,
  1711. "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
  1712. "m_ObjectId": "9450872d63754144af3530df33070edb",
  1713. "m_Id": 0,
  1714. "m_DisplayName": "Position",
  1715. "m_SlotType": 0,
  1716. "m_Hidden": false,
  1717. "m_ShaderOutputName": "Position",
  1718. "m_StageCapability": 1,
  1719. "m_Value": {
  1720. "x": 0.0,
  1721. "y": 0.0,
  1722. "z": 0.0
  1723. },
  1724. "m_DefaultValue": {
  1725. "x": 0.0,
  1726. "y": 0.0,
  1727. "z": 0.0
  1728. },
  1729. "m_Labels": [],
  1730. "m_Space": 0
  1731. }
  1732. {
  1733. "m_SGVersion": 0,
  1734. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1735. "m_ObjectId": "95a402ea16e948e09f7a44d3dd6ef2a2",
  1736. "m_Id": 5,
  1737. "m_DisplayName": "G",
  1738. "m_SlotType": 1,
  1739. "m_Hidden": false,
  1740. "m_ShaderOutputName": "G",
  1741. "m_StageCapability": 2,
  1742. "m_Value": 0.0,
  1743. "m_DefaultValue": 0.0,
  1744. "m_Labels": []
  1745. }
  1746. {
  1747. "m_SGVersion": 0,
  1748. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1749. "m_ObjectId": "96575493e059400ba40352f54ccbb92d",
  1750. "m_Id": 6,
  1751. "m_DisplayName": "B",
  1752. "m_SlotType": 1,
  1753. "m_Hidden": false,
  1754. "m_ShaderOutputName": "B",
  1755. "m_StageCapability": 2,
  1756. "m_Value": 0.0,
  1757. "m_DefaultValue": 0.0,
  1758. "m_Labels": []
  1759. }
  1760. {
  1761. "m_SGVersion": 1,
  1762. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget",
  1763. "m_ObjectId": "97be522839ab4edf948efdd9d4147077",
  1764. "m_Datas": [],
  1765. "m_ActiveSubTarget": {
  1766. "m_Id": "9fe65a788e3e4697b4b0668dc230034b"
  1767. },
  1768. "m_AllowMaterialOverride": false,
  1769. "m_SurfaceType": 0,
  1770. "m_ZTestMode": 4,
  1771. "m_ZWriteControl": 0,
  1772. "m_AlphaMode": 0,
  1773. "m_RenderFace": 2,
  1774. "m_AlphaClip": false,
  1775. "m_CastShadows": true,
  1776. "m_ReceiveShadows": true,
  1777. "m_DisableTint": false,
  1778. "m_AdditionalMotionVectorMode": 0,
  1779. "m_AlembicMotionVectors": false,
  1780. "m_SupportsLODCrossFade": false,
  1781. "m_CustomEditorGUI": "",
  1782. "m_SupportVFX": false
  1783. }
  1784. {
  1785. "m_SGVersion": 0,
  1786. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget",
  1787. "m_ObjectId": "98c3d138e2c049d7a65716b644490a63",
  1788. "m_ActiveSubTarget": {
  1789. "m_Id": "04a9c0910c674846a4e96d5e359cb67d"
  1790. },
  1791. "m_Datas": [
  1792. {
  1793. "m_Id": "af8f736e1f6b46b0821b69cad7e1ac0b"
  1794. },
  1795. {
  1796. "m_Id": "50eefb5a25524a68b3eeb0a8a0da2bf0"
  1797. },
  1798. {
  1799. "m_Id": "02939ed2230340299120dbf9e56e1d3c"
  1800. },
  1801. {
  1802. "m_Id": "ff1fa3c9affb4a3fa42c697e0740ab1e"
  1803. }
  1804. ],
  1805. "m_CustomEditorGUI": "",
  1806. "m_SupportVFX": false,
  1807. "m_SupportLineRendering": false
  1808. }
  1809. {
  1810. "m_SGVersion": 0,
  1811. "m_Type": "UnityEditor.ShaderGraph.SubGraphNode",
  1812. "m_ObjectId": "9aa52f8daf77413796c476eb70fb6c3c",
  1813. "m_Group": {
  1814. "m_Id": ""
  1815. },
  1816. "m_Name": "AlphaMerge",
  1817. "m_DrawState": {
  1818. "m_Expanded": true,
  1819. "m_Position": {
  1820. "serializedVersion": "2",
  1821. "x": -774.5,
  1822. "y": 309.0,
  1823. "width": 161.0,
  1824. "height": 119.0
  1825. }
  1826. },
  1827. "m_Slots": [
  1828. {
  1829. "m_Id": "1e65b5779b4a4a4e9de7b0b268f50ef4"
  1830. },
  1831. {
  1832. "m_Id": "b709897d353f49e485f1fe7a2d87e391"
  1833. },
  1834. {
  1835. "m_Id": "8fc3ea4de79f4513b2546856b3690543"
  1836. }
  1837. ],
  1838. "synonyms": [],
  1839. "m_Precision": 0,
  1840. "m_PreviewExpanded": false,
  1841. "m_DismissedVersion": 0,
  1842. "m_PreviewMode": 0,
  1843. "m_CustomColors": {
  1844. "m_SerializableColors": []
  1845. },
  1846. "m_SerializedSubGraph": "{\n \"subGraph\": {\n \"fileID\": -5475051401550479605,\n \"guid\": \"bcc5be5ab9ee6314a9a679d3e54b5a21\",\n \"type\": 3\n }\n}",
  1847. "m_PropertyGuids": [
  1848. "cd84c0a1-ed33-4f6e-8eab-f6a773fed629",
  1849. "5fdb2aad-be5d-43c6-a7eb-f67c0d85d460"
  1850. ],
  1851. "m_PropertyIds": [
  1852. 214595695,
  1853. 4192858
  1854. ],
  1855. "m_Dropdowns": [],
  1856. "m_DropdownSelectedEntries": []
  1857. }
  1858. {
  1859. "m_SGVersion": 0,
  1860. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1861. "m_ObjectId": "9f3c21abf98e41bcb5d3a4aef8bc7b55",
  1862. "m_Id": 214595695,
  1863. "m_DisplayName": "RGB",
  1864. "m_SlotType": 0,
  1865. "m_Hidden": false,
  1866. "m_ShaderOutputName": "_RGB",
  1867. "m_StageCapability": 3,
  1868. "m_Value": {
  1869. "x": 0.5,
  1870. "y": 0.5,
  1871. "z": 0.5
  1872. },
  1873. "m_DefaultValue": {
  1874. "x": 0.0,
  1875. "y": 0.0,
  1876. "z": 0.0
  1877. },
  1878. "m_Labels": []
  1879. }
  1880. {
  1881. "m_SGVersion": 0,
  1882. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1883. "m_ObjectId": "9fd0779cbcf34d1ea10ba0118785b1ab",
  1884. "m_Group": {
  1885. "m_Id": ""
  1886. },
  1887. "m_Name": "SurfaceDescription.Smoothness",
  1888. "m_DrawState": {
  1889. "m_Expanded": true,
  1890. "m_Position": {
  1891. "serializedVersion": "2",
  1892. "x": 0.0,
  1893. "y": 0.0,
  1894. "width": 0.0,
  1895. "height": 0.0
  1896. }
  1897. },
  1898. "m_Slots": [
  1899. {
  1900. "m_Id": "f606c36a98334e41817f63993ce4aec1"
  1901. }
  1902. ],
  1903. "synonyms": [],
  1904. "m_Precision": 0,
  1905. "m_PreviewExpanded": true,
  1906. "m_DismissedVersion": 0,
  1907. "m_PreviewMode": 0,
  1908. "m_CustomColors": {
  1909. "m_SerializableColors": []
  1910. },
  1911. "m_SerializedDescriptor": "SurfaceDescription.Smoothness"
  1912. }
  1913. {
  1914. "m_SGVersion": 2,
  1915. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalLitSubTarget",
  1916. "m_ObjectId": "9fe65a788e3e4697b4b0668dc230034b",
  1917. "m_WorkflowMode": 1,
  1918. "m_NormalDropOffSpace": 0,
  1919. "m_ClearCoat": false,
  1920. "m_BlendModePreserveSpecular": true
  1921. }
  1922. {
  1923. "m_SGVersion": 0,
  1924. "m_Type": "UnityEditor.ShaderGraph.SubGraphNode",
  1925. "m_ObjectId": "a1116b5a2fe748f5a1e59ceec49e5ee9",
  1926. "m_Group": {
  1927. "m_Id": ""
  1928. },
  1929. "m_Name": "AlphaSplit",
  1930. "m_DrawState": {
  1931. "m_Expanded": true,
  1932. "m_Position": {
  1933. "serializedVersion": "2",
  1934. "x": -242.49998474121095,
  1935. "y": 219.5,
  1936. "width": 161.00001525878907,
  1937. "height": 119.0
  1938. }
  1939. },
  1940. "m_Slots": [
  1941. {
  1942. "m_Id": "8dd2a0be91844990a5d1502244a1a2e0"
  1943. },
  1944. {
  1945. "m_Id": "8e51b1b1100b4e6daf2d1d1048742922"
  1946. },
  1947. {
  1948. "m_Id": "0e128848c3384addb388d4e29ccb7208"
  1949. }
  1950. ],
  1951. "synonyms": [],
  1952. "m_Precision": 0,
  1953. "m_PreviewExpanded": false,
  1954. "m_DismissedVersion": 0,
  1955. "m_PreviewMode": 0,
  1956. "m_CustomColors": {
  1957. "m_SerializableColors": []
  1958. },
  1959. "m_SerializedSubGraph": "{\n \"subGraph\": {\n \"fileID\": -5475051401550479605,\n \"guid\": \"1586fe714d6c2424284e2ccf5296d73c\",\n \"type\": 3\n }\n}",
  1960. "m_PropertyGuids": [
  1961. "49d5b662-f0ea-44e5-a4fb-659ee2671197"
  1962. ],
  1963. "m_PropertyIds": [
  1964. 71621326
  1965. ],
  1966. "m_Dropdowns": [],
  1967. "m_DropdownSelectedEntries": []
  1968. }
  1969. {
  1970. "m_SGVersion": 0,
  1971. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData",
  1972. "m_ObjectId": "a19eb71edcd24813a36b6340f03c6a1b",
  1973. "m_MaterialNeedsUpdateHash": 0,
  1974. "m_SurfaceType": 0,
  1975. "m_RenderingPass": 1,
  1976. "m_BlendMode": 0,
  1977. "m_ZTest": 4,
  1978. "m_ZWrite": false,
  1979. "m_TransparentCullMode": 2,
  1980. "m_OpaqueCullMode": 2,
  1981. "m_SortPriority": 0,
  1982. "m_AlphaTest": false,
  1983. "m_ExcludeFromTUAndAA": false,
  1984. "m_TransparentDepthPrepass": false,
  1985. "m_TransparentDepthPostpass": false,
  1986. "m_SupportLodCrossFade": false,
  1987. "m_DoubleSidedMode": 0,
  1988. "m_DOTSInstancing": false,
  1989. "m_CustomVelocity": false,
  1990. "m_Tessellation": false,
  1991. "m_TessellationMode": 0,
  1992. "m_TessellationFactorMinDistance": 20.0,
  1993. "m_TessellationFactorMaxDistance": 50.0,
  1994. "m_TessellationFactorTriangleSize": 100.0,
  1995. "m_TessellationShapeFactor": 0.75,
  1996. "m_TessellationBackFaceCullEpsilon": -0.25,
  1997. "m_TessellationMaxDisplacement": 0.009999999776482582,
  1998. "m_DebugSymbols": false,
  1999. "m_Version": 2,
  2000. "inspectorFoldoutMask": 0
  2001. }
  2002. {
  2003. "m_SGVersion": 0,
  2004. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2005. "m_ObjectId": "a6f092a9abf54554851ad702fad54d60",
  2006. "m_Id": 4,
  2007. "m_DisplayName": "R",
  2008. "m_SlotType": 1,
  2009. "m_Hidden": false,
  2010. "m_ShaderOutputName": "R",
  2011. "m_StageCapability": 2,
  2012. "m_Value": 0.0,
  2013. "m_DefaultValue": 0.0,
  2014. "m_Labels": []
  2015. }
  2016. {
  2017. "m_SGVersion": 0,
  2018. "m_Type": "UnityEditor.ShaderGraph.TilingAndOffsetNode",
  2019. "m_ObjectId": "a83d16ca17334feca55dfd28892443bd",
  2020. "m_Group": {
  2021. "m_Id": ""
  2022. },
  2023. "m_Name": "Tiling And Offset",
  2024. "m_DrawState": {
  2025. "m_Expanded": true,
  2026. "m_Position": {
  2027. "serializedVersion": "2",
  2028. "x": -1211.5,
  2029. "y": 244.0,
  2030. "width": 153.5,
  2031. "height": 142.00003051757813
  2032. }
  2033. },
  2034. "m_Slots": [
  2035. {
  2036. "m_Id": "ca7367d171274a05b3f10bb112568701"
  2037. },
  2038. {
  2039. "m_Id": "2b527252191b454387eb359442d993d9"
  2040. },
  2041. {
  2042. "m_Id": "7c4717cb7e9c4690a9c47a8679401d3d"
  2043. },
  2044. {
  2045. "m_Id": "82d0754d241443ffba26b1c57ce12367"
  2046. }
  2047. ],
  2048. "synonyms": [
  2049. "pan",
  2050. "scale"
  2051. ],
  2052. "m_Precision": 0,
  2053. "m_PreviewExpanded": false,
  2054. "m_DismissedVersion": 0,
  2055. "m_PreviewMode": 0,
  2056. "m_CustomColors": {
  2057. "m_SerializableColors": []
  2058. }
  2059. }
  2060. {
  2061. "m_SGVersion": 0,
  2062. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitSubTarget",
  2063. "m_ObjectId": "aa41aec82bb34427b178b8626d8d1023"
  2064. }
  2065. {
  2066. "m_SGVersion": 0,
  2067. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  2068. "m_ObjectId": "abaf9d608e954db7a52bd2da2492f4a6",
  2069. "m_Group": {
  2070. "m_Id": ""
  2071. },
  2072. "m_Name": "VertexDescription.Position",
  2073. "m_DrawState": {
  2074. "m_Expanded": true,
  2075. "m_Position": {
  2076. "serializedVersion": "2",
  2077. "x": 0.0,
  2078. "y": 0.0,
  2079. "width": 0.0,
  2080. "height": 0.0
  2081. }
  2082. },
  2083. "m_Slots": [
  2084. {
  2085. "m_Id": "9450872d63754144af3530df33070edb"
  2086. }
  2087. ],
  2088. "synonyms": [],
  2089. "m_Precision": 0,
  2090. "m_PreviewExpanded": true,
  2091. "m_DismissedVersion": 0,
  2092. "m_PreviewMode": 0,
  2093. "m_CustomColors": {
  2094. "m_SerializableColors": []
  2095. },
  2096. "m_SerializedDescriptor": "VertexDescription.Position"
  2097. }
  2098. {
  2099. "m_SGVersion": 0,
  2100. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData",
  2101. "m_ObjectId": "af8f736e1f6b46b0821b69cad7e1ac0b",
  2102. "m_Distortion": false,
  2103. "m_DistortionMode": 0,
  2104. "m_DistortionDepthTest": true,
  2105. "m_AddPrecomputedVelocity": false,
  2106. "m_TransparentWritesMotionVec": false,
  2107. "m_DepthOffset": false,
  2108. "m_ConservativeDepthOffset": false,
  2109. "m_TransparencyFog": true,
  2110. "m_AlphaTestShadow": false,
  2111. "m_BackThenFrontRendering": false,
  2112. "m_TransparentDepthPrepass": false,
  2113. "m_TransparentDepthPostpass": false,
  2114. "m_TransparentPerPixelSorting": false,
  2115. "m_SupportLodCrossFade": false
  2116. }
  2117. {
  2118. "m_SGVersion": 0,
  2119. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2120. "m_ObjectId": "b039456db42e459bb56f2df8ca18175f",
  2121. "m_Id": 7,
  2122. "m_DisplayName": "A",
  2123. "m_SlotType": 1,
  2124. "m_Hidden": false,
  2125. "m_ShaderOutputName": "A",
  2126. "m_StageCapability": 2,
  2127. "m_Value": 0.0,
  2128. "m_DefaultValue": 0.0,
  2129. "m_Labels": []
  2130. }
  2131. {
  2132. "m_SGVersion": 0,
  2133. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitSubTarget",
  2134. "m_ObjectId": "b1f7069a0d554a76b157277c3f77eddc"
  2135. }
  2136. {
  2137. "m_SGVersion": 0,
  2138. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData",
  2139. "m_ObjectId": "b644d6421e264682bad87e53bd85dcc4",
  2140. "m_MaterialNeedsUpdateHash": 0,
  2141. "m_SurfaceType": 0,
  2142. "m_RenderingPass": 1,
  2143. "m_BlendMode": 0,
  2144. "m_ZTest": 4,
  2145. "m_ZWrite": false,
  2146. "m_TransparentCullMode": 2,
  2147. "m_OpaqueCullMode": 2,
  2148. "m_SortPriority": 0,
  2149. "m_AlphaTest": false,
  2150. "m_ExcludeFromTUAndAA": false,
  2151. "m_TransparentDepthPrepass": false,
  2152. "m_TransparentDepthPostpass": false,
  2153. "m_SupportLodCrossFade": false,
  2154. "m_DoubleSidedMode": 0,
  2155. "m_DOTSInstancing": false,
  2156. "m_CustomVelocity": false,
  2157. "m_Tessellation": false,
  2158. "m_TessellationMode": 0,
  2159. "m_TessellationFactorMinDistance": 20.0,
  2160. "m_TessellationFactorMaxDistance": 50.0,
  2161. "m_TessellationFactorTriangleSize": 100.0,
  2162. "m_TessellationShapeFactor": 0.75,
  2163. "m_TessellationBackFaceCullEpsilon": -0.25,
  2164. "m_TessellationMaxDisplacement": 0.009999999776482582,
  2165. "m_DebugSymbols": false,
  2166. "m_Version": 2,
  2167. "inspectorFoldoutMask": 0
  2168. }
  2169. {
  2170. "m_SGVersion": 0,
  2171. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2172. "m_ObjectId": "b709897d353f49e485f1fe7a2d87e391",
  2173. "m_Id": 4192858,
  2174. "m_DisplayName": "Alpha",
  2175. "m_SlotType": 0,
  2176. "m_Hidden": false,
  2177. "m_ShaderOutputName": "_Alpha",
  2178. "m_StageCapability": 3,
  2179. "m_Value": 1.0,
  2180. "m_DefaultValue": 0.0,
  2181. "m_Labels": []
  2182. }
  2183. {
  2184. "m_SGVersion": 0,
  2185. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.LightingData",
  2186. "m_ObjectId": "b8148d836bc84ae084d925f10a75b568",
  2187. "m_NormalDropOffSpace": 0,
  2188. "m_BlendPreserveSpecular": true,
  2189. "m_ReceiveDecals": true,
  2190. "m_ReceiveSSR": true,
  2191. "m_ReceiveSSRTransparent": false,
  2192. "m_SpecularAA": false,
  2193. "m_SpecularOcclusionMode": 1,
  2194. "m_OverrideBakedGI": false
  2195. }
  2196. {
  2197. "m_SGVersion": 0,
  2198. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  2199. "m_ObjectId": "c167e8be150a4fe8acbf27c4b433d1c5",
  2200. "m_Group": {
  2201. "m_Id": ""
  2202. },
  2203. "m_Name": "SurfaceDescription.BaseColor",
  2204. "m_DrawState": {
  2205. "m_Expanded": true,
  2206. "m_Position": {
  2207. "serializedVersion": "2",
  2208. "x": 0.0,
  2209. "y": 0.0,
  2210. "width": 0.0,
  2211. "height": 0.0
  2212. }
  2213. },
  2214. "m_Slots": [
  2215. {
  2216. "m_Id": "68b3d4eab31e4e268dcb4d9c0b904d3b"
  2217. }
  2218. ],
  2219. "synonyms": [],
  2220. "m_Precision": 0,
  2221. "m_PreviewExpanded": true,
  2222. "m_DismissedVersion": 0,
  2223. "m_PreviewMode": 0,
  2224. "m_CustomColors": {
  2225. "m_SerializableColors": []
  2226. },
  2227. "m_SerializedDescriptor": "SurfaceDescription.BaseColor"
  2228. }
  2229. {
  2230. "m_SGVersion": 0,
  2231. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  2232. "m_ObjectId": "c337d738fae546ed8c3abe779cbefd90",
  2233. "m_Id": 0,
  2234. "m_DisplayName": "RGBA",
  2235. "m_SlotType": 1,
  2236. "m_Hidden": false,
  2237. "m_ShaderOutputName": "RGBA",
  2238. "m_StageCapability": 2,
  2239. "m_Value": {
  2240. "x": 0.0,
  2241. "y": 0.0,
  2242. "z": 0.0,
  2243. "w": 0.0
  2244. },
  2245. "m_DefaultValue": {
  2246. "x": 0.0,
  2247. "y": 0.0,
  2248. "z": 0.0,
  2249. "w": 0.0
  2250. },
  2251. "m_Labels": []
  2252. }
  2253. {
  2254. "m_SGVersion": 0,
  2255. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2256. "m_ObjectId": "c78d083bfb3045b2855019f6627cba2e",
  2257. "m_Id": 0,
  2258. "m_DisplayName": "Metallic",
  2259. "m_SlotType": 0,
  2260. "m_Hidden": false,
  2261. "m_ShaderOutputName": "Metallic",
  2262. "m_StageCapability": 2,
  2263. "m_Value": 0.0,
  2264. "m_DefaultValue": 0.0,
  2265. "m_Labels": []
  2266. }
  2267. {
  2268. "m_SGVersion": 0,
  2269. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2270. "m_ObjectId": "c7e249f0a6bd43199691cf01ed38890f",
  2271. "m_Id": 6,
  2272. "m_DisplayName": "B",
  2273. "m_SlotType": 1,
  2274. "m_Hidden": false,
  2275. "m_ShaderOutputName": "B",
  2276. "m_StageCapability": 2,
  2277. "m_Value": 0.0,
  2278. "m_DefaultValue": 0.0,
  2279. "m_Labels": []
  2280. }
  2281. {
  2282. "m_SGVersion": 0,
  2283. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.LightingData",
  2284. "m_ObjectId": "ca209e1c655742edaa7e84cd00db320c",
  2285. "m_NormalDropOffSpace": 0,
  2286. "m_BlendPreserveSpecular": true,
  2287. "m_ReceiveDecals": true,
  2288. "m_ReceiveSSR": true,
  2289. "m_ReceiveSSRTransparent": false,
  2290. "m_SpecularAA": false,
  2291. "m_SpecularOcclusionMode": 1,
  2292. "m_OverrideBakedGI": false
  2293. }
  2294. {
  2295. "m_SGVersion": 0,
  2296. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  2297. "m_ObjectId": "ca7367d171274a05b3f10bb112568701",
  2298. "m_Id": 0,
  2299. "m_DisplayName": "UV",
  2300. "m_SlotType": 0,
  2301. "m_Hidden": false,
  2302. "m_ShaderOutputName": "UV",
  2303. "m_StageCapability": 3,
  2304. "m_Value": {
  2305. "x": 0.0,
  2306. "y": 0.0
  2307. },
  2308. "m_DefaultValue": {
  2309. "x": 0.0,
  2310. "y": 0.0
  2311. },
  2312. "m_Labels": [],
  2313. "m_Channel": 0
  2314. }
  2315. {
  2316. "m_SGVersion": 0,
  2317. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  2318. "m_ObjectId": "cafaa8c8656444e7a0a8eeb937327b2b",
  2319. "m_Id": 71621326,
  2320. "m_DisplayName": "RGBA",
  2321. "m_SlotType": 0,
  2322. "m_Hidden": false,
  2323. "m_ShaderOutputName": "_RGBA",
  2324. "m_StageCapability": 3,
  2325. "m_Value": {
  2326. "x": 0.5,
  2327. "y": 0.5,
  2328. "z": 0.5,
  2329. "w": 1.0
  2330. },
  2331. "m_DefaultValue": {
  2332. "x": 0.0,
  2333. "y": 0.0,
  2334. "z": 0.0,
  2335. "w": 0.0
  2336. },
  2337. "m_Labels": []
  2338. }
  2339. {
  2340. "m_SGVersion": 0,
  2341. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2342. "m_ObjectId": "cc232fe7b1654d249fdda200fd8dd6ec",
  2343. "m_Id": 7,
  2344. "m_DisplayName": "A",
  2345. "m_SlotType": 1,
  2346. "m_Hidden": false,
  2347. "m_ShaderOutputName": "A",
  2348. "m_StageCapability": 2,
  2349. "m_Value": 0.0,
  2350. "m_DefaultValue": 0.0,
  2351. "m_Labels": []
  2352. }
  2353. {
  2354. "m_SGVersion": 0,
  2355. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2356. "m_ObjectId": "cc4f4c3d25f34dadbac06bc1ef64925b",
  2357. "m_Id": 4,
  2358. "m_DisplayName": "R",
  2359. "m_SlotType": 1,
  2360. "m_Hidden": false,
  2361. "m_ShaderOutputName": "R",
  2362. "m_StageCapability": 2,
  2363. "m_Value": 0.0,
  2364. "m_DefaultValue": 0.0,
  2365. "m_Labels": []
  2366. }
  2367. {
  2368. "m_SGVersion": 0,
  2369. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  2370. "m_ObjectId": "cdb6083a8ef44f00becf6f2485cc36b0",
  2371. "m_Id": 1,
  2372. "m_DisplayName": "Texture",
  2373. "m_SlotType": 0,
  2374. "m_Hidden": false,
  2375. "m_ShaderOutputName": "Texture",
  2376. "m_StageCapability": 3,
  2377. "m_BareResource": false,
  2378. "m_Texture": {
  2379. "m_SerializedTexture": "{\"texture\":{\"fileID\":2800000,\"guid\":\"b356831ef4f363d48989d117c6ea79e3\",\"type\":3}}",
  2380. "m_Guid": ""
  2381. },
  2382. "m_DefaultType": 0
  2383. }
  2384. {
  2385. "m_SGVersion": 0,
  2386. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitData",
  2387. "m_ObjectId": "d078d8dfc8634d41ae75daa9cf8a6826",
  2388. "m_RayTracing": false,
  2389. "m_MaterialType": 0,
  2390. "m_MaterialTypeMask": 2,
  2391. "m_RefractionModel": 0,
  2392. "m_SSSTransmission": true,
  2393. "m_EnergyConservingSpecular": true,
  2394. "m_ClearCoat": false
  2395. }
  2396. {
  2397. "m_SGVersion": 0,
  2398. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2399. "m_ObjectId": "d1f5f008b48b4e91b7f2eae9ce88d4c7",
  2400. "m_Id": 0,
  2401. "m_DisplayName": "Ambient Occlusion",
  2402. "m_SlotType": 0,
  2403. "m_Hidden": false,
  2404. "m_ShaderOutputName": "Occlusion",
  2405. "m_StageCapability": 2,
  2406. "m_Value": 1.0,
  2407. "m_DefaultValue": 1.0,
  2408. "m_Labels": []
  2409. }
  2410. {
  2411. "m_SGVersion": 0,
  2412. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  2413. "m_ObjectId": "d34a0772a19a4430a8cf6657a02d3189",
  2414. "m_Id": 2,
  2415. "m_DisplayName": "UV",
  2416. "m_SlotType": 0,
  2417. "m_Hidden": false,
  2418. "m_ShaderOutputName": "UV",
  2419. "m_StageCapability": 3,
  2420. "m_Value": {
  2421. "x": 0.0,
  2422. "y": 0.0
  2423. },
  2424. "m_DefaultValue": {
  2425. "x": 0.0,
  2426. "y": 0.0
  2427. },
  2428. "m_Labels": [],
  2429. "m_Channel": 0
  2430. }
  2431. {
  2432. "m_SGVersion": 0,
  2433. "m_Type": "UnityEditor.ShaderGraph.SubGraphNode",
  2434. "m_ObjectId": "d7f3962174114caaa46a088e55bd148a",
  2435. "m_Group": {
  2436. "m_Id": ""
  2437. },
  2438. "m_Name": "AlphaSplit",
  2439. "m_DrawState": {
  2440. "m_Expanded": true,
  2441. "m_Position": {
  2442. "serializedVersion": "2",
  2443. "x": -242.49998474121095,
  2444. "y": 338.5,
  2445. "width": 161.00001525878907,
  2446. "height": 119.0
  2447. }
  2448. },
  2449. "m_Slots": [
  2450. {
  2451. "m_Id": "cafaa8c8656444e7a0a8eeb937327b2b"
  2452. },
  2453. {
  2454. "m_Id": "8dbe2e845a494ed7b5c6f54eb5d4c7c1"
  2455. },
  2456. {
  2457. "m_Id": "2a240f304ff8423aa1843a2ab5377d88"
  2458. }
  2459. ],
  2460. "synonyms": [],
  2461. "m_Precision": 0,
  2462. "m_PreviewExpanded": false,
  2463. "m_DismissedVersion": 0,
  2464. "m_PreviewMode": 0,
  2465. "m_CustomColors": {
  2466. "m_SerializableColors": []
  2467. },
  2468. "m_SerializedSubGraph": "{\n \"subGraph\": {\n \"fileID\": -5475051401550479605,\n \"guid\": \"1586fe714d6c2424284e2ccf5296d73c\",\n \"type\": 3\n }\n}",
  2469. "m_PropertyGuids": [
  2470. "49d5b662-f0ea-44e5-a4fb-659ee2671197"
  2471. ],
  2472. "m_PropertyIds": [
  2473. 71621326
  2474. ],
  2475. "m_Dropdowns": [],
  2476. "m_DropdownSelectedEntries": []
  2477. }
  2478. {
  2479. "m_SGVersion": 0,
  2480. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  2481. "m_ObjectId": "da3b013a98fe4fc49a2ff288f76271aa",
  2482. "m_Title": "",
  2483. "m_Content": "Instead of exposing these as material parameters, you will probably want to make them shader globals so they can be controled in one place for all of the materials.\n",
  2484. "m_TextSize": 0,
  2485. "m_Theme": 0,
  2486. "m_Position": {
  2487. "serializedVersion": "2",
  2488. "x": -747.0,
  2489. "y": 549.0,
  2490. "width": 200.0,
  2491. "height": 100.0
  2492. },
  2493. "m_Group": {
  2494. "m_Id": ""
  2495. }
  2496. }
  2497. {
  2498. "m_SGVersion": 1,
  2499. "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty",
  2500. "m_ObjectId": "dfa8a4423099447cbc2663ac4a237a73",
  2501. "m_Guid": {
  2502. "m_GuidSerialized": "c5eaeb2b-7ad5-463e-bc9e-87145fec75f2"
  2503. },
  2504. "m_Name": "RainWetness",
  2505. "m_DefaultRefNameVersion": 1,
  2506. "m_RefNameGeneratedByDisplayName": "RainWetness",
  2507. "m_DefaultReferenceName": "_RainWetness",
  2508. "m_OverrideReferenceName": "",
  2509. "m_GeneratePropertyBlock": true,
  2510. "m_UseCustomSlotLabel": false,
  2511. "m_CustomSlotLabel": "",
  2512. "m_DismissedVersion": 0,
  2513. "m_Precision": 0,
  2514. "overrideHLSLDeclaration": false,
  2515. "hlslDeclarationOverride": 0,
  2516. "m_Hidden": false,
  2517. "m_Value": 0.5,
  2518. "m_FloatType": 1,
  2519. "m_RangeValues": {
  2520. "x": 0.0,
  2521. "y": 1.0
  2522. }
  2523. }
  2524. {
  2525. "m_SGVersion": 0,
  2526. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  2527. "m_ObjectId": "e46b0555833f4916a8306060b2d77a08",
  2528. "m_Id": 2,
  2529. "m_DisplayName": "UV",
  2530. "m_SlotType": 0,
  2531. "m_Hidden": false,
  2532. "m_ShaderOutputName": "UV",
  2533. "m_StageCapability": 3,
  2534. "m_Value": {
  2535. "x": 0.0,
  2536. "y": 0.0
  2537. },
  2538. "m_DefaultValue": {
  2539. "x": 0.0,
  2540. "y": 0.0
  2541. },
  2542. "m_Labels": [],
  2543. "m_Channel": 0
  2544. }
  2545. {
  2546. "m_SGVersion": 1,
  2547. "m_Type": "UnityEditor.ShaderGraph.ShaderKeyword",
  2548. "m_ObjectId": "e4c12436f7094ecdb608f9999db430c9",
  2549. "m_Guid": {
  2550. "m_GuidSerialized": "e07c2a15-d224-408a-9a4b-2256cc7d8d2e"
  2551. },
  2552. "m_Name": "LOD0",
  2553. "m_DefaultRefNameVersion": 1,
  2554. "m_RefNameGeneratedByDisplayName": "LOD0",
  2555. "m_DefaultReferenceName": "_LOD0",
  2556. "m_OverrideReferenceName": "LOD0",
  2557. "m_GeneratePropertyBlock": true,
  2558. "m_UseCustomSlotLabel": false,
  2559. "m_CustomSlotLabel": "",
  2560. "m_DismissedVersion": 0,
  2561. "m_KeywordType": 0,
  2562. "m_KeywordDefinition": 0,
  2563. "m_KeywordScope": 0,
  2564. "m_KeywordStages": 63,
  2565. "m_Entries": [],
  2566. "m_Value": 1,
  2567. "m_IsEditable": true
  2568. }
  2569. {
  2570. "m_SGVersion": 0,
  2571. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  2572. "m_ObjectId": "ea5f8bad1548400c81bc051368a573dc",
  2573. "m_Id": 1,
  2574. "m_DisplayName": "Texture",
  2575. "m_SlotType": 0,
  2576. "m_Hidden": false,
  2577. "m_ShaderOutputName": "Texture",
  2578. "m_StageCapability": 3,
  2579. "m_BareResource": false,
  2580. "m_Texture": {
  2581. "m_SerializedTexture": "{\"texture\":{\"fileID\":2800000,\"guid\":\"8c31c20ac2129c3428084be388816642\",\"type\":3}}",
  2582. "m_Guid": ""
  2583. },
  2584. "m_DefaultType": 0
  2585. }
  2586. {
  2587. "m_SGVersion": 0,
  2588. "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
  2589. "m_ObjectId": "eabd3b46d6a2497c9f174dbf90a85a2a",
  2590. "m_Id": 0,
  2591. "m_DisplayName": "Normal (Tangent Space)",
  2592. "m_SlotType": 0,
  2593. "m_Hidden": false,
  2594. "m_ShaderOutputName": "NormalTS",
  2595. "m_StageCapability": 2,
  2596. "m_Value": {
  2597. "x": 0.0,
  2598. "y": 0.0,
  2599. "z": 0.0
  2600. },
  2601. "m_DefaultValue": {
  2602. "x": 0.0,
  2603. "y": 0.0,
  2604. "z": 0.0
  2605. },
  2606. "m_Labels": [],
  2607. "m_Space": 3
  2608. }
  2609. {
  2610. "m_SGVersion": 0,
  2611. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  2612. "m_ObjectId": "eb4a93670bad4e2ca268a90167246b84",
  2613. "m_Group": {
  2614. "m_Id": ""
  2615. },
  2616. "m_Name": "VertexDescription.Tangent",
  2617. "m_DrawState": {
  2618. "m_Expanded": true,
  2619. "m_Position": {
  2620. "serializedVersion": "2",
  2621. "x": 0.0,
  2622. "y": 0.0,
  2623. "width": 0.0,
  2624. "height": 0.0
  2625. }
  2626. },
  2627. "m_Slots": [
  2628. {
  2629. "m_Id": "74b0fa943d2443c3966fc18c21d89358"
  2630. }
  2631. ],
  2632. "synonyms": [],
  2633. "m_Precision": 0,
  2634. "m_PreviewExpanded": true,
  2635. "m_DismissedVersion": 0,
  2636. "m_PreviewMode": 0,
  2637. "m_CustomColors": {
  2638. "m_SerializableColors": []
  2639. },
  2640. "m_SerializedDescriptor": "VertexDescription.Tangent"
  2641. }
  2642. {
  2643. "m_SGVersion": 0,
  2644. "m_Type": "UnityEditor.ShaderGraph.CategoryData",
  2645. "m_ObjectId": "ebf2a68a6f1b43f09ed960c6a7ba6be3",
  2646. "m_Name": "",
  2647. "m_ChildObjectList": [
  2648. {
  2649. "m_Id": "e4c12436f7094ecdb608f9999db430c9"
  2650. },
  2651. {
  2652. "m_Id": "608c0ed89ba943f898f6678483aadf6a"
  2653. },
  2654. {
  2655. "m_Id": "dfa8a4423099447cbc2663ac4a237a73"
  2656. }
  2657. ]
  2658. }
  2659. {
  2660. "m_SGVersion": 0,
  2661. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2662. "m_ObjectId": "ec9ad82da779482589231ed20cc48deb",
  2663. "m_Id": 5,
  2664. "m_DisplayName": "G",
  2665. "m_SlotType": 1,
  2666. "m_Hidden": false,
  2667. "m_ShaderOutputName": "G",
  2668. "m_StageCapability": 2,
  2669. "m_Value": 0.0,
  2670. "m_DefaultValue": 0.0,
  2671. "m_Labels": []
  2672. }
  2673. {
  2674. "m_SGVersion": 0,
  2675. "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
  2676. "m_ObjectId": "f0bc680d31da40e597f35d4b76406325",
  2677. "m_Id": 0,
  2678. "m_DisplayName": "Bent Normal",
  2679. "m_SlotType": 0,
  2680. "m_Hidden": false,
  2681. "m_ShaderOutputName": "BentNormal",
  2682. "m_StageCapability": 2,
  2683. "m_Value": {
  2684. "x": 0.0,
  2685. "y": 0.0,
  2686. "z": 0.0
  2687. },
  2688. "m_DefaultValue": {
  2689. "x": 0.0,
  2690. "y": 0.0,
  2691. "z": 0.0
  2692. },
  2693. "m_Labels": [],
  2694. "m_Space": 3
  2695. }
  2696. {
  2697. "m_SGVersion": 0,
  2698. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2699. "m_ObjectId": "f606c36a98334e41817f63993ce4aec1",
  2700. "m_Id": 0,
  2701. "m_DisplayName": "Smoothness",
  2702. "m_SlotType": 0,
  2703. "m_Hidden": false,
  2704. "m_ShaderOutputName": "Smoothness",
  2705. "m_StageCapability": 2,
  2706. "m_Value": 0.5,
  2707. "m_DefaultValue": 0.5,
  2708. "m_Labels": []
  2709. }
  2710. {
  2711. "m_SGVersion": 0,
  2712. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData",
  2713. "m_ObjectId": "f84fb75f983f48a391eeae6705d9fdc1",
  2714. "m_Distortion": false,
  2715. "m_DistortionMode": 0,
  2716. "m_DistortionDepthTest": true,
  2717. "m_AddPrecomputedVelocity": false,
  2718. "m_TransparentWritesMotionVec": false,
  2719. "m_DepthOffset": false,
  2720. "m_ConservativeDepthOffset": false,
  2721. "m_TransparencyFog": true,
  2722. "m_AlphaTestShadow": false,
  2723. "m_BackThenFrontRendering": false,
  2724. "m_TransparentDepthPrepass": false,
  2725. "m_TransparentDepthPostpass": false,
  2726. "m_TransparentPerPixelSorting": false,
  2727. "m_SupportLodCrossFade": false
  2728. }
  2729. {
  2730. "m_SGVersion": 0,
  2731. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  2732. "m_ObjectId": "f976a82949ed41529d95c4a5addd1737",
  2733. "m_Group": {
  2734. "m_Id": ""
  2735. },
  2736. "m_Name": "VertexDescription.Normal",
  2737. "m_DrawState": {
  2738. "m_Expanded": true,
  2739. "m_Position": {
  2740. "serializedVersion": "2",
  2741. "x": 0.0,
  2742. "y": 0.0,
  2743. "width": 0.0,
  2744. "height": 0.0
  2745. }
  2746. },
  2747. "m_Slots": [
  2748. {
  2749. "m_Id": "018f662dcfcc4a43a701ff9ddda3501c"
  2750. }
  2751. ],
  2752. "synonyms": [],
  2753. "m_Precision": 0,
  2754. "m_PreviewExpanded": true,
  2755. "m_DismissedVersion": 0,
  2756. "m_PreviewMode": 0,
  2757. "m_CustomColors": {
  2758. "m_SerializableColors": []
  2759. },
  2760. "m_SerializedDescriptor": "VertexDescription.Normal"
  2761. }
  2762. {
  2763. "m_SGVersion": 0,
  2764. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.LightingData",
  2765. "m_ObjectId": "ff1fa3c9affb4a3fa42c697e0740ab1e",
  2766. "m_NormalDropOffSpace": 0,
  2767. "m_BlendPreserveSpecular": true,
  2768. "m_ReceiveDecals": true,
  2769. "m_ReceiveSSR": true,
  2770. "m_ReceiveSSRTransparent": false,
  2771. "m_SpecularAA": false,
  2772. "m_SpecularOcclusionMode": 1,
  2773. "m_OverrideBakedGI": false
  2774. }