No Description
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.

CustomLightingCelShader.shadergraph 50KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097
  1. {
  2. "m_SGVersion": 3,
  3. "m_Type": "UnityEditor.ShaderGraph.GraphData",
  4. "m_ObjectId": "f8a838e2d5f94bad9d7801ab65cb4701",
  5. "m_Properties": [
  6. {
  7. "m_Id": "604c13275e924559b913bc2a9a7032d1"
  8. },
  9. {
  10. "m_Id": "2d25adcc47d04282b333164ebf2b337b"
  11. },
  12. {
  13. "m_Id": "dd90965a7b864367969910310dbaed63"
  14. },
  15. {
  16. "m_Id": "5b458ca2cfbc4031bb712249f6f416ee"
  17. }
  18. ],
  19. "m_Keywords": [
  20. {
  21. "m_Id": "9577dddbfdb34405900c94efbf2e6212"
  22. },
  23. {
  24. "m_Id": "018e4355b6d64cfb92a83a3b47817fcc"
  25. },
  26. {
  27. "m_Id": "381abf142c51463db918bfc7038ca165"
  28. },
  29. {
  30. "m_Id": "ea3bd82eb8b444b88e156c727d6fce00"
  31. }
  32. ],
  33. "m_Dropdowns": [],
  34. "m_CategoryData": [
  35. {
  36. "m_Id": "5a39cf2c90d04d1295822f95459dd7ac"
  37. },
  38. {
  39. "m_Id": "6ef0f9e120324771854dd65812e3aadc"
  40. },
  41. {
  42. "m_Id": "0e1197184b6043a0888b7090abfc640e"
  43. }
  44. ],
  45. "m_Nodes": [
  46. {
  47. "m_Id": "848fbfdc10a2467db8a132b0b843e486"
  48. },
  49. {
  50. "m_Id": "66c21a3032fa4c96b83a77f4fc0619e0"
  51. },
  52. {
  53. "m_Id": "7e892bd29e1949eca61dfd235f7edb46"
  54. },
  55. {
  56. "m_Id": "bbd782c007424d44bb94e854a4eb4313"
  57. },
  58. {
  59. "m_Id": "00a2b5dbc5f64208ade31d59cccc039d"
  60. },
  61. {
  62. "m_Id": "e3481858b87645768071fb9dfb5a8f33"
  63. },
  64. {
  65. "m_Id": "651b3c0bd9c148dbbbb05a43d518402a"
  66. },
  67. {
  68. "m_Id": "ec66b73c2d9348ff8c34eb9ec12682bf"
  69. },
  70. {
  71. "m_Id": "25576a7f4c544d918c1379ca2a3dae20"
  72. },
  73. {
  74. "m_Id": "24b01b62f36046c395b56d1547227ddb"
  75. },
  76. {
  77. "m_Id": "81fc718d332346b7ab8877f2f966c3b0"
  78. },
  79. {
  80. "m_Id": "8ca2dbda46f74bb5844a36f6886fb8f5"
  81. },
  82. {
  83. "m_Id": "f6438dcaa2314cf09a9bd69a3851d289"
  84. },
  85. {
  86. "m_Id": "d26ff65cd7a84f3f9156c3c4d95f6cdf"
  87. }
  88. ],
  89. "m_GroupDatas": [],
  90. "m_StickyNoteDatas": [],
  91. "m_Edges": [
  92. {
  93. "m_OutputSlot": {
  94. "m_Node": {
  95. "m_Id": "00a2b5dbc5f64208ade31d59cccc039d"
  96. },
  97. "m_SlotId": 1
  98. },
  99. "m_InputSlot": {
  100. "m_Node": {
  101. "m_Id": "bbd782c007424d44bb94e854a4eb4313"
  102. },
  103. "m_SlotId": 0
  104. }
  105. },
  106. {
  107. "m_OutputSlot": {
  108. "m_Node": {
  109. "m_Id": "24b01b62f36046c395b56d1547227ddb"
  110. },
  111. "m_SlotId": 0
  112. },
  113. "m_InputSlot": {
  114. "m_Node": {
  115. "m_Id": "00a2b5dbc5f64208ade31d59cccc039d"
  116. },
  117. "m_SlotId": -645578642
  118. }
  119. },
  120. {
  121. "m_OutputSlot": {
  122. "m_Node": {
  123. "m_Id": "651b3c0bd9c148dbbbb05a43d518402a"
  124. },
  125. "m_SlotId": 0
  126. },
  127. "m_InputSlot": {
  128. "m_Node": {
  129. "m_Id": "24b01b62f36046c395b56d1547227ddb"
  130. },
  131. "m_SlotId": 1
  132. }
  133. },
  134. {
  135. "m_OutputSlot": {
  136. "m_Node": {
  137. "m_Id": "81fc718d332346b7ab8877f2f966c3b0"
  138. },
  139. "m_SlotId": 5
  140. },
  141. "m_InputSlot": {
  142. "m_Node": {
  143. "m_Id": "00a2b5dbc5f64208ade31d59cccc039d"
  144. },
  145. "m_SlotId": -844273229
  146. }
  147. },
  148. {
  149. "m_OutputSlot": {
  150. "m_Node": {
  151. "m_Id": "81fc718d332346b7ab8877f2f966c3b0"
  152. },
  153. "m_SlotId": 7
  154. },
  155. "m_InputSlot": {
  156. "m_Node": {
  157. "m_Id": "00a2b5dbc5f64208ade31d59cccc039d"
  158. },
  159. "m_SlotId": -428999002
  160. }
  161. },
  162. {
  163. "m_OutputSlot": {
  164. "m_Node": {
  165. "m_Id": "8ca2dbda46f74bb5844a36f6886fb8f5"
  166. },
  167. "m_SlotId": 3
  168. },
  169. "m_InputSlot": {
  170. "m_Node": {
  171. "m_Id": "24b01b62f36046c395b56d1547227ddb"
  172. },
  173. "m_SlotId": 2
  174. }
  175. },
  176. {
  177. "m_OutputSlot": {
  178. "m_Node": {
  179. "m_Id": "8ca2dbda46f74bb5844a36f6886fb8f5"
  180. },
  181. "m_SlotId": 3
  182. },
  183. "m_InputSlot": {
  184. "m_Node": {
  185. "m_Id": "25576a7f4c544d918c1379ca2a3dae20"
  186. },
  187. "m_SlotId": 2
  188. }
  189. },
  190. {
  191. "m_OutputSlot": {
  192. "m_Node": {
  193. "m_Id": "8ca2dbda46f74bb5844a36f6886fb8f5"
  194. },
  195. "m_SlotId": 3
  196. },
  197. "m_InputSlot": {
  198. "m_Node": {
  199. "m_Id": "81fc718d332346b7ab8877f2f966c3b0"
  200. },
  201. "m_SlotId": 2
  202. }
  203. },
  204. {
  205. "m_OutputSlot": {
  206. "m_Node": {
  207. "m_Id": "d26ff65cd7a84f3f9156c3c4d95f6cdf"
  208. },
  209. "m_SlotId": 0
  210. },
  211. "m_InputSlot": {
  212. "m_Node": {
  213. "m_Id": "00a2b5dbc5f64208ade31d59cccc039d"
  214. },
  215. "m_SlotId": -1164134412
  216. }
  217. },
  218. {
  219. "m_OutputSlot": {
  220. "m_Node": {
  221. "m_Id": "e3481858b87645768071fb9dfb5a8f33"
  222. },
  223. "m_SlotId": 0
  224. },
  225. "m_InputSlot": {
  226. "m_Node": {
  227. "m_Id": "25576a7f4c544d918c1379ca2a3dae20"
  228. },
  229. "m_SlotId": 1
  230. }
  231. },
  232. {
  233. "m_OutputSlot": {
  234. "m_Node": {
  235. "m_Id": "ec66b73c2d9348ff8c34eb9ec12682bf"
  236. },
  237. "m_SlotId": 0
  238. },
  239. "m_InputSlot": {
  240. "m_Node": {
  241. "m_Id": "81fc718d332346b7ab8877f2f966c3b0"
  242. },
  243. "m_SlotId": 1
  244. }
  245. },
  246. {
  247. "m_OutputSlot": {
  248. "m_Node": {
  249. "m_Id": "f6438dcaa2314cf09a9bd69a3851d289"
  250. },
  251. "m_SlotId": 0
  252. },
  253. "m_InputSlot": {
  254. "m_Node": {
  255. "m_Id": "8ca2dbda46f74bb5844a36f6886fb8f5"
  256. },
  257. "m_SlotId": 1
  258. }
  259. }
  260. ],
  261. "m_VertexContext": {
  262. "m_Position": {
  263. "x": 0.0,
  264. "y": 0.0
  265. },
  266. "m_Blocks": [
  267. {
  268. "m_Id": "848fbfdc10a2467db8a132b0b843e486"
  269. },
  270. {
  271. "m_Id": "66c21a3032fa4c96b83a77f4fc0619e0"
  272. },
  273. {
  274. "m_Id": "7e892bd29e1949eca61dfd235f7edb46"
  275. }
  276. ]
  277. },
  278. "m_FragmentContext": {
  279. "m_Position": {
  280. "x": 0.0,
  281. "y": 200.0
  282. },
  283. "m_Blocks": [
  284. {
  285. "m_Id": "bbd782c007424d44bb94e854a4eb4313"
  286. }
  287. ]
  288. },
  289. "m_PreviewData": {
  290. "serializedMesh": {
  291. "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
  292. "m_Guid": ""
  293. },
  294. "preventRotation": false
  295. },
  296. "m_Path": "Shader Graphs",
  297. "m_GraphPrecision": 1,
  298. "m_PreviewMode": 2,
  299. "m_OutputNode": {
  300. "m_Id": ""
  301. },
  302. "m_SubDatas": [],
  303. "m_ActiveTargets": [
  304. {
  305. "m_Id": "e6d04eef8d974aedb2c10eba994765a1"
  306. }
  307. ]
  308. }
  309. {
  310. "m_SGVersion": 0,
  311. "m_Type": "UnityEditor.ShaderGraph.SubGraphNode",
  312. "m_ObjectId": "00a2b5dbc5f64208ade31d59cccc039d",
  313. "m_Group": {
  314. "m_Id": ""
  315. },
  316. "m_Name": "CustomLighting",
  317. "m_DrawState": {
  318. "m_Expanded": true,
  319. "m_Position": {
  320. "serializedVersion": "2",
  321. "x": -384.0,
  322. "y": 200.00001525878907,
  323. "width": 280.0,
  324. "height": 263.0
  325. }
  326. },
  327. "m_Slots": [
  328. {
  329. "m_Id": "a67813172b394dfea740cddccfb12b8d"
  330. },
  331. {
  332. "m_Id": "23316cf4848c437f88a3ef5e3dc0dd44"
  333. },
  334. {
  335. "m_Id": "ce3e9e7bd84e42de86e7a03de05b7da1"
  336. },
  337. {
  338. "m_Id": "651bad36e71442cd8dbcab94fa85867f"
  339. },
  340. {
  341. "m_Id": "97939827c07b40d9a135a7f032a6d04f"
  342. },
  343. {
  344. "m_Id": "3a46b58061994e3698be73dc71bd2cf9"
  345. },
  346. {
  347. "m_Id": "5b636255d1e847ec81c293e1408e6e3b"
  348. },
  349. {
  350. "m_Id": "4ec3599ec16e4490b89fa82306bfd782"
  351. },
  352. {
  353. "m_Id": "84ddf75baa0f4a55908b00b80844c2e8"
  354. }
  355. ],
  356. "synonyms": [],
  357. "m_Precision": 0,
  358. "m_PreviewExpanded": false,
  359. "m_DismissedVersion": 0,
  360. "m_PreviewMode": 0,
  361. "m_CustomColors": {
  362. "m_SerializableColors": []
  363. },
  364. "m_SerializedSubGraph": "{\n \"subGraph\": {\n \"fileID\": -5475051401550479605,\n \"guid\": \"62d8afb01d75f264d98d626cf51b203e\",\n \"type\": 3\n }\n}",
  365. "m_PropertyGuids": [
  366. "a047bf0f-4632-4c68-acfc-3d7201139cae",
  367. "0af28ba3-2cf1-4ae2-bb44-046a9051bbeb",
  368. "4edea0f0-cee6-437d-96b4-fca1ee9ada75",
  369. "355551af-a32d-40f2-b35d-cd11592688ff",
  370. "3428862c-a6e6-4095-8bc8-85f1e7165563",
  371. "d71376d3-06f1-4630-9547-1cc1ee482391",
  372. "00e3c58d-f619-4f86-9c60-35bcf67e1688",
  373. "1f2957d3-6c04-4724-a609-56fbc25bf66e",
  374. "f39bf08c-3503-492b-a3c4-643640d98dc8",
  375. "c6f9eb55-a594-4dae-9cf9-660ea900ad3f"
  376. ],
  377. "m_PropertyIds": [
  378. 814618256,
  379. -1045450119,
  380. -645578642,
  381. -1679652504,
  382. -428999002,
  383. -1055096999,
  384. 2068196862,
  385. -844273229,
  386. 1146738796,
  387. -1164134412
  388. ],
  389. "m_Dropdowns": [
  390. "_Lighting_Model"
  391. ],
  392. "m_DropdownSelectedEntries": [
  393. "Cel Shading"
  394. ]
  395. }
  396. {
  397. "m_SGVersion": 1,
  398. "m_Type": "UnityEditor.ShaderGraph.ShaderKeyword",
  399. "m_ObjectId": "018e4355b6d64cfb92a83a3b47817fcc",
  400. "m_Guid": {
  401. "m_GuidSerialized": "77da4058-884e-48fb-ba1f-cf7a27495962"
  402. },
  403. "m_Name": "Soft Shadows",
  404. "m_DefaultRefNameVersion": 1,
  405. "m_RefNameGeneratedByDisplayName": "Soft Shadows",
  406. "m_DefaultReferenceName": "_SOFT_SHADOWS",
  407. "m_OverrideReferenceName": "_SHADOWS_SOFT",
  408. "m_GeneratePropertyBlock": false,
  409. "m_UseCustomSlotLabel": false,
  410. "m_CustomSlotLabel": "",
  411. "m_DismissedVersion": 0,
  412. "m_KeywordType": 0,
  413. "m_KeywordDefinition": 1,
  414. "m_KeywordScope": 1,
  415. "m_KeywordStages": 2,
  416. "m_Entries": [],
  417. "m_Value": 1,
  418. "m_IsEditable": true
  419. }
  420. {
  421. "m_SGVersion": 0,
  422. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  423. "m_ObjectId": "05e29891489e4c7fb56889fe7858497d",
  424. "m_Id": 1,
  425. "m_DisplayName": "Texture",
  426. "m_SlotType": 0,
  427. "m_Hidden": false,
  428. "m_ShaderOutputName": "Texture",
  429. "m_StageCapability": 3,
  430. "m_BareResource": false,
  431. "m_Texture": {
  432. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  433. "m_Guid": ""
  434. },
  435. "m_DefaultType": 3
  436. }
  437. {
  438. "m_SGVersion": 0,
  439. "m_Type": "UnityEditor.ShaderGraph.CategoryData",
  440. "m_ObjectId": "0e1197184b6043a0888b7090abfc640e",
  441. "m_Name": "MaterialProoerties",
  442. "m_ChildObjectList": [
  443. {
  444. "m_Id": "604c13275e924559b913bc2a9a7032d1"
  445. },
  446. {
  447. "m_Id": "2d25adcc47d04282b333164ebf2b337b"
  448. },
  449. {
  450. "m_Id": "dd90965a7b864367969910310dbaed63"
  451. },
  452. {
  453. "m_Id": "5b458ca2cfbc4031bb712249f6f416ee"
  454. }
  455. ]
  456. }
  457. {
  458. "m_SGVersion": 0,
  459. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  460. "m_ObjectId": "1b4b52343d50416e97aa2628d3d5a6b4",
  461. "m_Id": 3,
  462. "m_DisplayName": "Sampler",
  463. "m_SlotType": 0,
  464. "m_Hidden": false,
  465. "m_ShaderOutputName": "Sampler",
  466. "m_StageCapability": 3,
  467. "m_BareResource": false
  468. }
  469. {
  470. "m_SGVersion": 0,
  471. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  472. "m_ObjectId": "1ded3091cb5c4263beef690c42cf76b6",
  473. "m_Id": 3,
  474. "m_DisplayName": "Sampler",
  475. "m_SlotType": 0,
  476. "m_Hidden": false,
  477. "m_ShaderOutputName": "Sampler",
  478. "m_StageCapability": 3,
  479. "m_BareResource": false
  480. }
  481. {
  482. "m_SGVersion": 0,
  483. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  484. "m_ObjectId": "23316cf4848c437f88a3ef5e3dc0dd44",
  485. "m_Id": -1164134412,
  486. "m_DisplayName": "BaseColor",
  487. "m_SlotType": 0,
  488. "m_Hidden": false,
  489. "m_ShaderOutputName": "_BaseColor",
  490. "m_StageCapability": 3,
  491. "m_Value": {
  492. "x": 0.5,
  493. "y": 0.5,
  494. "z": 0.5
  495. },
  496. "m_DefaultValue": {
  497. "x": 0.0,
  498. "y": 0.0,
  499. "z": 0.0
  500. },
  501. "m_Labels": []
  502. }
  503. {
  504. "m_SGVersion": 0,
  505. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  506. "m_ObjectId": "24b01b62f36046c395b56d1547227ddb",
  507. "m_Group": {
  508. "m_Id": ""
  509. },
  510. "m_Name": "Sample Texture 2D",
  511. "m_DrawState": {
  512. "m_Expanded": false,
  513. "m_Position": {
  514. "serializedVersion": "2",
  515. "x": -762.0,
  516. "y": 244.99998474121095,
  517. "width": 179.00006103515626,
  518. "height": 154.99998474121095
  519. }
  520. },
  521. "m_Slots": [
  522. {
  523. "m_Id": "623a99f2c9cf42c0b1f900d7a2282dba"
  524. },
  525. {
  526. "m_Id": "2d9b04a028574cd19def8a3394c27383"
  527. },
  528. {
  529. "m_Id": "aa8b7e5a8326456eb03b95f5318b7887"
  530. },
  531. {
  532. "m_Id": "281d1cbc1c61443795f666567f0f28a4"
  533. },
  534. {
  535. "m_Id": "ea78b12e22414716adfaf50ee148d7b4"
  536. },
  537. {
  538. "m_Id": "05e29891489e4c7fb56889fe7858497d"
  539. },
  540. {
  541. "m_Id": "f858a2b503d34a32bb8954e357f61c0c"
  542. },
  543. {
  544. "m_Id": "1ded3091cb5c4263beef690c42cf76b6"
  545. }
  546. ],
  547. "synonyms": [
  548. "tex2d"
  549. ],
  550. "m_Precision": 0,
  551. "m_PreviewExpanded": false,
  552. "m_DismissedVersion": 0,
  553. "m_PreviewMode": 0,
  554. "m_CustomColors": {
  555. "m_SerializableColors": []
  556. },
  557. "m_TextureType": 1,
  558. "m_NormalMapSpace": 0,
  559. "m_EnableGlobalMipBias": true,
  560. "m_MipSamplingMode": 0
  561. }
  562. {
  563. "m_SGVersion": 0,
  564. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  565. "m_ObjectId": "25576a7f4c544d918c1379ca2a3dae20",
  566. "m_Group": {
  567. "m_Id": ""
  568. },
  569. "m_Name": "Sample Texture 2D",
  570. "m_DrawState": {
  571. "m_Expanded": false,
  572. "m_Position": {
  573. "serializedVersion": "2",
  574. "x": -761.9999389648438,
  575. "y": 66.0,
  576. "width": 183.0,
  577. "height": 250.99996948242188
  578. }
  579. },
  580. "m_Slots": [
  581. {
  582. "m_Id": "aff13ce83a4b4f768718934501c12924"
  583. },
  584. {
  585. "m_Id": "50c28518321b403aa8bfed55c038b7be"
  586. },
  587. {
  588. "m_Id": "693a1ffdb86543de9a00a0bd93966e38"
  589. },
  590. {
  591. "m_Id": "3da096a42f6f4609aca57ecbeb2c2d6c"
  592. },
  593. {
  594. "m_Id": "3e9222beecda48e096a72e3acff7d4db"
  595. },
  596. {
  597. "m_Id": "f4af67333cd14948a2d022673fb3b7cc"
  598. },
  599. {
  600. "m_Id": "62d8c998ad064adda20142ccadf49bb0"
  601. },
  602. {
  603. "m_Id": "414d863878904ec09a43a2f996cdb825"
  604. }
  605. ],
  606. "synonyms": [
  607. "tex2d"
  608. ],
  609. "m_Precision": 0,
  610. "m_PreviewExpanded": false,
  611. "m_DismissedVersion": 0,
  612. "m_PreviewMode": 0,
  613. "m_CustomColors": {
  614. "m_SerializableColors": []
  615. },
  616. "m_TextureType": 0,
  617. "m_NormalMapSpace": 0,
  618. "m_EnableGlobalMipBias": true,
  619. "m_MipSamplingMode": 0
  620. }
  621. {
  622. "m_SGVersion": 0,
  623. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  624. "m_ObjectId": "281d1cbc1c61443795f666567f0f28a4",
  625. "m_Id": 6,
  626. "m_DisplayName": "B",
  627. "m_SlotType": 1,
  628. "m_Hidden": false,
  629. "m_ShaderOutputName": "B",
  630. "m_StageCapability": 2,
  631. "m_Value": 0.0,
  632. "m_DefaultValue": 0.0,
  633. "m_Labels": []
  634. }
  635. {
  636. "m_SGVersion": 0,
  637. "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty",
  638. "m_ObjectId": "2d25adcc47d04282b333164ebf2b337b",
  639. "m_Guid": {
  640. "m_GuidSerialized": "a72cc7bf-2fc8-40b2-ac73-8ebee3332387"
  641. },
  642. "m_Name": "Normal",
  643. "m_DefaultRefNameVersion": 1,
  644. "m_RefNameGeneratedByDisplayName": "Normal",
  645. "m_DefaultReferenceName": "_Normal",
  646. "m_OverrideReferenceName": "",
  647. "m_GeneratePropertyBlock": true,
  648. "m_UseCustomSlotLabel": false,
  649. "m_CustomSlotLabel": "",
  650. "m_DismissedVersion": 0,
  651. "m_Precision": 0,
  652. "overrideHLSLDeclaration": false,
  653. "hlslDeclarationOverride": 0,
  654. "m_Hidden": false,
  655. "m_Value": {
  656. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  657. "m_Guid": ""
  658. },
  659. "isMainTexture": false,
  660. "useTilingAndOffset": false,
  661. "m_Modifiable": true,
  662. "m_DefaultType": 0
  663. }
  664. {
  665. "m_SGVersion": 0,
  666. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  667. "m_ObjectId": "2d9b04a028574cd19def8a3394c27383",
  668. "m_Id": 4,
  669. "m_DisplayName": "R",
  670. "m_SlotType": 1,
  671. "m_Hidden": false,
  672. "m_ShaderOutputName": "R",
  673. "m_StageCapability": 2,
  674. "m_Value": 0.0,
  675. "m_DefaultValue": 0.0,
  676. "m_Labels": []
  677. }
  678. {
  679. "m_SGVersion": 0,
  680. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  681. "m_ObjectId": "323aff081f1a41b382ad130968cbe7da",
  682. "m_Id": 5,
  683. "m_DisplayName": "G",
  684. "m_SlotType": 1,
  685. "m_Hidden": false,
  686. "m_ShaderOutputName": "G",
  687. "m_StageCapability": 2,
  688. "m_Value": 0.0,
  689. "m_DefaultValue": 0.0,
  690. "m_Labels": []
  691. }
  692. {
  693. "m_SGVersion": 0,
  694. "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
  695. "m_ObjectId": "351db64ff6c34a1683cc5193676b3fe8",
  696. "m_Id": 0,
  697. "m_DisplayName": "Normal",
  698. "m_SlotType": 0,
  699. "m_Hidden": false,
  700. "m_ShaderOutputName": "Normal",
  701. "m_StageCapability": 1,
  702. "m_Value": {
  703. "x": 0.0,
  704. "y": 0.0,
  705. "z": 0.0
  706. },
  707. "m_DefaultValue": {
  708. "x": 0.0,
  709. "y": 0.0,
  710. "z": 0.0
  711. },
  712. "m_Labels": [],
  713. "m_Space": 0
  714. }
  715. {
  716. "m_SGVersion": 0,
  717. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  718. "m_ObjectId": "353caff121804079ad98979f70c308b2",
  719. "m_Id": 6,
  720. "m_DisplayName": "B",
  721. "m_SlotType": 1,
  722. "m_Hidden": false,
  723. "m_ShaderOutputName": "B",
  724. "m_StageCapability": 2,
  725. "m_Value": 0.0,
  726. "m_DefaultValue": 0.0,
  727. "m_Labels": []
  728. }
  729. {
  730. "m_SGVersion": 1,
  731. "m_Type": "UnityEditor.ShaderGraph.ShaderKeyword",
  732. "m_ObjectId": "381abf142c51463db918bfc7038ca165",
  733. "m_Guid": {
  734. "m_GuidSerialized": "c61ea19c-9abf-48e5-b884-3b6c62784873"
  735. },
  736. "m_Name": "Forward Plus",
  737. "m_DefaultRefNameVersion": 1,
  738. "m_RefNameGeneratedByDisplayName": "Forward Plus",
  739. "m_DefaultReferenceName": "_FORWARD_PLUS",
  740. "m_OverrideReferenceName": "",
  741. "m_GeneratePropertyBlock": false,
  742. "m_UseCustomSlotLabel": false,
  743. "m_CustomSlotLabel": "",
  744. "m_DismissedVersion": 0,
  745. "m_KeywordType": 0,
  746. "m_KeywordDefinition": 1,
  747. "m_KeywordScope": 1,
  748. "m_KeywordStages": 2,
  749. "m_Entries": [],
  750. "m_Value": 1,
  751. "m_IsEditable": true
  752. }
  753. {
  754. "m_SGVersion": 0,
  755. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  756. "m_ObjectId": "3a46b58061994e3698be73dc71bd2cf9",
  757. "m_Id": -1055096999,
  758. "m_DisplayName": "Reflectance",
  759. "m_SlotType": 0,
  760. "m_Hidden": false,
  761. "m_ShaderOutputName": "_Reflectance",
  762. "m_StageCapability": 3,
  763. "m_Value": 1.0,
  764. "m_DefaultValue": 0.0,
  765. "m_Labels": []
  766. }
  767. {
  768. "m_SGVersion": 0,
  769. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  770. "m_ObjectId": "3da096a42f6f4609aca57ecbeb2c2d6c",
  771. "m_Id": 6,
  772. "m_DisplayName": "B",
  773. "m_SlotType": 1,
  774. "m_Hidden": false,
  775. "m_ShaderOutputName": "B",
  776. "m_StageCapability": 2,
  777. "m_Value": 0.0,
  778. "m_DefaultValue": 0.0,
  779. "m_Labels": []
  780. }
  781. {
  782. "m_SGVersion": 0,
  783. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  784. "m_ObjectId": "3e9222beecda48e096a72e3acff7d4db",
  785. "m_Id": 7,
  786. "m_DisplayName": "A",
  787. "m_SlotType": 1,
  788. "m_Hidden": false,
  789. "m_ShaderOutputName": "A",
  790. "m_StageCapability": 2,
  791. "m_Value": 0.0,
  792. "m_DefaultValue": 0.0,
  793. "m_Labels": []
  794. }
  795. {
  796. "m_SGVersion": 0,
  797. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  798. "m_ObjectId": "40482c1f7f4a4789938fc59075600e83",
  799. "m_Id": 0,
  800. "m_DisplayName": "UV",
  801. "m_SlotType": 0,
  802. "m_Hidden": false,
  803. "m_ShaderOutputName": "UV",
  804. "m_StageCapability": 3,
  805. "m_Value": {
  806. "x": 0.0,
  807. "y": 0.0
  808. },
  809. "m_DefaultValue": {
  810. "x": 0.0,
  811. "y": 0.0
  812. },
  813. "m_Labels": [],
  814. "m_Channel": 0
  815. }
  816. {
  817. "m_SGVersion": 0,
  818. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  819. "m_ObjectId": "414d863878904ec09a43a2f996cdb825",
  820. "m_Id": 3,
  821. "m_DisplayName": "Sampler",
  822. "m_SlotType": 0,
  823. "m_Hidden": false,
  824. "m_ShaderOutputName": "Sampler",
  825. "m_StageCapability": 3,
  826. "m_BareResource": false
  827. }
  828. {
  829. "m_SGVersion": 0,
  830. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  831. "m_ObjectId": "43a4005c65b44266951c6b7a4be19755",
  832. "m_Id": 1,
  833. "m_DisplayName": "Texture",
  834. "m_SlotType": 0,
  835. "m_Hidden": false,
  836. "m_ShaderOutputName": "Texture",
  837. "m_StageCapability": 3,
  838. "m_BareResource": false,
  839. "m_Texture": {
  840. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  841. "m_Guid": ""
  842. },
  843. "m_DefaultType": 0
  844. }
  845. {
  846. "m_SGVersion": 0,
  847. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  848. "m_ObjectId": "4c736732326742d9b2b2f7193134d5c9",
  849. "m_Id": 0,
  850. "m_DisplayName": "Normal",
  851. "m_SlotType": 1,
  852. "m_Hidden": false,
  853. "m_ShaderOutputName": "Out",
  854. "m_StageCapability": 3,
  855. "m_BareResource": false
  856. }
  857. {
  858. "m_SGVersion": 0,
  859. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  860. "m_ObjectId": "4cfd245d78684b9f8499f309a4d8713c",
  861. "m_Id": 2,
  862. "m_DisplayName": "Offset",
  863. "m_SlotType": 0,
  864. "m_Hidden": false,
  865. "m_ShaderOutputName": "Offset",
  866. "m_StageCapability": 3,
  867. "m_Value": {
  868. "x": 0.0,
  869. "y": 0.0
  870. },
  871. "m_DefaultValue": {
  872. "x": 0.0,
  873. "y": 0.0
  874. },
  875. "m_Labels": []
  876. }
  877. {
  878. "m_SGVersion": 0,
  879. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  880. "m_ObjectId": "4ec3599ec16e4490b89fa82306bfd782",
  881. "m_Id": -844273229,
  882. "m_DisplayName": "AmbientOcclusion",
  883. "m_SlotType": 0,
  884. "m_Hidden": false,
  885. "m_ShaderOutputName": "_AmbientOcclusion",
  886. "m_StageCapability": 3,
  887. "m_Value": 1.0,
  888. "m_DefaultValue": 0.0,
  889. "m_Labels": []
  890. }
  891. {
  892. "m_SGVersion": 0,
  893. "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot",
  894. "m_ObjectId": "4f8e965019e64087baa4ee184f14ff33",
  895. "m_Id": 0,
  896. "m_DisplayName": "Tangent",
  897. "m_SlotType": 0,
  898. "m_Hidden": false,
  899. "m_ShaderOutputName": "Tangent",
  900. "m_StageCapability": 1,
  901. "m_Value": {
  902. "x": 0.0,
  903. "y": 0.0,
  904. "z": 0.0
  905. },
  906. "m_DefaultValue": {
  907. "x": 0.0,
  908. "y": 0.0,
  909. "z": 0.0
  910. },
  911. "m_Labels": [],
  912. "m_Space": 0
  913. }
  914. {
  915. "m_SGVersion": 0,
  916. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  917. "m_ObjectId": "50c28518321b403aa8bfed55c038b7be",
  918. "m_Id": 4,
  919. "m_DisplayName": "R",
  920. "m_SlotType": 1,
  921. "m_Hidden": false,
  922. "m_ShaderOutputName": "R",
  923. "m_StageCapability": 2,
  924. "m_Value": 0.0,
  925. "m_DefaultValue": 0.0,
  926. "m_Labels": []
  927. }
  928. {
  929. "m_SGVersion": 0,
  930. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  931. "m_ObjectId": "59f46cf516b7475382687fec1349cf95",
  932. "m_Id": 4,
  933. "m_DisplayName": "R",
  934. "m_SlotType": 1,
  935. "m_Hidden": false,
  936. "m_ShaderOutputName": "R",
  937. "m_StageCapability": 2,
  938. "m_Value": 0.0,
  939. "m_DefaultValue": 0.0,
  940. "m_Labels": []
  941. }
  942. {
  943. "m_SGVersion": 0,
  944. "m_Type": "UnityEditor.ShaderGraph.CategoryData",
  945. "m_ObjectId": "5a39cf2c90d04d1295822f95459dd7ac",
  946. "m_Name": "",
  947. "m_ChildObjectList": []
  948. }
  949. {
  950. "m_SGVersion": 1,
  951. "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty",
  952. "m_ObjectId": "5b458ca2cfbc4031bb712249f6f416ee",
  953. "m_Guid": {
  954. "m_GuidSerialized": "da6d5603-e73b-4be0-90ff-05b48063309f"
  955. },
  956. "m_Name": "Tiling",
  957. "m_DefaultRefNameVersion": 1,
  958. "m_RefNameGeneratedByDisplayName": "Tiling",
  959. "m_DefaultReferenceName": "_Tiling",
  960. "m_OverrideReferenceName": "",
  961. "m_GeneratePropertyBlock": true,
  962. "m_UseCustomSlotLabel": false,
  963. "m_CustomSlotLabel": "",
  964. "m_DismissedVersion": 0,
  965. "m_Precision": 0,
  966. "overrideHLSLDeclaration": false,
  967. "hlslDeclarationOverride": 0,
  968. "m_Hidden": false,
  969. "m_Value": {
  970. "x": 1.0,
  971. "y": 1.0,
  972. "z": 0.0,
  973. "w": 0.0
  974. }
  975. }
  976. {
  977. "m_SGVersion": 0,
  978. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  979. "m_ObjectId": "5b636255d1e847ec81c293e1408e6e3b",
  980. "m_Id": 2068196862,
  981. "m_DisplayName": "Emission",
  982. "m_SlotType": 0,
  983. "m_Hidden": false,
  984. "m_ShaderOutputName": "_Emission",
  985. "m_StageCapability": 3,
  986. "m_Value": {
  987. "x": 0.0,
  988. "y": 0.0,
  989. "z": 0.0
  990. },
  991. "m_DefaultValue": {
  992. "x": 0.0,
  993. "y": 0.0,
  994. "z": 0.0
  995. },
  996. "m_Labels": []
  997. }
  998. {
  999. "m_SGVersion": 0,
  1000. "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty",
  1001. "m_ObjectId": "604c13275e924559b913bc2a9a7032d1",
  1002. "m_Guid": {
  1003. "m_GuidSerialized": "bf7fd41b-378c-4b4f-a2b9-5f43cf680a50"
  1004. },
  1005. "m_Name": "BaseColor",
  1006. "m_DefaultRefNameVersion": 1,
  1007. "m_RefNameGeneratedByDisplayName": "BaseColor",
  1008. "m_DefaultReferenceName": "_BaseColor",
  1009. "m_OverrideReferenceName": "",
  1010. "m_GeneratePropertyBlock": true,
  1011. "m_UseCustomSlotLabel": false,
  1012. "m_CustomSlotLabel": "",
  1013. "m_DismissedVersion": 0,
  1014. "m_Precision": 0,
  1015. "overrideHLSLDeclaration": false,
  1016. "hlslDeclarationOverride": 0,
  1017. "m_Hidden": false,
  1018. "m_Value": {
  1019. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  1020. "m_Guid": ""
  1021. },
  1022. "isMainTexture": false,
  1023. "useTilingAndOffset": false,
  1024. "m_Modifiable": true,
  1025. "m_DefaultType": 0
  1026. }
  1027. {
  1028. "m_SGVersion": 0,
  1029. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1030. "m_ObjectId": "619c52efba4349569d245e7f54f00bd7",
  1031. "m_Id": 7,
  1032. "m_DisplayName": "A",
  1033. "m_SlotType": 1,
  1034. "m_Hidden": false,
  1035. "m_ShaderOutputName": "A",
  1036. "m_StageCapability": 2,
  1037. "m_Value": 0.0,
  1038. "m_DefaultValue": 0.0,
  1039. "m_Labels": []
  1040. }
  1041. {
  1042. "m_SGVersion": 0,
  1043. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1044. "m_ObjectId": "623a99f2c9cf42c0b1f900d7a2282dba",
  1045. "m_Id": 0,
  1046. "m_DisplayName": "RGBA",
  1047. "m_SlotType": 1,
  1048. "m_Hidden": false,
  1049. "m_ShaderOutputName": "RGBA",
  1050. "m_StageCapability": 2,
  1051. "m_Value": {
  1052. "x": 0.0,
  1053. "y": 0.0,
  1054. "z": 0.0,
  1055. "w": 0.0
  1056. },
  1057. "m_DefaultValue": {
  1058. "x": 0.0,
  1059. "y": 0.0,
  1060. "z": 0.0,
  1061. "w": 0.0
  1062. },
  1063. "m_Labels": []
  1064. }
  1065. {
  1066. "m_SGVersion": 0,
  1067. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  1068. "m_ObjectId": "62d8c998ad064adda20142ccadf49bb0",
  1069. "m_Id": 2,
  1070. "m_DisplayName": "UV",
  1071. "m_SlotType": 0,
  1072. "m_Hidden": false,
  1073. "m_ShaderOutputName": "UV",
  1074. "m_StageCapability": 3,
  1075. "m_Value": {
  1076. "x": 0.0,
  1077. "y": 0.0
  1078. },
  1079. "m_DefaultValue": {
  1080. "x": 0.0,
  1081. "y": 0.0
  1082. },
  1083. "m_Labels": [],
  1084. "m_Channel": 0
  1085. }
  1086. {
  1087. "m_SGVersion": 0,
  1088. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1089. "m_ObjectId": "63817fb93c784fcbb729e8e159684aa3",
  1090. "m_Id": 0,
  1091. "m_DisplayName": "RGBA",
  1092. "m_SlotType": 1,
  1093. "m_Hidden": false,
  1094. "m_ShaderOutputName": "RGBA",
  1095. "m_StageCapability": 2,
  1096. "m_Value": {
  1097. "x": 0.0,
  1098. "y": 0.0,
  1099. "z": 0.0,
  1100. "w": 0.0
  1101. },
  1102. "m_DefaultValue": {
  1103. "x": 0.0,
  1104. "y": 0.0,
  1105. "z": 0.0,
  1106. "w": 0.0
  1107. },
  1108. "m_Labels": []
  1109. }
  1110. {
  1111. "m_SGVersion": 0,
  1112. "m_Type": "UnityEditor.ShaderGraph.PropertyNode",
  1113. "m_ObjectId": "651b3c0bd9c148dbbbb05a43d518402a",
  1114. "m_Group": {
  1115. "m_Id": ""
  1116. },
  1117. "m_Name": "Property",
  1118. "m_DrawState": {
  1119. "m_Expanded": true,
  1120. "m_Position": {
  1121. "serializedVersion": "2",
  1122. "x": -882.9999389648438,
  1123. "y": 282.0,
  1124. "width": 120.99993896484375,
  1125. "height": 34.0
  1126. }
  1127. },
  1128. "m_Slots": [
  1129. {
  1130. "m_Id": "4c736732326742d9b2b2f7193134d5c9"
  1131. }
  1132. ],
  1133. "synonyms": [],
  1134. "m_Precision": 0,
  1135. "m_PreviewExpanded": true,
  1136. "m_DismissedVersion": 0,
  1137. "m_PreviewMode": 0,
  1138. "m_CustomColors": {
  1139. "m_SerializableColors": []
  1140. },
  1141. "m_Property": {
  1142. "m_Id": "2d25adcc47d04282b333164ebf2b337b"
  1143. }
  1144. }
  1145. {
  1146. "m_SGVersion": 0,
  1147. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1148. "m_ObjectId": "651bad36e71442cd8dbcab94fa85867f",
  1149. "m_Id": -1679652504,
  1150. "m_DisplayName": "Metallic",
  1151. "m_SlotType": 0,
  1152. "m_Hidden": false,
  1153. "m_ShaderOutputName": "_Metallic",
  1154. "m_StageCapability": 3,
  1155. "m_Value": 0.0,
  1156. "m_DefaultValue": 0.0,
  1157. "m_Labels": []
  1158. }
  1159. {
  1160. "m_SGVersion": 0,
  1161. "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
  1162. "m_ObjectId": "669f66fd72f64653860fd7806a93bfd2",
  1163. "m_Id": 0,
  1164. "m_DisplayName": "Position",
  1165. "m_SlotType": 0,
  1166. "m_Hidden": false,
  1167. "m_ShaderOutputName": "Position",
  1168. "m_StageCapability": 1,
  1169. "m_Value": {
  1170. "x": 0.0,
  1171. "y": 0.0,
  1172. "z": 0.0
  1173. },
  1174. "m_DefaultValue": {
  1175. "x": 0.0,
  1176. "y": 0.0,
  1177. "z": 0.0
  1178. },
  1179. "m_Labels": [],
  1180. "m_Space": 0
  1181. }
  1182. {
  1183. "m_SGVersion": 0,
  1184. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1185. "m_ObjectId": "66c21a3032fa4c96b83a77f4fc0619e0",
  1186. "m_Group": {
  1187. "m_Id": ""
  1188. },
  1189. "m_Name": "VertexDescription.Normal",
  1190. "m_DrawState": {
  1191. "m_Expanded": true,
  1192. "m_Position": {
  1193. "serializedVersion": "2",
  1194. "x": 0.0,
  1195. "y": 0.0,
  1196. "width": 0.0,
  1197. "height": 0.0
  1198. }
  1199. },
  1200. "m_Slots": [
  1201. {
  1202. "m_Id": "351db64ff6c34a1683cc5193676b3fe8"
  1203. }
  1204. ],
  1205. "synonyms": [],
  1206. "m_Precision": 0,
  1207. "m_PreviewExpanded": true,
  1208. "m_DismissedVersion": 0,
  1209. "m_PreviewMode": 0,
  1210. "m_CustomColors": {
  1211. "m_SerializableColors": []
  1212. },
  1213. "m_SerializedDescriptor": "VertexDescription.Normal"
  1214. }
  1215. {
  1216. "m_SGVersion": 0,
  1217. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1218. "m_ObjectId": "693a1ffdb86543de9a00a0bd93966e38",
  1219. "m_Id": 5,
  1220. "m_DisplayName": "G",
  1221. "m_SlotType": 1,
  1222. "m_Hidden": false,
  1223. "m_ShaderOutputName": "G",
  1224. "m_StageCapability": 2,
  1225. "m_Value": 0.0,
  1226. "m_DefaultValue": 0.0,
  1227. "m_Labels": []
  1228. }
  1229. {
  1230. "m_SGVersion": 0,
  1231. "m_Type": "UnityEditor.ShaderGraph.CategoryData",
  1232. "m_ObjectId": "6ef0f9e120324771854dd65812e3aadc",
  1233. "m_Name": "Required Keywords",
  1234. "m_ChildObjectList": [
  1235. {
  1236. "m_Id": "ea3bd82eb8b444b88e156c727d6fce00"
  1237. },
  1238. {
  1239. "m_Id": "9577dddbfdb34405900c94efbf2e6212"
  1240. },
  1241. {
  1242. "m_Id": "018e4355b6d64cfb92a83a3b47817fcc"
  1243. },
  1244. {
  1245. "m_Id": "381abf142c51463db918bfc7038ca165"
  1246. }
  1247. ]
  1248. }
  1249. {
  1250. "m_SGVersion": 0,
  1251. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  1252. "m_ObjectId": "7331b6577e7e4ba0a17c88af481d3e28",
  1253. "m_Id": 0,
  1254. "m_DisplayName": "Base Color",
  1255. "m_SlotType": 0,
  1256. "m_Hidden": false,
  1257. "m_ShaderOutputName": "BaseColor",
  1258. "m_StageCapability": 2,
  1259. "m_Value": {
  1260. "x": 0.5,
  1261. "y": 0.5,
  1262. "z": 0.5
  1263. },
  1264. "m_DefaultValue": {
  1265. "x": 0.0,
  1266. "y": 0.0,
  1267. "z": 0.0
  1268. },
  1269. "m_Labels": [],
  1270. "m_ColorMode": 0,
  1271. "m_DefaultColor": {
  1272. "r": 0.5,
  1273. "g": 0.5,
  1274. "b": 0.5,
  1275. "a": 1.0
  1276. }
  1277. }
  1278. {
  1279. "m_SGVersion": 0,
  1280. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1281. "m_ObjectId": "7e892bd29e1949eca61dfd235f7edb46",
  1282. "m_Group": {
  1283. "m_Id": ""
  1284. },
  1285. "m_Name": "VertexDescription.Tangent",
  1286. "m_DrawState": {
  1287. "m_Expanded": true,
  1288. "m_Position": {
  1289. "serializedVersion": "2",
  1290. "x": 0.0,
  1291. "y": 0.0,
  1292. "width": 0.0,
  1293. "height": 0.0
  1294. }
  1295. },
  1296. "m_Slots": [
  1297. {
  1298. "m_Id": "4f8e965019e64087baa4ee184f14ff33"
  1299. }
  1300. ],
  1301. "synonyms": [],
  1302. "m_Precision": 0,
  1303. "m_PreviewExpanded": true,
  1304. "m_DismissedVersion": 0,
  1305. "m_PreviewMode": 0,
  1306. "m_CustomColors": {
  1307. "m_SerializableColors": []
  1308. },
  1309. "m_SerializedDescriptor": "VertexDescription.Tangent"
  1310. }
  1311. {
  1312. "m_SGVersion": 0,
  1313. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  1314. "m_ObjectId": "802f25b2152745c2a7ae845a8ed09448",
  1315. "m_Id": 0,
  1316. "m_DisplayName": "BaseColor",
  1317. "m_SlotType": 1,
  1318. "m_Hidden": false,
  1319. "m_ShaderOutputName": "Out",
  1320. "m_StageCapability": 3,
  1321. "m_BareResource": false
  1322. }
  1323. {
  1324. "m_SGVersion": 0,
  1325. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  1326. "m_ObjectId": "81fc718d332346b7ab8877f2f966c3b0",
  1327. "m_Group": {
  1328. "m_Id": ""
  1329. },
  1330. "m_Name": "Sample Texture 2D",
  1331. "m_DrawState": {
  1332. "m_Expanded": false,
  1333. "m_Position": {
  1334. "serializedVersion": "2",
  1335. "x": -739.0,
  1336. "y": 423.9999694824219,
  1337. "width": 156.00006103515626,
  1338. "height": 202.99996948242188
  1339. }
  1340. },
  1341. "m_Slots": [
  1342. {
  1343. "m_Id": "63817fb93c784fcbb729e8e159684aa3"
  1344. },
  1345. {
  1346. "m_Id": "59f46cf516b7475382687fec1349cf95"
  1347. },
  1348. {
  1349. "m_Id": "323aff081f1a41b382ad130968cbe7da"
  1350. },
  1351. {
  1352. "m_Id": "353caff121804079ad98979f70c308b2"
  1353. },
  1354. {
  1355. "m_Id": "619c52efba4349569d245e7f54f00bd7"
  1356. },
  1357. {
  1358. "m_Id": "43a4005c65b44266951c6b7a4be19755"
  1359. },
  1360. {
  1361. "m_Id": "a6854ce313d94c9596726749f81ad945"
  1362. },
  1363. {
  1364. "m_Id": "1b4b52343d50416e97aa2628d3d5a6b4"
  1365. }
  1366. ],
  1367. "synonyms": [
  1368. "tex2d"
  1369. ],
  1370. "m_Precision": 0,
  1371. "m_PreviewExpanded": false,
  1372. "m_DismissedVersion": 0,
  1373. "m_PreviewMode": 0,
  1374. "m_CustomColors": {
  1375. "m_SerializableColors": []
  1376. },
  1377. "m_TextureType": 0,
  1378. "m_NormalMapSpace": 0,
  1379. "m_EnableGlobalMipBias": true,
  1380. "m_MipSamplingMode": 0
  1381. }
  1382. {
  1383. "m_SGVersion": 0,
  1384. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1385. "m_ObjectId": "848fbfdc10a2467db8a132b0b843e486",
  1386. "m_Group": {
  1387. "m_Id": ""
  1388. },
  1389. "m_Name": "VertexDescription.Position",
  1390. "m_DrawState": {
  1391. "m_Expanded": true,
  1392. "m_Position": {
  1393. "serializedVersion": "2",
  1394. "x": 0.0,
  1395. "y": 0.0,
  1396. "width": 0.0,
  1397. "height": 0.0
  1398. }
  1399. },
  1400. "m_Slots": [
  1401. {
  1402. "m_Id": "669f66fd72f64653860fd7806a93bfd2"
  1403. }
  1404. ],
  1405. "synonyms": [],
  1406. "m_Precision": 0,
  1407. "m_PreviewExpanded": true,
  1408. "m_DismissedVersion": 0,
  1409. "m_PreviewMode": 0,
  1410. "m_CustomColors": {
  1411. "m_SerializableColors": []
  1412. },
  1413. "m_SerializedDescriptor": "VertexDescription.Position"
  1414. }
  1415. {
  1416. "m_SGVersion": 0,
  1417. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1418. "m_ObjectId": "84ddf75baa0f4a55908b00b80844c2e8",
  1419. "m_Id": 1,
  1420. "m_DisplayName": "Base_Color",
  1421. "m_SlotType": 1,
  1422. "m_Hidden": false,
  1423. "m_ShaderOutputName": "Base_Color",
  1424. "m_StageCapability": 3,
  1425. "m_Value": {
  1426. "x": 0.0,
  1427. "y": 0.0,
  1428. "z": 0.0
  1429. },
  1430. "m_DefaultValue": {
  1431. "x": 0.0,
  1432. "y": 0.0,
  1433. "z": 0.0
  1434. },
  1435. "m_Labels": []
  1436. }
  1437. {
  1438. "m_SGVersion": 0,
  1439. "m_Type": "UnityEditor.ShaderGraph.TilingAndOffsetNode",
  1440. "m_ObjectId": "8ca2dbda46f74bb5844a36f6886fb8f5",
  1441. "m_Group": {
  1442. "m_Id": ""
  1443. },
  1444. "m_Name": "Tiling And Offset",
  1445. "m_DrawState": {
  1446. "m_Expanded": false,
  1447. "m_Position": {
  1448. "serializedVersion": "2",
  1449. "x": -1063.0,
  1450. "y": 268.9999694824219,
  1451. "width": 150.00006103515626,
  1452. "height": 94.0
  1453. }
  1454. },
  1455. "m_Slots": [
  1456. {
  1457. "m_Id": "40482c1f7f4a4789938fc59075600e83"
  1458. },
  1459. {
  1460. "m_Id": "bcd275ed36d2419488610668abeb68aa"
  1461. },
  1462. {
  1463. "m_Id": "4cfd245d78684b9f8499f309a4d8713c"
  1464. },
  1465. {
  1466. "m_Id": "b33b4a8813ef4118b98cd0d3f76e6033"
  1467. }
  1468. ],
  1469. "synonyms": [
  1470. "pan",
  1471. "scale"
  1472. ],
  1473. "m_Precision": 0,
  1474. "m_PreviewExpanded": false,
  1475. "m_DismissedVersion": 0,
  1476. "m_PreviewMode": 0,
  1477. "m_CustomColors": {
  1478. "m_SerializableColors": []
  1479. }
  1480. }
  1481. {
  1482. "m_SGVersion": 1,
  1483. "m_Type": "UnityEditor.ShaderGraph.ShaderKeyword",
  1484. "m_ObjectId": "9577dddbfdb34405900c94efbf2e6212",
  1485. "m_Guid": {
  1486. "m_GuidSerialized": "eab18545-64d9-4ebe-a4d7-926ff241f788"
  1487. },
  1488. "m_Name": "Additional Shadows",
  1489. "m_DefaultRefNameVersion": 1,
  1490. "m_RefNameGeneratedByDisplayName": "Additional Shadows",
  1491. "m_DefaultReferenceName": "_ADDITIONAL_SHADOWS",
  1492. "m_OverrideReferenceName": "_ADDITIONAL_LIGHT_SHADOWS",
  1493. "m_GeneratePropertyBlock": false,
  1494. "m_UseCustomSlotLabel": false,
  1495. "m_CustomSlotLabel": "",
  1496. "m_DismissedVersion": 0,
  1497. "m_KeywordType": 0,
  1498. "m_KeywordDefinition": 1,
  1499. "m_KeywordScope": 1,
  1500. "m_KeywordStages": 2,
  1501. "m_Entries": [],
  1502. "m_Value": 1,
  1503. "m_IsEditable": true
  1504. }
  1505. {
  1506. "m_SGVersion": 0,
  1507. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1508. "m_ObjectId": "97939827c07b40d9a135a7f032a6d04f",
  1509. "m_Id": -428999002,
  1510. "m_DisplayName": "Smoothness",
  1511. "m_SlotType": 0,
  1512. "m_Hidden": false,
  1513. "m_ShaderOutputName": "_Smoothness",
  1514. "m_StageCapability": 3,
  1515. "m_Value": 0.800000011920929,
  1516. "m_DefaultValue": 0.0,
  1517. "m_Labels": []
  1518. }
  1519. {
  1520. "m_SGVersion": 2,
  1521. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget",
  1522. "m_ObjectId": "9b6b4656820e4e87a4c04fbf7a71021b"
  1523. }
  1524. {
  1525. "m_SGVersion": 0,
  1526. "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot",
  1527. "m_ObjectId": "a67813172b394dfea740cddccfb12b8d",
  1528. "m_Id": 814618256,
  1529. "m_DisplayName": "EnableAdditionalLights",
  1530. "m_SlotType": 0,
  1531. "m_Hidden": false,
  1532. "m_ShaderOutputName": "_EnableAdditionalLights",
  1533. "m_StageCapability": 3,
  1534. "m_Value": true,
  1535. "m_DefaultValue": false
  1536. }
  1537. {
  1538. "m_SGVersion": 0,
  1539. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  1540. "m_ObjectId": "a6854ce313d94c9596726749f81ad945",
  1541. "m_Id": 2,
  1542. "m_DisplayName": "UV",
  1543. "m_SlotType": 0,
  1544. "m_Hidden": false,
  1545. "m_ShaderOutputName": "UV",
  1546. "m_StageCapability": 3,
  1547. "m_Value": {
  1548. "x": 0.0,
  1549. "y": 0.0
  1550. },
  1551. "m_DefaultValue": {
  1552. "x": 0.0,
  1553. "y": 0.0
  1554. },
  1555. "m_Labels": [],
  1556. "m_Channel": 0
  1557. }
  1558. {
  1559. "m_SGVersion": 0,
  1560. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1561. "m_ObjectId": "aa8b7e5a8326456eb03b95f5318b7887",
  1562. "m_Id": 5,
  1563. "m_DisplayName": "G",
  1564. "m_SlotType": 1,
  1565. "m_Hidden": false,
  1566. "m_ShaderOutputName": "G",
  1567. "m_StageCapability": 2,
  1568. "m_Value": 0.0,
  1569. "m_DefaultValue": 0.0,
  1570. "m_Labels": []
  1571. }
  1572. {
  1573. "m_SGVersion": 0,
  1574. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1575. "m_ObjectId": "aff13ce83a4b4f768718934501c12924",
  1576. "m_Id": 0,
  1577. "m_DisplayName": "RGBA",
  1578. "m_SlotType": 1,
  1579. "m_Hidden": false,
  1580. "m_ShaderOutputName": "RGBA",
  1581. "m_StageCapability": 2,
  1582. "m_Value": {
  1583. "x": 0.0,
  1584. "y": 0.0,
  1585. "z": 0.0,
  1586. "w": 0.0
  1587. },
  1588. "m_DefaultValue": {
  1589. "x": 0.0,
  1590. "y": 0.0,
  1591. "z": 0.0,
  1592. "w": 0.0
  1593. },
  1594. "m_Labels": []
  1595. }
  1596. {
  1597. "m_SGVersion": 0,
  1598. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1599. "m_ObjectId": "b33b4a8813ef4118b98cd0d3f76e6033",
  1600. "m_Id": 3,
  1601. "m_DisplayName": "Out",
  1602. "m_SlotType": 1,
  1603. "m_Hidden": false,
  1604. "m_ShaderOutputName": "Out",
  1605. "m_StageCapability": 3,
  1606. "m_Value": {
  1607. "x": 0.0,
  1608. "y": 0.0
  1609. },
  1610. "m_DefaultValue": {
  1611. "x": 0.0,
  1612. "y": 0.0
  1613. },
  1614. "m_Labels": []
  1615. }
  1616. {
  1617. "m_SGVersion": 0,
  1618. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1619. "m_ObjectId": "bbd782c007424d44bb94e854a4eb4313",
  1620. "m_Group": {
  1621. "m_Id": ""
  1622. },
  1623. "m_Name": "SurfaceDescription.BaseColor",
  1624. "m_DrawState": {
  1625. "m_Expanded": true,
  1626. "m_Position": {
  1627. "serializedVersion": "2",
  1628. "x": 0.0,
  1629. "y": 0.0,
  1630. "width": 0.0,
  1631. "height": 0.0
  1632. }
  1633. },
  1634. "m_Slots": [
  1635. {
  1636. "m_Id": "7331b6577e7e4ba0a17c88af481d3e28"
  1637. }
  1638. ],
  1639. "synonyms": [],
  1640. "m_Precision": 0,
  1641. "m_PreviewExpanded": true,
  1642. "m_DismissedVersion": 0,
  1643. "m_PreviewMode": 0,
  1644. "m_CustomColors": {
  1645. "m_SerializableColors": []
  1646. },
  1647. "m_SerializedDescriptor": "SurfaceDescription.BaseColor"
  1648. }
  1649. {
  1650. "m_SGVersion": 0,
  1651. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1652. "m_ObjectId": "bcd275ed36d2419488610668abeb68aa",
  1653. "m_Id": 1,
  1654. "m_DisplayName": "Tiling",
  1655. "m_SlotType": 0,
  1656. "m_Hidden": false,
  1657. "m_ShaderOutputName": "Tiling",
  1658. "m_StageCapability": 3,
  1659. "m_Value": {
  1660. "x": 1.0,
  1661. "y": 1.0
  1662. },
  1663. "m_DefaultValue": {
  1664. "x": 0.0,
  1665. "y": 0.0
  1666. },
  1667. "m_Labels": []
  1668. }
  1669. {
  1670. "m_SGVersion": 0,
  1671. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  1672. "m_ObjectId": "bd7c06c63c7b4b0fa2400d1aa01647d3",
  1673. "m_Id": 0,
  1674. "m_DisplayName": "MOHS",
  1675. "m_SlotType": 1,
  1676. "m_Hidden": false,
  1677. "m_ShaderOutputName": "Out",
  1678. "m_StageCapability": 3,
  1679. "m_BareResource": false
  1680. }
  1681. {
  1682. "m_SGVersion": 0,
  1683. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1684. "m_ObjectId": "ce3e9e7bd84e42de86e7a03de05b7da1",
  1685. "m_Id": -645578642,
  1686. "m_DisplayName": "Normal",
  1687. "m_SlotType": 0,
  1688. "m_Hidden": false,
  1689. "m_ShaderOutputName": "_Normal",
  1690. "m_StageCapability": 3,
  1691. "m_Value": {
  1692. "x": 0.0,
  1693. "y": 0.0,
  1694. "z": 1.0
  1695. },
  1696. "m_DefaultValue": {
  1697. "x": 0.0,
  1698. "y": 0.0,
  1699. "z": 0.0
  1700. },
  1701. "m_Labels": []
  1702. }
  1703. {
  1704. "m_SGVersion": 1,
  1705. "m_Type": "UnityEditor.ShaderGraph.ColorNode",
  1706. "m_ObjectId": "d26ff65cd7a84f3f9156c3c4d95f6cdf",
  1707. "m_Group": {
  1708. "m_Id": ""
  1709. },
  1710. "m_Name": "Color",
  1711. "m_DrawState": {
  1712. "m_Expanded": true,
  1713. "m_Position": {
  1714. "serializedVersion": "2",
  1715. "x": -816.0,
  1716. "y": -62.0,
  1717. "width": 208.0,
  1718. "height": 125.0
  1719. }
  1720. },
  1721. "m_Slots": [
  1722. {
  1723. "m_Id": "fb799a09288d4113b514b6c4aaa108d7"
  1724. }
  1725. ],
  1726. "synonyms": [
  1727. "rgba"
  1728. ],
  1729. "m_Precision": 0,
  1730. "m_PreviewExpanded": true,
  1731. "m_DismissedVersion": 0,
  1732. "m_PreviewMode": 0,
  1733. "m_CustomColors": {
  1734. "m_SerializableColors": []
  1735. },
  1736. "m_Color": {
  1737. "color": {
  1738. "r": 0.5377358198165894,
  1739. "g": 0.3965996503829956,
  1740. "b": 0.1445799022912979,
  1741. "a": 0.0
  1742. },
  1743. "mode": 0
  1744. }
  1745. }
  1746. {
  1747. "m_SGVersion": 0,
  1748. "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty",
  1749. "m_ObjectId": "dd90965a7b864367969910310dbaed63",
  1750. "m_Guid": {
  1751. "m_GuidSerialized": "d6241377-1dfc-4d4f-b7e9-71cb2218a8c2"
  1752. },
  1753. "m_Name": "MOHS",
  1754. "m_DefaultRefNameVersion": 1,
  1755. "m_RefNameGeneratedByDisplayName": "MOHS",
  1756. "m_DefaultReferenceName": "_MOHS",
  1757. "m_OverrideReferenceName": "",
  1758. "m_GeneratePropertyBlock": true,
  1759. "m_UseCustomSlotLabel": false,
  1760. "m_CustomSlotLabel": "",
  1761. "m_DismissedVersion": 0,
  1762. "m_Precision": 0,
  1763. "overrideHLSLDeclaration": false,
  1764. "hlslDeclarationOverride": 0,
  1765. "m_Hidden": false,
  1766. "m_Value": {
  1767. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  1768. "m_Guid": ""
  1769. },
  1770. "isMainTexture": false,
  1771. "useTilingAndOffset": false,
  1772. "m_Modifiable": true,
  1773. "m_DefaultType": 0
  1774. }
  1775. {
  1776. "m_SGVersion": 0,
  1777. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1778. "m_ObjectId": "e2e6b2106dfc4befb49ded78670fddc2",
  1779. "m_Id": 0,
  1780. "m_DisplayName": "Tiling",
  1781. "m_SlotType": 1,
  1782. "m_Hidden": false,
  1783. "m_ShaderOutputName": "Out",
  1784. "m_StageCapability": 3,
  1785. "m_Value": {
  1786. "x": 0.0,
  1787. "y": 0.0
  1788. },
  1789. "m_DefaultValue": {
  1790. "x": 0.0,
  1791. "y": 0.0
  1792. },
  1793. "m_Labels": []
  1794. }
  1795. {
  1796. "m_SGVersion": 0,
  1797. "m_Type": "UnityEditor.ShaderGraph.PropertyNode",
  1798. "m_ObjectId": "e3481858b87645768071fb9dfb5a8f33",
  1799. "m_Group": {
  1800. "m_Id": ""
  1801. },
  1802. "m_Name": "Property",
  1803. "m_DrawState": {
  1804. "m_Expanded": true,
  1805. "m_Position": {
  1806. "serializedVersion": "2",
  1807. "x": -899.9999389648438,
  1808. "y": 104.99999237060547,
  1809. "width": 138.0,
  1810. "height": 33.99999237060547
  1811. }
  1812. },
  1813. "m_Slots": [
  1814. {
  1815. "m_Id": "802f25b2152745c2a7ae845a8ed09448"
  1816. }
  1817. ],
  1818. "synonyms": [],
  1819. "m_Precision": 0,
  1820. "m_PreviewExpanded": true,
  1821. "m_DismissedVersion": 0,
  1822. "m_PreviewMode": 0,
  1823. "m_CustomColors": {
  1824. "m_SerializableColors": []
  1825. },
  1826. "m_Property": {
  1827. "m_Id": "604c13275e924559b913bc2a9a7032d1"
  1828. }
  1829. }
  1830. {
  1831. "m_SGVersion": 1,
  1832. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget",
  1833. "m_ObjectId": "e6d04eef8d974aedb2c10eba994765a1",
  1834. "m_Datas": [],
  1835. "m_ActiveSubTarget": {
  1836. "m_Id": "9b6b4656820e4e87a4c04fbf7a71021b"
  1837. },
  1838. "m_AllowMaterialOverride": false,
  1839. "m_SurfaceType": 0,
  1840. "m_ZTestMode": 4,
  1841. "m_ZWriteControl": 0,
  1842. "m_AlphaMode": 0,
  1843. "m_RenderFace": 2,
  1844. "m_AlphaClip": false,
  1845. "m_CastShadows": true,
  1846. "m_ReceiveShadows": true,
  1847. "m_DisableTint": false,
  1848. "m_AdditionalMotionVectorMode": 0,
  1849. "m_AlembicMotionVectors": false,
  1850. "m_SupportsLODCrossFade": false,
  1851. "m_CustomEditorGUI": "",
  1852. "m_SupportVFX": false
  1853. }
  1854. {
  1855. "m_SGVersion": 1,
  1856. "m_Type": "UnityEditor.ShaderGraph.ShaderKeyword",
  1857. "m_ObjectId": "ea3bd82eb8b444b88e156c727d6fce00",
  1858. "m_Guid": {
  1859. "m_GuidSerialized": "67c14f2e-f044-40e0-b8e6-15058d079d80"
  1860. },
  1861. "m_Name": "Shadows Cascade",
  1862. "m_DefaultRefNameVersion": 1,
  1863. "m_RefNameGeneratedByDisplayName": "Shadows Cascade",
  1864. "m_DefaultReferenceName": "_SHADOWS_CASCADE",
  1865. "m_OverrideReferenceName": "_MAIN_LIGHT_SHADOWS_CASCADE",
  1866. "m_GeneratePropertyBlock": false,
  1867. "m_UseCustomSlotLabel": false,
  1868. "m_CustomSlotLabel": "",
  1869. "m_DismissedVersion": 0,
  1870. "m_KeywordType": 0,
  1871. "m_KeywordDefinition": 1,
  1872. "m_KeywordScope": 1,
  1873. "m_KeywordStages": 2,
  1874. "m_Entries": [],
  1875. "m_Value": 1,
  1876. "m_IsEditable": true
  1877. }
  1878. {
  1879. "m_SGVersion": 0,
  1880. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1881. "m_ObjectId": "ea78b12e22414716adfaf50ee148d7b4",
  1882. "m_Id": 7,
  1883. "m_DisplayName": "A",
  1884. "m_SlotType": 1,
  1885. "m_Hidden": false,
  1886. "m_ShaderOutputName": "A",
  1887. "m_StageCapability": 2,
  1888. "m_Value": 0.0,
  1889. "m_DefaultValue": 0.0,
  1890. "m_Labels": []
  1891. }
  1892. {
  1893. "m_SGVersion": 0,
  1894. "m_Type": "UnityEditor.ShaderGraph.PropertyNode",
  1895. "m_ObjectId": "ec66b73c2d9348ff8c34eb9ec12682bf",
  1896. "m_Group": {
  1897. "m_Id": ""
  1898. },
  1899. "m_Name": "Property",
  1900. "m_DrawState": {
  1901. "m_Expanded": true,
  1902. "m_Position": {
  1903. "serializedVersion": "2",
  1904. "x": -855.9999389648438,
  1905. "y": 458.99993896484377,
  1906. "width": 116.99993896484375,
  1907. "height": 34.0
  1908. }
  1909. },
  1910. "m_Slots": [
  1911. {
  1912. "m_Id": "bd7c06c63c7b4b0fa2400d1aa01647d3"
  1913. }
  1914. ],
  1915. "synonyms": [],
  1916. "m_Precision": 0,
  1917. "m_PreviewExpanded": true,
  1918. "m_DismissedVersion": 0,
  1919. "m_PreviewMode": 0,
  1920. "m_CustomColors": {
  1921. "m_SerializableColors": []
  1922. },
  1923. "m_Property": {
  1924. "m_Id": "dd90965a7b864367969910310dbaed63"
  1925. }
  1926. }
  1927. {
  1928. "m_SGVersion": 0,
  1929. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  1930. "m_ObjectId": "f4af67333cd14948a2d022673fb3b7cc",
  1931. "m_Id": 1,
  1932. "m_DisplayName": "Texture",
  1933. "m_SlotType": 0,
  1934. "m_Hidden": false,
  1935. "m_ShaderOutputName": "Texture",
  1936. "m_StageCapability": 3,
  1937. "m_BareResource": false,
  1938. "m_Texture": {
  1939. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  1940. "m_Guid": ""
  1941. },
  1942. "m_DefaultType": 0
  1943. }
  1944. {
  1945. "m_SGVersion": 0,
  1946. "m_Type": "UnityEditor.ShaderGraph.PropertyNode",
  1947. "m_ObjectId": "f6438dcaa2314cf09a9bd69a3851d289",
  1948. "m_Group": {
  1949. "m_Id": ""
  1950. },
  1951. "m_Name": "Property",
  1952. "m_DrawState": {
  1953. "m_Expanded": true,
  1954. "m_Position": {
  1955. "serializedVersion": "2",
  1956. "x": -1167.9998779296875,
  1957. "y": 303.9999694824219,
  1958. "width": 104.9998779296875,
  1959. "height": 34.0
  1960. }
  1961. },
  1962. "m_Slots": [
  1963. {
  1964. "m_Id": "e2e6b2106dfc4befb49ded78670fddc2"
  1965. }
  1966. ],
  1967. "synonyms": [],
  1968. "m_Precision": 0,
  1969. "m_PreviewExpanded": true,
  1970. "m_DismissedVersion": 0,
  1971. "m_PreviewMode": 0,
  1972. "m_CustomColors": {
  1973. "m_SerializableColors": []
  1974. },
  1975. "m_Property": {
  1976. "m_Id": "5b458ca2cfbc4031bb712249f6f416ee"
  1977. }
  1978. }
  1979. {
  1980. "m_SGVersion": 0,
  1981. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  1982. "m_ObjectId": "f858a2b503d34a32bb8954e357f61c0c",
  1983. "m_Id": 2,
  1984. "m_DisplayName": "UV",
  1985. "m_SlotType": 0,
  1986. "m_Hidden": false,
  1987. "m_ShaderOutputName": "UV",
  1988. "m_StageCapability": 3,
  1989. "m_Value": {
  1990. "x": 0.0,
  1991. "y": 0.0
  1992. },
  1993. "m_DefaultValue": {
  1994. "x": 0.0,
  1995. "y": 0.0
  1996. },
  1997. "m_Labels": [],
  1998. "m_Channel": 0
  1999. }
  2000. {
  2001. "m_SGVersion": 0,
  2002. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  2003. "m_ObjectId": "fb799a09288d4113b514b6c4aaa108d7",
  2004. "m_Id": 0,
  2005. "m_DisplayName": "Out",
  2006. "m_SlotType": 1,
  2007. "m_Hidden": false,
  2008. "m_ShaderOutputName": "Out",
  2009. "m_StageCapability": 3,
  2010. "m_Value": {
  2011. "x": 0.0,
  2012. "y": 0.0,
  2013. "z": 0.0,
  2014. "w": 0.0
  2015. },
  2016. "m_DefaultValue": {
  2017. "x": 0.0,
  2018. "y": 0.0,
  2019. "z": 0.0,
  2020. "w": 0.0
  2021. },
  2022. "m_Labels": []
  2023. }