default-2022.dwlt 192 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123
  1. %YAML 1.1
  2. %TAG !u! tag:yousandi.cn,2023:
  3. --- !u!114 &1
  4. MonoBehaviour:
  5. m_ObjectHideFlags: 52
  6. m_CorrespondingSourceObject: {fileID: 0}
  7. m_PrefabInstance: {fileID: 0}
  8. m_PrefabAsset: {fileID: 0}
  9. m_GameObject: {fileID: 0}
  10. m_Enabled: 1
  11. m_EditorHideFlags: 1
  12. m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0}
  13. m_Name:
  14. m_EditorClassIdentifier:
  15. m_PixelRect:
  16. serializedVersion: 2
  17. x: -205.33334
  18. y: 186
  19. width: 2560
  20. height: 1349.3334
  21. m_ShowMode: 4
  22. m_Title: Inspector
  23. m_RootView: {fileID: 6}
  24. m_MinSize: {x: 875, y: 300}
  25. m_MaxSize: {x: 10000, y: 10000}
  26. m_Maximized: 0
  27. --- !u!114 &2
  28. MonoBehaviour:
  29. m_ObjectHideFlags: 52
  30. m_CorrespondingSourceObject: {fileID: 0}
  31. m_PrefabInstance: {fileID: 0}
  32. m_PrefabAsset: {fileID: 0}
  33. m_GameObject: {fileID: 0}
  34. m_Enabled: 1
  35. m_EditorHideFlags: 0
  36. m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
  37. m_Name: ProjectBrowser
  38. m_EditorClassIdentifier:
  39. m_Children: []
  40. m_Position:
  41. serializedVersion: 2
  42. x: 0
  43. y: 708.6667
  44. width: 968.6667
  45. height: 590.6667
  46. m_MinSize: {x: 232, y: 271}
  47. m_MaxSize: {x: 10002, y: 10021}
  48. m_ActualView: {fileID: 19}
  49. m_Panes:
  50. - {fileID: 19}
  51. m_Selected: 0
  52. m_LastSelected: 0
  53. --- !u!114 &3
  54. MonoBehaviour:
  55. m_ObjectHideFlags: 52
  56. m_CorrespondingSourceObject: {fileID: 0}
  57. m_PrefabInstance: {fileID: 0}
  58. m_PrefabAsset: {fileID: 0}
  59. m_GameObject: {fileID: 0}
  60. m_Enabled: 1
  61. m_EditorHideFlags: 0
  62. m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
  63. m_Name:
  64. m_EditorClassIdentifier:
  65. m_Children:
  66. - {fileID: 11}
  67. - {fileID: 2}
  68. m_Position:
  69. serializedVersion: 2
  70. x: 556.6667
  71. y: 0
  72. width: 968.6667
  73. height: 1299.3334
  74. m_MinSize: {x: 100, y: 100}
  75. m_MaxSize: {x: 8096, y: 16192}
  76. vertical: 1
  77. controlID: 42
  78. draggingID: 0
  79. --- !u!114 &4
  80. MonoBehaviour:
  81. m_ObjectHideFlags: 52
  82. m_CorrespondingSourceObject: {fileID: 0}
  83. m_PrefabInstance: {fileID: 0}
  84. m_PrefabAsset: {fileID: 0}
  85. m_GameObject: {fileID: 0}
  86. m_Enabled: 1
  87. m_EditorHideFlags: 0
  88. m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
  89. m_Name: InspectorWindow
  90. m_EditorClassIdentifier:
  91. m_Children: []
  92. m_Position:
  93. serializedVersion: 2
  94. x: 2016
  95. y: 0
  96. width: 544
  97. height: 1299.3334
  98. m_MinSize: {x: 276, y: 71}
  99. m_MaxSize: {x: 4001, y: 4021}
  100. m_ActualView: {fileID: 18}
  101. m_Panes:
  102. - {fileID: 18}
  103. - {fileID: 13}
  104. m_Selected: 0
  105. m_LastSelected: 1
  106. --- !u!114 &5
  107. MonoBehaviour:
  108. m_ObjectHideFlags: 52
  109. m_CorrespondingSourceObject: {fileID: 0}
  110. m_PrefabInstance: {fileID: 0}
  111. m_PrefabAsset: {fileID: 0}
  112. m_GameObject: {fileID: 0}
  113. m_Enabled: 1
  114. m_EditorHideFlags: 0
  115. m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
  116. m_Name: GameView
  117. m_EditorClassIdentifier:
  118. m_Children: []
  119. m_Position:
  120. serializedVersion: 2
  121. x: 0
  122. y: 0
  123. width: 556.6667
  124. height: 1299.3334
  125. m_MinSize: {x: 201, y: 221}
  126. m_MaxSize: {x: 4001, y: 4021}
  127. m_ActualView: {fileID: 20}
  128. m_Panes:
  129. - {fileID: 20}
  130. m_Selected: 0
  131. m_LastSelected: 0
  132. --- !u!114 &6
  133. MonoBehaviour:
  134. m_ObjectHideFlags: 52
  135. m_CorrespondingSourceObject: {fileID: 0}
  136. m_PrefabInstance: {fileID: 0}
  137. m_PrefabAsset: {fileID: 0}
  138. m_GameObject: {fileID: 0}
  139. m_Enabled: 1
  140. m_EditorHideFlags: 1
  141. m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0}
  142. m_Name:
  143. m_EditorClassIdentifier:
  144. m_Children:
  145. - {fileID: 7}
  146. - {fileID: 8}
  147. - {fileID: 9}
  148. m_Position:
  149. serializedVersion: 2
  150. x: 0
  151. y: 0
  152. width: 2560
  153. height: 1349.3334
  154. m_MinSize: {x: 875, y: 300}
  155. m_MaxSize: {x: 10000, y: 10000}
  156. m_UseTopView: 1
  157. m_TopViewHeight: 30
  158. m_UseBottomView: 1
  159. m_BottomViewHeight: 20
  160. --- !u!114 &7
  161. MonoBehaviour:
  162. m_ObjectHideFlags: 52
  163. m_CorrespondingSourceObject: {fileID: 0}
  164. m_PrefabInstance: {fileID: 0}
  165. m_PrefabAsset: {fileID: 0}
  166. m_GameObject: {fileID: 0}
  167. m_Enabled: 1
  168. m_EditorHideFlags: 1
  169. m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0}
  170. m_Name:
  171. m_EditorClassIdentifier:
  172. m_Children: []
  173. m_Position:
  174. serializedVersion: 2
  175. x: 0
  176. y: 0
  177. width: 2560
  178. height: 30
  179. m_MinSize: {x: 0, y: 0}
  180. m_MaxSize: {x: 0, y: 0}
  181. m_LastLoadedLayoutName:
  182. --- !u!114 &8
  183. MonoBehaviour:
  184. m_ObjectHideFlags: 52
  185. m_CorrespondingSourceObject: {fileID: 0}
  186. m_PrefabInstance: {fileID: 0}
  187. m_PrefabAsset: {fileID: 0}
  188. m_GameObject: {fileID: 0}
  189. m_Enabled: 1
  190. m_EditorHideFlags: 1
  191. m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
  192. m_Name:
  193. m_EditorClassIdentifier:
  194. m_Children:
  195. - {fileID: 5}
  196. - {fileID: 3}
  197. - {fileID: 10}
  198. - {fileID: 4}
  199. m_Position:
  200. serializedVersion: 2
  201. x: 0
  202. y: 30
  203. width: 2560
  204. height: 1299.3334
  205. m_MinSize: {x: 400, y: 100}
  206. m_MaxSize: {x: 32384, y: 16192}
  207. vertical: 0
  208. controlID: 41
  209. draggingID: 0
  210. --- !u!114 &9
  211. MonoBehaviour:
  212. m_ObjectHideFlags: 52
  213. m_CorrespondingSourceObject: {fileID: 0}
  214. m_PrefabInstance: {fileID: 0}
  215. m_PrefabAsset: {fileID: 0}
  216. m_GameObject: {fileID: 0}
  217. m_Enabled: 1
  218. m_EditorHideFlags: 1
  219. m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0}
  220. m_Name:
  221. m_EditorClassIdentifier:
  222. m_Children: []
  223. m_Position:
  224. serializedVersion: 2
  225. x: 0
  226. y: 1329.3334
  227. width: 2560
  228. height: 20
  229. m_MinSize: {x: 0, y: 0}
  230. m_MaxSize: {x: 0, y: 0}
  231. --- !u!114 &10
  232. MonoBehaviour:
  233. m_ObjectHideFlags: 52
  234. m_CorrespondingSourceObject: {fileID: 0}
  235. m_PrefabInstance: {fileID: 0}
  236. m_PrefabAsset: {fileID: 0}
  237. m_GameObject: {fileID: 0}
  238. m_Enabled: 1
  239. m_EditorHideFlags: 1
  240. m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
  241. m_Name:
  242. m_EditorClassIdentifier:
  243. m_Children: []
  244. m_Position:
  245. serializedVersion: 2
  246. x: 1525.3334
  247. y: 0
  248. width: 490.66663
  249. height: 1299.3334
  250. m_MinSize: {x: 202, y: 221}
  251. m_MaxSize: {x: 4002, y: 4021}
  252. m_ActualView: {fileID: 17}
  253. m_Panes:
  254. - {fileID: 17}
  255. m_Selected: 0
  256. m_LastSelected: 0
  257. --- !u!114 &11
  258. MonoBehaviour:
  259. m_ObjectHideFlags: 52
  260. m_CorrespondingSourceObject: {fileID: 0}
  261. m_PrefabInstance: {fileID: 0}
  262. m_PrefabAsset: {fileID: 0}
  263. m_GameObject: {fileID: 0}
  264. m_Enabled: 1
  265. m_EditorHideFlags: 1
  266. m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
  267. m_Name: SceneView
  268. m_EditorClassIdentifier:
  269. m_Children: []
  270. m_Position:
  271. serializedVersion: 2
  272. x: 0
  273. y: 0
  274. width: 968.6667
  275. height: 708.6667
  276. m_MinSize: {x: 202, y: 221}
  277. m_MaxSize: {x: 4002, y: 4021}
  278. m_ActualView: {fileID: 21}
  279. m_Panes:
  280. - {fileID: 21}
  281. - {fileID: 16}
  282. - {fileID: 15}
  283. - {fileID: 14}
  284. - {fileID: 12}
  285. m_Selected: 0
  286. m_LastSelected: 4
  287. --- !u!114 &12
  288. MonoBehaviour:
  289. m_ObjectHideFlags: 52
  290. m_CorrespondingSourceObject: {fileID: 0}
  291. m_PrefabInstance: {fileID: 0}
  292. m_PrefabAsset: {fileID: 0}
  293. m_GameObject: {fileID: 0}
  294. m_Enabled: 1
  295. m_EditorHideFlags: 0
  296. m_Script: {fileID: 11500000, guid: f817a38900380be47942905e17e7d39b, type: 3}
  297. m_Name:
  298. m_EditorClassIdentifier:
  299. m_MinSize: {x: 100, y: 100}
  300. m_MaxSize: {x: 4000, y: 4000}
  301. m_TitleContent:
  302. m_Text: Timeline
  303. m_Image: {fileID: -5401195905404635996, guid: 0000000000000000d000000000000000, type: 0}
  304. m_Tooltip:
  305. m_Pos:
  306. serializedVersion: 2
  307. x: 788
  308. y: 72.66667
  309. width: 728.6666
  310. height: 1039.6666
  311. m_SerializedDataModeController:
  312. m_DataMode: 0
  313. m_PreferredDataMode: 0
  314. m_SupportedDataModes:
  315. isAutomatic: 1
  316. m_ViewDataDictionary: {fileID: 0}
  317. m_OverlayCanvas:
  318. m_LastAppliedPresetName: Default
  319. m_SaveData: []
  320. m_OverlaysVisible: 1
  321. m_Preferences:
  322. editType: 0
  323. timeReferenceMode: 0
  324. m_LockTracker:
  325. m_IsLocked: 0
  326. m_SequenceHierarchy: {fileID: 0}
  327. m_SequencePath:
  328. m_SelectionRoot: 0
  329. m_SubElements: []
  330. --- !u!114 &13
  331. MonoBehaviour:
  332. m_ObjectHideFlags: 52
  333. m_CorrespondingSourceObject: {fileID: 0}
  334. m_PrefabInstance: {fileID: 0}
  335. m_PrefabAsset: {fileID: 0}
  336. m_GameObject: {fileID: 0}
  337. m_Enabled: 1
  338. m_EditorHideFlags: 0
  339. m_Script: {fileID: 12079, guid: 0000000000000000e000000000000000, type: 0}
  340. m_Name:
  341. m_EditorClassIdentifier:
  342. m_MinSize: {x: 390, y: 390}
  343. m_MaxSize: {x: 4000, y: 4000}
  344. m_TitleContent:
  345. m_Text: Lighting
  346. m_Image: {fileID: -1477008817101679558, guid: 0000000000000000d000000000000000, type: 0}
  347. m_Tooltip:
  348. m_Pos:
  349. serializedVersion: 2
  350. x: 2016
  351. y: 72.66667
  352. width: 543
  353. height: 1278.3334
  354. m_SerializedDataModeController:
  355. m_DataMode: 0
  356. m_PreferredDataMode: 0
  357. m_SupportedDataModes:
  358. isAutomatic: 1
  359. m_ViewDataDictionary: {fileID: 0}
  360. m_OverlayCanvas:
  361. m_LastAppliedPresetName: Default
  362. m_SaveData: []
  363. m_OverlaysVisible: 1
  364. --- !u!114 &14
  365. MonoBehaviour:
  366. m_ObjectHideFlags: 52
  367. m_CorrespondingSourceObject: {fileID: 0}
  368. m_PrefabInstance: {fileID: 0}
  369. m_PrefabAsset: {fileID: 0}
  370. m_GameObject: {fileID: 0}
  371. m_Enabled: 1
  372. m_EditorHideFlags: 0
  373. m_Script: {fileID: 11500000, guid: 924ffcbe75518854f97b48776d0f1939, type: 3}
  374. m_Name:
  375. m_EditorClassIdentifier:
  376. m_MinSize: {x: 100, y: 100}
  377. m_MaxSize: {x: 4000, y: 4000}
  378. m_TitleContent:
  379. m_Text: GlowAlphaBlended
  380. m_Image: {fileID: 2800000, guid: 7129268cf102b2f45809905bcb27ce8b, type: 3}
  381. m_Tooltip:
  382. m_Pos:
  383. serializedVersion: 2
  384. x: 788
  385. y: 72.66667
  386. width: 1126
  387. height: 1039.6666
  388. m_SerializedDataModeController:
  389. m_DataMode: 0
  390. m_PreferredDataMode: 0
  391. m_SupportedDataModes:
  392. isAutomatic: 1
  393. m_ViewDataDictionary: {fileID: 0}
  394. m_OverlayCanvas:
  395. m_LastAppliedPresetName: Default
  396. m_SaveData: []
  397. m_OverlaysVisible: 1
  398. m_Selected: 499624514535aa74caea4a6131411050
  399. m_GraphObject: {fileID: 0}
  400. m_LastSerializedFileContents: "{\n \"m_SGVersion\": 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.GraphData\",\n
  401. \"m_ObjectId\": \"efb507c265a14361a2cbe6a654dea7b8\",\n \"m_Properties\":
  402. [\n {\n \"m_Id\": \"a862037fbda04b32847b2aafca0adab4\"\n
  403. },\n {\n \"m_Id\": \"4d04546953e245c190ef77cf0a1b514c\"\n
  404. },\n {\n \"m_Id\": \"f383ba42bf004d2bb9201f090300d3d5\"\n
  405. }\n ],\n \"m_Keywords\": [],\n \"m_Dropdowns\": [],\n \"m_CategoryData\":
  406. [\n {\n \"m_Id\": \"2f15673d77914c848b05f943a5216970\"\n
  407. }\n ],\n \"m_Nodes\": [\n {\n \"m_Id\": \"bef85bca9e054792ac0eeb048da07751\"\n
  408. },\n {\n \"m_Id\": \"16456666d5164e4fa2b8d9d0a4c05337\"\n
  409. },\n {\n \"m_Id\": \"16bdfca230ec485e904f9b88fe4c770b\"\n
  410. },\n {\n \"m_Id\": \"93fdbea631cc408a8c7958c31ee9a6cc\"\n
  411. },\n {\n \"m_Id\": \"86c1215e8ef345f9bca89ef853b4db3e\"\n
  412. },\n {\n \"m_Id\": \"2f7dab65e7f843ba8c91087edbbafaa8\"\n
  413. },\n {\n \"m_Id\": \"6e0c5cab821c4b95b98f4c7e1309d63f\"\n
  414. },\n {\n \"m_Id\": \"3e0f12cef9924dd2b1744776f65f33a9\"\n
  415. },\n {\n \"m_Id\": \"7890ef6e5e8840cebc0d8b7244b49536\"\n
  416. },\n {\n \"m_Id\": \"d7a1863c1d74404dae6e287531018a6b\"\n
  417. },\n {\n \"m_Id\": \"0c93c1a6d0654272ba4d7ff9d11a250d\"\n
  418. },\n {\n \"m_Id\": \"4a59d4076b944447a84e0fad54ea77f1\"\n
  419. },\n {\n \"m_Id\": \"35942e3a0fb74950a0a0c9cbf536fe6e\"\n
  420. },\n {\n \"m_Id\": \"6e182f70d10948c9a7206300896f0265\"\n
  421. },\n {\n \"m_Id\": \"fb4864e652b4440494dec41f5c4b9408\"\n
  422. },\n {\n \"m_Id\": \"65150a878dea442fb8a77ae15131c080\"\n
  423. },\n {\n \"m_Id\": \"9298e54a5c8f4b739f3158d92cfd3db2\"\n
  424. },\n {\n \"m_Id\": \"bf364b0da2f54bbb8bf65182bc5cd8ce\"\n
  425. },\n {\n \"m_Id\": \"e8005941c38843839b99e21d40076652\"\n
  426. },\n {\n \"m_Id\": \"4ccb2d7f828b46d58cd2ae271d19366f\"\n
  427. }\n ],\n \"m_GroupDatas\": [],\n \"m_StickyNoteDatas\": [],\n \"m_Edges\":
  428. [\n {\n \"m_OutputSlot\": {\n \"m_Node\": {\n
  429. \"m_Id\": \"0c93c1a6d0654272ba4d7ff9d11a250d\"\n },\n
  430. \"m_SlotId\": 0\n },\n \"m_InputSlot\": {\n
  431. \"m_Node\": {\n \"m_Id\": \"d7a1863c1d74404dae6e287531018a6b\"\n
  432. },\n \"m_SlotId\": 0\n }\n },\n {\n
  433. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  434. \"2f7dab65e7f843ba8c91087edbbafaa8\"\n },\n \"m_SlotId\":
  435. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  436. {\n \"m_Id\": \"6e0c5cab821c4b95b98f4c7e1309d63f\"\n
  437. },\n \"m_SlotId\": 0\n }\n },\n {\n
  438. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  439. \"35942e3a0fb74950a0a0c9cbf536fe6e\"\n },\n \"m_SlotId\":
  440. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  441. {\n \"m_Id\": \"6e182f70d10948c9a7206300896f0265\"\n
  442. },\n \"m_SlotId\": 1\n }\n },\n {\n
  443. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  444. \"3e0f12cef9924dd2b1744776f65f33a9\"\n },\n \"m_SlotId\":
  445. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  446. {\n \"m_Id\": \"6e0c5cab821c4b95b98f4c7e1309d63f\"\n
  447. },\n \"m_SlotId\": 1\n }\n },\n {\n
  448. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  449. \"4a59d4076b944447a84e0fad54ea77f1\"\n },\n \"m_SlotId\":
  450. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  451. {\n \"m_Id\": \"d7a1863c1d74404dae6e287531018a6b\"\n
  452. },\n \"m_SlotId\": 1\n }\n },\n {\n
  453. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  454. \"4ccb2d7f828b46d58cd2ae271d19366f\"\n },\n \"m_SlotId\":
  455. 5\n },\n \"m_InputSlot\": {\n \"m_Node\":
  456. {\n \"m_Id\": \"e8005941c38843839b99e21d40076652\"\n
  457. },\n \"m_SlotId\": 0\n }\n },\n {\n
  458. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  459. \"65150a878dea442fb8a77ae15131c080\"\n },\n \"m_SlotId\":
  460. 2\n },\n \"m_InputSlot\": {\n \"m_Node\":
  461. {\n \"m_Id\": \"93fdbea631cc408a8c7958c31ee9a6cc\"\n
  462. },\n \"m_SlotId\": 0\n }\n },\n {\n
  463. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  464. \"6e0c5cab821c4b95b98f4c7e1309d63f\"\n },\n \"m_SlotId\":
  465. 2\n },\n \"m_InputSlot\": {\n \"m_Node\":
  466. {\n \"m_Id\": \"7890ef6e5e8840cebc0d8b7244b49536\"\n
  467. },\n \"m_SlotId\": 0\n }\n },\n {\n
  468. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  469. \"6e182f70d10948c9a7206300896f0265\"\n },\n \"m_SlotId\":
  470. 2\n },\n \"m_InputSlot\": {\n \"m_Node\":
  471. {\n \"m_Id\": \"65150a878dea442fb8a77ae15131c080\"\n
  472. },\n \"m_SlotId\": 0\n }\n },\n {\n
  473. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  474. \"7890ef6e5e8840cebc0d8b7244b49536\"\n },\n \"m_SlotId\":
  475. 1\n },\n \"m_InputSlot\": {\n \"m_Node\":
  476. {\n \"m_Id\": \"d7a1863c1d74404dae6e287531018a6b\"\n
  477. },\n \"m_SlotId\": 2\n }\n },\n {\n
  478. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  479. \"9298e54a5c8f4b739f3158d92cfd3db2\"\n },\n \"m_SlotId\":
  480. 2\n },\n \"m_InputSlot\": {\n \"m_Node\":
  481. {\n \"m_Id\": \"86c1215e8ef345f9bca89ef853b4db3e\"\n
  482. },\n \"m_SlotId\": 0\n }\n },\n {\n
  483. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  484. \"bf364b0da2f54bbb8bf65182bc5cd8ce\"\n },\n \"m_SlotId\":
  485. 1\n },\n \"m_InputSlot\": {\n \"m_Node\":
  486. {\n \"m_Id\": \"4ccb2d7f828b46d58cd2ae271d19366f\"\n
  487. },\n \"m_SlotId\": 0\n }\n },\n {\n
  488. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  489. \"bf364b0da2f54bbb8bf65182bc5cd8ce\"\n },\n \"m_SlotId\":
  490. 2\n },\n \"m_InputSlot\": {\n \"m_Node\":
  491. {\n \"m_Id\": \"4ccb2d7f828b46d58cd2ae271d19366f\"\n
  492. },\n \"m_SlotId\": 1\n }\n },\n {\n
  493. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  494. \"bf364b0da2f54bbb8bf65182bc5cd8ce\"\n },\n \"m_SlotId\":
  495. 3\n },\n \"m_InputSlot\": {\n \"m_Node\":
  496. {\n \"m_Id\": \"4ccb2d7f828b46d58cd2ae271d19366f\"\n
  497. },\n \"m_SlotId\": 2\n }\n },\n {\n
  498. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  499. \"bf364b0da2f54bbb8bf65182bc5cd8ce\"\n },\n \"m_SlotId\":
  500. 4\n },\n \"m_InputSlot\": {\n \"m_Node\":
  501. {\n \"m_Id\": \"9298e54a5c8f4b739f3158d92cfd3db2\"\n
  502. },\n \"m_SlotId\": 0\n }\n },\n {\n
  503. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  504. \"d7a1863c1d74404dae6e287531018a6b\"\n },\n \"m_SlotId\":
  505. 3\n },\n \"m_InputSlot\": {\n \"m_Node\":
  506. {\n \"m_Id\": \"6e182f70d10948c9a7206300896f0265\"\n
  507. },\n \"m_SlotId\": 0\n }\n },\n {\n
  508. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  509. \"d7a1863c1d74404dae6e287531018a6b\"\n },\n \"m_SlotId\":
  510. 3\n },\n \"m_InputSlot\": {\n \"m_Node\":
  511. {\n \"m_Id\": \"9298e54a5c8f4b739f3158d92cfd3db2\"\n
  512. },\n \"m_SlotId\": 1\n }\n },\n {\n
  513. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  514. \"fb4864e652b4440494dec41f5c4b9408\"\n },\n \"m_SlotId\":
  515. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  516. {\n \"m_Id\": \"65150a878dea442fb8a77ae15131c080\"\n
  517. },\n \"m_SlotId\": 1\n }\n },\n {\n
  518. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  519. \"fb4864e652b4440494dec41f5c4b9408\"\n },\n \"m_SlotId\":
  520. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  521. {\n \"m_Id\": \"bf364b0da2f54bbb8bf65182bc5cd8ce\"\n
  522. },\n \"m_SlotId\": 0\n }\n }\n ],\n \"m_VertexContext\":
  523. {\n \"m_Position\": {\n \"x\": 1760.0,\n \"y\":
  524. -17.33331298828125\n },\n \"m_Blocks\": [\n {\n
  525. \"m_Id\": \"bef85bca9e054792ac0eeb048da07751\"\n },\n {\n
  526. \"m_Id\": \"16456666d5164e4fa2b8d9d0a4c05337\"\n },\n {\n
  527. \"m_Id\": \"16bdfca230ec485e904f9b88fe4c770b\"\n }\n ]\n
  528. },\n \"m_FragmentContext\": {\n \"m_Position\": {\n \"x\":
  529. 1760.0,\n \"y\": 182.66668701171876\n },\n \"m_Blocks\":
  530. [\n {\n \"m_Id\": \"93fdbea631cc408a8c7958c31ee9a6cc\"\n
  531. },\n {\n \"m_Id\": \"86c1215e8ef345f9bca89ef853b4db3e\"\n
  532. }\n ]\n },\n \"m_PreviewData\": {\n \"serializedMesh\": {\n
  533. \"m_SerializedMesh\": \"{\\\"mesh\\\":{\\\"instanceID\\\":0}}\",\n
  534. \"m_Guid\": \"\"\n },\n \"preventRotation\": false\n },\n
  535. \"m_Path\": \"Shader Graphs\",\n \"m_GraphPrecision\": 0,\n \"m_PreviewMode\":
  536. 2,\n \"m_OutputNode\": {\n \"m_Id\": \"\"\n },\n \"m_SubDatas\":
  537. [],\n \"m_ActiveTargets\": [\n {\n \"m_Id\": \"14f185e8cd7345d1abc2e491375b6eb0\"\n
  538. }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n
  539. \"m_ObjectId\": \"038b9f12078e4dc692cf27404cdf48f4\",\n \"m_Id\": 0,\n
  540. \"m_DisplayName\": \"Normal\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  541. \"m_ShaderOutputName\": \"Normal\",\n \"m_StageCapability\": 1,\n \"m_Value\":
  542. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n
  543. \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  544. 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\":
  545. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  546. \"06a3980747eb44479477002580e42f15\",\n \"m_Id\": 1,\n \"m_DisplayName\":
  547. \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  548. \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": 0.0,\n \"m_DefaultValue\":
  549. 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  550. \"UnityEditor.ShaderGraph.Vector4MaterialSlot\",\n \"m_ObjectId\": \"0729df68092b4049b4a703daf82bc95d\",\n
  551. \"m_Id\": 0,\n \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\":
  552. false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n
  553. \"m_Value\": {\n \"x\": 1.0,\n \"y\": 1.0,\n \"z\": 1.0,\n
  554. \"w\": 1.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\":
  555. 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n
  556. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PropertyNode\",\n
  557. \"m_ObjectId\": \"0c93c1a6d0654272ba4d7ff9d11a250d\",\n \"m_Group\": {\n
  558. \"m_Id\": \"\"\n },\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n
  559. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  560. \"2\",\n \"x\": 382.0,\n \"y\": 352.0000305175781,\n
  561. \"width\": 111.33334350585938,\n \"height\": 35.999969482421878\n
  562. }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"2691036d946c4fedb0ac2de938452e86\"\n
  563. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  564. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  565. {\n \"m_SerializableColors\": []\n },\n \"m_Property\": {\n
  566. \"m_Id\": \"4d04546953e245c190ef77cf0a1b514c\"\n }\n}\n\n{\n \"m_SGVersion\":
  567. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n
  568. \"m_ObjectId\": \"0e460bfa8c36417aa0ff02afaf5aea74\",\n \"m_Id\": 1,\n
  569. \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  570. \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  571. {\n \"e00\": 2.0,\n \"e01\": 2.0,\n \"e02\": 2.0,\n
  572. \"e03\": 2.0,\n \"e10\": 2.0,\n \"e11\": 2.0,\n \"e12\":
  573. 2.0,\n \"e13\": 2.0,\n \"e20\": 2.0,\n \"e21\": 2.0,\n
  574. \"e22\": 2.0,\n \"e23\": 2.0,\n \"e30\": 2.0,\n \"e31\":
  575. 2.0,\n \"e32\": 2.0,\n \"e33\": 2.0\n },\n \"m_DefaultValue\":
  576. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  577. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  578. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  579. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  580. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  581. 1,\n \"m_Type\": \"UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget\",\n
  582. \"m_ObjectId\": \"14f185e8cd7345d1abc2e491375b6eb0\",\n \"m_Datas\": [],\n
  583. \"m_ActiveSubTarget\": {\n \"m_Id\": \"508c74350f8246b88dc21bdebe207029\"\n
  584. },\n \"m_AllowMaterialOverride\": false,\n \"m_SurfaceType\": 1,\n \"m_ZTestMode\":
  585. 4,\n \"m_ZWriteControl\": 0,\n \"m_AlphaMode\": 0,\n \"m_RenderFace\":
  586. 2,\n \"m_AlphaClip\": false,\n \"m_CastShadows\": false,\n \"m_ReceiveShadows\":
  587. true,\n \"m_SupportsLODCrossFade\": false,\n \"m_CustomEditorGUI\": \"\",\n
  588. \"m_SupportVFX\": false\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n
  589. \"m_ObjectId\": \"160f8ec8d9084716a95b0633544bf6b1\",\n \"m_Id\": 4,\n
  590. \"m_DisplayName\": \"A\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  591. \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  592. 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\":
  593. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\":
  594. \"16456666d5164e4fa2b8d9d0a4c05337\",\n \"m_Group\": {\n \"m_Id\":
  595. \"\"\n },\n \"m_Name\": \"VertexDescription.Normal\",\n \"m_DrawState\":
  596. {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  597. \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\":
  598. 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n
  599. {\n \"m_Id\": \"038b9f12078e4dc692cf27404cdf48f4\"\n }\n
  600. ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  601. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  602. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  603. \"VertexDescription.Normal\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  604. \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"16bdfca230ec485e904f9b88fe4c770b\",\n
  605. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Tangent\",\n
  606. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  607. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  608. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  609. [\n {\n \"m_Id\": \"2e2f68220b98476db40a5736de0137b8\"\n
  610. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  611. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  612. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  613. \"VertexDescription.Tangent\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  614. \"UnityEditor.ShaderGraph.Vector2MaterialSlot\",\n \"m_ObjectId\": \"1be657fb25bb45f0a9d373b977aa35f7\",\n
  615. \"m_Id\": 0,\n \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\":
  616. false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n
  617. \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0\n },\n \"m_DefaultValue\":
  618. {\n \"x\": 0.0,\n \"y\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n
  619. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n
  620. \"m_ObjectId\": \"2680253bc0154c3ab299962d8dde39fd\",\n \"m_Id\": 0,\n
  621. \"m_DisplayName\": \"Edge\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  622. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  623. 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\":
  624. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  625. \"2691036d946c4fedb0ac2de938452e86\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  626. \"Radius\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  627. \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": 0.0,\n \"m_DefaultValue\":
  628. 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  629. \"UnityEditor.ShaderGraph.Vector3MaterialSlot\",\n \"m_ObjectId\": \"296f867baae145fc9614476a3e30ef47\",\n
  630. \"m_Id\": 5,\n \"m_DisplayName\": \"RGB\",\n \"m_SlotType\": 1,\n \"m_Hidden\":
  631. false,\n \"m_ShaderOutputName\": \"RGB\",\n \"m_StageCapability\": 3,\n
  632. \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n
  633. },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  634. \"z\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n
  635. \"m_Type\": \"UnityEditor.ShaderGraph.TangentMaterialSlot\",\n \"m_ObjectId\":
  636. \"2e2f68220b98476db40a5736de0137b8\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  637. \"Tangent\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  638. \"Tangent\",\n \"m_StageCapability\": 1,\n \"m_Value\": {\n \"x\":
  639. 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\":
  640. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n
  641. \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  642. \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n \"m_ObjectId\": \"2e90c518887c42518e6522c63e3acd56\",\n
  643. \"m_Id\": 0,\n \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\":
  644. false,\n \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n
  645. \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n
  646. \"w\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\":
  647. 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\":
  648. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.CategoryData\",\n \"m_ObjectId\":
  649. \"2f15673d77914c848b05f943a5216970\",\n \"m_Name\": \"\",\n \"m_ChildObjectList\":
  650. [\n {\n \"m_Id\": \"a862037fbda04b32847b2aafca0adab4\"\n
  651. },\n {\n \"m_Id\": \"4d04546953e245c190ef77cf0a1b514c\"\n
  652. },\n {\n \"m_Id\": \"f383ba42bf004d2bb9201f090300d3d5\"\n
  653. }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.UVNode\",\n
  654. \"m_ObjectId\": \"2f7dab65e7f843ba8c91087edbbafaa8\",\n \"m_Group\": {\n
  655. \"m_Id\": \"\"\n },\n \"m_Name\": \"UV\",\n \"m_DrawState\": {\n
  656. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  657. \"2\",\n \"x\": -146.66665649414063,\n \"y\": -205.33334350585938,\n
  658. \"width\": 209.33334350585938,\n \"height\": 316.0\n }\n
  659. },\n \"m_Slots\": [\n {\n \"m_Id\": \"9c56cabd4ab74bde95b58735cac537e0\"\n
  660. }\n ],\n \"synonyms\": [\n \"texcoords\",\n \"coords\",\n
  661. \"coordinates\"\n ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  662. false,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  663. {\n \"m_SerializableColors\": []\n },\n \"m_OutputChannel\": 0\n}\n\n{\n
  664. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PropertyNode\",\n
  665. \"m_ObjectId\": \"35942e3a0fb74950a0a0c9cbf536fe6e\",\n \"m_Group\": {\n
  666. \"m_Id\": \"\"\n },\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n
  667. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  668. \"2\",\n \"x\": 667.3333740234375,\n \"y\": -4.66668701171875,\n
  669. \"width\": 106.6666259765625,\n \"height\": 36.0\n }\n },\n
  670. \"m_Slots\": [\n {\n \"m_Id\": \"7eb65e8f157a487a9f86c71bafb828ae\"\n
  671. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  672. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  673. {\n \"m_SerializableColors\": []\n },\n \"m_Property\": {\n
  674. \"m_Id\": \"a862037fbda04b32847b2aafca0adab4\"\n }\n}\n\n{\n \"m_SGVersion\":
  675. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  676. \"3929c8d8bf0a4456a190dec976db04be\",\n \"m_Id\": 2,\n \"m_DisplayName\":
  677. \"Y\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  678. \"Y\",\n \"m_StageCapability\": 3,\n \"m_Value\": 0.5,\n \"m_DefaultValue\":
  679. 0.0,\n \"m_Labels\": [\n \"Y\"\n ]\n}\n\n{\n \"m_SGVersion\":
  680. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  681. \"398a6ee6b5eb41fcada36f4cd2efde84\",\n \"m_Id\": 3,\n \"m_DisplayName\":
  682. \"B\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  683. \"B\",\n \"m_StageCapability\": 3,\n \"m_Value\": 0.0,\n \"m_DefaultValue\":
  684. 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  685. \"UnityEditor.ShaderGraph.Vector2Node\",\n \"m_ObjectId\": \"3e0f12cef9924dd2b1744776f65f33a9\",\n
  686. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Vector 2\",\n
  687. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  688. \"serializedVersion\": \"2\",\n \"x\": -64.0,\n \"y\":
  689. 15.333349227905274,\n \"width\": 129.33334350585938,\n
  690. \"height\": 102.66665649414063\n }\n },\n \"m_Slots\": [\n
  691. {\n \"m_Id\": \"86757819a3604d008ff68f55d34b8628\"\n },\n
  692. {\n \"m_Id\": \"3929c8d8bf0a4456a190dec976db04be\"\n },\n
  693. {\n \"m_Id\": \"1be657fb25bb45f0a9d373b977aa35f7\"\n }\n
  694. ],\n \"synonyms\": [\n \"2\",\n \"v2\",\n \"vec2\",\n
  695. \"float2\"\n ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n
  696. \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  697. {\n \"m_SerializableColors\": []\n },\n \"m_Value\": {\n
  698. \"x\": 0.0,\n \"y\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n
  699. \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  700. \"3ef0f40552ca4c989e75f57a153d2c6a\",\n \"m_Id\": 1,\n \"m_DisplayName\":
  701. \"G\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  702. \"G\",\n \"m_StageCapability\": 3,\n \"m_Value\": 0.0,\n \"m_DefaultValue\":
  703. 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  704. \"UnityEditor.ShaderGraph.PropertyNode\",\n \"m_ObjectId\": \"4a59d4076b944447a84e0fad54ea77f1\",\n
  705. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Property\",\n
  706. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  707. \"serializedVersion\": \"2\",\n \"x\": 382.0,\n \"y\":
  708. 413.3333435058594,\n \"width\": 103.33331298828125,\n \"height\":
  709. 36.0\n }\n },\n \"m_Slots\": [\n {\n \"m_Id\":
  710. \"2680253bc0154c3ab299962d8dde39fd\"\n }\n ],\n \"synonyms\": [],\n
  711. \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\":
  712. 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\":
  713. []\n },\n \"m_Property\": {\n \"m_Id\": \"f383ba42bf004d2bb9201f090300d3d5\"\n
  714. }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.CombineNode\",\n
  715. \"m_ObjectId\": \"4ccb2d7f828b46d58cd2ae271d19366f\",\n \"m_Group\": {\n
  716. \"m_Id\": \"\"\n },\n \"m_Name\": \"Combine\",\n \"m_DrawState\": {\n
  717. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  718. \"2\",\n \"x\": 1240.0,\n \"y\": 74.0,\n \"width\":
  719. 141.333251953125,\n \"height\": 168.0\n }\n },\n \"m_Slots\":
  720. [\n {\n \"m_Id\": \"9ec187f3e5ac41e8821c63e383479d00\"\n
  721. },\n {\n \"m_Id\": \"3ef0f40552ca4c989e75f57a153d2c6a\"\n
  722. },\n {\n \"m_Id\": \"916ba431e415425cb7a9896191691926\"\n
  723. },\n {\n \"m_Id\": \"d030b73d4417459c9222f6cdf28f8b93\"\n
  724. },\n {\n \"m_Id\": \"c29af94c9a7e42bc95d72d66b30921a4\"\n
  725. },\n {\n \"m_Id\": \"296f867baae145fc9614476a3e30ef47\"\n
  726. },\n {\n \"m_Id\": \"54e55331ec854cbfb060de56bdd5d780\"\n
  727. }\n ],\n \"synonyms\": [\n \"append\"\n ],\n \"m_Precision\":
  728. 0,\n \"m_PreviewExpanded\": false,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\":
  729. 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\": []\n }\n}\n\n{\n
  730. \"m_SGVersion\": 1,\n \"m_Type\": \"UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty\",\n
  731. \"m_ObjectId\": \"4d04546953e245c190ef77cf0a1b514c\",\n \"m_Guid\": {\n
  732. \"m_GuidSerialized\": \"84d25800-93fc-4a17-af9a-f03f5204d32b\"\n },\n \"m_Name\":
  733. \"Radius\",\n \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\":
  734. \"Radius\",\n \"m_DefaultReferenceName\": \"_Radius\",\n \"m_OverrideReferenceName\":
  735. \"\",\n \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\":
  736. false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n
  737. \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\":
  738. 0,\n \"m_Hidden\": false,\n \"m_Priority\": 10,\n \"m_Value\": 0.30000001192092898,\n
  739. \"m_FloatType\": 0,\n \"m_RangeValues\": {\n \"x\": 0.0,\n \"y\":
  740. 1.0\n }\n}\n\n{\n \"m_SGVersion\": 2,\n \"m_Type\": \"UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget\",\n
  741. \"m_ObjectId\": \"508c74350f8246b88dc21bdebe207029\"\n}\n\n{\n \"m_SGVersion\":
  742. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n
  743. \"m_ObjectId\": \"51c184d910624bd88cfab480e6ac298c\",\n \"m_Id\": 0,\n
  744. \"m_DisplayName\": \"In\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  745. \"m_ShaderOutputName\": \"In\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  746. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\":
  747. 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  748. \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n
  749. \"m_Type\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\",\n \"m_ObjectId\":
  750. \"54e55331ec854cbfb060de56bdd5d780\",\n \"m_Id\": 6,\n \"m_DisplayName\":
  751. \"RG\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  752. \"RG\",\n \"m_StageCapability\": 3,\n \"m_Value\": {\n \"x\": 0.0,\n
  753. \"y\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\":
  754. 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  755. \"UnityEditor.ShaderGraph.MultiplyNode\",\n \"m_ObjectId\": \"65150a878dea442fb8a77ae15131c080\",\n
  756. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Multiply\",\n
  757. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  758. \"serializedVersion\": \"2\",\n \"x\": 1186.6666259765625,\n
  759. \"y\": -96.66667938232422,\n \"width\": 209.33349609375,\n
  760. \"height\": 304.0000305175781\n }\n },\n \"m_Slots\": [\n
  761. {\n \"m_Id\": \"c79e9b1e953d4a33b50d166ae191e0f1\"\n },\n
  762. {\n \"m_Id\": \"9540f3a2eb3f489fbfe77cb91019d6ec\"\n },\n
  763. {\n \"m_Id\": \"7419c6900a9a4d56b2b17e7a2069c7c3\"\n }\n
  764. ],\n \"synonyms\": [\n \"multiplication\",\n \"times\",\n
  765. \"x\"\n ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": false,\n
  766. \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  767. {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\":
  768. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n
  769. \"m_ObjectId\": \"6515e5e36cb743c19d562cd6bb35cab5\",\n \"m_Id\": 2,\n
  770. \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  771. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  772. {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  773. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\":
  774. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  775. \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  776. 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\":
  777. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  778. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  779. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  780. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  781. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  782. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n \"m_ObjectId\":
  783. \"66c4ca6605ef4088a5c98cef43d70824\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  784. \"Base Color\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  785. \"BaseColor\",\n \"m_StageCapability\": 2,\n \"m_Value\": {\n \"x\":
  786. 0.5,\n \"y\": 0.5,\n \"z\": 0.5\n },\n \"m_DefaultValue\":
  787. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n
  788. \"m_Labels\": [],\n \"m_ColorMode\": 0,\n \"m_DefaultColor\": {\n
  789. \"r\": 0.5,\n \"g\": 0.5,\n \"b\": 0.5,\n \"a\": 1.0\n
  790. }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n
  791. \"m_ObjectId\": \"698f898ed7db487c90826e977b15a232\",\n \"m_Id\": 1,\n
  792. \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  793. \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  794. {\n \"x\": 1.0,\n \"y\": 1.0,\n \"z\": 1.0,\n \"w\":
  795. 1.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  796. \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n
  797. \"m_Type\": \"UnityEditor.ShaderGraph.SubtractNode\",\n \"m_ObjectId\": \"6e0c5cab821c4b95b98f4c7e1309d63f\",\n
  798. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Subtract\",\n
  799. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  800. \"serializedVersion\": \"2\",\n \"x\": 129.33334350585938,\n
  801. \"y\": -128.00003051757813,\n \"width\": 209.33334350585938,\n
  802. \"height\": 304.00006103515627\n }\n },\n \"m_Slots\": [\n
  803. {\n \"m_Id\": \"eac99e9822d844b6b7f48c1ec6c11b89\"\n },\n
  804. {\n \"m_Id\": \"698f898ed7db487c90826e977b15a232\"\n },\n
  805. {\n \"m_Id\": \"981b841ca62d46d88a857eee507565ad\"\n }\n
  806. ],\n \"synonyms\": [\n \"subtraction\",\n \"remove\",\n
  807. \"minus\",\n \"take away\"\n ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  808. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  809. {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\":
  810. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.MultiplyNode\",\n \"m_ObjectId\":
  811. \"6e182f70d10948c9a7206300896f0265\",\n \"m_Group\": {\n \"m_Id\":
  812. \"\"\n },\n \"m_Name\": \"Multiply\",\n \"m_DrawState\": {\n
  813. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  814. \"2\",\n \"x\": 837.3333740234375,\n \"y\": -46.00002670288086,\n
  815. \"width\": 209.3333740234375,\n \"height\": 304.0000305175781\n
  816. }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"e73d1e26b64c42868a054c7753005af5\"\n
  817. },\n {\n \"m_Id\": \"89f39482c51b4455ab26025e4a1dea46\"\n
  818. },\n {\n \"m_Id\": \"6515e5e36cb743c19d562cd6bb35cab5\"\n
  819. }\n ],\n \"synonyms\": [\n \"multiplication\",\n \"times\",\n
  820. \"x\"\n ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": false,\n
  821. \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  822. {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\":
  823. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n
  824. \"m_ObjectId\": \"7419c6900a9a4d56b2b17e7a2069c7c3\",\n \"m_Id\": 2,\n
  825. \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  826. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  827. {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  828. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\":
  829. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  830. \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  831. 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\":
  832. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  833. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  834. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  835. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  836. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  837. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.LengthNode\",\n \"m_ObjectId\":
  838. \"7890ef6e5e8840cebc0d8b7244b49536\",\n \"m_Group\": {\n \"m_Id\":
  839. \"\"\n },\n \"m_Name\": \"Length\",\n \"m_DrawState\": {\n \"m_Expanded\":
  840. true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n
  841. \"x\": 382.0000305175781,\n \"y\": -4.666675567626953,\n
  842. \"width\": 209.33334350585938,\n \"height\": 280.00006103515627\n
  843. }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"ba3ad0cdc8944ebda5903ab72cf40cb8\"\n
  844. },\n {\n \"m_Id\": \"06a3980747eb44479477002580e42f15\"\n
  845. }\n ],\n \"synonyms\": [\n \"measure\"\n ],\n \"m_Precision\":
  846. 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\":
  847. 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\": []\n }\n}\n\n{\n
  848. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\",\n
  849. \"m_ObjectId\": \"7eb65e8f157a487a9f86c71bafb828ae\",\n \"m_Id\": 0,\n
  850. \"m_DisplayName\": \"Color\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  851. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  852. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\":
  853. 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  854. \"z\": 0.0,\n \"w\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\":
  855. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  856. \"86757819a3604d008ff68f55d34b8628\",\n \"m_Id\": 1,\n \"m_DisplayName\":
  857. \"X\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  858. \"X\",\n \"m_StageCapability\": 3,\n \"m_Value\": 0.5,\n \"m_DefaultValue\":
  859. 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  860. \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"86c1215e8ef345f9bca89ef853b4db3e\",\n
  861. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Alpha\",\n
  862. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  863. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  864. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  865. [\n {\n \"m_Id\": \"abd225d3486b4bed9c52889ed54afde5\"\n
  866. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  867. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  868. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  869. \"SurfaceDescription.Alpha\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  870. \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n \"m_ObjectId\": \"89f39482c51b4455ab26025e4a1dea46\",\n
  871. \"m_Id\": 1,\n \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\":
  872. false,\n \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n
  873. \"m_Value\": {\n \"e00\": 2.0,\n \"e01\": 2.0,\n \"e02\":
  874. 2.0,\n \"e03\": 2.0,\n \"e10\": 2.0,\n \"e11\": 2.0,\n
  875. \"e12\": 2.0,\n \"e13\": 2.0,\n \"e20\": 2.0,\n \"e21\":
  876. 2.0,\n \"e22\": 2.0,\n \"e23\": 2.0,\n \"e30\": 2.0,\n
  877. \"e31\": 2.0,\n \"e32\": 2.0,\n \"e33\": 2.0\n },\n \"m_DefaultValue\":
  878. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  879. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  880. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  881. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  882. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  883. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  884. \"8d6db87cda86488f9cb22cb2450b10c8\",\n \"m_Id\": 2,\n \"m_DisplayName\":
  885. \"G\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  886. \"G\",\n \"m_StageCapability\": 3,\n \"m_Value\": 0.0,\n \"m_DefaultValue\":
  887. 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  888. \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"916ba431e415425cb7a9896191691926\",\n
  889. \"m_Id\": 2,\n \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\":
  890. false,\n \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n
  891. \"m_Value\": 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n
  892. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.MultiplyNode\",\n
  893. \"m_ObjectId\": \"9298e54a5c8f4b739f3158d92cfd3db2\",\n \"m_Group\": {\n
  894. \"m_Id\": \"\"\n },\n \"m_Name\": \"Multiply\",\n \"m_DrawState\": {\n
  895. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  896. \"2\",\n \"x\": 1254.0,\n \"y\": 381.33331298828127,\n
  897. \"width\": 127.333251953125,\n \"height\": 120.0\n }\n },\n
  898. \"m_Slots\": [\n {\n \"m_Id\": \"a6eb477e97d8463a858ed8ff76f05129\"\n
  899. },\n {\n \"m_Id\": \"0e460bfa8c36417aa0ff02afaf5aea74\"\n
  900. },\n {\n \"m_Id\": \"9e59bb66074f4a8fa874eb3c3fdbf2fa\"\n
  901. }\n ],\n \"synonyms\": [\n \"multiplication\",\n \"times\",\n
  902. \"x\"\n ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": false,\n
  903. \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  904. {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\":
  905. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\":
  906. \"93fdbea631cc408a8c7958c31ee9a6cc\",\n \"m_Group\": {\n \"m_Id\":
  907. \"\"\n },\n \"m_Name\": \"SurfaceDescription.BaseColor\",\n \"m_DrawState\":
  908. {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  909. \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\":
  910. 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n
  911. {\n \"m_Id\": \"66c4ca6605ef4088a5c98cef43d70824\"\n }\n
  912. ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  913. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  914. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  915. \"SurfaceDescription.BaseColor\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  916. \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n \"m_ObjectId\": \"9540f3a2eb3f489fbfe77cb91019d6ec\",\n
  917. \"m_Id\": 1,\n \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\":
  918. false,\n \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n
  919. \"m_Value\": {\n \"e00\": 2.0,\n \"e01\": 2.0,\n \"e02\":
  920. 2.0,\n \"e03\": 2.0,\n \"e10\": 2.0,\n \"e11\": 2.0,\n
  921. \"e12\": 2.0,\n \"e13\": 2.0,\n \"e20\": 2.0,\n \"e21\":
  922. 2.0,\n \"e22\": 2.0,\n \"e23\": 2.0,\n \"e30\": 2.0,\n
  923. \"e31\": 2.0,\n \"e32\": 2.0,\n \"e33\": 2.0\n },\n \"m_DefaultValue\":
  924. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  925. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  926. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  927. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  928. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  929. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n
  930. \"m_ObjectId\": \"970900ce0c754d568f4dfb0d0dc54f6e\",\n \"m_Id\": 2,\n
  931. \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  932. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  933. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\":
  934. 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  935. \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n
  936. \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n \"m_ObjectId\":
  937. \"981b841ca62d46d88a857eee507565ad\",\n \"m_Id\": 2,\n \"m_DisplayName\":
  938. \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  939. \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": {\n \"x\": 0.0,\n
  940. \"y\": 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n },\n \"m_DefaultValue\":
  941. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\":
  942. 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\",\n
  943. \"m_ObjectId\": \"9c56cabd4ab74bde95b58735cac537e0\",\n \"m_Id\": 0,\n
  944. \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  945. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  946. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\":
  947. 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  948. \"z\": 0.0,\n \"w\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\":
  949. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n
  950. \"m_ObjectId\": \"9e59bb66074f4a8fa874eb3c3fdbf2fa\",\n \"m_Id\": 2,\n
  951. \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  952. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  953. {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  954. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\":
  955. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  956. \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  957. 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\":
  958. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  959. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  960. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  961. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  962. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  963. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  964. \"9ec187f3e5ac41e8821c63e383479d00\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  965. \"R\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  966. \"R\",\n \"m_StageCapability\": 3,\n \"m_Value\": 0.0,\n \"m_DefaultValue\":
  967. 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  968. \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n \"m_ObjectId\": \"a6eb477e97d8463a858ed8ff76f05129\",\n
  969. \"m_Id\": 0,\n \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\":
  970. false,\n \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n
  971. \"m_Value\": {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\":
  972. 0.0,\n \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n
  973. \"e12\": 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\":
  974. 0.0,\n \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n
  975. \"e31\": 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\":
  976. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  977. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  978. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  979. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  980. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  981. 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.Internal.ColorShaderProperty\",\n
  982. \"m_ObjectId\": \"a862037fbda04b32847b2aafca0adab4\",\n \"m_Guid\": {\n
  983. \"m_GuidSerialized\": \"e10982a4-e6f7-414e-92d5-94ea3d75ab2a\"\n },\n \"m_Name\":
  984. \"Color\",\n \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\":
  985. \"Color\",\n \"m_DefaultReferenceName\": \"_Color\",\n \"m_OverrideReferenceName\":
  986. \"\",\n \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\":
  987. false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n
  988. \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\":
  989. 0,\n \"m_Hidden\": false,\n \"m_Priority\": 10,\n \"m_Value\": {\n
  990. \"r\": 1.0,\n \"g\": 1.0,\n \"b\": 1.0,\n \"a\": 0.0\n
  991. },\n \"isMainColor\": false,\n \"m_ColorMode\": 1\n}\n\n{\n \"m_SGVersion\":
  992. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  993. \"abd225d3486b4bed9c52889ed54afde5\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  994. \"Alpha\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  995. \"Alpha\",\n \"m_StageCapability\": 2,\n \"m_Value\": 1.0,\n \"m_DefaultValue\":
  996. 1.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  997. \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n \"m_ObjectId\": \"b26f7ed8ef8a4f029997baf4adfd3224\",\n
  998. \"m_Id\": 0,\n \"m_DisplayName\": \"Edge1\",\n \"m_SlotType\": 0,\n
  999. \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Edge1\",\n \"m_StageCapability\":
  1000. 3,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  1001. 0.0,\n \"w\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n
  1002. \"y\": 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\":
  1003. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PositionMaterialSlot\",\n \"m_ObjectId\":
  1004. \"b6945725b85d49e1bfb474e8e81b6dd9\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  1005. \"Position\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1006. \"Position\",\n \"m_StageCapability\": 1,\n \"m_Value\": {\n \"x\":
  1007. 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\":
  1008. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n
  1009. \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1010. \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n \"m_ObjectId\": \"ba3ad0cdc8944ebda5903ab72cf40cb8\",\n
  1011. \"m_Id\": 0,\n \"m_DisplayName\": \"In\",\n \"m_SlotType\": 0,\n \"m_Hidden\":
  1012. false,\n \"m_ShaderOutputName\": \"In\",\n \"m_StageCapability\": 3,\n
  1013. \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n
  1014. \"w\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\":
  1015. 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\":
  1016. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n
  1017. \"m_ObjectId\": \"bc9d681e0445445aab293f417df14a63\",\n \"m_Id\": 1,\n
  1018. \"m_DisplayName\": \"Edge2\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1019. \"m_ShaderOutputName\": \"Edge2\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1020. {\n \"x\": 1.0,\n \"y\": 1.0,\n \"z\": 1.0,\n \"w\":
  1021. 1.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  1022. \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n
  1023. \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"bef85bca9e054792ac0eeb048da07751\",\n
  1024. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Position\",\n
  1025. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1026. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  1027. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  1028. [\n {\n \"m_Id\": \"b6945725b85d49e1bfb474e8e81b6dd9\"\n
  1029. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1030. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1031. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1032. \"VertexDescription.Position\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1033. \"UnityEditor.ShaderGraph.SplitNode\",\n \"m_ObjectId\": \"bf364b0da2f54bbb8bf65182bc5cd8ce\",\n
  1034. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Split\",\n
  1035. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1036. \"serializedVersion\": \"2\",\n \"x\": 1084.666748046875,\n
  1037. \"y\": 190.0000457763672,\n \"width\": 120.6666259765625,\n
  1038. \"height\": 150.66664123535157\n }\n },\n \"m_Slots\": [\n
  1039. {\n \"m_Id\": \"51c184d910624bd88cfab480e6ac298c\"\n },\n
  1040. {\n \"m_Id\": \"ede53d4184364e26bfcb4c1a8945ceb7\"\n },\n
  1041. {\n \"m_Id\": \"8d6db87cda86488f9cb22cb2450b10c8\"\n },\n
  1042. {\n \"m_Id\": \"398a6ee6b5eb41fcada36f4cd2efde84\"\n },\n
  1043. {\n \"m_Id\": \"160f8ec8d9084716a95b0633544bf6b1\"\n }\n
  1044. ],\n \"synonyms\": [\n \"separate\"\n ],\n \"m_Precision\": 0,\n
  1045. \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\":
  1046. 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\": []\n }\n}\n\n{\n
  1047. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n
  1048. \"m_ObjectId\": \"c26fb2082b424f3e9bfc1ea1a15914cb\",\n \"m_Id\": 3,\n
  1049. \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  1050. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1051. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\":
  1052. 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  1053. \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n
  1054. \"m_Type\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\",\n \"m_ObjectId\":
  1055. \"c29af94c9a7e42bc95d72d66b30921a4\",\n \"m_Id\": 4,\n \"m_DisplayName\":
  1056. \"RGBA\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1057. \"RGBA\",\n \"m_StageCapability\": 3,\n \"m_Value\": {\n \"x\":
  1058. 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n },\n
  1059. \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  1060. 0.0,\n \"w\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\":
  1061. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n
  1062. \"m_ObjectId\": \"c79e9b1e953d4a33b50d166ae191e0f1\",\n \"m_Id\": 0,\n
  1063. \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1064. \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1065. {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1066. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\":
  1067. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1068. \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1069. 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\":
  1070. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1071. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  1072. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1073. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1074. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  1075. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  1076. \"d030b73d4417459c9222f6cdf28f8b93\",\n \"m_Id\": 3,\n \"m_DisplayName\":
  1077. \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1078. \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\": 0.0,\n \"m_DefaultValue\":
  1079. 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1080. \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n \"m_ObjectId\": \"d2d85fc2d97e47adba7eed42bee590c9\",\n
  1081. \"m_Id\": 2,\n \"m_DisplayName\": \"In\",\n \"m_SlotType\": 0,\n \"m_Hidden\":
  1082. false,\n \"m_ShaderOutputName\": \"In\",\n \"m_StageCapability\": 3,\n
  1083. \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n
  1084. \"w\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\":
  1085. 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\":
  1086. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.SmoothstepNode\",\n \"m_ObjectId\":
  1087. \"d7a1863c1d74404dae6e287531018a6b\",\n \"m_Group\": {\n \"m_Id\":
  1088. \"\"\n },\n \"m_Name\": \"Smoothstep\",\n \"m_DrawState\": {\n
  1089. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1090. \"2\",\n \"x\": 628.0,\n \"y\": 331.3333740234375,\n
  1091. \"width\": 209.33343505859376,\n \"height\": 328.00006103515627\n
  1092. }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"b26f7ed8ef8a4f029997baf4adfd3224\"\n
  1093. },\n {\n \"m_Id\": \"bc9d681e0445445aab293f417df14a63\"\n
  1094. },\n {\n \"m_Id\": \"d2d85fc2d97e47adba7eed42bee590c9\"\n
  1095. },\n {\n \"m_Id\": \"c26fb2082b424f3e9bfc1ea1a15914cb\"\n
  1096. }\n ],\n \"synonyms\": [\n \"curve\"\n ],\n \"m_Precision\":
  1097. 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\":
  1098. 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\": []\n }\n}\n\n{\n
  1099. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n
  1100. \"m_ObjectId\": \"d96337ad854a4e108a774963e56d8d4e\",\n \"m_Id\": 1,\n
  1101. \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1102. \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1103. {\n \"x\": 2.200000047683716,\n \"y\": 2.0,\n \"z\": 2.0,\n
  1104. \"w\": 2.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\":
  1105. 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\":
  1106. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n
  1107. \"m_ObjectId\": \"e73d1e26b64c42868a054c7753005af5\",\n \"m_Id\": 0,\n
  1108. \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1109. \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1110. {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1111. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\":
  1112. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1113. \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1114. 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\":
  1115. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1116. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  1117. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1118. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1119. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  1120. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PowerNode\",\n \"m_ObjectId\":
  1121. \"e8005941c38843839b99e21d40076652\",\n \"m_Group\": {\n \"m_Id\":
  1122. \"\"\n },\n \"m_Name\": \"Power\",\n \"m_DrawState\": {\n \"m_Expanded\":
  1123. true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n
  1124. \"x\": 1415.333251953125,\n \"y\": 130.0,\n \"width\":
  1125. 131.3333740234375,\n \"height\": 120.0\n }\n },\n \"m_Slots\":
  1126. [\n {\n \"m_Id\": \"2e90c518887c42518e6522c63e3acd56\"\n
  1127. },\n {\n \"m_Id\": \"d96337ad854a4e108a774963e56d8d4e\"\n
  1128. },\n {\n \"m_Id\": \"970900ce0c754d568f4dfb0d0dc54f6e\"\n
  1129. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1130. false,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1131. {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\":
  1132. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n
  1133. \"m_ObjectId\": \"eac99e9822d844b6b7f48c1ec6c11b89\",\n \"m_Id\": 0,\n
  1134. \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1135. \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1136. {\n \"x\": 1.0,\n \"y\": 1.0,\n \"z\": 1.0,\n \"w\":
  1137. 1.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  1138. \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n
  1139. \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  1140. \"ede53d4184364e26bfcb4c1a8945ceb7\",\n \"m_Id\": 1,\n \"m_DisplayName\":
  1141. \"R\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1142. \"R\",\n \"m_StageCapability\": 3,\n \"m_Value\": 0.0,\n \"m_DefaultValue\":
  1143. 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 1,\n \"m_Type\":
  1144. \"UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty\",\n \"m_ObjectId\":
  1145. \"f383ba42bf004d2bb9201f090300d3d5\",\n \"m_Guid\": {\n \"m_GuidSerialized\":
  1146. \"7535be8d-e36f-493c-8a11-7c15679d5545\"\n },\n \"m_Name\": \"Edge\",\n
  1147. \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\": \"Edge\",\n
  1148. \"m_DefaultReferenceName\": \"_Edge\",\n \"m_OverrideReferenceName\": \"\",\n
  1149. \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\": false,\n
  1150. \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n \"m_Precision\":
  1151. 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\":
  1152. 0,\n \"m_Hidden\": false,\n \"m_Priority\": 10,\n \"m_Value\": 0.05000000074505806,\n
  1153. \"m_FloatType\": 0,\n \"m_RangeValues\": {\n \"x\": 0.0,\n \"y\":
  1154. 1.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.VertexColorNode\",\n
  1155. \"m_ObjectId\": \"fb4864e652b4440494dec41f5c4b9408\",\n \"m_Group\": {\n
  1156. \"m_Id\": \"\"\n },\n \"m_Name\": \"Vertex Color\",\n \"m_DrawState\":
  1157. {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1158. \"2\",\n \"x\": 882.0000610351563,\n \"y\": 111.33334350585938,\n
  1159. \"width\": 118.66668701171875,\n \"height\": 96.00001525878906\n
  1160. }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"0729df68092b4049b4a703daf82bc95d\"\n
  1161. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1162. false,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 2,\n \"m_CustomColors\":
  1163. {\n \"m_SerializableColors\": []\n }\n}\n\n"
  1164. m_AssetMaybeChangedOnDisk: 0
  1165. m_AssetMaybeDeleted: 0
  1166. --- !u!114 &15
  1167. MonoBehaviour:
  1168. m_ObjectHideFlags: 52
  1169. m_CorrespondingSourceObject: {fileID: 0}
  1170. m_PrefabInstance: {fileID: 0}
  1171. m_PrefabAsset: {fileID: 0}
  1172. m_GameObject: {fileID: 0}
  1173. m_Enabled: 1
  1174. m_EditorHideFlags: 0
  1175. m_Script: {fileID: 11500000, guid: 924ffcbe75518854f97b48776d0f1939, type: 3}
  1176. m_Name:
  1177. m_EditorClassIdentifier:
  1178. m_MinSize: {x: 100, y: 100}
  1179. m_MaxSize: {x: 4000, y: 4000}
  1180. m_TitleContent:
  1181. m_Text: Line2
  1182. m_Image: {fileID: 2800000, guid: 7129268cf102b2f45809905bcb27ce8b, type: 3}
  1183. m_Tooltip:
  1184. m_Pos:
  1185. serializedVersion: 2
  1186. x: 164
  1187. y: 72.66667
  1188. width: 1298
  1189. height: 1278.3334
  1190. m_SerializedDataModeController:
  1191. m_DataMode: 0
  1192. m_PreferredDataMode: 0
  1193. m_SupportedDataModes:
  1194. isAutomatic: 1
  1195. m_ViewDataDictionary: {fileID: 0}
  1196. m_OverlayCanvas:
  1197. m_LastAppliedPresetName: Default
  1198. m_SaveData: []
  1199. m_OverlaysVisible: 1
  1200. m_Selected: e562a90d130bed74f87303b2dc0a0afe
  1201. m_GraphObject: {fileID: 0}
  1202. m_LastSerializedFileContents: "{\n \"m_SGVersion\": 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.GraphData\",\n
  1203. \"m_ObjectId\": \"8a3842f4b41d477c9c2771a7b8c74ff3\",\n \"m_Properties\":
  1204. [\n {\n \"m_Id\": \"0f84943365fa4f51ac969fe8d95586b8\"\n
  1205. },\n {\n \"m_Id\": \"fa06cb8d401c4ecc974fcf336a5e390a\"\n
  1206. },\n {\n \"m_Id\": \"d8a8a2dbaad84f408e1bd68d4383ba0f\"\n
  1207. },\n {\n \"m_Id\": \"86f489f40ce049c899647e834daab9ce\"\n
  1208. },\n {\n \"m_Id\": \"7365b1dcd6de49b6924ea8eefadda59d\"\n
  1209. },\n {\n \"m_Id\": \"4ac6753c614d4847a161f8a96ca6f90c\"\n
  1210. }\n ],\n \"m_Keywords\": [],\n \"m_Dropdowns\": [],\n \"m_CategoryData\":
  1211. [\n {\n \"m_Id\": \"a39d9219e1ed4cbc8ea770fb620fd534\"\n
  1212. }\n ],\n \"m_Nodes\": [\n {\n \"m_Id\": \"7106564862a34e969e68e4423766ca40\"\n
  1213. },\n {\n \"m_Id\": \"53f91342c0954336880ae7ce8d9979b5\"\n
  1214. },\n {\n \"m_Id\": \"676c6f9294804ff190e8aa1ff3e58854\"\n
  1215. },\n {\n \"m_Id\": \"f5c96fdc4a9e4462b8981d6f6b93b805\"\n
  1216. },\n {\n \"m_Id\": \"9e1800319e914e909832f099091a8ff1\"\n
  1217. },\n {\n \"m_Id\": \"2ea0d532adcf4dd2ab8a2b45ae8c40d8\"\n
  1218. },\n {\n \"m_Id\": \"fe572b2c84ae4f748491c161fb915fbb\"\n
  1219. },\n {\n \"m_Id\": \"05abfa8fb43d4aa097fdbd6c20254ef0\"\n
  1220. },\n {\n \"m_Id\": \"a99a7b349008481488caed8c44140091\"\n
  1221. },\n {\n \"m_Id\": \"f8452da6dbc84a83b195546679b8765f\"\n
  1222. },\n {\n \"m_Id\": \"e7bdd42f1640412185960643fda26ccc\"\n
  1223. },\n {\n \"m_Id\": \"c4416f3c30164181b7dce1f1e855f317\"\n
  1224. },\n {\n \"m_Id\": \"10e57c4e596f4f3faeac42f78d0b9dac\"\n
  1225. },\n {\n \"m_Id\": \"11f8e0c3135f4cd89a5ef76f409878da\"\n
  1226. },\n {\n \"m_Id\": \"61198c97ce1d4deeab8688342d04ce83\"\n
  1227. },\n {\n \"m_Id\": \"bc8481f870e84ecbacff431b5814622e\"\n
  1228. },\n {\n \"m_Id\": \"92eab17be7f94193ae94968f2f4ce7ce\"\n
  1229. },\n {\n \"m_Id\": \"2930ba7e7a9846dc996b2380f9c9691f\"\n
  1230. },\n {\n \"m_Id\": \"973e7b36c4af4059b4cd781f873c6a89\"\n
  1231. },\n {\n \"m_Id\": \"2085d5a512fb43e5ad83afb57b337d50\"\n
  1232. },\n {\n \"m_Id\": \"c80bf38520a048c8989fe111e354f9ca\"\n
  1233. },\n {\n \"m_Id\": \"56425000e805464cabca312912df0039\"\n
  1234. },\n {\n \"m_Id\": \"49dfe75b8b70486789ccf821ff518fc0\"\n
  1235. }\n ],\n \"m_GroupDatas\": [],\n \"m_StickyNoteDatas\": [],\n \"m_Edges\":
  1236. [\n {\n \"m_OutputSlot\": {\n \"m_Node\": {\n
  1237. \"m_Id\": \"05abfa8fb43d4aa097fdbd6c20254ef0\"\n },\n
  1238. \"m_SlotId\": 0\n },\n \"m_InputSlot\": {\n
  1239. \"m_Node\": {\n \"m_Id\": \"fe572b2c84ae4f748491c161fb915fbb\"\n
  1240. },\n \"m_SlotId\": 2\n }\n },\n {\n
  1241. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1242. \"10e57c4e596f4f3faeac42f78d0b9dac\"\n },\n \"m_SlotId\":
  1243. 3\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1244. {\n \"m_Id\": \"2ea0d532adcf4dd2ab8a2b45ae8c40d8\"\n
  1245. },\n \"m_SlotId\": 2\n }\n },\n {\n
  1246. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1247. \"11f8e0c3135f4cd89a5ef76f409878da\"\n },\n \"m_SlotId\":
  1248. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1249. {\n \"m_Id\": \"10e57c4e596f4f3faeac42f78d0b9dac\"\n
  1250. },\n \"m_SlotId\": 2\n }\n },\n {\n
  1251. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1252. \"2ea0d532adcf4dd2ab8a2b45ae8c40d8\"\n },\n \"m_SlotId\":
  1253. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1254. {\n \"m_Id\": \"61198c97ce1d4deeab8688342d04ce83\"\n
  1255. },\n \"m_SlotId\": 1\n }\n },\n {\n
  1256. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1257. \"2ea0d532adcf4dd2ab8a2b45ae8c40d8\"\n },\n \"m_SlotId\":
  1258. 7\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1259. {\n \"m_Id\": \"f5c96fdc4a9e4462b8981d6f6b93b805\"\n
  1260. },\n \"m_SlotId\": 0\n }\n },\n {\n
  1261. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1262. \"61198c97ce1d4deeab8688342d04ce83\"\n },\n \"m_SlotId\":
  1263. 2\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1264. {\n \"m_Id\": \"7106564862a34e969e68e4423766ca40\"\n
  1265. },\n \"m_SlotId\": 0\n }\n },\n {\n
  1266. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1267. \"9e1800319e914e909832f099091a8ff1\"\n },\n \"m_SlotId\":
  1268. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1269. {\n \"m_Id\": \"2ea0d532adcf4dd2ab8a2b45ae8c40d8\"\n
  1270. },\n \"m_SlotId\": 1\n }\n },\n {\n
  1271. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1272. \"a99a7b349008481488caed8c44140091\"\n },\n \"m_SlotId\":
  1273. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1274. {\n \"m_Id\": \"f8452da6dbc84a83b195546679b8765f\"\n
  1275. },\n \"m_SlotId\": 0\n }\n },\n {\n
  1276. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1277. \"bc8481f870e84ecbacff431b5814622e\"\n },\n \"m_SlotId\":
  1278. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1279. {\n \"m_Id\": \"61198c97ce1d4deeab8688342d04ce83\"\n
  1280. },\n \"m_SlotId\": 0\n }\n },\n {\n
  1281. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1282. \"c4416f3c30164181b7dce1f1e855f317\"\n },\n \"m_SlotId\":
  1283. 0\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1284. {\n \"m_Id\": \"10e57c4e596f4f3faeac42f78d0b9dac\"\n
  1285. },\n \"m_SlotId\": 1\n }\n },\n {\n
  1286. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1287. \"f8452da6dbc84a83b195546679b8765f\"\n },\n \"m_SlotId\":
  1288. 2\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1289. {\n \"m_Id\": \"2085d5a512fb43e5ad83afb57b337d50\"\n
  1290. },\n \"m_SlotId\": 0\n }\n },\n {\n
  1291. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1292. \"fe572b2c84ae4f748491c161fb915fbb\"\n },\n \"m_SlotId\":
  1293. 3\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1294. {\n \"m_Id\": \"49dfe75b8b70486789ccf821ff518fc0\"\n
  1295. },\n \"m_SlotId\": 0\n }\n },\n {\n
  1296. \"m_OutputSlot\": {\n \"m_Node\": {\n \"m_Id\":
  1297. \"fe572b2c84ae4f748491c161fb915fbb\"\n },\n \"m_SlotId\":
  1298. 3\n },\n \"m_InputSlot\": {\n \"m_Node\":
  1299. {\n \"m_Id\": \"f8452da6dbc84a83b195546679b8765f\"\n
  1300. },\n \"m_SlotId\": 1\n }\n }\n ],\n \"m_VertexContext\":
  1301. {\n \"m_Position\": {\n \"x\": 633.0000610351563,\n
  1302. \"y\": -73.99998474121094\n },\n \"m_Blocks\": [\n {\n
  1303. \"m_Id\": \"92eab17be7f94193ae94968f2f4ce7ce\"\n },\n {\n
  1304. \"m_Id\": \"2930ba7e7a9846dc996b2380f9c9691f\"\n },\n {\n
  1305. \"m_Id\": \"973e7b36c4af4059b4cd781f873c6a89\"\n }\n ]\n
  1306. },\n \"m_FragmentContext\": {\n \"m_Position\": {\n \"x\":
  1307. 633.0000610351563,\n \"y\": 125.99994659423828\n },\n
  1308. \"m_Blocks\": [\n {\n \"m_Id\": \"7106564862a34e969e68e4423766ca40\"\n
  1309. },\n {\n \"m_Id\": \"53f91342c0954336880ae7ce8d9979b5\"\n
  1310. },\n {\n \"m_Id\": \"676c6f9294804ff190e8aa1ff3e58854\"\n
  1311. },\n {\n \"m_Id\": \"f5c96fdc4a9e4462b8981d6f6b93b805\"\n
  1312. },\n {\n \"m_Id\": \"e7bdd42f1640412185960643fda26ccc\"\n
  1313. },\n {\n \"m_Id\": \"2085d5a512fb43e5ad83afb57b337d50\"\n
  1314. },\n {\n \"m_Id\": \"c80bf38520a048c8989fe111e354f9ca\"\n
  1315. },\n {\n \"m_Id\": \"56425000e805464cabca312912df0039\"\n
  1316. }\n ]\n },\n \"m_PreviewData\": {\n \"serializedMesh\": {\n
  1317. \"m_SerializedMesh\": \"{\\\"mesh\\\":{\\\"instanceID\\\":0}}\",\n
  1318. \"m_Guid\": \"\"\n },\n \"preventRotation\": false\n },\n
  1319. \"m_Path\": \"Shader Graphs\",\n \"m_GraphPrecision\": 1,\n \"m_PreviewMode\":
  1320. 2,\n \"m_OutputNode\": {\n \"m_Id\": \"\"\n },\n \"m_SubDatas\":
  1321. [],\n \"m_ActiveTargets\": [\n {\n \"m_Id\": \"697c1519e67f452f85828eade0ee87be\"\n
  1322. }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\",\n
  1323. \"m_ObjectId\": \"00f1e60e0d1b470f999d3aa07ce30314\",\n \"m_Id\": 0,\n
  1324. \"m_DisplayName\": \"Base Map Color\",\n \"m_SlotType\": 1,\n \"m_Hidden\":
  1325. false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n
  1326. \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n
  1327. \"w\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\":
  1328. 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n
  1329. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n
  1330. \"m_ObjectId\": \"03a99eb617c4428c9f572a63f8f7381d\",\n \"m_Id\": 1,\n
  1331. \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1332. \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1333. {\n \"e00\": 2.0,\n \"e01\": 2.0,\n \"e02\": 2.0,\n
  1334. \"e03\": 2.0,\n \"e10\": 2.0,\n \"e11\": 2.0,\n \"e12\":
  1335. 2.0,\n \"e13\": 2.0,\n \"e20\": 2.0,\n \"e21\": 2.0,\n
  1336. \"e22\": 2.0,\n \"e23\": 2.0,\n \"e30\": 2.0,\n \"e31\":
  1337. 2.0,\n \"e32\": 2.0,\n \"e33\": 2.0\n },\n \"m_DefaultValue\":
  1338. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1339. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  1340. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1341. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1342. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  1343. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.ViewDirectionMaterialSlot\",\n
  1344. \"m_ObjectId\": \"03d626ae4ea44f6e9bc3a1b6cb380296\",\n \"m_Id\": 1,\n
  1345. \"m_DisplayName\": \"View Dir\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1346. \"m_ShaderOutputName\": \"ViewDir\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1347. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n
  1348. \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  1349. 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 2\n}\n\n{\n \"m_SGVersion\":
  1350. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PropertyNode\",\n \"m_ObjectId\":
  1351. \"05abfa8fb43d4aa097fdbd6c20254ef0\",\n \"m_Group\": {\n \"m_Id\":
  1352. \"\"\n },\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n
  1353. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1354. \"2\",\n \"x\": -730.4000244140625,\n \"y\": 536.0,\n
  1355. \"width\": 114.4000244140625,\n \"height\": 33.59991455078125\n
  1356. }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"1937270ba03848b9a5e31821aea7dcad\"\n
  1357. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1358. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1359. {\n \"m_SerializableColors\": []\n },\n \"m_Property\": {\n
  1360. \"m_Id\": \"fa06cb8d401c4ecc974fcf336a5e390a\"\n }\n}\n\n{\n \"m_SGVersion\":
  1361. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\",\n \"m_ObjectId\":
  1362. \"0c377d29babd43b1834641597aceb7e3\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  1363. \"UV Tiling\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1364. \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": {\n \"x\": 0.0,\n
  1365. \"y\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\":
  1366. 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1367. \"UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty\",\n \"m_ObjectId\":
  1368. \"0f84943365fa4f51ac969fe8d95586b8\",\n \"m_Guid\": {\n \"m_GuidSerialized\":
  1369. \"f012eede-5958-4aaf-929a-1c0290963c10\"\n },\n \"m_Name\": \"Base Map\",\n
  1370. \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\": \"Base
  1371. Map\",\n \"m_DefaultReferenceName\": \"_Base_Map\",\n \"m_OverrideReferenceName\":
  1372. \"\",\n \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\":
  1373. false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n
  1374. \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\":
  1375. 0,\n \"m_Hidden\": false,\n \"m_Priority\": 10,\n \"m_Value\": {\n
  1376. \"m_SerializedTexture\": \"\",\n \"m_Guid\": \"\"\n },\n \"isMainTexture\":
  1377. false,\n \"useTilingAndOffset\": false,\n \"m_Modifiable\": true,\n
  1378. \"m_DefaultType\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n
  1379. \"m_ObjectId\": \"0f8aaa0c530a44a0a5f4eec8d573b9c8\",\n \"m_Id\": 0,\n
  1380. \"m_DisplayName\": \"Alpha Clip Threshold\",\n \"m_SlotType\": 0,\n \"m_Hidden\":
  1381. false,\n \"m_ShaderOutputName\": \"AlphaClipThreshold\",\n \"m_StageCapability\":
  1382. 2,\n \"m_Value\": 0.5,\n \"m_DefaultValue\": 0.5,\n \"m_Labels\": []\n}\n\n{\n
  1383. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.TilingAndOffsetNode\",\n
  1384. \"m_ObjectId\": \"10e57c4e596f4f3faeac42f78d0b9dac\",\n \"m_Group\": {\n
  1385. \"m_Id\": \"\"\n },\n \"m_Name\": \"Tiling And Offset\",\n \"m_DrawState\":
  1386. {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1387. \"2\",\n \"x\": -1322.9998779296875,\n \"y\": 4.999992847442627,\n
  1388. \"width\": 207.9998779296875,\n \"height\": 326.0\n }\n
  1389. },\n \"m_Slots\": [\n {\n \"m_Id\": \"8e336cf22ff5433ca9c00a439ade832c\"\n
  1390. },\n {\n \"m_Id\": \"5282f686e4854529a65ce2022a7ac119\"\n
  1391. },\n {\n \"m_Id\": \"c0bd7728f447425eb3fbc4b8d8ad3a45\"\n
  1392. },\n {\n \"m_Id\": \"c6b64cf3743540bcad934020c94edcb5\"\n
  1393. },\n {\n \"m_Id\": \"8f672c00b8f64864882590e01444022c\"\n
  1394. }\n ],\n \"synonyms\": [\n \"pan\",\n \"scale\"\n ],\n
  1395. \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\":
  1396. 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\":
  1397. []\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PropertyNode\",\n
  1398. \"m_ObjectId\": \"11f8e0c3135f4cd89a5ef76f409878da\",\n \"m_Group\": {\n
  1399. \"m_Id\": \"\"\n },\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n
  1400. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1401. \"2\",\n \"x\": -1489.9998779296875,\n \"y\": 152.9999237060547,\n
  1402. \"width\": 128.0,\n \"height\": 33.99998474121094\n }\n
  1403. },\n \"m_Slots\": [\n {\n \"m_Id\": \"95c92ab4750c46dcb97bd699e3da731b\"\n
  1404. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1405. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1406. {\n \"m_SerializableColors\": []\n },\n \"m_Property\": {\n
  1407. \"m_Id\": \"86f489f40ce049c899647e834daab9ce\"\n }\n}\n\n{\n \"m_SGVersion\":
  1408. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  1409. \"1937270ba03848b9a5e31821aea7dcad\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  1410. \"Fresnel\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1411. \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": 0.0,\n \"m_DefaultValue\":
  1412. 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1413. \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitSubTarget\",\n \"m_ObjectId\":
  1414. \"1a63ce81645c44dea29f0f0e4541b1ea\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1415. \"UnityEditor.ShaderGraph.Texture2DInputMaterialSlot\",\n \"m_ObjectId\":
  1416. \"1d0ff69208f24ec59b4526799689b26d\",\n \"m_Id\": 1,\n \"m_DisplayName\":
  1417. \"Texture\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1418. \"Texture\",\n \"m_StageCapability\": 3,\n \"m_BareResource\": false,\n
  1419. \"m_Texture\": {\n \"m_SerializedTexture\": \"\",\n \"m_Guid\":
  1420. \"\"\n },\n \"m_DefaultType\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n
  1421. \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"2085d5a512fb43e5ad83afb57b337d50\",\n
  1422. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Emission\",\n
  1423. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1424. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  1425. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  1426. [\n {\n \"m_Id\": \"a41aad05e21244b8b61376d7f33f0a16\"\n
  1427. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1428. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1429. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1430. \"SurfaceDescription.Emission\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1431. \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"237ce175e8ab45318f2d45ad3c808571\",\n
  1432. \"m_Id\": 5,\n \"m_DisplayName\": \"G\",\n \"m_SlotType\": 1,\n \"m_Hidden\":
  1433. false,\n \"m_ShaderOutputName\": \"G\",\n \"m_StageCapability\": 2,\n
  1434. \"m_Value\": 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n
  1435. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n
  1436. \"m_ObjectId\": \"2930ba7e7a9846dc996b2380f9c9691f\",\n \"m_Group\": {\n
  1437. \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Normal\",\n \"m_DrawState\":
  1438. {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1439. \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\":
  1440. 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n
  1441. {\n \"m_Id\": \"53a0c6dc9f9e4dc98c02a0a99d7585f4\"\n }\n
  1442. ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1443. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1444. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1445. \"VertexDescription.Normal\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1446. \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n \"m_ObjectId\": \"2a81ebe3c37e4ab6b320ae48932c43c1\",\n
  1447. \"m_Id\": 1,\n \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\":
  1448. false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n
  1449. \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n
  1450. \"w\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\":
  1451. 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\":
  1452. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.SampleTexture2DNode\",\n \"m_ObjectId\":
  1453. \"2ea0d532adcf4dd2ab8a2b45ae8c40d8\",\n \"m_Group\": {\n \"m_Id\":
  1454. \"\"\n },\n \"m_Name\": \"Sample Texture 2D\",\n \"m_DrawState\": {\n
  1455. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1456. \"2\",\n \"x\": -897.9999389648438,\n \"y\": -4.000076770782471,\n
  1457. \"width\": 183.00006103515626,\n \"height\": 250.99998474121095\n
  1458. }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"f4aa5b0409d0411791179b82e41e2deb\"\n
  1459. },\n {\n \"m_Id\": \"44ebd03a6a11441db916a08bb2d983da\"\n
  1460. },\n {\n \"m_Id\": \"237ce175e8ab45318f2d45ad3c808571\"\n
  1461. },\n {\n \"m_Id\": \"947c1ce461414fc3b52ed64cd12d14bf\"\n
  1462. },\n {\n \"m_Id\": \"7b0674a508fa4036ab3339599ffe5980\"\n
  1463. },\n {\n \"m_Id\": \"1d0ff69208f24ec59b4526799689b26d\"\n
  1464. },\n {\n \"m_Id\": \"533ab6e1c8a244889f81c7ede4ef68e3\"\n
  1465. },\n {\n \"m_Id\": \"9da4b8d37b034266b82ad6572a1e6a4d\"\n
  1466. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1467. false,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1468. {\n \"m_SerializableColors\": []\n },\n \"m_TextureType\": 0,\n
  1469. \"m_NormalMapSpace\": 0,\n \"m_EnableGlobalMipBias\": true,\n \"m_MipSamplingMode\":
  1470. 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n
  1471. \"m_ObjectId\": \"304c82d2602f4ba1a4e2b7fb738aa41c\",\n \"m_Id\": 3,\n
  1472. \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  1473. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1474. 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\":
  1475. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.TangentMaterialSlot\",\n \"m_ObjectId\":
  1476. \"35cc37c6087b427abec8e77b8392344a\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  1477. \"Tangent\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1478. \"Tangent\",\n \"m_StageCapability\": 1,\n \"m_Value\": {\n \"x\":
  1479. 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\":
  1480. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n
  1481. \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1482. \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"389a8b7cdd614ce8ae3e223228e6bb1e\",\n
  1483. \"m_Id\": 0,\n \"m_DisplayName\": \"Smoothness\",\n \"m_SlotType\": 0,\n
  1484. \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Smoothness\",\n \"m_StageCapability\":
  1485. 2,\n \"m_Value\": 0.0,\n \"m_DefaultValue\": 0.5,\n \"m_Labels\": []\n}\n\n{\n
  1486. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData\",\n
  1487. \"m_ObjectId\": \"3f2b84bd9e054489b28d1c4cdf664776\",\n \"m_Distortion\":
  1488. false,\n \"m_DistortionMode\": 0,\n \"m_DistortionDepthTest\": true,\n
  1489. \"m_AddPrecomputedVelocity\": false,\n \"m_TransparentWritesMotionVec\": false,\n
  1490. \"m_AlphaToMask\": true,\n \"m_DepthOffset\": false,\n \"m_ConservativeDepthOffset\":
  1491. false,\n \"m_TransparencyFog\": true,\n \"m_AlphaTestShadow\": false,\n
  1492. \"m_BackThenFrontRendering\": false,\n \"m_TransparentDepthPrepass\": false,\n
  1493. \"m_TransparentDepthPostpass\": false,\n \"m_SupportLodCrossFade\": false\n}\n\n{\n
  1494. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n
  1495. \"m_ObjectId\": \"418fd7482db6471aae5b24ee798d6621\",\n \"m_Id\": 2,\n
  1496. \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  1497. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1498. {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1499. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\":
  1500. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1501. \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1502. 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\":
  1503. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1504. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  1505. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1506. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1507. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  1508. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n
  1509. \"m_ObjectId\": \"4307e148a4d14e4b87ca246ea3da0891\",\n \"m_Id\": 0,\n
  1510. \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1511. \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1512. {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1513. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\":
  1514. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1515. \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1516. 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\":
  1517. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1518. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  1519. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1520. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1521. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  1522. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  1523. \"44ebd03a6a11441db916a08bb2d983da\",\n \"m_Id\": 4,\n \"m_DisplayName\":
  1524. \"R\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1525. \"R\",\n \"m_StageCapability\": 2,\n \"m_Value\": 0.0,\n \"m_DefaultValue\":
  1526. 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1527. \"UnityEditor.ShaderGraph.OneMinusNode\",\n \"m_ObjectId\": \"49dfe75b8b70486789ccf821ff518fc0\",\n
  1528. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"One Minus\",\n
  1529. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1530. \"serializedVersion\": \"2\",\n \"x\": -192.7999725341797,\n
  1531. \"y\": 661.5999755859375,\n \"width\": 207.99990844726563,\n
  1532. \"height\": 277.5999755859375\n }\n },\n \"m_Slots\": [\n
  1533. {\n \"m_Id\": \"870289de6c5e41f28003bea2d178ec94\"\n },\n
  1534. {\n \"m_Id\": \"2a81ebe3c37e4ab6b320ae48932c43c1\"\n }\n
  1535. ],\n \"synonyms\": [\n \"complement\",\n \"invert\",\n
  1536. \"opposite\"\n ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n
  1537. \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1538. {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\":
  1539. 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.Internal.ColorShaderProperty\",\n
  1540. \"m_ObjectId\": \"4ac6753c614d4847a161f8a96ca6f90c\",\n \"m_Guid\": {\n
  1541. \"m_GuidSerialized\": \"3529f0e6-f784-4720-a4d8-1c108637d5cf\"\n },\n \"m_Name\":
  1542. \"Base Map Color\",\n \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\":
  1543. \"Base Map Color\",\n \"m_DefaultReferenceName\": \"_Base_Map_Color\",\n
  1544. \"m_OverrideReferenceName\": \"\",\n \"m_GeneratePropertyBlock\": true,\n
  1545. \"m_UseCustomSlotLabel\": false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\":
  1546. 0,\n \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\":
  1547. 0,\n \"m_Hidden\": false,\n \"m_Priority\": 10,\n \"m_Value\": {\n
  1548. \"r\": 1.0,\n \"g\": 1.0,\n \"b\": 1.0,\n \"a\": 0.0\n
  1549. },\n \"isMainColor\": false,\n \"m_ColorMode\": 0\n}\n\n{\n \"m_SGVersion\":
  1550. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\",\n \"m_ObjectId\":
  1551. \"5282f686e4854529a65ce2022a7ac119\",\n \"m_Id\": 1,\n \"m_DisplayName\":
  1552. \"Tiling\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1553. \"Tiling\",\n \"m_StageCapability\": 3,\n \"m_Value\": {\n \"x\":
  1554. 1.0,\n \"y\": 1.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n
  1555. \"y\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n
  1556. \"m_Type\": \"UnityEditor.ShaderGraph.UVMaterialSlot\",\n \"m_ObjectId\":
  1557. \"533ab6e1c8a244889f81c7ede4ef68e3\",\n \"m_Id\": 2,\n \"m_DisplayName\":
  1558. \"UV\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1559. \"UV\",\n \"m_StageCapability\": 3,\n \"m_Value\": {\n \"x\": 0.0,\n
  1560. \"y\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\":
  1561. 0.0\n },\n \"m_Labels\": [],\n \"m_Channel\": 0\n}\n\n{\n \"m_SGVersion\":
  1562. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\":
  1563. \"53a0c6dc9f9e4dc98c02a0a99d7585f4\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  1564. \"Normal\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1565. \"Normal\",\n \"m_StageCapability\": 1,\n \"m_Value\": {\n \"x\":
  1566. 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\":
  1567. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n
  1568. \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1569. \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"53f91342c0954336880ae7ce8d9979b5\",\n
  1570. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.NormalTS\",\n
  1571. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1572. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  1573. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  1574. [\n {\n \"m_Id\": \"cac027f985e84f6aa9c4922ea891d92f\"\n
  1575. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1576. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1577. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1578. \"SurfaceDescription.NormalTS\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1579. \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"56425000e805464cabca312912df0039\",\n
  1580. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Metallic\",\n
  1581. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1582. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  1583. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  1584. [\n {\n \"m_Id\": \"ecce0f14907242139181b805a0f846d2\"\n
  1585. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1586. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1587. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1588. \"SurfaceDescription.Metallic\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1589. \"UnityEditor.ShaderGraph.MultiplyNode\",\n \"m_ObjectId\": \"61198c97ce1d4deeab8688342d04ce83\",\n
  1590. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Multiply\",\n
  1591. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1592. \"serializedVersion\": \"2\",\n \"x\": -402.99993896484377,\n
  1593. \"y\": -53.99996566772461,\n \"width\": 208.0,\n \"height\":
  1594. 301.99993896484377\n }\n },\n \"m_Slots\": [\n {\n
  1595. \"m_Id\": \"4307e148a4d14e4b87ca246ea3da0891\"\n },\n {\n
  1596. \"m_Id\": \"865fc7998f224186bc440e8ba242a42e\"\n },\n {\n
  1597. \"m_Id\": \"86cb135f9fc54051a2cc75738fb46a30\"\n }\n ],\n \"synonyms\":
  1598. [\n \"multiplication\",\n \"times\",\n \"x\"\n ],\n
  1599. \"m_Precision\": 0,\n \"m_PreviewExpanded\": false,\n \"m_DismissedVersion\":
  1600. 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\":
  1601. []\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n
  1602. \"m_ObjectId\": \"676c6f9294804ff190e8aa1ff3e58854\",\n \"m_Group\": {\n
  1603. \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Smoothness\",\n
  1604. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1605. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  1606. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  1607. [\n {\n \"m_Id\": \"389a8b7cdd614ce8ae3e223228e6bb1e\"\n
  1608. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1609. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1610. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1611. \"SurfaceDescription.Smoothness\"\n}\n\n{\n \"m_SGVersion\": 1,\n \"m_Type\":
  1612. \"UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget\",\n \"m_ObjectId\":
  1613. \"697c1519e67f452f85828eade0ee87be\",\n \"m_Datas\": [],\n \"m_ActiveSubTarget\":
  1614. {\n \"m_Id\": \"cfe2c0528d634cd5a29a6b3e7dd299ef\"\n },\n \"m_AllowMaterialOverride\":
  1615. false,\n \"m_SurfaceType\": 0,\n \"m_ZTestMode\": 4,\n \"m_ZWriteControl\":
  1616. 0,\n \"m_AlphaMode\": 0,\n \"m_RenderFace\": 0,\n \"m_AlphaClip\": true,\n
  1617. \"m_CastShadows\": true,\n \"m_ReceiveShadows\": true,\n \"m_SupportsLODCrossFade\":
  1618. false,\n \"m_CustomEditorGUI\": \"\",\n \"m_SupportVFX\": false\n}\n\n{\n
  1619. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n
  1620. \"m_ObjectId\": \"6a8b04a374fb4f2eaf3e43c7b4855fae\",\n \"m_Id\": 0,\n
  1621. \"m_DisplayName\": \"Normal\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1622. \"m_ShaderOutputName\": \"Normal\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1623. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n
  1624. \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  1625. 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 2\n}\n\n{\n \"m_SGVersion\":
  1626. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\":
  1627. \"7106564862a34e969e68e4423766ca40\",\n \"m_Group\": {\n \"m_Id\":
  1628. \"\"\n },\n \"m_Name\": \"SurfaceDescription.BaseColor\",\n \"m_DrawState\":
  1629. {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1630. \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\":
  1631. 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n
  1632. {\n \"m_Id\": \"8b7da56015f347ef902cc3ab32102f7e\"\n }\n
  1633. ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1634. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1635. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1636. \"SurfaceDescription.BaseColor\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1637. \"UnityEditor.Rendering.HighDefinition.ShaderGraph.LightingData\",\n \"m_ObjectId\":
  1638. \"713ff1daf9a84d54a327d44be113a3d5\",\n \"m_NormalDropOffSpace\": 0,\n
  1639. \"m_BlendPreserveSpecular\": true,\n \"m_ReceiveDecals\": true,\n \"m_ReceiveSSR\":
  1640. true,\n \"m_ReceiveSSRTransparent\": false,\n \"m_SpecularAA\": false,\n
  1641. \"m_SpecularOcclusionMode\": 1,\n \"m_OverrideBakedGI\": false\n}\n\n{\n
  1642. \"m_SGVersion\": 1,\n \"m_Type\": \"UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty\",\n
  1643. \"m_ObjectId\": \"7365b1dcd6de49b6924ea8eefadda59d\",\n \"m_Guid\": {\n
  1644. \"m_GuidSerialized\": \"a127a99a-a9d9-4fa4-9694-1bb348943e3d\"\n },\n \"m_Name\":
  1645. \"UV Tiling\",\n \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\":
  1646. \"UV Tiling\",\n \"m_DefaultReferenceName\": \"_UV_Tiling\",\n \"m_OverrideReferenceName\":
  1647. \"\",\n \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\":
  1648. false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n
  1649. \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\":
  1650. 0,\n \"m_Hidden\": false,\n \"m_Priority\": 10,\n \"m_Value\": {\n
  1651. \"x\": 1.0,\n \"y\": 1.0,\n \"z\": 0.0,\n \"w\": 0.0\n
  1652. }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n
  1653. \"m_ObjectId\": \"7b0674a508fa4036ab3339599ffe5980\",\n \"m_Id\": 7,\n
  1654. \"m_DisplayName\": \"A\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  1655. \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 2,\n \"m_Value\":
  1656. 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\":
  1657. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  1658. \"800dc7e1a2714811a531031bcbaa7708\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  1659. \"Alpha\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1660. \"Alpha\",\n \"m_StageCapability\": 2,\n \"m_Value\": 1.0,\n \"m_DefaultValue\":
  1661. 1.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1662. \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n \"m_ObjectId\": \"8407bf9ef6b1483baf15a40c02698c45\",\n
  1663. \"m_Id\": 0,\n \"m_DisplayName\": \"A\",\n \"m_SlotType\": 0,\n \"m_Hidden\":
  1664. false,\n \"m_ShaderOutputName\": \"A\",\n \"m_StageCapability\": 3,\n
  1665. \"m_Value\": {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\":
  1666. 0.0,\n \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n
  1667. \"e12\": 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\":
  1668. 0.0,\n \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n
  1669. \"e31\": 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\":
  1670. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1671. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  1672. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1673. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1674. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  1675. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n
  1676. \"m_ObjectId\": \"865fc7998f224186bc440e8ba242a42e\",\n \"m_Id\": 1,\n
  1677. \"m_DisplayName\": \"B\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1678. \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1679. {\n \"e00\": 2.0,\n \"e01\": 2.0,\n \"e02\": 2.0,\n
  1680. \"e03\": 2.0,\n \"e10\": 2.0,\n \"e11\": 2.0,\n \"e12\":
  1681. 2.0,\n \"e13\": 2.0,\n \"e20\": 2.0,\n \"e21\": 2.0,\n
  1682. \"e22\": 2.0,\n \"e23\": 2.0,\n \"e30\": 2.0,\n \"e31\":
  1683. 2.0,\n \"e32\": 2.0,\n \"e33\": 2.0\n },\n \"m_DefaultValue\":
  1684. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1685. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  1686. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1687. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1688. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  1689. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\",\n
  1690. \"m_ObjectId\": \"86cb135f9fc54051a2cc75738fb46a30\",\n \"m_Id\": 2,\n
  1691. \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  1692. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1693. {\n \"e00\": 0.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1694. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 0.0,\n \"e12\":
  1695. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1696. \"e22\": 0.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1697. 0.0,\n \"e32\": 0.0,\n \"e33\": 0.0\n },\n \"m_DefaultValue\":
  1698. {\n \"e00\": 1.0,\n \"e01\": 0.0,\n \"e02\": 0.0,\n
  1699. \"e03\": 0.0,\n \"e10\": 0.0,\n \"e11\": 1.0,\n \"e12\":
  1700. 0.0,\n \"e13\": 0.0,\n \"e20\": 0.0,\n \"e21\": 0.0,\n
  1701. \"e22\": 1.0,\n \"e23\": 0.0,\n \"e30\": 0.0,\n \"e31\":
  1702. 0.0,\n \"e32\": 0.0,\n \"e33\": 1.0\n }\n}\n\n{\n \"m_SGVersion\":
  1703. 1,\n \"m_Type\": \"UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty\",\n
  1704. \"m_ObjectId\": \"86f489f40ce049c899647e834daab9ce\",\n \"m_Guid\": {\n
  1705. \"m_GuidSerialized\": \"ab27269e-526a-4a9f-bb67-a4678872b55b\"\n },\n \"m_Name\":
  1706. \"UV Offset\",\n \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\":
  1707. \"UV Offset\",\n \"m_DefaultReferenceName\": \"_UV_Offset\",\n \"m_OverrideReferenceName\":
  1708. \"\",\n \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\":
  1709. false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n
  1710. \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\":
  1711. 0,\n \"m_Hidden\": false,\n \"m_Priority\": 10,\n \"m_Value\": {\n
  1712. \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n
  1713. }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\",\n
  1714. \"m_ObjectId\": \"870289de6c5e41f28003bea2d178ec94\",\n \"m_Id\": 0,\n
  1715. \"m_DisplayName\": \"In\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1716. \"m_ShaderOutputName\": \"In\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1717. {\n \"x\": 1.0,\n \"y\": 1.0,\n \"z\": 1.0,\n \"w\":
  1718. 1.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  1719. \"z\": 0.0,\n \"w\": 0.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n
  1720. \"m_Type\": \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n \"m_ObjectId\":
  1721. \"8b7da56015f347ef902cc3ab32102f7e\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  1722. \"Base Color\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1723. \"BaseColor\",\n \"m_StageCapability\": 2,\n \"m_Value\": {\n \"x\":
  1724. 0.5,\n \"y\": 0.5,\n \"z\": 0.5\n },\n \"m_DefaultValue\":
  1725. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n
  1726. \"m_Labels\": [],\n \"m_ColorMode\": 0,\n \"m_DefaultColor\": {\n
  1727. \"r\": 0.5,\n \"g\": 0.5,\n \"b\": 0.5,\n \"a\": 1.0\n
  1728. }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.UVMaterialSlot\",\n
  1729. \"m_ObjectId\": \"8e336cf22ff5433ca9c00a439ade832c\",\n \"m_Id\": 0,\n
  1730. \"m_DisplayName\": \"UV\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1731. \"m_ShaderOutputName\": \"UV\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1732. {\n \"x\": 0.0,\n \"y\": 0.0\n },\n \"m_DefaultValue\": {\n
  1733. \"x\": 0.0,\n \"y\": 0.0\n },\n \"m_Labels\": [],\n \"m_Channel\":
  1734. 0\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\",\n
  1735. \"m_ObjectId\": \"8f672c00b8f64864882590e01444022c\",\n \"m_Id\": 4,\n
  1736. \"m_DisplayName\": \"VG Tiling\",\n \"m_SlotType\": 1,\n \"m_Hidden\":
  1737. true,\n \"m_ShaderOutputName\": \"VGTiling\",\n \"m_StageCapability\":
  1738. 3,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0\n },\n
  1739. \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0\n },\n \"m_Labels\":
  1740. []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n
  1741. \"m_ObjectId\": \"92eab17be7f94193ae94968f2f4ce7ce\",\n \"m_Group\": {\n
  1742. \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Position\",\n
  1743. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1744. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  1745. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  1746. [\n {\n \"m_Id\": \"98344411943947b29798c54d2f211672\"\n
  1747. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1748. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1749. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1750. \"VertexDescription.Position\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1751. \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"947c1ce461414fc3b52ed64cd12d14bf\",\n
  1752. \"m_Id\": 6,\n \"m_DisplayName\": \"B\",\n \"m_SlotType\": 1,\n \"m_Hidden\":
  1753. false,\n \"m_ShaderOutputName\": \"B\",\n \"m_StageCapability\": 2,\n
  1754. \"m_Value\": 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n
  1755. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\",\n
  1756. \"m_ObjectId\": \"95c92ab4750c46dcb97bd699e3da731b\",\n \"m_Id\": 0,\n
  1757. \"m_DisplayName\": \"UV Offset\",\n \"m_SlotType\": 1,\n \"m_Hidden\":
  1758. false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n
  1759. \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0\n },\n \"m_DefaultValue\":
  1760. {\n \"x\": 0.0,\n \"y\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n
  1761. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n
  1762. \"m_ObjectId\": \"973e7b36c4af4059b4cd781f873c6a89\",\n \"m_Group\": {\n
  1763. \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Tangent\",\n \"m_DrawState\":
  1764. {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1765. \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\":
  1766. 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n
  1767. {\n \"m_Id\": \"35cc37c6087b427abec8e77b8392344a\"\n }\n
  1768. ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1769. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1770. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1771. \"VertexDescription.Tangent\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1772. \"UnityEditor.ShaderGraph.PositionMaterialSlot\",\n \"m_ObjectId\": \"98344411943947b29798c54d2f211672\",\n
  1773. \"m_Id\": 0,\n \"m_DisplayName\": \"Position\",\n \"m_SlotType\": 0,\n
  1774. \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Position\",\n \"m_StageCapability\":
  1775. 1,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  1776. 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  1777. \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\":
  1778. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.SamplerStateMaterialSlot\",\n
  1779. \"m_ObjectId\": \"9da4b8d37b034266b82ad6572a1e6a4d\",\n \"m_Id\": 3,\n
  1780. \"m_DisplayName\": \"Sampler\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1781. \"m_ShaderOutputName\": \"Sampler\",\n \"m_StageCapability\": 3,\n \"m_BareResource\":
  1782. false\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PropertyNode\",\n
  1783. \"m_ObjectId\": \"9e1800319e914e909832f099091a8ff1\",\n \"m_Group\": {\n
  1784. \"m_Id\": \"\"\n },\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n
  1785. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1786. \"2\",\n \"x\": -1141.5999755859375,\n \"y\": -82.39999389648438,\n
  1787. \"width\": 136.0,\n \"height\": 33.59999084472656\n }\n
  1788. },\n \"m_Slots\": [\n {\n \"m_Id\": \"d9a421b61c4948ef85494da4031eb6c7\"\n
  1789. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1790. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1791. {\n \"m_SerializableColors\": []\n },\n \"m_Property\": {\n
  1792. \"m_Id\": \"0f84943365fa4f51ac969fe8d95586b8\"\n }\n}\n\n{\n \"m_SGVersion\":
  1793. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.CategoryData\",\n \"m_ObjectId\":
  1794. \"a39d9219e1ed4cbc8ea770fb620fd534\",\n \"m_Name\": \"\",\n \"m_ChildObjectList\":
  1795. [\n {\n \"m_Id\": \"0f84943365fa4f51ac969fe8d95586b8\"\n
  1796. },\n {\n \"m_Id\": \"4ac6753c614d4847a161f8a96ca6f90c\"\n
  1797. },\n {\n \"m_Id\": \"7365b1dcd6de49b6924ea8eefadda59d\"\n
  1798. },\n {\n \"m_Id\": \"86f489f40ce049c899647e834daab9ce\"\n
  1799. },\n {\n \"m_Id\": \"fa06cb8d401c4ecc974fcf336a5e390a\"\n
  1800. },\n {\n \"m_Id\": \"d8a8a2dbaad84f408e1bd68d4383ba0f\"\n
  1801. }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n
  1802. \"m_ObjectId\": \"a41aad05e21244b8b61376d7f33f0a16\",\n \"m_Id\": 0,\n
  1803. \"m_DisplayName\": \"Emission\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1804. \"m_ShaderOutputName\": \"Emission\",\n \"m_StageCapability\": 2,\n \"m_Value\":
  1805. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0\n },\n
  1806. \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  1807. 0.0\n },\n \"m_Labels\": [],\n \"m_ColorMode\": 1,\n \"m_DefaultColor\":
  1808. {\n \"r\": 0.0,\n \"g\": 0.0,\n \"b\": 0.0,\n \"a\":
  1809. 1.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PropertyNode\",\n
  1810. \"m_ObjectId\": \"a99a7b349008481488caed8c44140091\",\n \"m_Group\": {\n
  1811. \"m_Id\": \"\"\n },\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n
  1812. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1813. \"2\",\n \"x\": -108.80003356933594,\n \"y\": 427.9999694824219,\n
  1814. \"width\": 143.99998474121095,\n \"height\": 33.600006103515628\n
  1815. }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"c6bf39c124e74082ba03f5bc489a42dc\"\n
  1816. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1817. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1818. {\n \"m_SerializableColors\": []\n },\n \"m_Property\": {\n
  1819. \"m_Id\": \"d8a8a2dbaad84f408e1bd68d4383ba0f\"\n }\n}\n\n{\n \"m_SGVersion\":
  1820. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  1821. \"adc4959c5dbf42958f112ea3899e43eb\",\n \"m_Id\": 2,\n \"m_DisplayName\":
  1822. \"Power\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1823. \"Power\",\n \"m_StageCapability\": 3,\n \"m_Value\": 1.0,\n \"m_DefaultValue\":
  1824. 1.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1825. \"UnityEditor.ShaderGraph.PropertyNode\",\n \"m_ObjectId\": \"bc8481f870e84ecbacff431b5814622e\",\n
  1826. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Property\",\n
  1827. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1828. \"serializedVersion\": \"2\",\n \"x\": -666.4000244140625,\n
  1829. \"y\": -65.59999084472656,\n \"width\": 160.00006103515626,\n
  1830. \"height\": 33.600006103515628\n }\n },\n \"m_Slots\": [\n
  1831. {\n \"m_Id\": \"00f1e60e0d1b470f999d3aa07ce30314\"\n }\n
  1832. ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1833. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1834. {\n \"m_SerializableColors\": []\n },\n \"m_Property\": {\n
  1835. \"m_Id\": \"4ac6753c614d4847a161f8a96ca6f90c\"\n }\n}\n\n{\n \"m_SGVersion\":
  1836. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\",\n \"m_ObjectId\":
  1837. \"c0bd7728f447425eb3fbc4b8d8ad3a45\",\n \"m_Id\": 2,\n \"m_DisplayName\":
  1838. \"Offset\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1839. \"Offset\",\n \"m_StageCapability\": 3,\n \"m_Value\": {\n \"x\":
  1840. 0.0,\n \"y\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n
  1841. \"y\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n
  1842. \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData\",\n
  1843. \"m_ObjectId\": \"c1e053bcfa0e4aa4a2665d8e095b6ec8\",\n \"m_MaterialNeedsUpdateHash\":
  1844. 280370,\n \"m_SurfaceType\": 0,\n \"m_RenderingPass\": 1,\n \"m_BlendMode\":
  1845. 0,\n \"m_ZTest\": 4,\n \"m_ZWrite\": false,\n \"m_TransparentCullMode\":
  1846. 2,\n \"m_OpaqueCullMode\": 2,\n \"m_SortPriority\": 0,\n \"m_AlphaTest\":
  1847. true,\n \"m_TransparentDepthPrepass\": false,\n \"m_TransparentDepthPostpass\":
  1848. false,\n \"m_SupportLodCrossFade\": false,\n \"m_DoubleSidedMode\": 1,\n
  1849. \"m_DOTSInstancing\": false,\n \"m_CustomVelocity\": false,\n \"m_Tessellation\":
  1850. false,\n \"m_TessellationMode\": 0,\n \"m_TessellationFactorMinDistance\":
  1851. 20.0,\n \"m_TessellationFactorMaxDistance\": 50.0,\n \"m_TessellationFactorTriangleSize\":
  1852. 100.0,\n \"m_TessellationShapeFactor\": 0.75,\n \"m_TessellationBackFaceCullEpsilon\":
  1853. -0.25,\n \"m_TessellationMaxDisplacement\": 0.009999999776482582,\n \"m_Version\":
  1854. 1,\n \"inspectorFoldoutMask\": 9\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1855. \"UnityEditor.ShaderGraph.PropertyNode\",\n \"m_ObjectId\": \"c4416f3c30164181b7dce1f1e855f317\",\n
  1856. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"Property\",\n
  1857. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1858. \"serializedVersion\": \"2\",\n \"x\": -1531.9998779296875,\n
  1859. \"y\": 63.99998092651367,\n \"width\": 124.0,\n \"height\":
  1860. 33.99998092651367\n }\n },\n \"m_Slots\": [\n {\n
  1861. \"m_Id\": \"0c377d29babd43b1834641597aceb7e3\"\n }\n ],\n \"synonyms\":
  1862. [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n \"m_DismissedVersion\":
  1863. 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\": {\n \"m_SerializableColors\":
  1864. []\n },\n \"m_Property\": {\n \"m_Id\": \"7365b1dcd6de49b6924ea8eefadda59d\"\n
  1865. }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\",\n
  1866. \"m_ObjectId\": \"c6b64cf3743540bcad934020c94edcb5\",\n \"m_Id\": 3,\n
  1867. \"m_DisplayName\": \"Out\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n
  1868. \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\":
  1869. {\n \"x\": 0.0,\n \"y\": 0.0\n },\n \"m_DefaultValue\": {\n
  1870. \"x\": 0.0,\n \"y\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\":
  1871. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\",\n \"m_ObjectId\":
  1872. \"c6bf39c124e74082ba03f5bc489a42dc\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  1873. \"FresnelColor\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1874. \"Out\",\n \"m_StageCapability\": 3,\n \"m_Value\": {\n \"x\": 0.0,\n
  1875. \"y\": 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n },\n \"m_DefaultValue\":
  1876. {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\":
  1877. 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1878. \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"c80bf38520a048c8989fe111e354f9ca\",\n
  1879. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Occlusion\",\n
  1880. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1881. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  1882. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  1883. [\n {\n \"m_Id\": \"f74becf0723b4c6cae33608fc7d193ce\"\n
  1884. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1885. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1886. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1887. \"SurfaceDescription.Occlusion\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1888. \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": \"cac027f985e84f6aa9c4922ea891d92f\",\n
  1889. \"m_Id\": 0,\n \"m_DisplayName\": \"Normal (Tangent Space)\",\n \"m_SlotType\":
  1890. 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"NormalTS\",\n
  1891. \"m_StageCapability\": 2,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\":
  1892. 0.0,\n \"z\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n
  1893. \"y\": 0.0,\n \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_Space\":
  1894. 3\n}\n\n{\n \"m_SGVersion\": 2,\n \"m_Type\": \"UnityEditor.Rendering.Universal.ShaderGraph.UniversalLitSubTarget\",\n
  1895. \"m_ObjectId\": \"cfe2c0528d634cd5a29a6b3e7dd299ef\",\n \"m_WorkflowMode\":
  1896. 1,\n \"m_NormalDropOffSpace\": 0,\n \"m_ClearCoat\": false,\n \"m_BlendModePreserveSpecular\":
  1897. false\n}\n\n{\n \"m_SGVersion\": 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.Internal.ColorShaderProperty\",\n
  1898. \"m_ObjectId\": \"d8a8a2dbaad84f408e1bd68d4383ba0f\",\n \"m_Guid\": {\n
  1899. \"m_GuidSerialized\": \"62114ef5-3c16-4cd4-b842-f23de073a6fa\"\n },\n \"m_Name\":
  1900. \"FresnelColor\",\n \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\":
  1901. \"FresnelColor\",\n \"m_DefaultReferenceName\": \"_FresnelColor\",\n \"m_OverrideReferenceName\":
  1902. \"\",\n \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\":
  1903. false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n
  1904. \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\":
  1905. 0,\n \"m_Hidden\": false,\n \"m_Priority\": 10,\n \"m_Value\": {\n
  1906. \"r\": 1.0,\n \"g\": 1.0,\n \"b\": 1.0,\n \"a\": 0.0\n
  1907. },\n \"isMainColor\": false,\n \"m_ColorMode\": 1\n}\n\n{\n \"m_SGVersion\":
  1908. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Texture2DMaterialSlot\",\n \"m_ObjectId\":
  1909. \"d9a421b61c4948ef85494da4031eb6c7\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  1910. \"Base Map\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1911. \"Out\",\n \"m_StageCapability\": 3,\n \"m_BareResource\": false\n}\n\n{\n
  1912. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n
  1913. \"m_ObjectId\": \"e7bdd42f1640412185960643fda26ccc\",\n \"m_Group\": {\n
  1914. \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.AlphaClipThreshold\",\n
  1915. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  1916. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  1917. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  1918. [\n {\n \"m_Id\": \"0f8aaa0c530a44a0a5f4eec8d573b9c8\"\n
  1919. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1920. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1921. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1922. \"SurfaceDescription.AlphaClipThreshold\"\n}\n\n{\n \"m_SGVersion\": 0,\n
  1923. \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitData\",\n
  1924. \"m_ObjectId\": \"ea4cf39f28294c61a56a59213bc58cfa\",\n \"m_RayTracing\":
  1925. false,\n \"m_MaterialType\": 0,\n \"m_RefractionModel\": 0,\n \"m_SSSTransmission\":
  1926. true,\n \"m_EnergyConservingSpecular\": true,\n \"m_ClearCoat\": false\n}\n\n{\n
  1927. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n
  1928. \"m_ObjectId\": \"ecce0f14907242139181b805a0f846d2\",\n \"m_Id\": 0,\n
  1929. \"m_DisplayName\": \"Metallic\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n
  1930. \"m_ShaderOutputName\": \"Metallic\",\n \"m_StageCapability\": 2,\n \"m_Value\":
  1931. 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\":
  1932. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\",\n \"m_ObjectId\":
  1933. \"f4aa5b0409d0411791179b82e41e2deb\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  1934. \"RGBA\",\n \"m_SlotType\": 1,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  1935. \"RGBA\",\n \"m_StageCapability\": 2,\n \"m_Value\": {\n \"x\":
  1936. 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n },\n
  1937. \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  1938. 0.0,\n \"w\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\":
  1939. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\":
  1940. \"f5c96fdc4a9e4462b8981d6f6b93b805\",\n \"m_Group\": {\n \"m_Id\":
  1941. \"\"\n },\n \"m_Name\": \"SurfaceDescription.Alpha\",\n \"m_DrawState\":
  1942. {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1943. \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\":
  1944. 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n
  1945. {\n \"m_Id\": \"800dc7e1a2714811a531031bcbaa7708\"\n }\n
  1946. ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1947. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1948. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  1949. \"SurfaceDescription.Alpha\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  1950. \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"f74becf0723b4c6cae33608fc7d193ce\",\n
  1951. \"m_Id\": 0,\n \"m_DisplayName\": \"Ambient Occlusion\",\n \"m_SlotType\":
  1952. 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Occlusion\",\n
  1953. \"m_StageCapability\": 2,\n \"m_Value\": 1.0,\n \"m_DefaultValue\": 1.0,\n
  1954. \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.MultiplyNode\",\n
  1955. \"m_ObjectId\": \"f8452da6dbc84a83b195546679b8765f\",\n \"m_Group\": {\n
  1956. \"m_Id\": \"\"\n },\n \"m_Name\": \"Multiply\",\n \"m_DrawState\": {\n
  1957. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1958. \"2\",\n \"x\": 103.99992370605469,\n \"y\": 569.5999145507813,\n
  1959. \"width\": 208.0000457763672,\n \"height\": 301.60009765625\n
  1960. }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"8407bf9ef6b1483baf15a40c02698c45\"\n
  1961. },\n {\n \"m_Id\": \"03a99eb617c4428c9f572a63f8f7381d\"\n
  1962. },\n {\n \"m_Id\": \"418fd7482db6471aae5b24ee798d6621\"\n
  1963. }\n ],\n \"synonyms\": [\n \"multiplication\",\n \"times\",\n
  1964. \"x\"\n ],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\": true,\n
  1965. \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  1966. {\n \"m_SerializableColors\": []\n }\n}\n\n{\n \"m_SGVersion\":
  1967. 1,\n \"m_Type\": \"UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty\",\n
  1968. \"m_ObjectId\": \"fa06cb8d401c4ecc974fcf336a5e390a\",\n \"m_Guid\": {\n
  1969. \"m_GuidSerialized\": \"1f62c27c-0884-4e8f-bba3-85b79f5ded77\"\n },\n \"m_Name\":
  1970. \"Fresnel\",\n \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\":
  1971. \"Fresnel\",\n \"m_DefaultReferenceName\": \"_Fresnel\",\n \"m_OverrideReferenceName\":
  1972. \"\",\n \"m_GeneratePropertyBlock\": true,\n \"m_UseCustomSlotLabel\":
  1973. false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\": 0,\n
  1974. \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\":
  1975. 0,\n \"m_Hidden\": false,\n \"m_Priority\": 10,\n \"m_Value\": 3.0,\n
  1976. \"m_FloatType\": 0,\n \"m_RangeValues\": {\n \"x\": 0.0,\n \"y\":
  1977. 1.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.FresnelNode\",\n
  1978. \"m_ObjectId\": \"fe572b2c84ae4f748491c161fb915fbb\",\n \"m_Group\": {\n
  1979. \"m_Id\": \"\"\n },\n \"m_Name\": \"Fresnel Effect\",\n \"m_DrawState\":
  1980. {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  1981. \"2\",\n \"x\": -506.4000549316406,\n \"y\": 410.3999938964844,\n
  1982. \"width\": 208.00003051757813,\n \"height\": 325.5999450683594\n
  1983. }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"6a8b04a374fb4f2eaf3e43c7b4855fae\"\n
  1984. },\n {\n \"m_Id\": \"03d626ae4ea44f6e9bc3a1b6cb380296\"\n
  1985. },\n {\n \"m_Id\": \"adc4959c5dbf42958f112ea3899e43eb\"\n
  1986. },\n {\n \"m_Id\": \"304c82d2602f4ba1a4e2b7fb738aa41c\"\n
  1987. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  1988. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 2,\n \"m_CustomColors\":
  1989. {\n \"m_SerializableColors\": []\n }\n}\n\n"
  1990. m_AssetMaybeChangedOnDisk: 0
  1991. m_AssetMaybeDeleted: 0
  1992. --- !u!114 &16
  1993. MonoBehaviour:
  1994. m_ObjectHideFlags: 52
  1995. m_CorrespondingSourceObject: {fileID: 0}
  1996. m_PrefabInstance: {fileID: 0}
  1997. m_PrefabAsset: {fileID: 0}
  1998. m_GameObject: {fileID: 0}
  1999. m_Enabled: 1
  2000. m_EditorHideFlags: 0
  2001. m_Script: {fileID: 11500000, guid: 924ffcbe75518854f97b48776d0f1939, type: 3}
  2002. m_Name:
  2003. m_EditorClassIdentifier:
  2004. m_MinSize: {x: 100, y: 100}
  2005. m_MaxSize: {x: 4000, y: 4000}
  2006. m_TitleContent:
  2007. m_Text: MeshLight
  2008. m_Image: {fileID: 2800000, guid: 7129268cf102b2f45809905bcb27ce8b, type: 3}
  2009. m_Tooltip:
  2010. m_Pos:
  2011. serializedVersion: 2
  2012. x: 164
  2013. y: 72.66667
  2014. width: 1298
  2015. height: 1278.3334
  2016. m_SerializedDataModeController:
  2017. m_DataMode: 0
  2018. m_PreferredDataMode: 0
  2019. m_SupportedDataModes:
  2020. isAutomatic: 1
  2021. m_ViewDataDictionary: {fileID: 0}
  2022. m_OverlayCanvas:
  2023. m_LastAppliedPresetName: Default
  2024. m_SaveData: []
  2025. m_OverlaysVisible: 1
  2026. m_Selected: 2d57a3da991a54b48b4d1b61787cf6b1
  2027. m_GraphObject: {fileID: 0}
  2028. m_LastSerializedFileContents: "{\n \"m_SGVersion\": 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.GraphData\",\n
  2029. \"m_ObjectId\": \"8a3842f4b41d477c9c2771a7b8c74ff3\",\n \"m_Properties\":
  2030. [\n {\n \"m_Id\": \"4ac6753c614d4847a161f8a96ca6f90c\"\n
  2031. }\n ],\n \"m_Keywords\": [],\n \"m_Dropdowns\": [],\n \"m_CategoryData\":
  2032. [\n {\n \"m_Id\": \"a39d9219e1ed4cbc8ea770fb620fd534\"\n
  2033. }\n ],\n \"m_Nodes\": [\n {\n \"m_Id\": \"7106564862a34e969e68e4423766ca40\"\n
  2034. },\n {\n \"m_Id\": \"676c6f9294804ff190e8aa1ff3e58854\"\n
  2035. },\n {\n \"m_Id\": \"bc8481f870e84ecbacff431b5814622e\"\n
  2036. },\n {\n \"m_Id\": \"92eab17be7f94193ae94968f2f4ce7ce\"\n
  2037. },\n {\n \"m_Id\": \"2930ba7e7a9846dc996b2380f9c9691f\"\n
  2038. },\n {\n \"m_Id\": \"973e7b36c4af4059b4cd781f873c6a89\"\n
  2039. },\n {\n \"m_Id\": \"75f2f7b6e0b542de88f120b9b1d91439\"\n
  2040. },\n {\n \"m_Id\": \"515ee7c8cbd64c96a93e469e52c7f255\"\n
  2041. },\n {\n \"m_Id\": \"d28a6407f15c4a10a3c7c76d0a066c22\"\n
  2042. },\n {\n \"m_Id\": \"dd0caa1af900478fbf7afc106ee09c45\"\n
  2043. }\n ],\n \"m_GroupDatas\": [],\n \"m_StickyNoteDatas\": [],\n \"m_Edges\":
  2044. [\n {\n \"m_OutputSlot\": {\n \"m_Node\": {\n
  2045. \"m_Id\": \"bc8481f870e84ecbacff431b5814622e\"\n },\n
  2046. \"m_SlotId\": 0\n },\n \"m_InputSlot\": {\n
  2047. \"m_Node\": {\n \"m_Id\": \"515ee7c8cbd64c96a93e469e52c7f255\"\n
  2048. },\n \"m_SlotId\": 0\n }\n }\n ],\n \"m_VertexContext\":
  2049. {\n \"m_Position\": {\n \"x\": 633.0000610351563,\n
  2050. \"y\": -73.99998474121094\n },\n \"m_Blocks\": [\n {\n
  2051. \"m_Id\": \"92eab17be7f94193ae94968f2f4ce7ce\"\n },\n {\n
  2052. \"m_Id\": \"2930ba7e7a9846dc996b2380f9c9691f\"\n },\n {\n
  2053. \"m_Id\": \"973e7b36c4af4059b4cd781f873c6a89\"\n }\n ]\n
  2054. },\n \"m_FragmentContext\": {\n \"m_Position\": {\n \"x\":
  2055. 633.0000610351563,\n \"y\": 125.99994659423828\n },\n
  2056. \"m_Blocks\": [\n {\n \"m_Id\": \"7106564862a34e969e68e4423766ca40\"\n
  2057. },\n {\n \"m_Id\": \"676c6f9294804ff190e8aa1ff3e58854\"\n
  2058. },\n {\n \"m_Id\": \"75f2f7b6e0b542de88f120b9b1d91439\"\n
  2059. },\n {\n \"m_Id\": \"515ee7c8cbd64c96a93e469e52c7f255\"\n
  2060. },\n {\n \"m_Id\": \"d28a6407f15c4a10a3c7c76d0a066c22\"\n
  2061. },\n {\n \"m_Id\": \"dd0caa1af900478fbf7afc106ee09c45\"\n
  2062. }\n ]\n },\n \"m_PreviewData\": {\n \"serializedMesh\": {\n
  2063. \"m_SerializedMesh\": \"{\\\"mesh\\\":{\\\"instanceID\\\":0}}\",\n
  2064. \"m_Guid\": \"\"\n },\n \"preventRotation\": false\n },\n
  2065. \"m_Path\": \"Shader Graphs\",\n \"m_GraphPrecision\": 2,\n \"m_PreviewMode\":
  2066. 2,\n \"m_OutputNode\": {\n \"m_Id\": \"\"\n },\n \"m_SubDatas\":
  2067. [],\n \"m_ActiveTargets\": [\n {\n \"m_Id\": \"697c1519e67f452f85828eade0ee87be\"\n
  2068. }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\",\n
  2069. \"m_ObjectId\": \"00f1e60e0d1b470f999d3aa07ce30314\",\n \"m_Id\": 0,\n
  2070. \"m_DisplayName\": \"Base Map Color\",\n \"m_SlotType\": 1,\n \"m_Hidden\":
  2071. false,\n \"m_ShaderOutputName\": \"Out\",\n \"m_StageCapability\": 3,\n
  2072. \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\": 0.0,\n
  2073. \"w\": 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\":
  2074. 0.0,\n \"z\": 0.0,\n \"w\": 0.0\n },\n \"m_Labels\": []\n}\n\n{\n
  2075. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n
  2076. \"m_ObjectId\": \"1743aaf75fd9458c840791896c57c436\",\n \"m_Id\": 0,\n
  2077. \"m_DisplayName\": \"Normal (Tangent Space)\",\n \"m_SlotType\": 0,\n \"m_Hidden\":
  2078. false,\n \"m_ShaderOutputName\": \"NormalTS\",\n \"m_StageCapability\":
  2079. 2,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  2080. 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  2081. \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 3\n}\n\n{\n \"m_SGVersion\":
  2082. 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitSubTarget\",\n
  2083. \"m_ObjectId\": \"1a63ce81645c44dea29f0f0e4541b1ea\"\n}\n\n{\n \"m_SGVersion\":
  2084. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\":
  2085. \"2930ba7e7a9846dc996b2380f9c9691f\",\n \"m_Group\": {\n \"m_Id\":
  2086. \"\"\n },\n \"m_Name\": \"VertexDescription.Normal\",\n \"m_DrawState\":
  2087. {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  2088. \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\":
  2089. 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n
  2090. {\n \"m_Id\": \"53a0c6dc9f9e4dc98c02a0a99d7585f4\"\n }\n
  2091. ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  2092. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  2093. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  2094. \"VertexDescription.Normal\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  2095. \"UnityEditor.ShaderGraph.TangentMaterialSlot\",\n \"m_ObjectId\": \"35cc37c6087b427abec8e77b8392344a\",\n
  2096. \"m_Id\": 0,\n \"m_DisplayName\": \"Tangent\",\n \"m_SlotType\": 0,\n
  2097. \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Tangent\",\n \"m_StageCapability\":
  2098. 1,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  2099. 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  2100. \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\":
  2101. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\":
  2102. \"389a8b7cdd614ce8ae3e223228e6bb1e\",\n \"m_Id\": 0,\n \"m_DisplayName\":
  2103. \"Smoothness\",\n \"m_SlotType\": 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\":
  2104. \"Smoothness\",\n \"m_StageCapability\": 2,\n \"m_Value\": 0.0,\n \"m_DefaultValue\":
  2105. 0.5,\n \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  2106. \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n \"m_ObjectId\": \"39dd6dfeed2b4194963a5c6915c8871e\",\n
  2107. \"m_Id\": 0,\n \"m_DisplayName\": \"Emission\",\n \"m_SlotType\": 0,\n
  2108. \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Emission\",\n \"m_StageCapability\":
  2109. 2,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  2110. 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  2111. \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_ColorMode\": 1,\n \"m_DefaultColor\":
  2112. {\n \"r\": 0.0,\n \"g\": 0.0,\n \"b\": 0.0,\n \"a\":
  2113. 1.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData\",\n
  2114. \"m_ObjectId\": \"3f2b84bd9e054489b28d1c4cdf664776\",\n \"m_Distortion\":
  2115. false,\n \"m_DistortionMode\": 0,\n \"m_DistortionDepthTest\": true,\n
  2116. \"m_AddPrecomputedVelocity\": false,\n \"m_TransparentWritesMotionVec\": false,\n
  2117. \"m_AlphaToMask\": true,\n \"m_DepthOffset\": false,\n \"m_ConservativeDepthOffset\":
  2118. false,\n \"m_TransparencyFog\": true,\n \"m_AlphaTestShadow\": false,\n
  2119. \"m_BackThenFrontRendering\": false,\n \"m_TransparentDepthPrepass\": false,\n
  2120. \"m_TransparentDepthPostpass\": false,\n \"m_SupportLodCrossFade\": false\n}\n\n{\n
  2121. \"m_SGVersion\": 3,\n \"m_Type\": \"UnityEditor.ShaderGraph.Internal.ColorShaderProperty\",\n
  2122. \"m_ObjectId\": \"4ac6753c614d4847a161f8a96ca6f90c\",\n \"m_Guid\": {\n
  2123. \"m_GuidSerialized\": \"3529f0e6-f784-4720-a4d8-1c108637d5cf\"\n },\n \"m_Name\":
  2124. \"Base Map Color\",\n \"m_DefaultRefNameVersion\": 1,\n \"m_RefNameGeneratedByDisplayName\":
  2125. \"Base Map Color\",\n \"m_DefaultReferenceName\": \"_Base_Map_Color\",\n
  2126. \"m_OverrideReferenceName\": \"\",\n \"m_GeneratePropertyBlock\": true,\n
  2127. \"m_UseCustomSlotLabel\": false,\n \"m_CustomSlotLabel\": \"\",\n \"m_DismissedVersion\":
  2128. 0,\n \"m_Precision\": 0,\n \"overrideHLSLDeclaration\": false,\n \"hlslDeclarationOverride\":
  2129. 0,\n \"m_Hidden\": false,\n \"m_Priority\": 10,\n \"m_Value\": {\n
  2130. \"r\": 1.0,\n \"g\": 1.0,\n \"b\": 1.0,\n \"a\": 0.0\n
  2131. },\n \"isMainColor\": false,\n \"m_ColorMode\": 1\n}\n\n{\n \"m_SGVersion\":
  2132. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\":
  2133. \"515ee7c8cbd64c96a93e469e52c7f255\",\n \"m_Group\": {\n \"m_Id\":
  2134. \"\"\n },\n \"m_Name\": \"SurfaceDescription.Emission\",\n \"m_DrawState\":
  2135. {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  2136. \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n \"width\":
  2137. 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\": [\n
  2138. {\n \"m_Id\": \"39dd6dfeed2b4194963a5c6915c8871e\"\n }\n
  2139. ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  2140. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  2141. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  2142. \"SurfaceDescription.Emission\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  2143. \"UnityEditor.ShaderGraph.NormalMaterialSlot\",\n \"m_ObjectId\": \"53a0c6dc9f9e4dc98c02a0a99d7585f4\",\n
  2144. \"m_Id\": 0,\n \"m_DisplayName\": \"Normal\",\n \"m_SlotType\": 0,\n
  2145. \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Normal\",\n \"m_StageCapability\":
  2146. 1,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  2147. 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  2148. \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\":
  2149. 2,\n \"m_Type\": \"UnityEditor.Rendering.Universal.ShaderGraph.UniversalLitSubTarget\",\n
  2150. \"m_ObjectId\": \"630aa78552ec4e4981ffe9a821ee0543\",\n \"m_WorkflowMode\":
  2151. 1,\n \"m_NormalDropOffSpace\": 0,\n \"m_ClearCoat\": false,\n \"m_BlendModePreserveSpecular\":
  2152. true\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n
  2153. \"m_ObjectId\": \"676c6f9294804ff190e8aa1ff3e58854\",\n \"m_Group\": {\n
  2154. \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Smoothness\",\n
  2155. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  2156. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  2157. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  2158. [\n {\n \"m_Id\": \"389a8b7cdd614ce8ae3e223228e6bb1e\"\n
  2159. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  2160. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  2161. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  2162. \"SurfaceDescription.Smoothness\"\n}\n\n{\n \"m_SGVersion\": 1,\n \"m_Type\":
  2163. \"UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget\",\n \"m_ObjectId\":
  2164. \"697c1519e67f452f85828eade0ee87be\",\n \"m_Datas\": [],\n \"m_ActiveSubTarget\":
  2165. {\n \"m_Id\": \"630aa78552ec4e4981ffe9a821ee0543\"\n },\n \"m_AllowMaterialOverride\":
  2166. false,\n \"m_SurfaceType\": 0,\n \"m_ZTestMode\": 4,\n \"m_ZWriteControl\":
  2167. 0,\n \"m_AlphaMode\": 0,\n \"m_RenderFace\": 1,\n \"m_AlphaClip\": false,\n
  2168. \"m_CastShadows\": false,\n \"m_ReceiveShadows\": false,\n \"m_SupportsLODCrossFade\":
  2169. false,\n \"m_CustomEditorGUI\": \"\",\n \"m_SupportVFX\": false\n}\n\n{\n
  2170. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n
  2171. \"m_ObjectId\": \"7106564862a34e969e68e4423766ca40\",\n \"m_Group\": {\n
  2172. \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.BaseColor\",\n
  2173. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  2174. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  2175. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  2176. [\n {\n \"m_Id\": \"8b7da56015f347ef902cc3ab32102f7e\"\n
  2177. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  2178. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  2179. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  2180. \"SurfaceDescription.BaseColor\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  2181. \"UnityEditor.Rendering.HighDefinition.ShaderGraph.LightingData\",\n \"m_ObjectId\":
  2182. \"713ff1daf9a84d54a327d44be113a3d5\",\n \"m_NormalDropOffSpace\": 0,\n
  2183. \"m_BlendPreserveSpecular\": true,\n \"m_ReceiveDecals\": true,\n \"m_ReceiveSSR\":
  2184. true,\n \"m_ReceiveSSRTransparent\": false,\n \"m_SpecularAA\": false,\n
  2185. \"m_SpecularOcclusionMode\": 1,\n \"m_OverrideBakedGI\": false\n}\n\n{\n
  2186. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n
  2187. \"m_ObjectId\": \"75f2f7b6e0b542de88f120b9b1d91439\",\n \"m_Group\": {\n
  2188. \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.NormalTS\",\n
  2189. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  2190. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  2191. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  2192. [\n {\n \"m_Id\": \"1743aaf75fd9458c840791896c57c436\"\n
  2193. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  2194. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  2195. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  2196. \"SurfaceDescription.NormalTS\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  2197. \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\",\n \"m_ObjectId\": \"8b7da56015f347ef902cc3ab32102f7e\",\n
  2198. \"m_Id\": 0,\n \"m_DisplayName\": \"Base Color\",\n \"m_SlotType\": 0,\n
  2199. \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"BaseColor\",\n \"m_StageCapability\":
  2200. 2,\n \"m_Value\": {\n \"x\": 0.5,\n \"y\": 0.5,\n \"z\":
  2201. 0.5\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  2202. \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_ColorMode\": 0,\n \"m_DefaultColor\":
  2203. {\n \"r\": 0.5,\n \"g\": 0.5,\n \"b\": 0.5,\n \"a\":
  2204. 1.0\n }\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n
  2205. \"m_ObjectId\": \"92eab17be7f94193ae94968f2f4ce7ce\",\n \"m_Group\": {\n
  2206. \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Position\",\n
  2207. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  2208. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  2209. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  2210. [\n {\n \"m_Id\": \"98344411943947b29798c54d2f211672\"\n
  2211. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  2212. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  2213. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  2214. \"VertexDescription.Position\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  2215. \"UnityEditor.ShaderGraph.BlockNode\",\n \"m_ObjectId\": \"973e7b36c4af4059b4cd781f873c6a89\",\n
  2216. \"m_Group\": {\n \"m_Id\": \"\"\n },\n \"m_Name\": \"VertexDescription.Tangent\",\n
  2217. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  2218. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  2219. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  2220. [\n {\n \"m_Id\": \"35cc37c6087b427abec8e77b8392344a\"\n
  2221. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  2222. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  2223. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  2224. \"VertexDescription.Tangent\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  2225. \"UnityEditor.ShaderGraph.PositionMaterialSlot\",\n \"m_ObjectId\": \"98344411943947b29798c54d2f211672\",\n
  2226. \"m_Id\": 0,\n \"m_DisplayName\": \"Position\",\n \"m_SlotType\": 0,\n
  2227. \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Position\",\n \"m_StageCapability\":
  2228. 1,\n \"m_Value\": {\n \"x\": 0.0,\n \"y\": 0.0,\n \"z\":
  2229. 0.0\n },\n \"m_DefaultValue\": {\n \"x\": 0.0,\n \"y\": 0.0,\n
  2230. \"z\": 0.0\n },\n \"m_Labels\": [],\n \"m_Space\": 0\n}\n\n{\n \"m_SGVersion\":
  2231. 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.CategoryData\",\n \"m_ObjectId\":
  2232. \"a39d9219e1ed4cbc8ea770fb620fd534\",\n \"m_Name\": \"\",\n \"m_ChildObjectList\":
  2233. [\n {\n \"m_Id\": \"4ac6753c614d4847a161f8a96ca6f90c\"\n
  2234. }\n ]\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.PropertyNode\",\n
  2235. \"m_ObjectId\": \"bc8481f870e84ecbacff431b5814622e\",\n \"m_Group\": {\n
  2236. \"m_Id\": \"\"\n },\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n
  2237. \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\":
  2238. \"2\",\n \"x\": 215.33334350585938,\n \"y\": 65.99996948242188,\n
  2239. \"width\": 160.66665649414063,\n \"height\": 36.00006103515625\n
  2240. }\n },\n \"m_Slots\": [\n {\n \"m_Id\": \"00f1e60e0d1b470f999d3aa07ce30314\"\n
  2241. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  2242. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  2243. {\n \"m_SerializableColors\": []\n },\n \"m_Property\": {\n
  2244. \"m_Id\": \"4ac6753c614d4847a161f8a96ca6f90c\"\n }\n}\n\n{\n \"m_SGVersion\":
  2245. 0,\n \"m_Type\": \"UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData\",\n
  2246. \"m_ObjectId\": \"c1e053bcfa0e4aa4a2665d8e095b6ec8\",\n \"m_MaterialNeedsUpdateHash\":
  2247. 280370,\n \"m_SurfaceType\": 0,\n \"m_RenderingPass\": 1,\n \"m_BlendMode\":
  2248. 0,\n \"m_ZTest\": 4,\n \"m_ZWrite\": false,\n \"m_TransparentCullMode\":
  2249. 2,\n \"m_OpaqueCullMode\": 2,\n \"m_SortPriority\": 0,\n \"m_AlphaTest\":
  2250. true,\n \"m_TransparentDepthPrepass\": false,\n \"m_TransparentDepthPostpass\":
  2251. false,\n \"m_SupportLodCrossFade\": false,\n \"m_DoubleSidedMode\": 1,\n
  2252. \"m_DOTSInstancing\": false,\n \"m_CustomVelocity\": false,\n \"m_Tessellation\":
  2253. false,\n \"m_TessellationMode\": 0,\n \"m_TessellationFactorMinDistance\":
  2254. 20.0,\n \"m_TessellationFactorMaxDistance\": 50.0,\n \"m_TessellationFactorTriangleSize\":
  2255. 100.0,\n \"m_TessellationShapeFactor\": 0.75,\n \"m_TessellationBackFaceCullEpsilon\":
  2256. -0.25,\n \"m_TessellationMaxDisplacement\": 0.009999999776482582,\n \"m_Version\":
  2257. 1,\n \"inspectorFoldoutMask\": 9\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  2258. \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"c3cf165e78a44ff4b658cacfdd90a2fb\",\n
  2259. \"m_Id\": 0,\n \"m_DisplayName\": \"Ambient Occlusion\",\n \"m_SlotType\":
  2260. 0,\n \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Occlusion\",\n
  2261. \"m_StageCapability\": 2,\n \"m_Value\": 1.0,\n \"m_DefaultValue\": 1.0,\n
  2262. \"m_Labels\": []\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n
  2263. \"m_ObjectId\": \"d28a6407f15c4a10a3c7c76d0a066c22\",\n \"m_Group\": {\n
  2264. \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Occlusion\",\n
  2265. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  2266. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  2267. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  2268. [\n {\n \"m_Id\": \"c3cf165e78a44ff4b658cacfdd90a2fb\"\n
  2269. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  2270. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  2271. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  2272. \"SurfaceDescription.Occlusion\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  2273. \"UnityEditor.ShaderGraph.Vector1MaterialSlot\",\n \"m_ObjectId\": \"dce6cdb2f6b94695bb30cb647e21c986\",\n
  2274. \"m_Id\": 0,\n \"m_DisplayName\": \"Metallic\",\n \"m_SlotType\": 0,\n
  2275. \"m_Hidden\": false,\n \"m_ShaderOutputName\": \"Metallic\",\n \"m_StageCapability\":
  2276. 2,\n \"m_Value\": 0.0,\n \"m_DefaultValue\": 0.0,\n \"m_Labels\": []\n}\n\n{\n
  2277. \"m_SGVersion\": 0,\n \"m_Type\": \"UnityEditor.ShaderGraph.BlockNode\",\n
  2278. \"m_ObjectId\": \"dd0caa1af900478fbf7afc106ee09c45\",\n \"m_Group\": {\n
  2279. \"m_Id\": \"\"\n },\n \"m_Name\": \"SurfaceDescription.Metallic\",\n
  2280. \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n
  2281. \"serializedVersion\": \"2\",\n \"x\": 0.0,\n \"y\": 0.0,\n
  2282. \"width\": 0.0,\n \"height\": 0.0\n }\n },\n \"m_Slots\":
  2283. [\n {\n \"m_Id\": \"dce6cdb2f6b94695bb30cb647e21c986\"\n
  2284. }\n ],\n \"synonyms\": [],\n \"m_Precision\": 0,\n \"m_PreviewExpanded\":
  2285. true,\n \"m_DismissedVersion\": 0,\n \"m_PreviewMode\": 0,\n \"m_CustomColors\":
  2286. {\n \"m_SerializableColors\": []\n },\n \"m_SerializedDescriptor\":
  2287. \"SurfaceDescription.Metallic\"\n}\n\n{\n \"m_SGVersion\": 0,\n \"m_Type\":
  2288. \"UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitData\",\n \"m_ObjectId\":
  2289. \"ea4cf39f28294c61a56a59213bc58cfa\",\n \"m_RayTracing\": false,\n \"m_MaterialType\":
  2290. 0,\n \"m_RefractionModel\": 0,\n \"m_SSSTransmission\": true,\n \"m_EnergyConservingSpecular\":
  2291. true,\n \"m_ClearCoat\": false\n}\n\n"
  2292. m_AssetMaybeChangedOnDisk: 0
  2293. m_AssetMaybeDeleted: 0
  2294. --- !u!114 &17
  2295. MonoBehaviour:
  2296. m_ObjectHideFlags: 52
  2297. m_CorrespondingSourceObject: {fileID: 0}
  2298. m_PrefabInstance: {fileID: 0}
  2299. m_PrefabAsset: {fileID: 0}
  2300. m_GameObject: {fileID: 0}
  2301. m_Enabled: 1
  2302. m_EditorHideFlags: 1
  2303. m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0}
  2304. m_Name:
  2305. m_EditorClassIdentifier:
  2306. m_MinSize: {x: 200, y: 200}
  2307. m_MaxSize: {x: 4000, y: 4000}
  2308. m_TitleContent:
  2309. m_Text: Hierarchy
  2310. m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0}
  2311. m_Tooltip:
  2312. m_Pos:
  2313. serializedVersion: 2
  2314. x: 1526.3334
  2315. y: 19
  2316. width: 488.66663
  2317. height: 1278.3334
  2318. m_SerializedDataModeController:
  2319. m_DataMode: 0
  2320. m_PreferredDataMode: 0
  2321. m_SupportedDataModes:
  2322. isAutomatic: 1
  2323. m_ViewDataDictionary: {fileID: 0}
  2324. m_OverlayCanvas:
  2325. m_LastAppliedPresetName: Default
  2326. m_SaveData: []
  2327. m_OverlaysVisible: 1
  2328. m_SceneHierarchy:
  2329. m_TreeViewState:
  2330. scrollPos: {x: 0, y: 0}
  2331. m_SelectedIDs:
  2332. m_LastClickedID: 0
  2333. m_ExpandedIDs: 42ecffff
  2334. m_RenameOverlay:
  2335. m_UserAcceptedRename: 0
  2336. m_Name:
  2337. m_OriginalName:
  2338. m_EditFieldRect:
  2339. serializedVersion: 2
  2340. x: 0
  2341. y: 0
  2342. width: 0
  2343. height: 0
  2344. m_UserData: 0
  2345. m_IsWaitingForDelay: 0
  2346. m_IsRenaming: 0
  2347. m_OriginalEventType: 11
  2348. m_IsRenamingFilename: 0
  2349. m_ClientGUIView: {fileID: 10}
  2350. m_SearchString:
  2351. m_ExpandedScenes: []
  2352. m_CurrenRootInstanceID: 0
  2353. m_LockTracker:
  2354. m_IsLocked: 0
  2355. m_CurrentSortingName: TransformSorting
  2356. m_WindowGUID: f7da054d227971a4d8e6d4985252c187
  2357. --- !u!114 &18
  2358. MonoBehaviour:
  2359. m_ObjectHideFlags: 52
  2360. m_CorrespondingSourceObject: {fileID: 0}
  2361. m_PrefabInstance: {fileID: 0}
  2362. m_PrefabAsset: {fileID: 0}
  2363. m_GameObject: {fileID: 0}
  2364. m_Enabled: 1
  2365. m_EditorHideFlags: 1
  2366. m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0}
  2367. m_Name:
  2368. m_EditorClassIdentifier:
  2369. m_MinSize: {x: 275, y: 50}
  2370. m_MaxSize: {x: 4000, y: 4000}
  2371. m_TitleContent:
  2372. m_Text: Inspector
  2373. m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0}
  2374. m_Tooltip:
  2375. m_Pos:
  2376. serializedVersion: 2
  2377. x: 2017
  2378. y: 19
  2379. width: 543
  2380. height: 1278.3334
  2381. m_SerializedDataModeController:
  2382. m_DataMode: 0
  2383. m_PreferredDataMode: 0
  2384. m_SupportedDataModes:
  2385. isAutomatic: 1
  2386. m_ViewDataDictionary: {fileID: 0}
  2387. m_OverlayCanvas:
  2388. m_LastAppliedPresetName: Default
  2389. m_SaveData: []
  2390. m_OverlaysVisible: 1
  2391. m_ObjectsLockedBeforeSerialization: []
  2392. m_InstanceIDsLockedBeforeSerialization:
  2393. m_PreviewResizer:
  2394. m_CachedPref: 287.3333
  2395. m_ControlHash: -371814159
  2396. m_PrefName: Preview_InspectorPreview
  2397. m_LastInspectedObjectInstanceID: -1
  2398. m_LastVerticalScrollValue: 0
  2399. m_GlobalObjectId:
  2400. m_InspectorMode: 0
  2401. m_LockTracker:
  2402. m_IsLocked: 0
  2403. m_PreviewWindow: {fileID: 0}
  2404. --- !u!114 &19
  2405. MonoBehaviour:
  2406. m_ObjectHideFlags: 52
  2407. m_CorrespondingSourceObject: {fileID: 0}
  2408. m_PrefabInstance: {fileID: 0}
  2409. m_PrefabAsset: {fileID: 0}
  2410. m_GameObject: {fileID: 0}
  2411. m_Enabled: 1
  2412. m_EditorHideFlags: 1
  2413. m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0}
  2414. m_Name:
  2415. m_EditorClassIdentifier:
  2416. m_MinSize: {x: 230, y: 250}
  2417. m_MaxSize: {x: 10000, y: 10000}
  2418. m_TitleContent:
  2419. m_Text: Project
  2420. m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0}
  2421. m_Tooltip:
  2422. m_Pos:
  2423. serializedVersion: 2
  2424. x: 1
  2425. y: 727.6667
  2426. width: 966.6667
  2427. height: 569.6667
  2428. m_SerializedDataModeController:
  2429. m_DataMode: 0
  2430. m_PreferredDataMode: 0
  2431. m_SupportedDataModes:
  2432. isAutomatic: 1
  2433. m_ViewDataDictionary: {fileID: 0}
  2434. m_OverlayCanvas:
  2435. m_LastAppliedPresetName: Default
  2436. m_SaveData: []
  2437. m_OverlaysVisible: 1
  2438. m_SearchFilter:
  2439. m_NameFilter:
  2440. m_ClassNames: []
  2441. m_AssetLabels: []
  2442. m_AssetBundleNames: []
  2443. m_ReferencingInstanceIDs:
  2444. m_SceneHandles:
  2445. m_ShowAllHits: 0
  2446. m_SkipHidden: 0
  2447. m_SearchArea: 1
  2448. m_Folders:
  2449. - Assets/Art/VFX/FXMeshs
  2450. m_Globs: []
  2451. m_OriginalText:
  2452. m_ImportLogFlags: 0
  2453. m_FilterByTypeIntersection: 0
  2454. m_ViewMode: 1
  2455. m_StartGridSize: 16
  2456. m_LastFolders:
  2457. - Assets/Art/VFX/FXMeshs
  2458. m_LastFoldersGridSize: 16
  2459. m_LastProjectPath: H:\XY002\XiuXianGame
  2460. m_LockTracker:
  2461. m_IsLocked: 0
  2462. m_FolderTreeState:
  2463. scrollPos: {x: 0, y: 167}
  2464. m_SelectedIDs: 3cc10000
  2465. m_LastClickedID: 49468
  2466. m_ExpandedIDs: 00000000bac00000bcc00000bec00000c0c00000c2c00000c4c00000c6c00000c8c00000cac00000ccc0000000ca9a3bffffff7f
  2467. m_RenameOverlay:
  2468. m_UserAcceptedRename: 0
  2469. m_Name:
  2470. m_OriginalName:
  2471. m_EditFieldRect:
  2472. serializedVersion: 2
  2473. x: 0
  2474. y: 0
  2475. width: 0
  2476. height: 0
  2477. m_UserData: 0
  2478. m_IsWaitingForDelay: 0
  2479. m_IsRenaming: 0
  2480. m_OriginalEventType: 11
  2481. m_IsRenamingFilename: 1
  2482. m_ClientGUIView: {fileID: 2}
  2483. m_SearchString:
  2484. m_CreateAssetUtility:
  2485. m_EndAction: {fileID: 0}
  2486. m_InstanceID: 0
  2487. m_Path:
  2488. m_Icon: {fileID: 0}
  2489. m_ResourceFile:
  2490. m_AssetTreeState:
  2491. scrollPos: {x: 0, y: 0}
  2492. m_SelectedIDs:
  2493. m_LastClickedID: 0
  2494. m_ExpandedIDs: 00000000bac00000bcc00000bec00000c0c00000c2c00000c4c00000c6c00000c8c00000cac00000ccc00000
  2495. m_RenameOverlay:
  2496. m_UserAcceptedRename: 0
  2497. m_Name:
  2498. m_OriginalName:
  2499. m_EditFieldRect:
  2500. serializedVersion: 2
  2501. x: 0
  2502. y: 0
  2503. width: 0
  2504. height: 0
  2505. m_UserData: 0
  2506. m_IsWaitingForDelay: 0
  2507. m_IsRenaming: 0
  2508. m_OriginalEventType: 11
  2509. m_IsRenamingFilename: 1
  2510. m_ClientGUIView: {fileID: 0}
  2511. m_SearchString:
  2512. m_CreateAssetUtility:
  2513. m_EndAction: {fileID: 0}
  2514. m_InstanceID: 0
  2515. m_Path:
  2516. m_Icon: {fileID: 0}
  2517. m_ResourceFile:
  2518. m_ListAreaState:
  2519. m_SelectedInstanceIDs:
  2520. m_LastClickedInstanceID: 0
  2521. m_HadKeyboardFocusLastEvent: 0
  2522. m_ExpandedInstanceIDs: bc7400008ebd000008bd0000300b0100b0ae00005cdf0000c8480100f630010094b1000014b3000090b4000088b4000042b40000aab40000fcb3000044b30000a2b400007cb400008cb4000048a501003eb2000022b20000
  2523. m_RenameOverlay:
  2524. m_UserAcceptedRename: 0
  2525. m_Name:
  2526. m_OriginalName:
  2527. m_EditFieldRect:
  2528. serializedVersion: 2
  2529. x: 0
  2530. y: 0
  2531. width: 0
  2532. height: 0
  2533. m_UserData: 0
  2534. m_IsWaitingForDelay: 0
  2535. m_IsRenaming: 0
  2536. m_OriginalEventType: 11
  2537. m_IsRenamingFilename: 1
  2538. m_ClientGUIView: {fileID: 2}
  2539. m_CreateAssetUtility:
  2540. m_EndAction: {fileID: 0}
  2541. m_InstanceID: 0
  2542. m_Path:
  2543. m_Icon: {fileID: 0}
  2544. m_ResourceFile:
  2545. m_NewAssetIndexInList: -1
  2546. m_ScrollPosition: {x: 0, y: 0}
  2547. m_GridSize: 16
  2548. m_SkipHiddenPackages: 0
  2549. m_DirectoriesAreaWidth: 204.99992
  2550. --- !u!114 &20
  2551. MonoBehaviour:
  2552. m_ObjectHideFlags: 52
  2553. m_CorrespondingSourceObject: {fileID: 0}
  2554. m_PrefabInstance: {fileID: 0}
  2555. m_PrefabAsset: {fileID: 0}
  2556. m_GameObject: {fileID: 0}
  2557. m_Enabled: 1
  2558. m_EditorHideFlags: 1
  2559. m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0}
  2560. m_Name:
  2561. m_EditorClassIdentifier:
  2562. m_MinSize: {x: 200, y: 200}
  2563. m_MaxSize: {x: 4000, y: 4000}
  2564. m_TitleContent:
  2565. m_Text: Game
  2566. m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0}
  2567. m_Tooltip:
  2568. m_Pos:
  2569. serializedVersion: 2
  2570. x: -205.33334
  2571. y: 216
  2572. width: 555.6667
  2573. height: 1278.3334
  2574. m_SerializedDataModeController:
  2575. m_DataMode: 0
  2576. m_PreferredDataMode: 0
  2577. m_SupportedDataModes:
  2578. isAutomatic: 1
  2579. m_ViewDataDictionary: {fileID: 0}
  2580. m_OverlayCanvas:
  2581. m_LastAppliedPresetName: Default
  2582. m_SaveData: []
  2583. m_OverlaysVisible: 1
  2584. m_SerializedViewNames: []
  2585. m_SerializedViewValues: []
  2586. m_PlayModeViewName: GameView
  2587. m_ShowGizmos: 0
  2588. m_TargetDisplay: 0
  2589. m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
  2590. m_TargetSize: {x: 750, y: 1624}
  2591. m_TextureFilterMode: 0
  2592. m_TextureHideFlags: 61
  2593. m_RenderIMGUI: 1
  2594. m_EnterPlayModeBehavior: 0
  2595. m_UseMipMap: 0
  2596. m_VSyncEnabled: 0
  2597. m_Gizmos: 0
  2598. m_Stats: 0
  2599. m_SelectedSizes: 07000000000000000000000000000000000000000000000000000000000000000000000000000000
  2600. m_ZoomArea:
  2601. m_HRangeLocked: 0
  2602. m_VRangeLocked: 0
  2603. hZoomLockedByDefault: 0
  2604. vZoomLockedByDefault: 0
  2605. m_HBaseRangeMin: -250
  2606. m_HBaseRangeMax: 250
  2607. m_VBaseRangeMin: -541.3334
  2608. m_VBaseRangeMax: 541.3334
  2609. m_HAllowExceedBaseRangeMin: 1
  2610. m_HAllowExceedBaseRangeMax: 1
  2611. m_VAllowExceedBaseRangeMin: 1
  2612. m_VAllowExceedBaseRangeMax: 1
  2613. m_ScaleWithWindow: 0
  2614. m_HSlider: 0
  2615. m_VSlider: 0
  2616. m_IgnoreScrollWheelUntilClicked: 0
  2617. m_EnableMouseInput: 1
  2618. m_EnableSliderZoomHorizontal: 0
  2619. m_EnableSliderZoomVertical: 0
  2620. m_UniformScale: 1
  2621. m_UpDirection: 1
  2622. m_DrawArea:
  2623. serializedVersion: 2
  2624. x: 0
  2625. y: 21
  2626. width: 555.6667
  2627. height: 1257.3334
  2628. m_Scale: {x: 1, y: 1}
  2629. m_Translation: {x: 277.83334, y: 628.6667}
  2630. m_MarginLeft: 0
  2631. m_MarginRight: 0
  2632. m_MarginTop: 0
  2633. m_MarginBottom: 0
  2634. m_LastShownAreaInsideMargins:
  2635. serializedVersion: 2
  2636. x: -277.83334
  2637. y: -628.6667
  2638. width: 555.6667
  2639. height: 1257.3334
  2640. m_MinimalGUI: 1
  2641. m_defaultScale: 1
  2642. m_LastWindowPixelSize: {x: 833.5, y: 1917.5}
  2643. m_ClearInEditMode: 1
  2644. m_NoCameraWarning: 1
  2645. m_LowResolutionForAspectRatios: 00000000000000000000
  2646. m_XRRenderMode: 0
  2647. m_RenderTexture: {fileID: 0}
  2648. --- !u!114 &21
  2649. MonoBehaviour:
  2650. m_ObjectHideFlags: 52
  2651. m_CorrespondingSourceObject: {fileID: 0}
  2652. m_PrefabInstance: {fileID: 0}
  2653. m_PrefabAsset: {fileID: 0}
  2654. m_GameObject: {fileID: 0}
  2655. m_Enabled: 1
  2656. m_EditorHideFlags: 1
  2657. m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0}
  2658. m_Name:
  2659. m_EditorClassIdentifier:
  2660. m_MinSize: {x: 200, y: 200}
  2661. m_MaxSize: {x: 4000, y: 4000}
  2662. m_TitleContent:
  2663. m_Text: Scene
  2664. m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0}
  2665. m_Tooltip:
  2666. m_Pos:
  2667. serializedVersion: 2
  2668. x: 351.33334
  2669. y: 216
  2670. width: 966.6667
  2671. height: 687.6667
  2672. m_SerializedDataModeController:
  2673. m_DataMode: 0
  2674. m_PreferredDataMode: 0
  2675. m_SupportedDataModes:
  2676. isAutomatic: 1
  2677. m_ViewDataDictionary: {fileID: 0}
  2678. m_OverlayCanvas:
  2679. m_LastAppliedPresetName: Default
  2680. m_SaveData:
  2681. - dockPosition: 0
  2682. containerId: overlay-toolbar__top
  2683. floating: 0
  2684. collapsed: 0
  2685. displayed: 1
  2686. snapOffset: {x: -154.39996, y: -26.666687}
  2687. snapOffsetDelta: {x: -13.600037, y: 0}
  2688. snapCorner: 3
  2689. id: Tool Settings
  2690. index: 0
  2691. layout: 1
  2692. size: {x: 0, y: 0}
  2693. sizeOverriden: 0
  2694. - dockPosition: 0
  2695. containerId: overlay-toolbar__top
  2696. floating: 0
  2697. collapsed: 0
  2698. displayed: 1
  2699. snapOffset: {x: -141, y: 149}
  2700. snapOffsetDelta: {x: 0, y: 0}
  2701. snapCorner: 1
  2702. id: unity-grid-and-snap-toolbar
  2703. index: 1
  2704. layout: 1
  2705. size: {x: 0, y: 0}
  2706. sizeOverriden: 0
  2707. - dockPosition: 1
  2708. containerId: overlay-toolbar__top
  2709. floating: 0
  2710. collapsed: 0
  2711. displayed: 1
  2712. snapOffset: {x: 0, y: 24.666666}
  2713. snapOffsetDelta: {x: 0, y: 0}
  2714. snapCorner: 0
  2715. id: unity-scene-view-toolbar
  2716. index: 0
  2717. layout: 1
  2718. size: {x: 0, y: 0}
  2719. sizeOverriden: 0
  2720. - dockPosition: 1
  2721. containerId: overlay-toolbar__top
  2722. floating: 0
  2723. collapsed: 0
  2724. displayed: 0
  2725. snapOffset: {x: 0, y: 0}
  2726. snapOffsetDelta: {x: 0, y: 0}
  2727. snapCorner: 1
  2728. id: unity-search-toolbar
  2729. index: 1
  2730. layout: 1
  2731. size: {x: 0, y: 0}
  2732. sizeOverriden: 0
  2733. - dockPosition: 0
  2734. containerId: overlay-container--left
  2735. floating: 0
  2736. collapsed: 0
  2737. displayed: 1
  2738. snapOffset: {x: 0, y: 24.666666}
  2739. snapOffsetDelta: {x: 0, y: 0}
  2740. snapCorner: 0
  2741. id: unity-transform-toolbar
  2742. index: 0
  2743. layout: 2
  2744. size: {x: 0, y: 0}
  2745. sizeOverriden: 0
  2746. - dockPosition: 0
  2747. containerId: overlay-container--left
  2748. floating: 0
  2749. collapsed: 0
  2750. displayed: 1
  2751. snapOffset: {x: 0, y: 197}
  2752. snapOffsetDelta: {x: 0, y: 0}
  2753. snapCorner: 0
  2754. id: unity-component-tools
  2755. index: 1
  2756. layout: 2
  2757. size: {x: 0, y: 0}
  2758. sizeOverriden: 0
  2759. - dockPosition: 0
  2760. containerId: overlay-container--right
  2761. floating: 0
  2762. collapsed: 0
  2763. displayed: 1
  2764. snapOffset: {x: 67.5, y: 86}
  2765. snapOffsetDelta: {x: 0, y: 0}
  2766. snapCorner: 0
  2767. id: Orientation
  2768. index: 0
  2769. layout: 4
  2770. size: {x: 0, y: 0}
  2771. sizeOverriden: 0
  2772. - dockPosition: 1
  2773. containerId: overlay-container--right
  2774. floating: 0
  2775. collapsed: 0
  2776. displayed: 0
  2777. snapOffset: {x: 0, y: 0}
  2778. snapOffsetDelta: {x: 0, y: 0}
  2779. snapCorner: 0
  2780. id: Scene View/Light Settings
  2781. index: 2
  2782. layout: 4
  2783. size: {x: 0, y: 0}
  2784. sizeOverriden: 0
  2785. - dockPosition: 1
  2786. containerId: overlay-container--right
  2787. floating: 0
  2788. collapsed: 0
  2789. displayed: 0
  2790. snapOffset: {x: 0, y: 0}
  2791. snapOffsetDelta: {x: 0, y: 0}
  2792. snapCorner: 0
  2793. id: Scene View/Camera
  2794. index: 1
  2795. layout: 4
  2796. size: {x: 0, y: 0}
  2797. sizeOverriden: 0
  2798. - dockPosition: 1
  2799. containerId: overlay-container--right
  2800. floating: 0
  2801. collapsed: 0
  2802. displayed: 0
  2803. snapOffset: {x: 0, y: 0}
  2804. snapOffsetDelta: {x: 0, y: 0}
  2805. snapCorner: 0
  2806. id: Scene View/Cloth Constraints
  2807. index: 3
  2808. layout: 4
  2809. size: {x: 0, y: 0}
  2810. sizeOverriden: 0
  2811. - dockPosition: 1
  2812. containerId: overlay-container--right
  2813. floating: 0
  2814. collapsed: 0
  2815. displayed: 0
  2816. snapOffset: {x: 0, y: 0}
  2817. snapOffsetDelta: {x: 0, y: 0}
  2818. snapCorner: 0
  2819. id: Scene View/Cloth Collisions
  2820. index: 4
  2821. layout: 4
  2822. size: {x: 0, y: 0}
  2823. sizeOverriden: 0
  2824. - dockPosition: 1
  2825. containerId: overlay-container--right
  2826. floating: 0
  2827. collapsed: 0
  2828. displayed: 0
  2829. snapOffset: {x: 0, y: 0}
  2830. snapOffsetDelta: {x: 0, y: 0}
  2831. snapCorner: 0
  2832. id: Scene View/Navmesh Display
  2833. index: 4
  2834. layout: 4
  2835. size: {x: 0, y: 0}
  2836. sizeOverriden: 0
  2837. - dockPosition: 1
  2838. containerId: overlay-container--right
  2839. floating: 0
  2840. collapsed: 0
  2841. displayed: 0
  2842. snapOffset: {x: 0, y: 0}
  2843. snapOffsetDelta: {x: 0, y: 0}
  2844. snapCorner: 0
  2845. id: Scene View/Agent Display
  2846. index: 5
  2847. layout: 4
  2848. size: {x: 0, y: 0}
  2849. sizeOverriden: 0
  2850. - dockPosition: 1
  2851. containerId: overlay-container--right
  2852. floating: 0
  2853. collapsed: 0
  2854. displayed: 0
  2855. snapOffset: {x: 0, y: 0}
  2856. snapOffsetDelta: {x: 0, y: 0}
  2857. snapCorner: 0
  2858. id: Scene View/Obstacle Display
  2859. index: 6
  2860. layout: 4
  2861. size: {x: 0, y: 0}
  2862. sizeOverriden: 0
  2863. - dockPosition: 1
  2864. containerId: overlay-container--right
  2865. floating: 0
  2866. collapsed: 0
  2867. displayed: 0
  2868. snapOffset: {x: 0, y: 0}
  2869. snapOffsetDelta: {x: 0, y: 0}
  2870. snapCorner: 0
  2871. id: Scene View/Occlusion Culling
  2872. index: 5
  2873. layout: 4
  2874. size: {x: 0, y: 0}
  2875. sizeOverriden: 0
  2876. - dockPosition: 1
  2877. containerId: overlay-container--right
  2878. floating: 0
  2879. collapsed: 0
  2880. displayed: 0
  2881. snapOffset: {x: 0, y: 0}
  2882. snapOffsetDelta: {x: 0, y: 0}
  2883. snapCorner: 0
  2884. id: Scene View/Physics Debugger
  2885. index: 6
  2886. layout: 4
  2887. size: {x: 0, y: 0}
  2888. sizeOverriden: 0
  2889. - dockPosition: 1
  2890. containerId: overlay-container--right
  2891. floating: 0
  2892. collapsed: 0
  2893. displayed: 0
  2894. snapOffset: {x: 0, y: 0}
  2895. snapOffsetDelta: {x: 0, y: 0}
  2896. snapCorner: 0
  2897. id: Scene View/Scene Visibility
  2898. index: 7
  2899. layout: 4
  2900. size: {x: 0, y: 0}
  2901. sizeOverriden: 0
  2902. - dockPosition: 0
  2903. containerId: Floating
  2904. floating: 1
  2905. collapsed: 0
  2906. displayed: 0
  2907. snapOffset: {x: -289.33337, y: -225.33334}
  2908. snapOffsetDelta: {x: 0, y: 0}
  2909. snapCorner: 3
  2910. id: Scene View/Particles
  2911. index: 0
  2912. layout: 4
  2913. size: {x: 0, y: 0}
  2914. sizeOverriden: 0
  2915. - dockPosition: 1
  2916. containerId: overlay-container--right
  2917. floating: 0
  2918. collapsed: 0
  2919. displayed: 0
  2920. snapOffset: {x: 0, y: 0}
  2921. snapOffsetDelta: {x: 0, y: 0}
  2922. snapCorner: 0
  2923. id: Scene View/Tilemap
  2924. index: 11
  2925. layout: 4
  2926. size: {x: 0, y: 0}
  2927. sizeOverriden: 0
  2928. - dockPosition: 1
  2929. containerId: overlay-container--right
  2930. floating: 0
  2931. collapsed: 0
  2932. displayed: 0
  2933. snapOffset: {x: 0, y: 0}
  2934. snapOffsetDelta: {x: 0, y: 0}
  2935. snapCorner: 0
  2936. id: Scene View/Tilemap Palette Helper
  2937. index: 12
  2938. layout: 4
  2939. size: {x: 0, y: 0}
  2940. sizeOverriden: 0
  2941. - dockPosition: 1
  2942. containerId: overlay-container--right
  2943. floating: 0
  2944. collapsed: 0
  2945. displayed: 0
  2946. snapOffset: {x: 48, y: 48}
  2947. snapOffsetDelta: {x: 0, y: 0}
  2948. snapCorner: 0
  2949. id: APV Overlay
  2950. index: 8
  2951. layout: 4
  2952. size: {x: 0, y: 0}
  2953. sizeOverriden: 0
  2954. - dockPosition: 1
  2955. containerId: overlay-container--right
  2956. floating: 0
  2957. collapsed: 0
  2958. displayed: 0
  2959. snapOffset: {x: 48, y: 48}
  2960. snapOffsetDelta: {x: 0, y: 0}
  2961. snapCorner: 0
  2962. id: Scene View/TrailRenderer
  2963. index: 9
  2964. layout: 4
  2965. size: {x: 0, y: 0}
  2966. sizeOverriden: 0
  2967. - dockPosition: 1
  2968. containerId: overlay-container--right
  2969. floating: 0
  2970. collapsed: 0
  2971. displayed: 1
  2972. snapOffset: {x: 48, y: 48}
  2973. snapOffsetDelta: {x: 0, y: 0}
  2974. snapCorner: 0
  2975. id: UnityEditor.SceneViewCameraOverlay
  2976. index: 11
  2977. layout: 4
  2978. size: {x: 0, y: 0}
  2979. sizeOverriden: 0
  2980. - dockPosition: 1
  2981. containerId: overlay-container--right
  2982. floating: 0
  2983. collapsed: 0
  2984. displayed: 0
  2985. snapOffset: {x: 48, y: 48}
  2986. snapOffsetDelta: {x: 0, y: 0}
  2987. snapCorner: 0
  2988. id: Scene View/Open Tile Palette
  2989. index: 0
  2990. layout: 4
  2991. size: {x: 0, y: 0}
  2992. sizeOverriden: 0
  2993. - dockPosition: 1
  2994. containerId: overlay-container--right
  2995. floating: 0
  2996. collapsed: 0
  2997. displayed: 0
  2998. snapOffset: {x: 48, y: 48}
  2999. snapOffsetDelta: {x: 0, y: 0}
  3000. snapCorner: 0
  3001. id: Scene View/Tilemap Focus
  3002. index: 1
  3003. layout: 4
  3004. size: {x: 0, y: 0}
  3005. sizeOverriden: 0
  3006. - dockPosition: 1
  3007. containerId: overlay-container--right
  3008. floating: 0
  3009. collapsed: 0
  3010. displayed: 0
  3011. snapOffset: {x: -209.33337, y: -198}
  3012. snapOffsetDelta: {x: 0, y: 0}
  3013. snapCorner: 3
  3014. id: AINavigationOverlay
  3015. index: 10
  3016. layout: 4
  3017. size: {x: 0, y: 0}
  3018. sizeOverriden: 0
  3019. - dockPosition: 1
  3020. containerId: overlay-container--right
  3021. floating: 0
  3022. collapsed: 0
  3023. displayed: 0
  3024. snapOffset: {x: 48, y: 48}
  3025. snapOffsetDelta: {x: 0, y: 0}
  3026. snapCorner: 0
  3027. id: Scene View/Path
  3028. index: 10
  3029. layout: 4
  3030. size: {x: 0, y: 0}
  3031. sizeOverriden: 0
  3032. m_OverlaysVisible: 1
  3033. m_WindowGUID: d9e8ac729943301469eff8c7180f0e02
  3034. m_Gizmos: 0
  3035. m_OverrideSceneCullingMask: 6917529027641081856
  3036. m_SceneIsLit: 1
  3037. m_SceneLighting: 1
  3038. m_2DMode: 0
  3039. m_isRotationLocked: 0
  3040. m_PlayAudio: 0
  3041. m_AudioPlay: 0
  3042. m_Position:
  3043. m_Target: {x: 0.33617353, y: 9.233797, z: 12.342007}
  3044. speed: 2
  3045. m_Value: {x: 0.33617353, y: 9.233797, z: 12.342007}
  3046. m_RenderMode: 0
  3047. m_CameraMode:
  3048. drawMode: 0
  3049. name: Shaded
  3050. section: Shading Mode
  3051. m_ValidateTrueMetals: 0
  3052. m_DoValidateTrueMetals: 0
  3053. m_SceneViewState:
  3054. m_AlwaysRefresh: 1
  3055. showFog: 1
  3056. showSkybox: 1
  3057. showFlares: 1
  3058. showImageEffects: 1
  3059. showParticleSystems: 1
  3060. showVisualEffectGraphs: 1
  3061. m_FxEnabled: 1
  3062. m_Grid:
  3063. xGrid:
  3064. m_Fade:
  3065. m_Target: 0
  3066. speed: 2
  3067. m_Value: 0
  3068. m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
  3069. m_Pivot: {x: 0, y: 0, z: 0}
  3070. m_Size: {x: 0, y: 0}
  3071. yGrid:
  3072. m_Fade:
  3073. m_Target: 1
  3074. speed: 2
  3075. m_Value: 1
  3076. m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
  3077. m_Pivot: {x: 0, y: 0, z: 0}
  3078. m_Size: {x: 1, y: 1}
  3079. zGrid:
  3080. m_Fade:
  3081. m_Target: 0
  3082. speed: 2
  3083. m_Value: 0
  3084. m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
  3085. m_Pivot: {x: 0, y: 0, z: 0}
  3086. m_Size: {x: 1, y: 1}
  3087. m_ShowGrid: 1
  3088. m_GridAxis: 1
  3089. m_gridOpacity: 0.5
  3090. m_Rotation:
  3091. m_Target: {x: -0.20648162, y: 0.64079255, z: -0.18935736, w: -0.7154302}
  3092. speed: 2
  3093. m_Value: {x: -0.2070984, y: 0.6402998, z: -0.18990892, w: -0.71488535}
  3094. m_Size:
  3095. m_Target: 9.380853
  3096. speed: 2
  3097. m_Value: 9.822883
  3098. m_Ortho:
  3099. m_Target: 0
  3100. speed: 2
  3101. m_Value: 0
  3102. m_CameraSettings:
  3103. m_Speed: 1
  3104. m_SpeedNormalized: 0.5
  3105. m_SpeedMin: 0.01
  3106. m_SpeedMax: 2
  3107. m_EasingEnabled: 1
  3108. m_EasingDuration: 0.4
  3109. m_AccelerationEnabled: 1
  3110. m_FieldOfViewHorizontalOrVertical: 60
  3111. m_NearClip: 0.03
  3112. m_FarClip: 10000
  3113. m_DynamicClip: 1
  3114. m_OcclusionCulling: 0
  3115. m_EnableGDRP: 1
  3116. m_BackfaceCulling: 0
  3117. m_LastSceneViewRotation: {x: -0.33375585, y: -0.32485628, z: 0.123479664, w: -0.87634754}
  3118. m_LastSceneViewOrtho: 0
  3119. m_ReplacementShader: {fileID: 0}
  3120. m_ReplacementString:
  3121. m_SceneVisActive: 1
  3122. m_LastLockedObject: {fileID: 0}
  3123. m_ViewIsLockedToObject: 0