default-2022.dwlt 204 KB

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