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

NormalReconstructZ.shadergraph 60KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550
  1. {
  2. "m_SGVersion": 3,
  3. "m_Type": "UnityEditor.ShaderGraph.GraphData",
  4. "m_ObjectId": "4fc856c489c047538b430031331e4ae6",
  5. "m_Properties": [],
  6. "m_Keywords": [],
  7. "m_Dropdowns": [],
  8. "m_CategoryData": [
  9. {
  10. "m_Id": "883cf820b2cb480094218595d39b77eb"
  11. }
  12. ],
  13. "m_Nodes": [
  14. {
  15. "m_Id": "da1439c4438643ed8d4fbc67257a0ee4"
  16. },
  17. {
  18. "m_Id": "6797ac6e8d754708a782814acb8a9a75"
  19. },
  20. {
  21. "m_Id": "b4ba844d8b314c068a54739b0d50f289"
  22. },
  23. {
  24. "m_Id": "3f7a0f0b001745c3b88f27970d1062b3"
  25. },
  26. {
  27. "m_Id": "f1352afad7e84d53b0e9b3ff5cb60b9b"
  28. },
  29. {
  30. "m_Id": "d7b0ff4480f146228ff28b88a4ba9411"
  31. },
  32. {
  33. "m_Id": "57a04f02851d46d988c6e06f7bf55403"
  34. },
  35. {
  36. "m_Id": "451b54fd02c04db8928fee64ee7f652c"
  37. },
  38. {
  39. "m_Id": "df0f0a8f3e0c40158670ca44a6b39dc3"
  40. },
  41. {
  42. "m_Id": "0435aea1cea04891b0af16ae384f8d09"
  43. },
  44. {
  45. "m_Id": "64a8c8377d7347e18e02fc8b15672a44"
  46. },
  47. {
  48. "m_Id": "31ba2ac1c23c4d2eb17179c2590875bf"
  49. },
  50. {
  51. "m_Id": "f3540c81e63b471f94e89ce40b887558"
  52. },
  53. {
  54. "m_Id": "65f038ec0a0c4ac090871eb59a779050"
  55. },
  56. {
  57. "m_Id": "6802b2b823224e709464002ab7d472b7"
  58. },
  59. {
  60. "m_Id": "3b11fba0fb8942129e9bcf0950e71c9a"
  61. },
  62. {
  63. "m_Id": "1f78fe66f7924e04aabde4a478e3b0ca"
  64. },
  65. {
  66. "m_Id": "1d6e742aec414d86b37789221b6e1723"
  67. },
  68. {
  69. "m_Id": "9c312ecff26542dba24b6682e4686b07"
  70. }
  71. ],
  72. "m_GroupDatas": [
  73. {
  74. "m_Id": "87067ddff13d42c784d6d00b30d9b8ce"
  75. },
  76. {
  77. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  78. }
  79. ],
  80. "m_StickyNoteDatas": [
  81. {
  82. "m_Id": "c88532443058483f92a8e4b0bf2b55ce"
  83. },
  84. {
  85. "m_Id": "9340ceef2ab34edfa58c7f0933200911"
  86. },
  87. {
  88. "m_Id": "e104587ec8694bc1b2280337f9df02f8"
  89. },
  90. {
  91. "m_Id": "eabe1901e13542878b2ba7dd0193ea86"
  92. },
  93. {
  94. "m_Id": "c8342633d91548e4849963769e0a8df7"
  95. },
  96. {
  97. "m_Id": "f7d32794429f475183535d91754dafab"
  98. },
  99. {
  100. "m_Id": "15f488acfbc149a9978b2c5dd757531a"
  101. },
  102. {
  103. "m_Id": "6e481ffcb4304bdca6a9c9db916d5491"
  104. },
  105. {
  106. "m_Id": "297a4725476842f984300b5123dda2f0"
  107. },
  108. {
  109. "m_Id": "36ccde71285944f8a3804690161e507c"
  110. }
  111. ],
  112. "m_Edges": [
  113. {
  114. "m_OutputSlot": {
  115. "m_Node": {
  116. "m_Id": "0435aea1cea04891b0af16ae384f8d09"
  117. },
  118. "m_SlotId": 0
  119. },
  120. "m_InputSlot": {
  121. "m_Node": {
  122. "m_Id": "64a8c8377d7347e18e02fc8b15672a44"
  123. },
  124. "m_SlotId": 0
  125. }
  126. },
  127. {
  128. "m_OutputSlot": {
  129. "m_Node": {
  130. "m_Id": "0435aea1cea04891b0af16ae384f8d09"
  131. },
  132. "m_SlotId": 0
  133. },
  134. "m_InputSlot": {
  135. "m_Node": {
  136. "m_Id": "64a8c8377d7347e18e02fc8b15672a44"
  137. },
  138. "m_SlotId": 1
  139. }
  140. },
  141. {
  142. "m_OutputSlot": {
  143. "m_Node": {
  144. "m_Id": "0435aea1cea04891b0af16ae384f8d09"
  145. },
  146. "m_SlotId": 0
  147. },
  148. "m_InputSlot": {
  149. "m_Node": {
  150. "m_Id": "6802b2b823224e709464002ab7d472b7"
  151. },
  152. "m_SlotId": 0
  153. }
  154. },
  155. {
  156. "m_OutputSlot": {
  157. "m_Node": {
  158. "m_Id": "31ba2ac1c23c4d2eb17179c2590875bf"
  159. },
  160. "m_SlotId": 1
  161. },
  162. "m_InputSlot": {
  163. "m_Node": {
  164. "m_Id": "f3540c81e63b471f94e89ce40b887558"
  165. },
  166. "m_SlotId": 0
  167. }
  168. },
  169. {
  170. "m_OutputSlot": {
  171. "m_Node": {
  172. "m_Id": "3b11fba0fb8942129e9bcf0950e71c9a"
  173. },
  174. "m_SlotId": 5
  175. },
  176. "m_InputSlot": {
  177. "m_Node": {
  178. "m_Id": "1f78fe66f7924e04aabde4a478e3b0ca"
  179. },
  180. "m_SlotId": 0
  181. }
  182. },
  183. {
  184. "m_OutputSlot": {
  185. "m_Node": {
  186. "m_Id": "57a04f02851d46d988c6e06f7bf55403"
  187. },
  188. "m_SlotId": 0
  189. },
  190. "m_InputSlot": {
  191. "m_Node": {
  192. "m_Id": "df0f0a8f3e0c40158670ca44a6b39dc3"
  193. },
  194. "m_SlotId": 0
  195. }
  196. },
  197. {
  198. "m_OutputSlot": {
  199. "m_Node": {
  200. "m_Id": "64a8c8377d7347e18e02fc8b15672a44"
  201. },
  202. "m_SlotId": 2
  203. },
  204. "m_InputSlot": {
  205. "m_Node": {
  206. "m_Id": "31ba2ac1c23c4d2eb17179c2590875bf"
  207. },
  208. "m_SlotId": 0
  209. }
  210. },
  211. {
  212. "m_OutputSlot": {
  213. "m_Node": {
  214. "m_Id": "65f038ec0a0c4ac090871eb59a779050"
  215. },
  216. "m_SlotId": 1
  217. },
  218. "m_InputSlot": {
  219. "m_Node": {
  220. "m_Id": "3b11fba0fb8942129e9bcf0950e71c9a"
  221. },
  222. "m_SlotId": 2
  223. }
  224. },
  225. {
  226. "m_OutputSlot": {
  227. "m_Node": {
  228. "m_Id": "6802b2b823224e709464002ab7d472b7"
  229. },
  230. "m_SlotId": 1
  231. },
  232. "m_InputSlot": {
  233. "m_Node": {
  234. "m_Id": "3b11fba0fb8942129e9bcf0950e71c9a"
  235. },
  236. "m_SlotId": 0
  237. }
  238. },
  239. {
  240. "m_OutputSlot": {
  241. "m_Node": {
  242. "m_Id": "6802b2b823224e709464002ab7d472b7"
  243. },
  244. "m_SlotId": 2
  245. },
  246. "m_InputSlot": {
  247. "m_Node": {
  248. "m_Id": "3b11fba0fb8942129e9bcf0950e71c9a"
  249. },
  250. "m_SlotId": 1
  251. }
  252. },
  253. {
  254. "m_OutputSlot": {
  255. "m_Node": {
  256. "m_Id": "d7b0ff4480f146228ff28b88a4ba9411"
  257. },
  258. "m_SlotId": 4
  259. },
  260. "m_InputSlot": {
  261. "m_Node": {
  262. "m_Id": "57a04f02851d46d988c6e06f7bf55403"
  263. },
  264. "m_SlotId": 1
  265. }
  266. },
  267. {
  268. "m_OutputSlot": {
  269. "m_Node": {
  270. "m_Id": "d7b0ff4480f146228ff28b88a4ba9411"
  271. },
  272. "m_SlotId": 5
  273. },
  274. "m_InputSlot": {
  275. "m_Node": {
  276. "m_Id": "57a04f02851d46d988c6e06f7bf55403"
  277. },
  278. "m_SlotId": 2
  279. }
  280. },
  281. {
  282. "m_OutputSlot": {
  283. "m_Node": {
  284. "m_Id": "df0f0a8f3e0c40158670ca44a6b39dc3"
  285. },
  286. "m_SlotId": 3
  287. },
  288. "m_InputSlot": {
  289. "m_Node": {
  290. "m_Id": "451b54fd02c04db8928fee64ee7f652c"
  291. },
  292. "m_SlotId": 0
  293. }
  294. },
  295. {
  296. "m_OutputSlot": {
  297. "m_Node": {
  298. "m_Id": "f3540c81e63b471f94e89ce40b887558"
  299. },
  300. "m_SlotId": 1
  301. },
  302. "m_InputSlot": {
  303. "m_Node": {
  304. "m_Id": "65f038ec0a0c4ac090871eb59a779050"
  305. },
  306. "m_SlotId": 0
  307. }
  308. }
  309. ],
  310. "m_VertexContext": {
  311. "m_Position": {
  312. "x": 0.0,
  313. "y": 0.0
  314. },
  315. "m_Blocks": [
  316. {
  317. "m_Id": "da1439c4438643ed8d4fbc67257a0ee4"
  318. },
  319. {
  320. "m_Id": "6797ac6e8d754708a782814acb8a9a75"
  321. },
  322. {
  323. "m_Id": "b4ba844d8b314c068a54739b0d50f289"
  324. }
  325. ]
  326. },
  327. "m_FragmentContext": {
  328. "m_Position": {
  329. "x": 0.0,
  330. "y": 200.0
  331. },
  332. "m_Blocks": [
  333. {
  334. "m_Id": "3f7a0f0b001745c3b88f27970d1062b3"
  335. },
  336. {
  337. "m_Id": "1d6e742aec414d86b37789221b6e1723"
  338. },
  339. {
  340. "m_Id": "9c312ecff26542dba24b6682e4686b07"
  341. }
  342. ]
  343. },
  344. "m_PreviewData": {
  345. "serializedMesh": {
  346. "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
  347. "m_Guid": ""
  348. },
  349. "preventRotation": false
  350. },
  351. "m_Path": "Shader Graphs",
  352. "m_GraphPrecision": 1,
  353. "m_PreviewMode": 2,
  354. "m_OutputNode": {
  355. "m_Id": ""
  356. },
  357. "m_ActiveTargets": [
  358. {
  359. "m_Id": "15f99706d93b4ef897ab1da0a1a7a0c0"
  360. },
  361. {
  362. "m_Id": "f86723075c27450f982e6a3b994e4859"
  363. },
  364. {
  365. "m_Id": "1597f52791a14ae49921bb52b0c8f2a4"
  366. }
  367. ]
  368. }
  369. {
  370. "m_SGVersion": 0,
  371. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitSubTarget",
  372. "m_ObjectId": "004dc390bc7b4cde8e5cb6f913c7b2b5"
  373. }
  374. {
  375. "m_SGVersion": 0,
  376. "m_Type": "UnityEditor.ShaderGraph.Vector2Node",
  377. "m_ObjectId": "0435aea1cea04891b0af16ae384f8d09",
  378. "m_Group": {
  379. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  380. },
  381. "m_Name": "Vector 2",
  382. "m_DrawState": {
  383. "m_Expanded": true,
  384. "m_Position": {
  385. "serializedVersion": "2",
  386. "x": -1166.0001220703125,
  387. "y": 224.50001525878907,
  388. "width": 126.9998779296875,
  389. "height": 100.99992370605469
  390. }
  391. },
  392. "m_Slots": [
  393. {
  394. "m_Id": "400aafdb2877422bbe6a626199107bd3"
  395. },
  396. {
  397. "m_Id": "7f4a1a79d85f49b08f3d2d67041465f9"
  398. },
  399. {
  400. "m_Id": "74ac5b2a66324a768b9cc51e8e9365f7"
  401. }
  402. ],
  403. "synonyms": [
  404. "2",
  405. "v2",
  406. "vec2",
  407. "float2"
  408. ],
  409. "m_Precision": 0,
  410. "m_PreviewExpanded": true,
  411. "m_DismissedVersion": 0,
  412. "m_PreviewMode": 0,
  413. "m_CustomColors": {
  414. "m_SerializableColors": []
  415. },
  416. "m_Value": {
  417. "x": 0.0,
  418. "y": 0.0
  419. }
  420. }
  421. {
  422. "m_SGVersion": 0,
  423. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  424. "m_ObjectId": "07f7a99bcb4c49ba8c86dd8a2a1c1c29",
  425. "m_Id": 0,
  426. "m_DisplayName": "Base Color",
  427. "m_SlotType": 0,
  428. "m_Hidden": false,
  429. "m_ShaderOutputName": "BaseColor",
  430. "m_StageCapability": 2,
  431. "m_Value": {
  432. "x": 0.5,
  433. "y": 0.5,
  434. "z": 0.5
  435. },
  436. "m_DefaultValue": {
  437. "x": 0.0,
  438. "y": 0.0,
  439. "z": 0.0
  440. },
  441. "m_Labels": [],
  442. "m_ColorMode": 0,
  443. "m_DefaultColor": {
  444. "r": 0.5,
  445. "g": 0.5,
  446. "b": 0.5,
  447. "a": 1.0
  448. }
  449. }
  450. {
  451. "m_SGVersion": 0,
  452. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  453. "m_ObjectId": "090ea3d1f61a46d29798b1d6259e6a5d",
  454. "m_Id": 1,
  455. "m_DisplayName": "Texture",
  456. "m_SlotType": 0,
  457. "m_Hidden": false,
  458. "m_ShaderOutputName": "Texture",
  459. "m_StageCapability": 3,
  460. "m_BareResource": false,
  461. "m_Texture": {
  462. "m_SerializedTexture": "{\"texture\":{\"fileID\":2800000,\"guid\":\"35cfe3df8fbb7aa46adb76215627f2e9\",\"type\":3}}",
  463. "m_Guid": ""
  464. },
  465. "m_DefaultType": 0
  466. }
  467. {
  468. "m_SGVersion": 0,
  469. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  470. "m_ObjectId": "1001d6f55f7343adbf91af6d511db76c",
  471. "m_Id": 5,
  472. "m_DisplayName": "G",
  473. "m_SlotType": 1,
  474. "m_Hidden": false,
  475. "m_ShaderOutputName": "G",
  476. "m_StageCapability": 2,
  477. "m_Value": 0.0,
  478. "m_DefaultValue": 0.0,
  479. "m_Labels": []
  480. }
  481. {
  482. "m_SGVersion": 0,
  483. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  484. "m_ObjectId": "10c8e6622fd54b739615934b1748a022",
  485. "m_Id": 2,
  486. "m_DisplayName": "Out",
  487. "m_SlotType": 1,
  488. "m_Hidden": false,
  489. "m_ShaderOutputName": "Out",
  490. "m_StageCapability": 3,
  491. "m_Value": {
  492. "x": 0.0,
  493. "y": 0.0,
  494. "z": 0.0
  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.DynamicVectorMaterialSlot",
  506. "m_ObjectId": "152e97736851444db311653adc1998e2",
  507. "m_Id": 1,
  508. "m_DisplayName": "Out",
  509. "m_SlotType": 1,
  510. "m_Hidden": false,
  511. "m_ShaderOutputName": "Out",
  512. "m_StageCapability": 3,
  513. "m_Value": {
  514. "x": 0.0,
  515. "y": 0.0,
  516. "z": 0.0,
  517. "w": 0.0
  518. },
  519. "m_DefaultValue": {
  520. "x": 0.0,
  521. "y": 0.0,
  522. "z": 0.0,
  523. "w": 0.0
  524. }
  525. }
  526. {
  527. "m_SGVersion": 1,
  528. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget",
  529. "m_ObjectId": "1597f52791a14ae49921bb52b0c8f2a4",
  530. "m_Datas": [],
  531. "m_ActiveSubTarget": {
  532. "m_Id": "d0f2a344521a46b5b103f9ee30df0369"
  533. },
  534. "m_AllowMaterialOverride": false,
  535. "m_SurfaceType": 0,
  536. "m_ZTestMode": 4,
  537. "m_ZWriteControl": 0,
  538. "m_AlphaMode": 0,
  539. "m_RenderFace": 2,
  540. "m_AlphaClip": false,
  541. "m_CastShadows": true,
  542. "m_ReceiveShadows": true,
  543. "m_AdditionalMotionVectorMode": 0,
  544. "m_AlembicMotionVectors": false,
  545. "m_SupportsLODCrossFade": false,
  546. "m_CustomEditorGUI": "",
  547. "m_SupportVFX": false
  548. }
  549. {
  550. "m_SGVersion": 0,
  551. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  552. "m_ObjectId": "15f488acfbc149a9978b2c5dd757531a",
  553. "m_Title": "",
  554. "m_Content": "This is using the Pythagorean theorem to calculate Z.\n\nX sqaured + Y squared = Z squared",
  555. "m_TextSize": 0,
  556. "m_Theme": 0,
  557. "m_Position": {
  558. "serializedVersion": "2",
  559. "x": -832.0000610351563,
  560. "y": 377.5000305175781,
  561. "width": 214.0,
  562. "height": 100.00003051757813
  563. },
  564. "m_Group": {
  565. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  566. }
  567. }
  568. {
  569. "m_SGVersion": 2,
  570. "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInTarget",
  571. "m_ObjectId": "15f99706d93b4ef897ab1da0a1a7a0c0",
  572. "m_ActiveSubTarget": {
  573. "m_Id": "878b9d93d6f24f25acf6acf8519c921b"
  574. },
  575. "m_AllowMaterialOverride": false,
  576. "m_SurfaceType": 0,
  577. "m_ZWriteControl": 0,
  578. "m_ZTestMode": 4,
  579. "m_AlphaMode": 0,
  580. "m_RenderFace": 2,
  581. "m_AlphaClip": false,
  582. "m_CustomEditorGUI": ""
  583. }
  584. {
  585. "m_SGVersion": 0,
  586. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  587. "m_ObjectId": "1c137a28846242c1a01f8a46273404d2",
  588. "m_Id": 1,
  589. "m_DisplayName": "R",
  590. "m_SlotType": 1,
  591. "m_Hidden": false,
  592. "m_ShaderOutputName": "R",
  593. "m_StageCapability": 3,
  594. "m_Value": 0.0,
  595. "m_DefaultValue": 0.0,
  596. "m_Labels": []
  597. }
  598. {
  599. "m_SGVersion": 0,
  600. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  601. "m_ObjectId": "1d6e742aec414d86b37789221b6e1723",
  602. "m_Group": {
  603. "m_Id": ""
  604. },
  605. "m_Name": "SurfaceDescription.Emission",
  606. "m_DrawState": {
  607. "m_Expanded": true,
  608. "m_Position": {
  609. "serializedVersion": "2",
  610. "x": 0.0,
  611. "y": 0.0,
  612. "width": 0.0,
  613. "height": 0.0
  614. }
  615. },
  616. "m_Slots": [
  617. {
  618. "m_Id": "2c476972121e41cd9f8f72d032a0f2c9"
  619. }
  620. ],
  621. "synonyms": [],
  622. "m_Precision": 0,
  623. "m_PreviewExpanded": true,
  624. "m_DismissedVersion": 0,
  625. "m_PreviewMode": 0,
  626. "m_CustomColors": {
  627. "m_SerializableColors": []
  628. },
  629. "m_SerializedDescriptor": "SurfaceDescription.Emission"
  630. }
  631. {
  632. "m_SGVersion": 0,
  633. "m_Type": "UnityEditor.ShaderGraph.NormalizeNode",
  634. "m_ObjectId": "1f78fe66f7924e04aabde4a478e3b0ca",
  635. "m_Group": {
  636. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  637. },
  638. "m_Name": "Normalize",
  639. "m_DrawState": {
  640. "m_Expanded": true,
  641. "m_Position": {
  642. "serializedVersion": "2",
  643. "x": -292.5000305175781,
  644. "y": 143.00001525878907,
  645. "width": 131.49996948242188,
  646. "height": 94.00001525878906
  647. }
  648. },
  649. "m_Slots": [
  650. {
  651. "m_Id": "bc31bd8610f9444494fd7f029fba3dfa"
  652. },
  653. {
  654. "m_Id": "47724c5df4ff4a60a6fc6480dff8f13b"
  655. }
  656. ],
  657. "synonyms": [],
  658. "m_Precision": 0,
  659. "m_PreviewExpanded": false,
  660. "m_DismissedVersion": 0,
  661. "m_PreviewMode": 0,
  662. "m_CustomColors": {
  663. "m_SerializableColors": []
  664. }
  665. }
  666. {
  667. "m_SGVersion": 0,
  668. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  669. "m_ObjectId": "21e2fe4e3bfb4092ace28575a0f67a9f",
  670. "m_Id": 4,
  671. "m_DisplayName": "A",
  672. "m_SlotType": 1,
  673. "m_Hidden": false,
  674. "m_ShaderOutputName": "A",
  675. "m_StageCapability": 3,
  676. "m_Value": 0.0,
  677. "m_DefaultValue": 0.0,
  678. "m_Labels": []
  679. }
  680. {
  681. "m_SGVersion": 0,
  682. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  683. "m_ObjectId": "297a4725476842f984300b5123dda2f0",
  684. "m_Title": "",
  685. "m_Content": "You could squeeze a tiny bit of performance improvement out of this if you skip this normalize on the end.\n\nAssuming your original X and Y were created from a normalized normal, this normalize is redundant.",
  686. "m_TextSize": 0,
  687. "m_Theme": 0,
  688. "m_Position": {
  689. "serializedVersion": "2",
  690. "x": -287.5000305175781,
  691. "y": 239.00003051757813,
  692. "width": 125.00001525878906,
  693. "height": 206.45654296875
  694. },
  695. "m_Group": {
  696. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  697. }
  698. }
  699. {
  700. "m_SGVersion": 0,
  701. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  702. "m_ObjectId": "2be3e2856f1346cabce55de5d296a84c",
  703. "m_Id": 3,
  704. "m_DisplayName": "B",
  705. "m_SlotType": 1,
  706. "m_Hidden": false,
  707. "m_ShaderOutputName": "B",
  708. "m_StageCapability": 3,
  709. "m_Value": 0.0,
  710. "m_DefaultValue": 0.0,
  711. "m_Labels": []
  712. }
  713. {
  714. "m_SGVersion": 0,
  715. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  716. "m_ObjectId": "2c476972121e41cd9f8f72d032a0f2c9",
  717. "m_Id": 0,
  718. "m_DisplayName": "Emission",
  719. "m_SlotType": 0,
  720. "m_Hidden": false,
  721. "m_ShaderOutputName": "Emission",
  722. "m_StageCapability": 2,
  723. "m_Value": {
  724. "x": 0.0,
  725. "y": 0.0,
  726. "z": 0.0
  727. },
  728. "m_DefaultValue": {
  729. "x": 0.0,
  730. "y": 0.0,
  731. "z": 0.0
  732. },
  733. "m_Labels": [],
  734. "m_ColorMode": 1,
  735. "m_DefaultColor": {
  736. "r": 0.0,
  737. "g": 0.0,
  738. "b": 0.0,
  739. "a": 1.0
  740. }
  741. }
  742. {
  743. "m_SGVersion": 0,
  744. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  745. "m_ObjectId": "2fda96b53eac47448b190a22f3a1838a",
  746. "m_Id": 0,
  747. "m_DisplayName": "Out",
  748. "m_SlotType": 1,
  749. "m_Hidden": false,
  750. "m_ShaderOutputName": "Out",
  751. "m_StageCapability": 3,
  752. "m_Value": {
  753. "x": 0.0,
  754. "y": 0.0
  755. },
  756. "m_DefaultValue": {
  757. "x": 0.0,
  758. "y": 0.0
  759. },
  760. "m_Labels": []
  761. }
  762. {
  763. "m_SGVersion": 0,
  764. "m_Type": "UnityEditor.ShaderGraph.SaturateNode",
  765. "m_ObjectId": "31ba2ac1c23c4d2eb17179c2590875bf",
  766. "m_Group": {
  767. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  768. },
  769. "m_Name": "Saturate",
  770. "m_DrawState": {
  771. "m_Expanded": true,
  772. "m_Position": {
  773. "serializedVersion": "2",
  774. "x": -861.0001220703125,
  775. "y": 275.0000305175781,
  776. "width": 127.5,
  777. "height": 93.99990844726563
  778. }
  779. },
  780. "m_Slots": [
  781. {
  782. "m_Id": "3ff759be87834f018f3cb9eb6a521a3f"
  783. },
  784. {
  785. "m_Id": "152e97736851444db311653adc1998e2"
  786. }
  787. ],
  788. "synonyms": [
  789. "clamp"
  790. ],
  791. "m_Precision": 0,
  792. "m_PreviewExpanded": false,
  793. "m_DismissedVersion": 0,
  794. "m_PreviewMode": 0,
  795. "m_CustomColors": {
  796. "m_SerializableColors": []
  797. }
  798. }
  799. {
  800. "m_SGVersion": 0,
  801. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  802. "m_ObjectId": "36ccde71285944f8a3804690161e507c",
  803. "m_Title": "",
  804. "m_Content": "Note that the exact same process is used to unpack regular normal maps - so using this process is not adding extra cost to the shader.",
  805. "m_TextSize": 0,
  806. "m_Theme": 0,
  807. "m_Position": {
  808. "serializedVersion": "2",
  809. "x": -1807.5001220703125,
  810. "y": 564.5000610351563,
  811. "width": 200.0,
  812. "height": 100.0
  813. },
  814. "m_Group": {
  815. "m_Id": ""
  816. }
  817. }
  818. {
  819. "m_SGVersion": 0,
  820. "m_Type": "UnityEditor.ShaderGraph.CombineNode",
  821. "m_ObjectId": "3b11fba0fb8942129e9bcf0950e71c9a",
  822. "m_Group": {
  823. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  824. },
  825. "m_Name": "Combine",
  826. "m_DrawState": {
  827. "m_Expanded": false,
  828. "m_Position": {
  829. "serializedVersion": "2",
  830. "x": -424.5000305175781,
  831. "y": 143.00001525878907,
  832. "width": 132.0,
  833. "height": 142.00001525878907
  834. }
  835. },
  836. "m_Slots": [
  837. {
  838. "m_Id": "89a2fe9a48b84a7bb45ef17adb41e2b5"
  839. },
  840. {
  841. "m_Id": "5b65694e51b04b45a5c849c978923d8a"
  842. },
  843. {
  844. "m_Id": "3b41ea9f65794809bd9b753840bf7824"
  845. },
  846. {
  847. "m_Id": "3f2bdf96a81a43929dc0bd17f72c97b9"
  848. },
  849. {
  850. "m_Id": "d3d192fee4b349e1bb744af10e655973"
  851. },
  852. {
  853. "m_Id": "83935d9351734c8fb4a975be41d5219f"
  854. },
  855. {
  856. "m_Id": "d25c2ad03f984a76941d1fbd2ead6191"
  857. }
  858. ],
  859. "synonyms": [
  860. "append"
  861. ],
  862. "m_Precision": 0,
  863. "m_PreviewExpanded": false,
  864. "m_DismissedVersion": 0,
  865. "m_PreviewMode": 0,
  866. "m_CustomColors": {
  867. "m_SerializableColors": []
  868. }
  869. }
  870. {
  871. "m_SGVersion": 0,
  872. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  873. "m_ObjectId": "3b41ea9f65794809bd9b753840bf7824",
  874. "m_Id": 2,
  875. "m_DisplayName": "B",
  876. "m_SlotType": 0,
  877. "m_Hidden": false,
  878. "m_ShaderOutputName": "B",
  879. "m_StageCapability": 3,
  880. "m_Value": 0.0,
  881. "m_DefaultValue": 0.0,
  882. "m_Labels": []
  883. }
  884. {
  885. "m_SGVersion": 0,
  886. "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
  887. "m_ObjectId": "3da4156fca884483ad9b6de50be887ff",
  888. "m_Id": 0,
  889. "m_DisplayName": "Normal",
  890. "m_SlotType": 0,
  891. "m_Hidden": false,
  892. "m_ShaderOutputName": "Normal",
  893. "m_StageCapability": 1,
  894. "m_Value": {
  895. "x": 0.0,
  896. "y": 0.0,
  897. "z": 0.0
  898. },
  899. "m_DefaultValue": {
  900. "x": 0.0,
  901. "y": 0.0,
  902. "z": 0.0
  903. },
  904. "m_Labels": [],
  905. "m_Space": 0
  906. }
  907. {
  908. "m_SGVersion": 0,
  909. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  910. "m_ObjectId": "3e805b83329a4f7ab39d22e4c1219ebc",
  911. "m_Id": 0,
  912. "m_DisplayName": "Alpha",
  913. "m_SlotType": 0,
  914. "m_Hidden": false,
  915. "m_ShaderOutputName": "Alpha",
  916. "m_StageCapability": 2,
  917. "m_Value": 1.0,
  918. "m_DefaultValue": 1.0,
  919. "m_Labels": []
  920. }
  921. {
  922. "m_SGVersion": 0,
  923. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  924. "m_ObjectId": "3f2bdf96a81a43929dc0bd17f72c97b9",
  925. "m_Id": 3,
  926. "m_DisplayName": "A",
  927. "m_SlotType": 0,
  928. "m_Hidden": false,
  929. "m_ShaderOutputName": "A",
  930. "m_StageCapability": 3,
  931. "m_Value": 0.0,
  932. "m_DefaultValue": 0.0,
  933. "m_Labels": []
  934. }
  935. {
  936. "m_SGVersion": 0,
  937. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  938. "m_ObjectId": "3f7a0f0b001745c3b88f27970d1062b3",
  939. "m_Group": {
  940. "m_Id": ""
  941. },
  942. "m_Name": "SurfaceDescription.BaseColor",
  943. "m_DrawState": {
  944. "m_Expanded": true,
  945. "m_Position": {
  946. "serializedVersion": "2",
  947. "x": 0.0,
  948. "y": 0.0,
  949. "width": 0.0,
  950. "height": 0.0
  951. }
  952. },
  953. "m_Slots": [
  954. {
  955. "m_Id": "07f7a99bcb4c49ba8c86dd8a2a1c1c29"
  956. }
  957. ],
  958. "synonyms": [],
  959. "m_Precision": 0,
  960. "m_PreviewExpanded": true,
  961. "m_DismissedVersion": 0,
  962. "m_PreviewMode": 0,
  963. "m_CustomColors": {
  964. "m_SerializableColors": []
  965. },
  966. "m_SerializedDescriptor": "SurfaceDescription.BaseColor"
  967. }
  968. {
  969. "m_SGVersion": 0,
  970. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  971. "m_ObjectId": "3ff759be87834f018f3cb9eb6a521a3f",
  972. "m_Id": 0,
  973. "m_DisplayName": "In",
  974. "m_SlotType": 0,
  975. "m_Hidden": false,
  976. "m_ShaderOutputName": "In",
  977. "m_StageCapability": 3,
  978. "m_Value": {
  979. "x": 0.0,
  980. "y": 0.0,
  981. "z": 0.0,
  982. "w": 0.0
  983. },
  984. "m_DefaultValue": {
  985. "x": 0.0,
  986. "y": 0.0,
  987. "z": 0.0,
  988. "w": 0.0
  989. }
  990. }
  991. {
  992. "m_SGVersion": 0,
  993. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  994. "m_ObjectId": "400aafdb2877422bbe6a626199107bd3",
  995. "m_Id": 1,
  996. "m_DisplayName": "X",
  997. "m_SlotType": 0,
  998. "m_Hidden": false,
  999. "m_ShaderOutputName": "X",
  1000. "m_StageCapability": 3,
  1001. "m_Value": 0.0,
  1002. "m_DefaultValue": 0.0,
  1003. "m_Labels": []
  1004. }
  1005. {
  1006. "m_SGVersion": 0,
  1007. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1008. "m_ObjectId": "44318a3053ea46f887ce1d77c0dce74a",
  1009. "m_Id": 0,
  1010. "m_DisplayName": "In",
  1011. "m_SlotType": 0,
  1012. "m_Hidden": false,
  1013. "m_ShaderOutputName": "In",
  1014. "m_StageCapability": 3,
  1015. "m_Value": {
  1016. "x": 0.0,
  1017. "y": 0.0,
  1018. "z": 0.0,
  1019. "w": 0.0
  1020. },
  1021. "m_DefaultValue": {
  1022. "x": 0.0,
  1023. "y": 0.0,
  1024. "z": 0.0,
  1025. "w": 0.0
  1026. }
  1027. }
  1028. {
  1029. "m_SGVersion": 0,
  1030. "m_Type": "UnityEditor.ShaderGraph.NormalReconstructZNode",
  1031. "m_ObjectId": "451b54fd02c04db8928fee64ee7f652c",
  1032. "m_Group": {
  1033. "m_Id": "87067ddff13d42c784d6d00b30d9b8ce"
  1034. },
  1035. "m_Name": "Normal Reconstruct Z",
  1036. "m_DrawState": {
  1037. "m_Expanded": true,
  1038. "m_Position": {
  1039. "serializedVersion": "2",
  1040. "x": -1462.5001220703125,
  1041. "y": 133.00003051757813,
  1042. "width": 207.9998779296875,
  1043. "height": 277.99993896484377
  1044. }
  1045. },
  1046. "m_Slots": [
  1047. {
  1048. "m_Id": "ad6bf7b553024bf8894f93e9c857c2d2"
  1049. },
  1050. {
  1051. "m_Id": "b28a36f1ab344521a37827b648f3769a"
  1052. }
  1053. ],
  1054. "synonyms": [
  1055. "derive z"
  1056. ],
  1057. "m_Precision": 0,
  1058. "m_PreviewExpanded": true,
  1059. "m_DismissedVersion": 0,
  1060. "m_PreviewMode": 0,
  1061. "m_CustomColors": {
  1062. "m_SerializableColors": []
  1063. }
  1064. }
  1065. {
  1066. "m_SGVersion": 0,
  1067. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1068. "m_ObjectId": "47724c5df4ff4a60a6fc6480dff8f13b",
  1069. "m_Id": 1,
  1070. "m_DisplayName": "Out",
  1071. "m_SlotType": 1,
  1072. "m_Hidden": false,
  1073. "m_ShaderOutputName": "Out",
  1074. "m_StageCapability": 3,
  1075. "m_Value": {
  1076. "x": 0.0,
  1077. "y": 0.0,
  1078. "z": 0.0,
  1079. "w": 0.0
  1080. },
  1081. "m_DefaultValue": {
  1082. "x": 0.0,
  1083. "y": 0.0,
  1084. "z": 0.0,
  1085. "w": 0.0
  1086. }
  1087. }
  1088. {
  1089. "m_SGVersion": 0,
  1090. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1091. "m_ObjectId": "47b10d85163b424191ca6650786c23d2",
  1092. "m_Id": 0,
  1093. "m_DisplayName": "RGBA",
  1094. "m_SlotType": 1,
  1095. "m_Hidden": false,
  1096. "m_ShaderOutputName": "RGBA",
  1097. "m_StageCapability": 2,
  1098. "m_Value": {
  1099. "x": 0.0,
  1100. "y": 0.0,
  1101. "z": 0.0,
  1102. "w": 0.0
  1103. },
  1104. "m_DefaultValue": {
  1105. "x": 0.0,
  1106. "y": 0.0,
  1107. "z": 0.0,
  1108. "w": 0.0
  1109. },
  1110. "m_Labels": []
  1111. }
  1112. {
  1113. "m_SGVersion": 0,
  1114. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1115. "m_ObjectId": "565bd5b8249f4906b69293b92986e56c",
  1116. "m_Id": 0,
  1117. "m_DisplayName": "In",
  1118. "m_SlotType": 0,
  1119. "m_Hidden": false,
  1120. "m_ShaderOutputName": "In",
  1121. "m_StageCapability": 3,
  1122. "m_Value": {
  1123. "x": 0.0,
  1124. "y": 0.0
  1125. },
  1126. "m_DefaultValue": {
  1127. "x": 0.0,
  1128. "y": 0.0
  1129. },
  1130. "m_Labels": []
  1131. }
  1132. {
  1133. "m_SGVersion": 0,
  1134. "m_Type": "UnityEditor.ShaderGraph.Vector2Node",
  1135. "m_ObjectId": "57a04f02851d46d988c6e06f7bf55403",
  1136. "m_Group": {
  1137. "m_Id": "87067ddff13d42c784d6d00b30d9b8ce"
  1138. },
  1139. "m_Name": "Vector 2",
  1140. "m_DrawState": {
  1141. "m_Expanded": true,
  1142. "m_Position": {
  1143. "serializedVersion": "2",
  1144. "x": -1969.0001220703125,
  1145. "y": 133.00003051757813,
  1146. "width": 127.0,
  1147. "height": 100.99990844726563
  1148. }
  1149. },
  1150. "m_Slots": [
  1151. {
  1152. "m_Id": "57ac81693ef743bb85ad6c90b061cbc5"
  1153. },
  1154. {
  1155. "m_Id": "a7cdbb3e369147e79a81243adbc0f554"
  1156. },
  1157. {
  1158. "m_Id": "2fda96b53eac47448b190a22f3a1838a"
  1159. }
  1160. ],
  1161. "synonyms": [
  1162. "2",
  1163. "v2",
  1164. "vec2",
  1165. "float2"
  1166. ],
  1167. "m_Precision": 0,
  1168. "m_PreviewExpanded": true,
  1169. "m_DismissedVersion": 0,
  1170. "m_PreviewMode": 0,
  1171. "m_CustomColors": {
  1172. "m_SerializableColors": []
  1173. },
  1174. "m_Value": {
  1175. "x": 0.0,
  1176. "y": 0.0
  1177. }
  1178. }
  1179. {
  1180. "m_SGVersion": 0,
  1181. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1182. "m_ObjectId": "57ac81693ef743bb85ad6c90b061cbc5",
  1183. "m_Id": 1,
  1184. "m_DisplayName": "X",
  1185. "m_SlotType": 0,
  1186. "m_Hidden": false,
  1187. "m_ShaderOutputName": "X",
  1188. "m_StageCapability": 3,
  1189. "m_Value": 0.0,
  1190. "m_DefaultValue": 0.0,
  1191. "m_Labels": []
  1192. }
  1193. {
  1194. "m_SGVersion": 0,
  1195. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1196. "m_ObjectId": "5b65694e51b04b45a5c849c978923d8a",
  1197. "m_Id": 1,
  1198. "m_DisplayName": "G",
  1199. "m_SlotType": 0,
  1200. "m_Hidden": false,
  1201. "m_ShaderOutputName": "G",
  1202. "m_StageCapability": 3,
  1203. "m_Value": 0.0,
  1204. "m_DefaultValue": 0.0,
  1205. "m_Labels": []
  1206. }
  1207. {
  1208. "m_SGVersion": 0,
  1209. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1210. "m_ObjectId": "5b82bfe04f82429984ec395120982d69",
  1211. "m_Id": 1,
  1212. "m_DisplayName": "B",
  1213. "m_SlotType": 0,
  1214. "m_Hidden": false,
  1215. "m_ShaderOutputName": "B",
  1216. "m_StageCapability": 3,
  1217. "m_Value": {
  1218. "x": 0.0,
  1219. "y": 1.0,
  1220. "z": 0.0,
  1221. "w": 0.0
  1222. },
  1223. "m_DefaultValue": {
  1224. "x": 0.0,
  1225. "y": 0.0,
  1226. "z": 0.0,
  1227. "w": 0.0
  1228. }
  1229. }
  1230. {
  1231. "m_SGVersion": 0,
  1232. "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot",
  1233. "m_ObjectId": "5bf70038267d442281e91cd7102268ef",
  1234. "m_Id": 0,
  1235. "m_DisplayName": "Tangent",
  1236. "m_SlotType": 0,
  1237. "m_Hidden": false,
  1238. "m_ShaderOutputName": "Tangent",
  1239. "m_StageCapability": 1,
  1240. "m_Value": {
  1241. "x": 0.0,
  1242. "y": 0.0,
  1243. "z": 0.0
  1244. },
  1245. "m_DefaultValue": {
  1246. "x": 0.0,
  1247. "y": 0.0,
  1248. "z": 0.0
  1249. },
  1250. "m_Labels": [],
  1251. "m_Space": 0
  1252. }
  1253. {
  1254. "m_SGVersion": 0,
  1255. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1256. "m_ObjectId": "5ef55e1dc1a845b9986df281c15a1dcb",
  1257. "m_Id": 0,
  1258. "m_DisplayName": "In",
  1259. "m_SlotType": 0,
  1260. "m_Hidden": false,
  1261. "m_ShaderOutputName": "In",
  1262. "m_StageCapability": 3,
  1263. "m_Value": {
  1264. "x": 0.0,
  1265. "y": 0.0,
  1266. "z": 0.0,
  1267. "w": 0.0
  1268. },
  1269. "m_DefaultValue": {
  1270. "x": 0.0,
  1271. "y": 0.0,
  1272. "z": 0.0,
  1273. "w": 0.0
  1274. }
  1275. }
  1276. {
  1277. "m_SGVersion": 0,
  1278. "m_Type": "UnityEditor.ShaderGraph.GroupData",
  1279. "m_ObjectId": "615aba30429f446ebf8ecf63ac15a6e5",
  1280. "m_Title": "Under The Hood",
  1281. "m_Position": {
  1282. "x": -1191.0001220703125,
  1283. "y": 74.50004577636719
  1284. }
  1285. }
  1286. {
  1287. "m_SGVersion": 0,
  1288. "m_Type": "UnityEditor.ShaderGraph.DotProductNode",
  1289. "m_ObjectId": "64a8c8377d7347e18e02fc8b15672a44",
  1290. "m_Group": {
  1291. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  1292. },
  1293. "m_Name": "Dot Product",
  1294. "m_DrawState": {
  1295. "m_Expanded": true,
  1296. "m_Position": {
  1297. "serializedVersion": "2",
  1298. "x": -988.5000610351563,
  1299. "y": 275.0000305175781,
  1300. "width": 127.49993896484375,
  1301. "height": 117.99990844726563
  1302. }
  1303. },
  1304. "m_Slots": [
  1305. {
  1306. "m_Id": "a35e6079c0ac47158f078ca457901a86"
  1307. },
  1308. {
  1309. "m_Id": "5b82bfe04f82429984ec395120982d69"
  1310. },
  1311. {
  1312. "m_Id": "b1b09f1c4425421887f0be7911a5be71"
  1313. }
  1314. ],
  1315. "synonyms": [
  1316. "scalar product"
  1317. ],
  1318. "m_Precision": 0,
  1319. "m_PreviewExpanded": false,
  1320. "m_DismissedVersion": 0,
  1321. "m_PreviewMode": 0,
  1322. "m_CustomColors": {
  1323. "m_SerializableColors": []
  1324. }
  1325. }
  1326. {
  1327. "m_SGVersion": 0,
  1328. "m_Type": "UnityEditor.ShaderGraph.SquareRootNode",
  1329. "m_ObjectId": "65f038ec0a0c4ac090871eb59a779050",
  1330. "m_Group": {
  1331. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  1332. },
  1333. "m_Name": "Square Root",
  1334. "m_DrawState": {
  1335. "m_Expanded": true,
  1336. "m_Position": {
  1337. "serializedVersion": "2",
  1338. "x": -606.0000610351563,
  1339. "y": 275.0000305175781,
  1340. "width": 127.49984741210938,
  1341. "height": 93.99990844726563
  1342. }
  1343. },
  1344. "m_Slots": [
  1345. {
  1346. "m_Id": "44318a3053ea46f887ce1d77c0dce74a"
  1347. },
  1348. {
  1349. "m_Id": "d57189c0fc2d4d0e9e8a9e671ccc72f9"
  1350. }
  1351. ],
  1352. "synonyms": [
  1353. "sqrt"
  1354. ],
  1355. "m_Precision": 0,
  1356. "m_PreviewExpanded": false,
  1357. "m_DismissedVersion": 0,
  1358. "m_PreviewMode": 0,
  1359. "m_CustomColors": {
  1360. "m_SerializableColors": []
  1361. }
  1362. }
  1363. {
  1364. "m_SGVersion": 0,
  1365. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1366. "m_ObjectId": "6797ac6e8d754708a782814acb8a9a75",
  1367. "m_Group": {
  1368. "m_Id": ""
  1369. },
  1370. "m_Name": "VertexDescription.Normal",
  1371. "m_DrawState": {
  1372. "m_Expanded": true,
  1373. "m_Position": {
  1374. "serializedVersion": "2",
  1375. "x": 0.0,
  1376. "y": 0.0,
  1377. "width": 0.0,
  1378. "height": 0.0
  1379. }
  1380. },
  1381. "m_Slots": [
  1382. {
  1383. "m_Id": "3da4156fca884483ad9b6de50be887ff"
  1384. }
  1385. ],
  1386. "synonyms": [],
  1387. "m_Precision": 0,
  1388. "m_PreviewExpanded": true,
  1389. "m_DismissedVersion": 0,
  1390. "m_PreviewMode": 0,
  1391. "m_CustomColors": {
  1392. "m_SerializableColors": []
  1393. },
  1394. "m_SerializedDescriptor": "VertexDescription.Normal"
  1395. }
  1396. {
  1397. "m_SGVersion": 0,
  1398. "m_Type": "UnityEditor.ShaderGraph.SplitNode",
  1399. "m_ObjectId": "6802b2b823224e709464002ab7d472b7",
  1400. "m_Group": {
  1401. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  1402. },
  1403. "m_Name": "Split",
  1404. "m_DrawState": {
  1405. "m_Expanded": false,
  1406. "m_Position": {
  1407. "serializedVersion": "2",
  1408. "x": -988.5000610351563,
  1409. "y": 143.00001525878907,
  1410. "width": 118.49993896484375,
  1411. "height": 101.00003051757813
  1412. }
  1413. },
  1414. "m_Slots": [
  1415. {
  1416. "m_Id": "5ef55e1dc1a845b9986df281c15a1dcb"
  1417. },
  1418. {
  1419. "m_Id": "1c137a28846242c1a01f8a46273404d2"
  1420. },
  1421. {
  1422. "m_Id": "915d1a9982f84488a4f2e1b0126d3aa7"
  1423. },
  1424. {
  1425. "m_Id": "2be3e2856f1346cabce55de5d296a84c"
  1426. },
  1427. {
  1428. "m_Id": "21e2fe4e3bfb4092ace28575a0f67a9f"
  1429. }
  1430. ],
  1431. "synonyms": [
  1432. "separate"
  1433. ],
  1434. "m_Precision": 0,
  1435. "m_PreviewExpanded": true,
  1436. "m_DismissedVersion": 0,
  1437. "m_PreviewMode": 0,
  1438. "m_CustomColors": {
  1439. "m_SerializableColors": []
  1440. }
  1441. }
  1442. {
  1443. "m_SGVersion": 0,
  1444. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1445. "m_ObjectId": "6934aa19e872468a8703d8bd361e9c2e",
  1446. "m_Id": 1,
  1447. "m_DisplayName": "Out",
  1448. "m_SlotType": 1,
  1449. "m_Hidden": false,
  1450. "m_ShaderOutputName": "Out",
  1451. "m_StageCapability": 3,
  1452. "m_Value": {
  1453. "x": 0.0,
  1454. "y": 0.0,
  1455. "z": 0.0,
  1456. "w": 0.0
  1457. },
  1458. "m_DefaultValue": {
  1459. "x": 0.0,
  1460. "y": 0.0,
  1461. "z": 0.0,
  1462. "w": 0.0
  1463. }
  1464. }
  1465. {
  1466. "m_SGVersion": 0,
  1467. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1468. "m_ObjectId": "6d08583d50674024acd3f2c08493c20f",
  1469. "m_Id": 1,
  1470. "m_DisplayName": "In Min Max",
  1471. "m_SlotType": 0,
  1472. "m_Hidden": false,
  1473. "m_ShaderOutputName": "InMinMax",
  1474. "m_StageCapability": 3,
  1475. "m_Value": {
  1476. "x": 0.0,
  1477. "y": 1.0
  1478. },
  1479. "m_DefaultValue": {
  1480. "x": 0.0,
  1481. "y": 0.0
  1482. },
  1483. "m_Labels": []
  1484. }
  1485. {
  1486. "m_SGVersion": 0,
  1487. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  1488. "m_ObjectId": "6e481ffcb4304bdca6a9c9db916d5491",
  1489. "m_Title": "",
  1490. "m_Content": "This is how the Normal is reconstructed from X and Y",
  1491. "m_TextSize": 0,
  1492. "m_Theme": 0,
  1493. "m_Position": {
  1494. "serializedVersion": "2",
  1495. "x": -766.5000610351563,
  1496. "y": 133.00001525878907,
  1497. "width": 200.0,
  1498. "height": 100.00001525878906
  1499. },
  1500. "m_Group": {
  1501. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  1502. }
  1503. }
  1504. {
  1505. "m_SGVersion": 0,
  1506. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1507. "m_ObjectId": "74ac5b2a66324a768b9cc51e8e9365f7",
  1508. "m_Id": 0,
  1509. "m_DisplayName": "Out",
  1510. "m_SlotType": 1,
  1511. "m_Hidden": false,
  1512. "m_ShaderOutputName": "Out",
  1513. "m_StageCapability": 3,
  1514. "m_Value": {
  1515. "x": 0.0,
  1516. "y": 0.0
  1517. },
  1518. "m_DefaultValue": {
  1519. "x": 0.0,
  1520. "y": 0.0
  1521. },
  1522. "m_Labels": []
  1523. }
  1524. {
  1525. "m_SGVersion": 0,
  1526. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitData",
  1527. "m_ObjectId": "762b7c6bb7454e5b89fb761531313fb0",
  1528. "m_EnableShadowMatte": false,
  1529. "m_DistortionOnly": false
  1530. }
  1531. {
  1532. "m_SGVersion": 0,
  1533. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1534. "m_ObjectId": "7f4a1a79d85f49b08f3d2d67041465f9",
  1535. "m_Id": 2,
  1536. "m_DisplayName": "Y",
  1537. "m_SlotType": 0,
  1538. "m_Hidden": false,
  1539. "m_ShaderOutputName": "Y",
  1540. "m_StageCapability": 3,
  1541. "m_Value": 0.0,
  1542. "m_DefaultValue": 0.0,
  1543. "m_Labels": [
  1544. "Y"
  1545. ]
  1546. }
  1547. {
  1548. "m_SGVersion": 0,
  1549. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1550. "m_ObjectId": "83935d9351734c8fb4a975be41d5219f",
  1551. "m_Id": 5,
  1552. "m_DisplayName": "RGB",
  1553. "m_SlotType": 1,
  1554. "m_Hidden": false,
  1555. "m_ShaderOutputName": "RGB",
  1556. "m_StageCapability": 3,
  1557. "m_Value": {
  1558. "x": 0.0,
  1559. "y": 0.0,
  1560. "z": 0.0
  1561. },
  1562. "m_DefaultValue": {
  1563. "x": 0.0,
  1564. "y": 0.0,
  1565. "z": 0.0
  1566. },
  1567. "m_Labels": []
  1568. }
  1569. {
  1570. "m_SGVersion": 0,
  1571. "m_Type": "UnityEditor.ShaderGraph.GroupData",
  1572. "m_ObjectId": "87067ddff13d42c784d6d00b30d9b8ce",
  1573. "m_Title": "The Basics",
  1574. "m_Position": {
  1575. "x": -2160.500244140625,
  1576. "y": 74.50004577636719
  1577. }
  1578. }
  1579. {
  1580. "m_SGVersion": 0,
  1581. "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInUnlitSubTarget",
  1582. "m_ObjectId": "878b9d93d6f24f25acf6acf8519c921b"
  1583. }
  1584. {
  1585. "m_SGVersion": 0,
  1586. "m_Type": "UnityEditor.ShaderGraph.CategoryData",
  1587. "m_ObjectId": "883cf820b2cb480094218595d39b77eb",
  1588. "m_Name": "",
  1589. "m_ChildObjectList": []
  1590. }
  1591. {
  1592. "m_SGVersion": 0,
  1593. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1594. "m_ObjectId": "89a2fe9a48b84a7bb45ef17adb41e2b5",
  1595. "m_Id": 0,
  1596. "m_DisplayName": "R",
  1597. "m_SlotType": 0,
  1598. "m_Hidden": false,
  1599. "m_ShaderOutputName": "R",
  1600. "m_StageCapability": 3,
  1601. "m_Value": 0.0,
  1602. "m_DefaultValue": 0.0,
  1603. "m_Labels": []
  1604. }
  1605. {
  1606. "m_SGVersion": 0,
  1607. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1608. "m_ObjectId": "915d1a9982f84488a4f2e1b0126d3aa7",
  1609. "m_Id": 2,
  1610. "m_DisplayName": "G",
  1611. "m_SlotType": 1,
  1612. "m_Hidden": false,
  1613. "m_ShaderOutputName": "G",
  1614. "m_StageCapability": 3,
  1615. "m_Value": 0.0,
  1616. "m_DefaultValue": 0.0,
  1617. "m_Labels": []
  1618. }
  1619. {
  1620. "m_SGVersion": 0,
  1621. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  1622. "m_ObjectId": "9340ceef2ab34edfa58c7f0933200911",
  1623. "m_Title": "",
  1624. "m_Content": "This texture has the X and Y data from a normal map in the red and green channels. The Z and alpha channels have other data in them. We can use the Normal Reconstruct Z Node to create a normal with just the X and Y.",
  1625. "m_TextSize": 0,
  1626. "m_Theme": 0,
  1627. "m_Position": {
  1628. "serializedVersion": "2",
  1629. "x": -2132.000244140625,
  1630. "y": 314.5000305175781,
  1631. "width": 144.5001220703125,
  1632. "height": 173.50003051757813
  1633. },
  1634. "m_Group": {
  1635. "m_Id": "87067ddff13d42c784d6d00b30d9b8ce"
  1636. }
  1637. }
  1638. {
  1639. "m_SGVersion": 0,
  1640. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1641. "m_ObjectId": "93727a8a03224de1949baa145f0625f9",
  1642. "m_Id": 4,
  1643. "m_DisplayName": "R",
  1644. "m_SlotType": 1,
  1645. "m_Hidden": false,
  1646. "m_ShaderOutputName": "R",
  1647. "m_StageCapability": 2,
  1648. "m_Value": 0.0,
  1649. "m_DefaultValue": 0.0,
  1650. "m_Labels": []
  1651. }
  1652. {
  1653. "m_SGVersion": 0,
  1654. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1655. "m_ObjectId": "9c312ecff26542dba24b6682e4686b07",
  1656. "m_Group": {
  1657. "m_Id": ""
  1658. },
  1659. "m_Name": "SurfaceDescription.Alpha",
  1660. "m_DrawState": {
  1661. "m_Expanded": true,
  1662. "m_Position": {
  1663. "serializedVersion": "2",
  1664. "x": 0.0,
  1665. "y": 0.0,
  1666. "width": 0.0,
  1667. "height": 0.0
  1668. }
  1669. },
  1670. "m_Slots": [
  1671. {
  1672. "m_Id": "3e805b83329a4f7ab39d22e4c1219ebc"
  1673. }
  1674. ],
  1675. "synonyms": [],
  1676. "m_Precision": 0,
  1677. "m_PreviewExpanded": true,
  1678. "m_DismissedVersion": 0,
  1679. "m_PreviewMode": 0,
  1680. "m_CustomColors": {
  1681. "m_SerializableColors": []
  1682. },
  1683. "m_SerializedDescriptor": "SurfaceDescription.Alpha"
  1684. }
  1685. {
  1686. "m_SGVersion": 0,
  1687. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1688. "m_ObjectId": "9f244797bcdd470287373e90963b0489",
  1689. "m_Id": 2,
  1690. "m_DisplayName": "Out Min Max",
  1691. "m_SlotType": 0,
  1692. "m_Hidden": false,
  1693. "m_ShaderOutputName": "OutMinMax",
  1694. "m_StageCapability": 3,
  1695. "m_Value": {
  1696. "x": -1.0,
  1697. "y": 1.0
  1698. },
  1699. "m_DefaultValue": {
  1700. "x": 0.0,
  1701. "y": 0.0
  1702. },
  1703. "m_Labels": []
  1704. }
  1705. {
  1706. "m_SGVersion": 0,
  1707. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1708. "m_ObjectId": "a35e6079c0ac47158f078ca457901a86",
  1709. "m_Id": 0,
  1710. "m_DisplayName": "A",
  1711. "m_SlotType": 0,
  1712. "m_Hidden": false,
  1713. "m_ShaderOutputName": "A",
  1714. "m_StageCapability": 3,
  1715. "m_Value": {
  1716. "x": 0.0,
  1717. "y": 0.0,
  1718. "z": 0.0,
  1719. "w": 0.0
  1720. },
  1721. "m_DefaultValue": {
  1722. "x": 0.0,
  1723. "y": 0.0,
  1724. "z": 0.0,
  1725. "w": 0.0
  1726. }
  1727. }
  1728. {
  1729. "m_SGVersion": 0,
  1730. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1731. "m_ObjectId": "a7cdbb3e369147e79a81243adbc0f554",
  1732. "m_Id": 2,
  1733. "m_DisplayName": "Y",
  1734. "m_SlotType": 0,
  1735. "m_Hidden": false,
  1736. "m_ShaderOutputName": "Y",
  1737. "m_StageCapability": 3,
  1738. "m_Value": 0.0,
  1739. "m_DefaultValue": 0.0,
  1740. "m_Labels": [
  1741. "Y"
  1742. ]
  1743. }
  1744. {
  1745. "m_SGVersion": 0,
  1746. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1747. "m_ObjectId": "ad6bf7b553024bf8894f93e9c857c2d2",
  1748. "m_Id": 0,
  1749. "m_DisplayName": "In",
  1750. "m_SlotType": 0,
  1751. "m_Hidden": false,
  1752. "m_ShaderOutputName": "In",
  1753. "m_StageCapability": 3,
  1754. "m_Value": {
  1755. "x": 0.0,
  1756. "y": 0.0
  1757. },
  1758. "m_DefaultValue": {
  1759. "x": 0.0,
  1760. "y": 0.0
  1761. },
  1762. "m_Labels": []
  1763. }
  1764. {
  1765. "m_SGVersion": 0,
  1766. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1767. "m_ObjectId": "b1b09f1c4425421887f0be7911a5be71",
  1768. "m_Id": 2,
  1769. "m_DisplayName": "Out",
  1770. "m_SlotType": 1,
  1771. "m_Hidden": false,
  1772. "m_ShaderOutputName": "Out",
  1773. "m_StageCapability": 3,
  1774. "m_Value": 0.0,
  1775. "m_DefaultValue": 0.0,
  1776. "m_Labels": []
  1777. }
  1778. {
  1779. "m_SGVersion": 0,
  1780. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  1781. "m_ObjectId": "b28a36f1ab344521a37827b648f3769a",
  1782. "m_Id": 2,
  1783. "m_DisplayName": "Out",
  1784. "m_SlotType": 1,
  1785. "m_Hidden": false,
  1786. "m_ShaderOutputName": "Out",
  1787. "m_StageCapability": 3,
  1788. "m_Value": {
  1789. "x": 0.0,
  1790. "y": 0.0,
  1791. "z": 0.0
  1792. },
  1793. "m_DefaultValue": {
  1794. "x": 0.0,
  1795. "y": 0.0,
  1796. "z": 0.0
  1797. },
  1798. "m_Labels": []
  1799. }
  1800. {
  1801. "m_SGVersion": 0,
  1802. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1803. "m_ObjectId": "b4ba844d8b314c068a54739b0d50f289",
  1804. "m_Group": {
  1805. "m_Id": ""
  1806. },
  1807. "m_Name": "VertexDescription.Tangent",
  1808. "m_DrawState": {
  1809. "m_Expanded": true,
  1810. "m_Position": {
  1811. "serializedVersion": "2",
  1812. "x": 0.0,
  1813. "y": 0.0,
  1814. "width": 0.0,
  1815. "height": 0.0
  1816. }
  1817. },
  1818. "m_Slots": [
  1819. {
  1820. "m_Id": "5bf70038267d442281e91cd7102268ef"
  1821. }
  1822. ],
  1823. "synonyms": [],
  1824. "m_Precision": 0,
  1825. "m_PreviewExpanded": true,
  1826. "m_DismissedVersion": 0,
  1827. "m_PreviewMode": 0,
  1828. "m_CustomColors": {
  1829. "m_SerializableColors": []
  1830. },
  1831. "m_SerializedDescriptor": "VertexDescription.Tangent"
  1832. }
  1833. {
  1834. "m_SGVersion": 0,
  1835. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData",
  1836. "m_ObjectId": "b5cd602add3c41fea18f8a4768c28063",
  1837. "m_MaterialNeedsUpdateHash": 0,
  1838. "m_SurfaceType": 0,
  1839. "m_RenderingPass": 1,
  1840. "m_BlendMode": 0,
  1841. "m_ZTest": 4,
  1842. "m_ZWrite": false,
  1843. "m_TransparentCullMode": 2,
  1844. "m_OpaqueCullMode": 2,
  1845. "m_SortPriority": 0,
  1846. "m_AlphaTest": false,
  1847. "m_TransparentDepthPrepass": false,
  1848. "m_TransparentDepthPostpass": false,
  1849. "m_SupportLodCrossFade": false,
  1850. "m_DoubleSidedMode": 0,
  1851. "m_DOTSInstancing": false,
  1852. "m_CustomVelocity": false,
  1853. "m_Tessellation": false,
  1854. "m_TessellationMode": 0,
  1855. "m_TessellationFactorMinDistance": 20.0,
  1856. "m_TessellationFactorMaxDistance": 50.0,
  1857. "m_TessellationFactorTriangleSize": 100.0,
  1858. "m_TessellationShapeFactor": 0.75,
  1859. "m_TessellationBackFaceCullEpsilon": -0.25,
  1860. "m_TessellationMaxDisplacement": 0.009999999776482582,
  1861. "m_DebugSymbols": false,
  1862. "m_Version": 2,
  1863. "inspectorFoldoutMask": 0
  1864. }
  1865. {
  1866. "m_SGVersion": 0,
  1867. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1868. "m_ObjectId": "bc31bd8610f9444494fd7f029fba3dfa",
  1869. "m_Id": 0,
  1870. "m_DisplayName": "In",
  1871. "m_SlotType": 0,
  1872. "m_Hidden": false,
  1873. "m_ShaderOutputName": "In",
  1874. "m_StageCapability": 3,
  1875. "m_Value": {
  1876. "x": 0.0,
  1877. "y": 0.0,
  1878. "z": 0.0,
  1879. "w": 0.0
  1880. },
  1881. "m_DefaultValue": {
  1882. "x": 0.0,
  1883. "y": 0.0,
  1884. "z": 0.0,
  1885. "w": 0.0
  1886. }
  1887. }
  1888. {
  1889. "m_SGVersion": 0,
  1890. "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
  1891. "m_ObjectId": "bfbf6f3097ac4ae19facd132d2e6fcd1",
  1892. "m_Id": 0,
  1893. "m_DisplayName": "Position",
  1894. "m_SlotType": 0,
  1895. "m_Hidden": false,
  1896. "m_ShaderOutputName": "Position",
  1897. "m_StageCapability": 1,
  1898. "m_Value": {
  1899. "x": 0.0,
  1900. "y": 0.0,
  1901. "z": 0.0
  1902. },
  1903. "m_DefaultValue": {
  1904. "x": 0.0,
  1905. "y": 0.0,
  1906. "z": 0.0
  1907. },
  1908. "m_Labels": [],
  1909. "m_Space": 0
  1910. }
  1911. {
  1912. "m_SGVersion": 0,
  1913. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1914. "m_ObjectId": "c7c26a9dd01a4fdfa7338f34d9a01532",
  1915. "m_Id": 0,
  1916. "m_DisplayName": "In",
  1917. "m_SlotType": 0,
  1918. "m_Hidden": false,
  1919. "m_ShaderOutputName": "In",
  1920. "m_StageCapability": 3,
  1921. "m_Value": {
  1922. "x": 1.0,
  1923. "y": 1.0,
  1924. "z": 1.0,
  1925. "w": 1.0
  1926. },
  1927. "m_DefaultValue": {
  1928. "x": 0.0,
  1929. "y": 0.0,
  1930. "z": 0.0,
  1931. "w": 0.0
  1932. }
  1933. }
  1934. {
  1935. "m_SGVersion": 0,
  1936. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  1937. "m_ObjectId": "c8342633d91548e4849963769e0a8df7",
  1938. "m_Title": "",
  1939. "m_Content": "Finally, we use the Normal Reconstruct Z Node to create our Normal. We pass in a Vector 2 that contains the expaned data from our red and green channels, and we get a Normal as the result.",
  1940. "m_TextSize": 0,
  1941. "m_Theme": 0,
  1942. "m_Position": {
  1943. "serializedVersion": "2",
  1944. "x": -1459.5001220703125,
  1945. "y": 416.0000305175781,
  1946. "width": 200.0,
  1947. "height": 107.50003051757813
  1948. },
  1949. "m_Group": {
  1950. "m_Id": "87067ddff13d42c784d6d00b30d9b8ce"
  1951. }
  1952. }
  1953. {
  1954. "m_SGVersion": 0,
  1955. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  1956. "m_ObjectId": "c88532443058483f92a8e4b0bf2b55ce",
  1957. "m_Title": "Normal Reconstruct Z Node",
  1958. "m_Content": "The Normal Reconstruct Z Node calculates the Z component of a normal vector when given the X and Y components.\n\nIt's useful because in some cases you only want to store the X and Y components of the normal in a texture so that you can use the other texture channels for other data. Using this node, you can reconstruct the full normal using only the first two components.\n\nThis type of texture packing is a good way to reduce the number of texture samples your shader is using to improve shader performance.",
  1959. "m_TextSize": 0,
  1960. "m_Theme": 0,
  1961. "m_Position": {
  1962. "serializedVersion": "2",
  1963. "x": -1434.5001220703125,
  1964. "y": -201.50001525878907,
  1965. "width": 284.0,
  1966. "height": 224.00001525878907
  1967. },
  1968. "m_Group": {
  1969. "m_Id": ""
  1970. }
  1971. }
  1972. {
  1973. "m_SGVersion": 0,
  1974. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1975. "m_ObjectId": "cbfa4eac89dd48aa97822ca476144a9d",
  1976. "m_Id": 0,
  1977. "m_DisplayName": "In",
  1978. "m_SlotType": 0,
  1979. "m_Hidden": false,
  1980. "m_ShaderOutputName": "In",
  1981. "m_StageCapability": 3,
  1982. "m_Value": {
  1983. "x": -1.0,
  1984. "y": -1.0,
  1985. "z": -1.0,
  1986. "w": -1.0
  1987. },
  1988. "m_DefaultValue": {
  1989. "x": 0.0,
  1990. "y": 0.0,
  1991. "z": 0.0,
  1992. "w": 0.0
  1993. }
  1994. }
  1995. {
  1996. "m_SGVersion": 2,
  1997. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget",
  1998. "m_ObjectId": "d0f2a344521a46b5b103f9ee30df0369"
  1999. }
  2000. {
  2001. "m_SGVersion": 0,
  2002. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  2003. "m_ObjectId": "d25c2ad03f984a76941d1fbd2ead6191",
  2004. "m_Id": 6,
  2005. "m_DisplayName": "RG",
  2006. "m_SlotType": 1,
  2007. "m_Hidden": false,
  2008. "m_ShaderOutputName": "RG",
  2009. "m_StageCapability": 3,
  2010. "m_Value": {
  2011. "x": 0.0,
  2012. "y": 0.0
  2013. },
  2014. "m_DefaultValue": {
  2015. "x": 0.0,
  2016. "y": 0.0
  2017. },
  2018. "m_Labels": []
  2019. }
  2020. {
  2021. "m_SGVersion": 0,
  2022. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2023. "m_ObjectId": "d2fb8f1f903d425ca3713a2ca2f3e7b0",
  2024. "m_Id": 7,
  2025. "m_DisplayName": "A",
  2026. "m_SlotType": 1,
  2027. "m_Hidden": false,
  2028. "m_ShaderOutputName": "A",
  2029. "m_StageCapability": 2,
  2030. "m_Value": 0.0,
  2031. "m_DefaultValue": 0.0,
  2032. "m_Labels": []
  2033. }
  2034. {
  2035. "m_SGVersion": 0,
  2036. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  2037. "m_ObjectId": "d3d192fee4b349e1bb744af10e655973",
  2038. "m_Id": 4,
  2039. "m_DisplayName": "RGBA",
  2040. "m_SlotType": 1,
  2041. "m_Hidden": false,
  2042. "m_ShaderOutputName": "RGBA",
  2043. "m_StageCapability": 3,
  2044. "m_Value": {
  2045. "x": 0.0,
  2046. "y": 0.0,
  2047. "z": 0.0,
  2048. "w": 0.0
  2049. },
  2050. "m_DefaultValue": {
  2051. "x": 0.0,
  2052. "y": 0.0,
  2053. "z": 0.0,
  2054. "w": 0.0
  2055. },
  2056. "m_Labels": []
  2057. }
  2058. {
  2059. "m_SGVersion": 0,
  2060. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  2061. "m_ObjectId": "d57189c0fc2d4d0e9e8a9e671ccc72f9",
  2062. "m_Id": 1,
  2063. "m_DisplayName": "Out",
  2064. "m_SlotType": 1,
  2065. "m_Hidden": false,
  2066. "m_ShaderOutputName": "Out",
  2067. "m_StageCapability": 3,
  2068. "m_Value": {
  2069. "x": 0.0,
  2070. "y": 0.0,
  2071. "z": 0.0,
  2072. "w": 0.0
  2073. },
  2074. "m_DefaultValue": {
  2075. "x": 0.0,
  2076. "y": 0.0,
  2077. "z": 0.0,
  2078. "w": 0.0
  2079. }
  2080. }
  2081. {
  2082. "m_SGVersion": 0,
  2083. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  2084. "m_ObjectId": "d7b0ff4480f146228ff28b88a4ba9411",
  2085. "m_Group": {
  2086. "m_Id": "87067ddff13d42c784d6d00b30d9b8ce"
  2087. },
  2088. "m_Name": "Sample Texture 2D",
  2089. "m_DrawState": {
  2090. "m_Expanded": false,
  2091. "m_Position": {
  2092. "serializedVersion": "2",
  2093. "x": -2135.500244140625,
  2094. "y": 133.00003051757813,
  2095. "width": 155.0001220703125,
  2096. "height": 177.99993896484376
  2097. }
  2098. },
  2099. "m_Slots": [
  2100. {
  2101. "m_Id": "47b10d85163b424191ca6650786c23d2"
  2102. },
  2103. {
  2104. "m_Id": "93727a8a03224de1949baa145f0625f9"
  2105. },
  2106. {
  2107. "m_Id": "1001d6f55f7343adbf91af6d511db76c"
  2108. },
  2109. {
  2110. "m_Id": "d8a23d610dd843648ab824f0221849d1"
  2111. },
  2112. {
  2113. "m_Id": "d2fb8f1f903d425ca3713a2ca2f3e7b0"
  2114. },
  2115. {
  2116. "m_Id": "090ea3d1f61a46d29798b1d6259e6a5d"
  2117. },
  2118. {
  2119. "m_Id": "ebc5618987df4d01a056eb5c1b7f21a5"
  2120. },
  2121. {
  2122. "m_Id": "e5907eb4d29c4751adda649556fbccf9"
  2123. }
  2124. ],
  2125. "synonyms": [
  2126. "tex2d"
  2127. ],
  2128. "m_Precision": 0,
  2129. "m_PreviewExpanded": false,
  2130. "m_DismissedVersion": 0,
  2131. "m_PreviewMode": 0,
  2132. "m_CustomColors": {
  2133. "m_SerializableColors": []
  2134. },
  2135. "m_TextureType": 0,
  2136. "m_NormalMapSpace": 0,
  2137. "m_EnableGlobalMipBias": true,
  2138. "m_MipSamplingMode": 0
  2139. }
  2140. {
  2141. "m_SGVersion": 0,
  2142. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2143. "m_ObjectId": "d8a23d610dd843648ab824f0221849d1",
  2144. "m_Id": 6,
  2145. "m_DisplayName": "B",
  2146. "m_SlotType": 1,
  2147. "m_Hidden": false,
  2148. "m_ShaderOutputName": "B",
  2149. "m_StageCapability": 2,
  2150. "m_Value": 0.0,
  2151. "m_DefaultValue": 0.0,
  2152. "m_Labels": []
  2153. }
  2154. {
  2155. "m_SGVersion": 0,
  2156. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  2157. "m_ObjectId": "da1439c4438643ed8d4fbc67257a0ee4",
  2158. "m_Group": {
  2159. "m_Id": ""
  2160. },
  2161. "m_Name": "VertexDescription.Position",
  2162. "m_DrawState": {
  2163. "m_Expanded": true,
  2164. "m_Position": {
  2165. "serializedVersion": "2",
  2166. "x": 0.0,
  2167. "y": 0.0,
  2168. "width": 0.0,
  2169. "height": 0.0
  2170. }
  2171. },
  2172. "m_Slots": [
  2173. {
  2174. "m_Id": "bfbf6f3097ac4ae19facd132d2e6fcd1"
  2175. }
  2176. ],
  2177. "synonyms": [],
  2178. "m_Precision": 0,
  2179. "m_PreviewExpanded": true,
  2180. "m_DismissedVersion": 0,
  2181. "m_PreviewMode": 0,
  2182. "m_CustomColors": {
  2183. "m_SerializableColors": []
  2184. },
  2185. "m_SerializedDescriptor": "VertexDescription.Position"
  2186. }
  2187. {
  2188. "m_SGVersion": 0,
  2189. "m_Type": "UnityEditor.ShaderGraph.RemapNode",
  2190. "m_ObjectId": "df0f0a8f3e0c40158670ca44a6b39dc3",
  2191. "m_Group": {
  2192. "m_Id": "87067ddff13d42c784d6d00b30d9b8ce"
  2193. },
  2194. "m_Name": "Remap",
  2195. "m_DrawState": {
  2196. "m_Expanded": true,
  2197. "m_Position": {
  2198. "serializedVersion": "2",
  2199. "x": -1710.0001220703125,
  2200. "y": 133.00003051757813,
  2201. "width": 187.0,
  2202. "height": 142.0
  2203. }
  2204. },
  2205. "m_Slots": [
  2206. {
  2207. "m_Id": "cbfa4eac89dd48aa97822ca476144a9d"
  2208. },
  2209. {
  2210. "m_Id": "6d08583d50674024acd3f2c08493c20f"
  2211. },
  2212. {
  2213. "m_Id": "9f244797bcdd470287373e90963b0489"
  2214. },
  2215. {
  2216. "m_Id": "efb78ffaad854c1caa31a64e6fff74e9"
  2217. }
  2218. ],
  2219. "synonyms": [],
  2220. "m_Precision": 0,
  2221. "m_PreviewExpanded": false,
  2222. "m_DismissedVersion": 0,
  2223. "m_PreviewMode": 0,
  2224. "m_CustomColors": {
  2225. "m_SerializableColors": []
  2226. }
  2227. }
  2228. {
  2229. "m_SGVersion": 0,
  2230. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  2231. "m_ObjectId": "e104587ec8694bc1b2280337f9df02f8",
  2232. "m_Title": "",
  2233. "m_Content": "First we combine the red and green channels together into a Vector 2.",
  2234. "m_TextSize": 0,
  2235. "m_Theme": 0,
  2236. "m_Position": {
  2237. "serializedVersion": "2",
  2238. "x": -1961.0001220703125,
  2239. "y": 236.00003051757813,
  2240. "width": 108.0,
  2241. "height": 100.0
  2242. },
  2243. "m_Group": {
  2244. "m_Id": "87067ddff13d42c784d6d00b30d9b8ce"
  2245. }
  2246. }
  2247. {
  2248. "m_SGVersion": 0,
  2249. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData",
  2250. "m_ObjectId": "e508612a670e4dfd9cb63141578daecf",
  2251. "m_Distortion": false,
  2252. "m_DistortionMode": 0,
  2253. "m_DistortionDepthTest": true,
  2254. "m_AddPrecomputedVelocity": false,
  2255. "m_TransparentWritesMotionVec": false,
  2256. "m_DepthOffset": false,
  2257. "m_ConservativeDepthOffset": false,
  2258. "m_TransparencyFog": true,
  2259. "m_AlphaTestShadow": false,
  2260. "m_BackThenFrontRendering": false,
  2261. "m_TransparentDepthPrepass": false,
  2262. "m_TransparentDepthPostpass": false,
  2263. "m_TransparentPerPixelSorting": false,
  2264. "m_SupportLodCrossFade": false
  2265. }
  2266. {
  2267. "m_SGVersion": 0,
  2268. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  2269. "m_ObjectId": "e5907eb4d29c4751adda649556fbccf9",
  2270. "m_Id": 3,
  2271. "m_DisplayName": "Sampler",
  2272. "m_SlotType": 0,
  2273. "m_Hidden": false,
  2274. "m_ShaderOutputName": "Sampler",
  2275. "m_StageCapability": 3,
  2276. "m_BareResource": false
  2277. }
  2278. {
  2279. "m_SGVersion": 0,
  2280. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  2281. "m_ObjectId": "eabe1901e13542878b2ba7dd0193ea86",
  2282. "m_Title": "",
  2283. "m_Content": "Then we use the Remap node to exand the range of our data from 0 to 1 to the -1 to 1 range. Normally, if our texture is set to be a normal map, this is done automatically, but since our texture is not set to be a normal map, we have to do this manually here.",
  2284. "m_TextSize": 0,
  2285. "m_Theme": 0,
  2286. "m_Position": {
  2287. "serializedVersion": "2",
  2288. "x": -1734.5001220703125,
  2289. "y": 279.0000305175781,
  2290. "width": 200.0,
  2291. "height": 146.5
  2292. },
  2293. "m_Group": {
  2294. "m_Id": "87067ddff13d42c784d6d00b30d9b8ce"
  2295. }
  2296. }
  2297. {
  2298. "m_SGVersion": 0,
  2299. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  2300. "m_ObjectId": "ebc5618987df4d01a056eb5c1b7f21a5",
  2301. "m_Id": 2,
  2302. "m_DisplayName": "UV",
  2303. "m_SlotType": 0,
  2304. "m_Hidden": false,
  2305. "m_ShaderOutputName": "UV",
  2306. "m_StageCapability": 3,
  2307. "m_Value": {
  2308. "x": 0.0,
  2309. "y": 0.0
  2310. },
  2311. "m_DefaultValue": {
  2312. "x": 0.0,
  2313. "y": 0.0
  2314. },
  2315. "m_Labels": [],
  2316. "m_Channel": 0
  2317. }
  2318. {
  2319. "m_SGVersion": 0,
  2320. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  2321. "m_ObjectId": "efb78ffaad854c1caa31a64e6fff74e9",
  2322. "m_Id": 3,
  2323. "m_DisplayName": "Out",
  2324. "m_SlotType": 1,
  2325. "m_Hidden": false,
  2326. "m_ShaderOutputName": "Out",
  2327. "m_StageCapability": 3,
  2328. "m_Value": {
  2329. "x": 0.0,
  2330. "y": 0.0,
  2331. "z": 0.0,
  2332. "w": 0.0
  2333. },
  2334. "m_DefaultValue": {
  2335. "x": 0.0,
  2336. "y": 0.0,
  2337. "z": 0.0,
  2338. "w": 0.0
  2339. }
  2340. }
  2341. {
  2342. "m_SGVersion": 0,
  2343. "m_Type": "UnityEditor.ShaderGraph.NormalReconstructZNode",
  2344. "m_ObjectId": "f1352afad7e84d53b0e9b3ff5cb60b9b",
  2345. "m_Group": {
  2346. "m_Id": ""
  2347. },
  2348. "m_Name": "Normal Reconstruct Z",
  2349. "m_DrawState": {
  2350. "m_Expanded": true,
  2351. "m_Position": {
  2352. "serializedVersion": "2",
  2353. "x": -997.5001220703125,
  2354. "y": -191.00006103515626,
  2355. "width": 169.9998779296875,
  2356. "height": 94.0000228881836
  2357. }
  2358. },
  2359. "m_Slots": [
  2360. {
  2361. "m_Id": "565bd5b8249f4906b69293b92986e56c"
  2362. },
  2363. {
  2364. "m_Id": "10c8e6622fd54b739615934b1748a022"
  2365. }
  2366. ],
  2367. "synonyms": [
  2368. "derive z"
  2369. ],
  2370. "m_Precision": 0,
  2371. "m_PreviewExpanded": false,
  2372. "m_DismissedVersion": 0,
  2373. "m_PreviewMode": 0,
  2374. "m_CustomColors": {
  2375. "m_SerializableColors": []
  2376. }
  2377. }
  2378. {
  2379. "m_SGVersion": 0,
  2380. "m_Type": "UnityEditor.ShaderGraph.OneMinusNode",
  2381. "m_ObjectId": "f3540c81e63b471f94e89ce40b887558",
  2382. "m_Group": {
  2383. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  2384. },
  2385. "m_Name": "One Minus",
  2386. "m_DrawState": {
  2387. "m_Expanded": true,
  2388. "m_Position": {
  2389. "serializedVersion": "2",
  2390. "x": -733.5001220703125,
  2391. "y": 275.0000305175781,
  2392. "width": 127.50006103515625,
  2393. "height": 93.99990844726563
  2394. }
  2395. },
  2396. "m_Slots": [
  2397. {
  2398. "m_Id": "c7c26a9dd01a4fdfa7338f34d9a01532"
  2399. },
  2400. {
  2401. "m_Id": "6934aa19e872468a8703d8bd361e9c2e"
  2402. }
  2403. ],
  2404. "synonyms": [
  2405. "complement",
  2406. "invert",
  2407. "opposite"
  2408. ],
  2409. "m_Precision": 0,
  2410. "m_PreviewExpanded": false,
  2411. "m_DismissedVersion": 0,
  2412. "m_PreviewMode": 0,
  2413. "m_CustomColors": {
  2414. "m_SerializableColors": []
  2415. }
  2416. }
  2417. {
  2418. "m_SGVersion": 0,
  2419. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  2420. "m_ObjectId": "f7d32794429f475183535d91754dafab",
  2421. "m_Title": "",
  2422. "m_Content": "In",
  2423. "m_TextSize": 0,
  2424. "m_Theme": 0,
  2425. "m_Position": {
  2426. "serializedVersion": "2",
  2427. "x": -1156.5001220703125,
  2428. "y": 189.50001525878907,
  2429. "width": 80.0,
  2430. "height": 100.00001525878906
  2431. },
  2432. "m_Group": {
  2433. "m_Id": "615aba30429f446ebf8ecf63ac15a6e5"
  2434. }
  2435. }
  2436. {
  2437. "m_SGVersion": 0,
  2438. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget",
  2439. "m_ObjectId": "f86723075c27450f982e6a3b994e4859",
  2440. "m_ActiveSubTarget": {
  2441. "m_Id": "004dc390bc7b4cde8e5cb6f913c7b2b5"
  2442. },
  2443. "m_Datas": [
  2444. {
  2445. "m_Id": "e508612a670e4dfd9cb63141578daecf"
  2446. },
  2447. {
  2448. "m_Id": "b5cd602add3c41fea18f8a4768c28063"
  2449. },
  2450. {
  2451. "m_Id": "762b7c6bb7454e5b89fb761531313fb0"
  2452. }
  2453. ],
  2454. "m_CustomEditorGUI": "",
  2455. "m_SupportVFX": false,
  2456. "m_SupportLineRendering": false
  2457. }