AstarEditorSkinDark.guiskin 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!114 &11400000
  4. MonoBehaviour:
  5. m_ObjectHideFlags: 0
  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: 12001, guid: 0000000000000000e000000000000000, type: 0}
  13. m_Name: AstarEditorSkinDark
  14. m_EditorClassIdentifier:
  15. m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
  16. m_box:
  17. m_Name: box
  18. m_Normal:
  19. m_Background: {fileID: 11001, guid: 0000000000000000e000000000000000, type: 0}
  20. m_ScaledBackgrounds: []
  21. m_TextColor: {r: 0.79999995, g: 0.79999995, b: 0.79999995, a: 1}
  22. m_Hover:
  23. m_Background: {fileID: 0}
  24. m_ScaledBackgrounds: []
  25. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  26. m_Active:
  27. m_Background: {fileID: 0}
  28. m_ScaledBackgrounds: []
  29. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  30. m_Focused:
  31. m_Background: {fileID: 0}
  32. m_ScaledBackgrounds: []
  33. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  34. m_OnNormal:
  35. m_Background: {fileID: 0}
  36. m_ScaledBackgrounds: []
  37. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  38. m_OnHover:
  39. m_Background: {fileID: 0}
  40. m_ScaledBackgrounds: []
  41. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  42. m_OnActive:
  43. m_Background: {fileID: 0}
  44. m_ScaledBackgrounds: []
  45. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  46. m_OnFocused:
  47. m_Background: {fileID: 0}
  48. m_ScaledBackgrounds: []
  49. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  50. m_Border:
  51. m_Left: 6
  52. m_Right: 6
  53. m_Top: 6
  54. m_Bottom: 6
  55. m_Margin:
  56. m_Left: 4
  57. m_Right: 4
  58. m_Top: 4
  59. m_Bottom: 4
  60. m_Padding:
  61. m_Left: 4
  62. m_Right: 4
  63. m_Top: 4
  64. m_Bottom: 4
  65. m_Overflow:
  66. m_Left: 0
  67. m_Right: 0
  68. m_Top: 0
  69. m_Bottom: 0
  70. m_Font: {fileID: 0}
  71. m_FontSize: 0
  72. m_FontStyle: 0
  73. m_Alignment: 1
  74. m_WordWrap: 0
  75. m_RichText: 1
  76. m_TextClipping: 1
  77. m_ImagePosition: 0
  78. m_ContentOffset: {x: 0, y: 0}
  79. m_FixedWidth: 0
  80. m_FixedHeight: 0
  81. m_StretchWidth: 1
  82. m_StretchHeight: 0
  83. m_button:
  84. m_Name: button
  85. m_Normal:
  86. m_Background: {fileID: 0}
  87. m_ScaledBackgrounds:
  88. - {fileID: -1537457205435906773, guid: 0000000000000000d000000000000000, type: 0}
  89. m_TextColor: {r: 0.0627451, g: 0.0627451, b: 0.0627451, a: 1}
  90. m_Hover:
  91. m_Background: {fileID: 0}
  92. m_ScaledBackgrounds: []
  93. m_TextColor: {r: 0.0627451, g: 0.0627451, b: 0.0627451, a: 1}
  94. m_Active:
  95. m_Background: {fileID: 0}
  96. m_ScaledBackgrounds:
  97. - {fileID: -8766172725880940643, guid: 0000000000000000d000000000000000, type: 0}
  98. m_TextColor: {r: 0.0627451, g: 0.0627451, b: 0.0627451, a: 1}
  99. m_Focused:
  100. m_Background: {fileID: 0}
  101. m_ScaledBackgrounds:
  102. - {fileID: -9059002882264723198, guid: 0000000000000000d000000000000000, type: 0}
  103. m_TextColor: {r: 0.0627451, g: 0.0627451, b: 0.0627451, a: 1}
  104. m_OnNormal:
  105. m_Background: {fileID: 0}
  106. m_ScaledBackgrounds:
  107. - {fileID: -4993635991501620529, guid: 0000000000000000d000000000000000, type: 0}
  108. m_TextColor: {r: 0.0627451, g: 0.0627451, b: 0.0627451, a: 1}
  109. m_OnHover:
  110. m_Background: {fileID: 0}
  111. m_ScaledBackgrounds: []
  112. m_TextColor: {r: 0.0627451, g: 0.0627451, b: 0.0627451, a: 1}
  113. m_OnActive:
  114. m_Background: {fileID: 0}
  115. m_ScaledBackgrounds:
  116. - {fileID: 7382603045041641420, guid: 0000000000000000d000000000000000, type: 0}
  117. m_TextColor: {r: 0.0627451, g: 0.0627451, b: 0.0627451, a: 1}
  118. m_OnFocused:
  119. m_Background: {fileID: 0}
  120. m_ScaledBackgrounds:
  121. - {fileID: 8718812295543890339, guid: 0000000000000000d000000000000000, type: 0}
  122. m_TextColor: {r: 0.0627451, g: 0.0627451, b: 0.0627451, a: 1}
  123. m_Border:
  124. m_Left: 6
  125. m_Right: 6
  126. m_Top: 4
  127. m_Bottom: 4
  128. m_Margin:
  129. m_Left: 3
  130. m_Right: 3
  131. m_Top: 2
  132. m_Bottom: 2
  133. m_Padding:
  134. m_Left: 6
  135. m_Right: 6
  136. m_Top: 2
  137. m_Bottom: 4
  138. m_Overflow:
  139. m_Left: 0
  140. m_Right: 0
  141. m_Top: 0
  142. m_Bottom: 1
  143. m_Font: {fileID: -2339589663860864360, guid: 0000000000000000d000000000000000,
  144. type: 0}
  145. m_FontSize: 12
  146. m_FontStyle: 0
  147. m_Alignment: 4
  148. m_WordWrap: 0
  149. m_RichText: 0
  150. m_TextClipping: 1
  151. m_ImagePosition: 0
  152. m_ContentOffset: {x: 0, y: 0}
  153. m_FixedWidth: 0
  154. m_FixedHeight: 0
  155. m_StretchWidth: 1
  156. m_StretchHeight: 0
  157. m_toggle:
  158. m_Name: toggle
  159. m_Normal:
  160. m_Background: {fileID: 11018, guid: 0000000000000000e000000000000000, type: 0}
  161. m_ScaledBackgrounds: []
  162. m_TextColor: {r: 0.89112896, g: 0.89112896, b: 0.89112896, a: 1}
  163. m_Hover:
  164. m_Background: {fileID: 11014, guid: 0000000000000000e000000000000000, type: 0}
  165. m_ScaledBackgrounds: []
  166. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  167. m_Active:
  168. m_Background: {fileID: 11013, guid: 0000000000000000e000000000000000, type: 0}
  169. m_ScaledBackgrounds: []
  170. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  171. m_Focused:
  172. m_Background: {fileID: 0}
  173. m_ScaledBackgrounds: []
  174. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  175. m_OnNormal:
  176. m_Background: {fileID: 11016, guid: 0000000000000000e000000000000000, type: 0}
  177. m_ScaledBackgrounds: []
  178. m_TextColor: {r: 0.8901961, g: 0.8901961, b: 0.8901961, a: 1}
  179. m_OnHover:
  180. m_Background: {fileID: 11015, guid: 0000000000000000e000000000000000, type: 0}
  181. m_ScaledBackgrounds: []
  182. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  183. m_OnActive:
  184. m_Background: {fileID: 11017, guid: 0000000000000000e000000000000000, type: 0}
  185. m_ScaledBackgrounds: []
  186. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  187. m_OnFocused:
  188. m_Background: {fileID: 0}
  189. m_ScaledBackgrounds: []
  190. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  191. m_Border:
  192. m_Left: 14
  193. m_Right: 0
  194. m_Top: 14
  195. m_Bottom: 0
  196. m_Margin:
  197. m_Left: 4
  198. m_Right: 4
  199. m_Top: 4
  200. m_Bottom: 4
  201. m_Padding:
  202. m_Left: 15
  203. m_Right: 0
  204. m_Top: 3
  205. m_Bottom: 0
  206. m_Overflow:
  207. m_Left: -1
  208. m_Right: 0
  209. m_Top: -4
  210. m_Bottom: 0
  211. m_Font: {fileID: 0}
  212. m_FontSize: 0
  213. m_FontStyle: 0
  214. m_Alignment: 0
  215. m_WordWrap: 0
  216. m_RichText: 1
  217. m_TextClipping: 1
  218. m_ImagePosition: 0
  219. m_ContentOffset: {x: 0, y: 0}
  220. m_FixedWidth: 0
  221. m_FixedHeight: 0
  222. m_StretchWidth: 1
  223. m_StretchHeight: 0
  224. m_label:
  225. m_Name: label
  226. m_Normal:
  227. m_Background: {fileID: 0}
  228. m_ScaledBackgrounds: []
  229. m_TextColor: {r: 0.86734694, g: 0.86734694, b: 0.86734694, a: 1}
  230. m_Hover:
  231. m_Background: {fileID: 0}
  232. m_ScaledBackgrounds: []
  233. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  234. m_Active:
  235. m_Background: {fileID: 0}
  236. m_ScaledBackgrounds: []
  237. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  238. m_Focused:
  239. m_Background: {fileID: 0}
  240. m_ScaledBackgrounds: []
  241. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  242. m_OnNormal:
  243. m_Background: {fileID: 0}
  244. m_ScaledBackgrounds: []
  245. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  246. m_OnHover:
  247. m_Background: {fileID: 0}
  248. m_ScaledBackgrounds: []
  249. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  250. m_OnActive:
  251. m_Background: {fileID: 0}
  252. m_ScaledBackgrounds: []
  253. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  254. m_OnFocused:
  255. m_Background: {fileID: 0}
  256. m_ScaledBackgrounds: []
  257. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  258. m_Border:
  259. m_Left: 0
  260. m_Right: 0
  261. m_Top: 0
  262. m_Bottom: 0
  263. m_Margin:
  264. m_Left: 4
  265. m_Right: 4
  266. m_Top: 4
  267. m_Bottom: 4
  268. m_Padding:
  269. m_Left: 0
  270. m_Right: 0
  271. m_Top: 3
  272. m_Bottom: 3
  273. m_Overflow:
  274. m_Left: 0
  275. m_Right: 0
  276. m_Top: 0
  277. m_Bottom: 0
  278. m_Font: {fileID: 0}
  279. m_FontSize: 0
  280. m_FontStyle: 0
  281. m_Alignment: 0
  282. m_WordWrap: 1
  283. m_RichText: 1
  284. m_TextClipping: 1
  285. m_ImagePosition: 0
  286. m_ContentOffset: {x: 0, y: 0}
  287. m_FixedWidth: 0
  288. m_FixedHeight: 0
  289. m_StretchWidth: 1
  290. m_StretchHeight: 0
  291. m_textField:
  292. m_Name: textfield
  293. m_Normal:
  294. m_Background: {fileID: 11024, guid: 0000000000000000e000000000000000, type: 0}
  295. m_ScaledBackgrounds: []
  296. m_TextColor: {r: 0.79999995, g: 0.79999995, b: 0.79999995, a: 1}
  297. m_Hover:
  298. m_Background: {fileID: 11026, guid: 0000000000000000e000000000000000, type: 0}
  299. m_ScaledBackgrounds: []
  300. m_TextColor: {r: 0.9, g: 0.9, b: 0.9, a: 1}
  301. m_Active:
  302. m_Background: {fileID: 0}
  303. m_ScaledBackgrounds: []
  304. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  305. m_Focused:
  306. m_Background: {fileID: 11026, guid: 0000000000000000e000000000000000, type: 0}
  307. m_ScaledBackgrounds: []
  308. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  309. m_OnNormal:
  310. m_Background: {fileID: 11025, guid: 0000000000000000e000000000000000, type: 0}
  311. m_ScaledBackgrounds: []
  312. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  313. m_OnHover:
  314. m_Background: {fileID: 0}
  315. m_ScaledBackgrounds: []
  316. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  317. m_OnActive:
  318. m_Background: {fileID: 0}
  319. m_ScaledBackgrounds: []
  320. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  321. m_OnFocused:
  322. m_Background: {fileID: 0}
  323. m_ScaledBackgrounds: []
  324. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  325. m_Border:
  326. m_Left: 4
  327. m_Right: 4
  328. m_Top: 4
  329. m_Bottom: 4
  330. m_Margin:
  331. m_Left: 4
  332. m_Right: 4
  333. m_Top: 4
  334. m_Bottom: 4
  335. m_Padding:
  336. m_Left: 3
  337. m_Right: 3
  338. m_Top: 3
  339. m_Bottom: 3
  340. m_Overflow:
  341. m_Left: 0
  342. m_Right: 0
  343. m_Top: 0
  344. m_Bottom: 0
  345. m_Font: {fileID: 0}
  346. m_FontSize: 0
  347. m_FontStyle: 0
  348. m_Alignment: 0
  349. m_WordWrap: 0
  350. m_RichText: 1
  351. m_TextClipping: 1
  352. m_ImagePosition: 3
  353. m_ContentOffset: {x: 0, y: 0}
  354. m_FixedWidth: 0
  355. m_FixedHeight: 0
  356. m_StretchWidth: 1
  357. m_StretchHeight: 0
  358. m_textArea:
  359. m_Name: textarea
  360. m_Normal:
  361. m_Background: {fileID: 11024, guid: 0000000000000000e000000000000000, type: 0}
  362. m_ScaledBackgrounds: []
  363. m_TextColor: {r: 0.9019608, g: 0.9019608, b: 0.9019608, a: 1}
  364. m_Hover:
  365. m_Background: {fileID: 11026, guid: 0000000000000000e000000000000000, type: 0}
  366. m_ScaledBackgrounds: []
  367. m_TextColor: {r: 0.79999995, g: 0.79999995, b: 0.79999995, a: 1}
  368. m_Active:
  369. m_Background: {fileID: 0}
  370. m_ScaledBackgrounds: []
  371. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  372. m_Focused:
  373. m_Background: {fileID: 0}
  374. m_ScaledBackgrounds: []
  375. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  376. m_OnNormal:
  377. m_Background: {fileID: 11025, guid: 0000000000000000e000000000000000, type: 0}
  378. m_ScaledBackgrounds: []
  379. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  380. m_OnHover:
  381. m_Background: {fileID: 0}
  382. m_ScaledBackgrounds: []
  383. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  384. m_OnActive:
  385. m_Background: {fileID: 0}
  386. m_ScaledBackgrounds: []
  387. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  388. m_OnFocused:
  389. m_Background: {fileID: 0}
  390. m_ScaledBackgrounds: []
  391. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  392. m_Border:
  393. m_Left: 4
  394. m_Right: 4
  395. m_Top: 4
  396. m_Bottom: 4
  397. m_Margin:
  398. m_Left: 4
  399. m_Right: 4
  400. m_Top: 4
  401. m_Bottom: 4
  402. m_Padding:
  403. m_Left: 3
  404. m_Right: 3
  405. m_Top: 3
  406. m_Bottom: 3
  407. m_Overflow:
  408. m_Left: 0
  409. m_Right: 0
  410. m_Top: 0
  411. m_Bottom: 0
  412. m_Font: {fileID: 0}
  413. m_FontSize: 0
  414. m_FontStyle: 0
  415. m_Alignment: 0
  416. m_WordWrap: 1
  417. m_RichText: 1
  418. m_TextClipping: 1
  419. m_ImagePosition: 0
  420. m_ContentOffset: {x: 0, y: 0}
  421. m_FixedWidth: 0
  422. m_FixedHeight: 0
  423. m_StretchWidth: 1
  424. m_StretchHeight: 0
  425. m_window:
  426. m_Name: window
  427. m_Normal:
  428. m_Background: {fileID: 11023, guid: 0000000000000000e000000000000000, type: 0}
  429. m_ScaledBackgrounds: []
  430. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  431. m_Hover:
  432. m_Background: {fileID: 0}
  433. m_ScaledBackgrounds: []
  434. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  435. m_Active:
  436. m_Background: {fileID: 0}
  437. m_ScaledBackgrounds: []
  438. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  439. m_Focused:
  440. m_Background: {fileID: 0}
  441. m_ScaledBackgrounds: []
  442. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  443. m_OnNormal:
  444. m_Background: {fileID: 11022, guid: 0000000000000000e000000000000000, type: 0}
  445. m_ScaledBackgrounds: []
  446. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  447. m_OnHover:
  448. m_Background: {fileID: 0}
  449. m_ScaledBackgrounds: []
  450. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  451. m_OnActive:
  452. m_Background: {fileID: 0}
  453. m_ScaledBackgrounds: []
  454. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  455. m_OnFocused:
  456. m_Background: {fileID: 0}
  457. m_ScaledBackgrounds: []
  458. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  459. m_Border:
  460. m_Left: 8
  461. m_Right: 8
  462. m_Top: 18
  463. m_Bottom: 8
  464. m_Margin:
  465. m_Left: 0
  466. m_Right: 0
  467. m_Top: 0
  468. m_Bottom: 0
  469. m_Padding:
  470. m_Left: 10
  471. m_Right: 10
  472. m_Top: 20
  473. m_Bottom: 10
  474. m_Overflow:
  475. m_Left: 0
  476. m_Right: 0
  477. m_Top: 0
  478. m_Bottom: 0
  479. m_Font: {fileID: 0}
  480. m_FontSize: 0
  481. m_FontStyle: 0
  482. m_Alignment: 1
  483. m_WordWrap: 0
  484. m_RichText: 1
  485. m_TextClipping: 1
  486. m_ImagePosition: 0
  487. m_ContentOffset: {x: 0, y: -18}
  488. m_FixedWidth: 0
  489. m_FixedHeight: 0
  490. m_StretchWidth: 1
  491. m_StretchHeight: 0
  492. m_horizontalSlider:
  493. m_Name: horizontalslider
  494. m_Normal:
  495. m_Background: {fileID: 11009, guid: 0000000000000000e000000000000000, type: 0}
  496. m_ScaledBackgrounds: []
  497. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  498. m_Hover:
  499. m_Background: {fileID: 0}
  500. m_ScaledBackgrounds: []
  501. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  502. m_Active:
  503. m_Background: {fileID: 0}
  504. m_ScaledBackgrounds: []
  505. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  506. m_Focused:
  507. m_Background: {fileID: 0}
  508. m_ScaledBackgrounds: []
  509. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  510. m_OnNormal:
  511. m_Background: {fileID: 0}
  512. m_ScaledBackgrounds: []
  513. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  514. m_OnHover:
  515. m_Background: {fileID: 0}
  516. m_ScaledBackgrounds: []
  517. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  518. m_OnActive:
  519. m_Background: {fileID: 0}
  520. m_ScaledBackgrounds: []
  521. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  522. m_OnFocused:
  523. m_Background: {fileID: 0}
  524. m_ScaledBackgrounds: []
  525. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  526. m_Border:
  527. m_Left: 3
  528. m_Right: 3
  529. m_Top: 0
  530. m_Bottom: 0
  531. m_Margin:
  532. m_Left: 4
  533. m_Right: 4
  534. m_Top: 4
  535. m_Bottom: 4
  536. m_Padding:
  537. m_Left: -1
  538. m_Right: -1
  539. m_Top: 0
  540. m_Bottom: 0
  541. m_Overflow:
  542. m_Left: 0
  543. m_Right: 0
  544. m_Top: -2
  545. m_Bottom: -3
  546. m_Font: {fileID: 0}
  547. m_FontSize: 0
  548. m_FontStyle: 0
  549. m_Alignment: 0
  550. m_WordWrap: 0
  551. m_RichText: 1
  552. m_TextClipping: 1
  553. m_ImagePosition: 2
  554. m_ContentOffset: {x: 0, y: 0}
  555. m_FixedWidth: 0
  556. m_FixedHeight: 12
  557. m_StretchWidth: 1
  558. m_StretchHeight: 0
  559. m_horizontalSliderThumb:
  560. m_Name: horizontalsliderthumb
  561. m_Normal:
  562. m_Background: {fileID: 11011, guid: 0000000000000000e000000000000000, type: 0}
  563. m_ScaledBackgrounds: []
  564. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  565. m_Hover:
  566. m_Background: {fileID: 11012, guid: 0000000000000000e000000000000000, type: 0}
  567. m_ScaledBackgrounds: []
  568. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  569. m_Active:
  570. m_Background: {fileID: 11010, guid: 0000000000000000e000000000000000, type: 0}
  571. m_ScaledBackgrounds: []
  572. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  573. m_Focused:
  574. m_Background: {fileID: 0}
  575. m_ScaledBackgrounds: []
  576. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  577. m_OnNormal:
  578. m_Background: {fileID: 0}
  579. m_ScaledBackgrounds: []
  580. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  581. m_OnHover:
  582. m_Background: {fileID: 0}
  583. m_ScaledBackgrounds: []
  584. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  585. m_OnActive:
  586. m_Background: {fileID: 0}
  587. m_ScaledBackgrounds: []
  588. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  589. m_OnFocused:
  590. m_Background: {fileID: 0}
  591. m_ScaledBackgrounds: []
  592. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  593. m_Border:
  594. m_Left: 4
  595. m_Right: 4
  596. m_Top: 0
  597. m_Bottom: 0
  598. m_Margin:
  599. m_Left: 0
  600. m_Right: 0
  601. m_Top: 0
  602. m_Bottom: 0
  603. m_Padding:
  604. m_Left: 7
  605. m_Right: 7
  606. m_Top: 0
  607. m_Bottom: 0
  608. m_Overflow:
  609. m_Left: -1
  610. m_Right: -1
  611. m_Top: 0
  612. m_Bottom: 0
  613. m_Font: {fileID: 0}
  614. m_FontSize: 0
  615. m_FontStyle: 0
  616. m_Alignment: 0
  617. m_WordWrap: 0
  618. m_RichText: 1
  619. m_TextClipping: 1
  620. m_ImagePosition: 2
  621. m_ContentOffset: {x: 0, y: 0}
  622. m_FixedWidth: 0
  623. m_FixedHeight: 12
  624. m_StretchWidth: 1
  625. m_StretchHeight: 0
  626. m_verticalSlider:
  627. m_Name: verticalslider
  628. m_Normal:
  629. m_Background: {fileID: 11021, guid: 0000000000000000e000000000000000, type: 0}
  630. m_ScaledBackgrounds: []
  631. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  632. m_Hover:
  633. m_Background: {fileID: 0}
  634. m_ScaledBackgrounds: []
  635. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  636. m_Active:
  637. m_Background: {fileID: 0}
  638. m_ScaledBackgrounds: []
  639. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  640. m_Focused:
  641. m_Background: {fileID: 0}
  642. m_ScaledBackgrounds: []
  643. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  644. m_OnNormal:
  645. m_Background: {fileID: 0}
  646. m_ScaledBackgrounds: []
  647. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  648. m_OnHover:
  649. m_Background: {fileID: 0}
  650. m_ScaledBackgrounds: []
  651. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  652. m_OnActive:
  653. m_Background: {fileID: 0}
  654. m_ScaledBackgrounds: []
  655. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  656. m_OnFocused:
  657. m_Background: {fileID: 0}
  658. m_ScaledBackgrounds: []
  659. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  660. m_Border:
  661. m_Left: 0
  662. m_Right: 0
  663. m_Top: 3
  664. m_Bottom: 3
  665. m_Margin:
  666. m_Left: 4
  667. m_Right: 4
  668. m_Top: 4
  669. m_Bottom: 4
  670. m_Padding:
  671. m_Left: 0
  672. m_Right: 0
  673. m_Top: -1
  674. m_Bottom: -1
  675. m_Overflow:
  676. m_Left: -2
  677. m_Right: -3
  678. m_Top: 0
  679. m_Bottom: 0
  680. m_Font: {fileID: 0}
  681. m_FontSize: 0
  682. m_FontStyle: 0
  683. m_Alignment: 0
  684. m_WordWrap: 0
  685. m_RichText: 1
  686. m_TextClipping: 0
  687. m_ImagePosition: 0
  688. m_ContentOffset: {x: 0, y: 0}
  689. m_FixedWidth: 12
  690. m_FixedHeight: 0
  691. m_StretchWidth: 0
  692. m_StretchHeight: 1
  693. m_verticalSliderThumb:
  694. m_Name: verticalsliderthumb
  695. m_Normal:
  696. m_Background: {fileID: 11011, guid: 0000000000000000e000000000000000, type: 0}
  697. m_ScaledBackgrounds: []
  698. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  699. m_Hover:
  700. m_Background: {fileID: 11012, guid: 0000000000000000e000000000000000, type: 0}
  701. m_ScaledBackgrounds: []
  702. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  703. m_Active:
  704. m_Background: {fileID: 11010, guid: 0000000000000000e000000000000000, type: 0}
  705. m_ScaledBackgrounds: []
  706. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  707. m_Focused:
  708. m_Background: {fileID: 0}
  709. m_ScaledBackgrounds: []
  710. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  711. m_OnNormal:
  712. m_Background: {fileID: 0}
  713. m_ScaledBackgrounds: []
  714. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  715. m_OnHover:
  716. m_Background: {fileID: 0}
  717. m_ScaledBackgrounds: []
  718. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  719. m_OnActive:
  720. m_Background: {fileID: 0}
  721. m_ScaledBackgrounds: []
  722. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  723. m_OnFocused:
  724. m_Background: {fileID: 0}
  725. m_ScaledBackgrounds: []
  726. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  727. m_Border:
  728. m_Left: 0
  729. m_Right: 0
  730. m_Top: 0
  731. m_Bottom: 0
  732. m_Margin:
  733. m_Left: 0
  734. m_Right: 0
  735. m_Top: 0
  736. m_Bottom: 0
  737. m_Padding:
  738. m_Left: 0
  739. m_Right: 0
  740. m_Top: 7
  741. m_Bottom: 7
  742. m_Overflow:
  743. m_Left: 0
  744. m_Right: 0
  745. m_Top: -1
  746. m_Bottom: -1
  747. m_Font: {fileID: 0}
  748. m_FontSize: 0
  749. m_FontStyle: 0
  750. m_Alignment: 0
  751. m_WordWrap: 0
  752. m_RichText: 1
  753. m_TextClipping: 1
  754. m_ImagePosition: 0
  755. m_ContentOffset: {x: 0, y: 0}
  756. m_FixedWidth: 12
  757. m_FixedHeight: 0
  758. m_StretchWidth: 0
  759. m_StretchHeight: 1
  760. m_horizontalScrollbar:
  761. m_Name: horizontalscrollbar
  762. m_Normal:
  763. m_Background: {fileID: 11008, guid: 0000000000000000e000000000000000, type: 0}
  764. m_ScaledBackgrounds: []
  765. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  766. m_Hover:
  767. m_Background: {fileID: 0}
  768. m_ScaledBackgrounds: []
  769. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  770. m_Active:
  771. m_Background: {fileID: 0}
  772. m_ScaledBackgrounds: []
  773. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  774. m_Focused:
  775. m_Background: {fileID: 0}
  776. m_ScaledBackgrounds: []
  777. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  778. m_OnNormal:
  779. m_Background: {fileID: 0}
  780. m_ScaledBackgrounds: []
  781. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  782. m_OnHover:
  783. m_Background: {fileID: 0}
  784. m_ScaledBackgrounds: []
  785. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  786. m_OnActive:
  787. m_Background: {fileID: 0}
  788. m_ScaledBackgrounds: []
  789. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  790. m_OnFocused:
  791. m_Background: {fileID: 0}
  792. m_ScaledBackgrounds: []
  793. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  794. m_Border:
  795. m_Left: 9
  796. m_Right: 9
  797. m_Top: 0
  798. m_Bottom: 0
  799. m_Margin:
  800. m_Left: 4
  801. m_Right: 4
  802. m_Top: 1
  803. m_Bottom: 4
  804. m_Padding:
  805. m_Left: 0
  806. m_Right: 0
  807. m_Top: 0
  808. m_Bottom: 0
  809. m_Overflow:
  810. m_Left: 0
  811. m_Right: 0
  812. m_Top: 0
  813. m_Bottom: 0
  814. m_Font: {fileID: 0}
  815. m_FontSize: 0
  816. m_FontStyle: 0
  817. m_Alignment: 0
  818. m_WordWrap: 0
  819. m_RichText: 1
  820. m_TextClipping: 1
  821. m_ImagePosition: 2
  822. m_ContentOffset: {x: 0, y: 0}
  823. m_FixedWidth: 0
  824. m_FixedHeight: 15
  825. m_StretchWidth: 1
  826. m_StretchHeight: 0
  827. m_horizontalScrollbarThumb:
  828. m_Name: horizontalscrollbarthumb
  829. m_Normal:
  830. m_Background: {fileID: 11007, guid: 0000000000000000e000000000000000, type: 0}
  831. m_ScaledBackgrounds: []
  832. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  833. m_Hover:
  834. m_Background: {fileID: 0}
  835. m_ScaledBackgrounds: []
  836. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  837. m_Active:
  838. m_Background: {fileID: 0}
  839. m_ScaledBackgrounds: []
  840. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  841. m_Focused:
  842. m_Background: {fileID: 0}
  843. m_ScaledBackgrounds: []
  844. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  845. m_OnNormal:
  846. m_Background: {fileID: 0}
  847. m_ScaledBackgrounds: []
  848. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  849. m_OnHover:
  850. m_Background: {fileID: 0}
  851. m_ScaledBackgrounds: []
  852. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  853. m_OnActive:
  854. m_Background: {fileID: 0}
  855. m_ScaledBackgrounds: []
  856. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  857. m_OnFocused:
  858. m_Background: {fileID: 0}
  859. m_ScaledBackgrounds: []
  860. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  861. m_Border:
  862. m_Left: 6
  863. m_Right: 6
  864. m_Top: 6
  865. m_Bottom: 6
  866. m_Margin:
  867. m_Left: 0
  868. m_Right: 0
  869. m_Top: 0
  870. m_Bottom: 0
  871. m_Padding:
  872. m_Left: 6
  873. m_Right: 6
  874. m_Top: 0
  875. m_Bottom: 0
  876. m_Overflow:
  877. m_Left: 0
  878. m_Right: 0
  879. m_Top: -1
  880. m_Bottom: 1
  881. m_Font: {fileID: 0}
  882. m_FontSize: 0
  883. m_FontStyle: 0
  884. m_Alignment: 0
  885. m_WordWrap: 0
  886. m_RichText: 1
  887. m_TextClipping: 1
  888. m_ImagePosition: 0
  889. m_ContentOffset: {x: 0, y: 0}
  890. m_FixedWidth: 0
  891. m_FixedHeight: 13
  892. m_StretchWidth: 1
  893. m_StretchHeight: 0
  894. m_horizontalScrollbarLeftButton:
  895. m_Name: horizontalscrollbarleftbutton
  896. m_Normal:
  897. m_Background: {fileID: 0}
  898. m_ScaledBackgrounds: []
  899. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  900. m_Hover:
  901. m_Background: {fileID: 0}
  902. m_ScaledBackgrounds: []
  903. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  904. m_Active:
  905. m_Background: {fileID: 0}
  906. m_ScaledBackgrounds: []
  907. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  908. m_Focused:
  909. m_Background: {fileID: 0}
  910. m_ScaledBackgrounds: []
  911. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  912. m_OnNormal:
  913. m_Background: {fileID: 0}
  914. m_ScaledBackgrounds: []
  915. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  916. m_OnHover:
  917. m_Background: {fileID: 0}
  918. m_ScaledBackgrounds: []
  919. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  920. m_OnActive:
  921. m_Background: {fileID: 0}
  922. m_ScaledBackgrounds: []
  923. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  924. m_OnFocused:
  925. m_Background: {fileID: 0}
  926. m_ScaledBackgrounds: []
  927. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  928. m_Border:
  929. m_Left: 0
  930. m_Right: 0
  931. m_Top: 0
  932. m_Bottom: 0
  933. m_Margin:
  934. m_Left: 0
  935. m_Right: 0
  936. m_Top: 0
  937. m_Bottom: 0
  938. m_Padding:
  939. m_Left: 0
  940. m_Right: 0
  941. m_Top: 0
  942. m_Bottom: 0
  943. m_Overflow:
  944. m_Left: 0
  945. m_Right: 0
  946. m_Top: 0
  947. m_Bottom: 0
  948. m_Font: {fileID: 0}
  949. m_FontSize: 0
  950. m_FontStyle: 0
  951. m_Alignment: 0
  952. m_WordWrap: 0
  953. m_RichText: 1
  954. m_TextClipping: 1
  955. m_ImagePosition: 0
  956. m_ContentOffset: {x: 0, y: 0}
  957. m_FixedWidth: 0
  958. m_FixedHeight: 0
  959. m_StretchWidth: 1
  960. m_StretchHeight: 0
  961. m_horizontalScrollbarRightButton:
  962. m_Name: horizontalscrollbarrightbutton
  963. m_Normal:
  964. m_Background: {fileID: 0}
  965. m_ScaledBackgrounds: []
  966. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  967. m_Hover:
  968. m_Background: {fileID: 0}
  969. m_ScaledBackgrounds: []
  970. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  971. m_Active:
  972. m_Background: {fileID: 0}
  973. m_ScaledBackgrounds: []
  974. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  975. m_Focused:
  976. m_Background: {fileID: 0}
  977. m_ScaledBackgrounds: []
  978. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  979. m_OnNormal:
  980. m_Background: {fileID: 0}
  981. m_ScaledBackgrounds: []
  982. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  983. m_OnHover:
  984. m_Background: {fileID: 0}
  985. m_ScaledBackgrounds: []
  986. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  987. m_OnActive:
  988. m_Background: {fileID: 0}
  989. m_ScaledBackgrounds: []
  990. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  991. m_OnFocused:
  992. m_Background: {fileID: 0}
  993. m_ScaledBackgrounds: []
  994. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  995. m_Border:
  996. m_Left: 0
  997. m_Right: 0
  998. m_Top: 0
  999. m_Bottom: 0
  1000. m_Margin:
  1001. m_Left: 0
  1002. m_Right: 0
  1003. m_Top: 0
  1004. m_Bottom: 0
  1005. m_Padding:
  1006. m_Left: 0
  1007. m_Right: 0
  1008. m_Top: 0
  1009. m_Bottom: 0
  1010. m_Overflow:
  1011. m_Left: 0
  1012. m_Right: 0
  1013. m_Top: 0
  1014. m_Bottom: 0
  1015. m_Font: {fileID: 0}
  1016. m_FontSize: 0
  1017. m_FontStyle: 0
  1018. m_Alignment: 0
  1019. m_WordWrap: 0
  1020. m_RichText: 1
  1021. m_TextClipping: 1
  1022. m_ImagePosition: 0
  1023. m_ContentOffset: {x: 0, y: 0}
  1024. m_FixedWidth: 0
  1025. m_FixedHeight: 0
  1026. m_StretchWidth: 1
  1027. m_StretchHeight: 0
  1028. m_verticalScrollbar:
  1029. m_Name: verticalscrollbar
  1030. m_Normal:
  1031. m_Background: {fileID: 11020, guid: 0000000000000000e000000000000000, type: 0}
  1032. m_ScaledBackgrounds: []
  1033. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1034. m_Hover:
  1035. m_Background: {fileID: 0}
  1036. m_ScaledBackgrounds: []
  1037. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1038. m_Active:
  1039. m_Background: {fileID: 0}
  1040. m_ScaledBackgrounds: []
  1041. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1042. m_Focused:
  1043. m_Background: {fileID: 0}
  1044. m_ScaledBackgrounds: []
  1045. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1046. m_OnNormal:
  1047. m_Background: {fileID: 0}
  1048. m_ScaledBackgrounds: []
  1049. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1050. m_OnHover:
  1051. m_Background: {fileID: 0}
  1052. m_ScaledBackgrounds: []
  1053. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1054. m_OnActive:
  1055. m_Background: {fileID: 0}
  1056. m_ScaledBackgrounds: []
  1057. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1058. m_OnFocused:
  1059. m_Background: {fileID: 0}
  1060. m_ScaledBackgrounds: []
  1061. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1062. m_Border:
  1063. m_Left: 0
  1064. m_Right: 0
  1065. m_Top: 9
  1066. m_Bottom: 9
  1067. m_Margin:
  1068. m_Left: 1
  1069. m_Right: 4
  1070. m_Top: 4
  1071. m_Bottom: 4
  1072. m_Padding:
  1073. m_Left: 0
  1074. m_Right: 0
  1075. m_Top: 1
  1076. m_Bottom: 1
  1077. m_Overflow:
  1078. m_Left: 0
  1079. m_Right: 0
  1080. m_Top: 0
  1081. m_Bottom: 0
  1082. m_Font: {fileID: 0}
  1083. m_FontSize: 0
  1084. m_FontStyle: 0
  1085. m_Alignment: 0
  1086. m_WordWrap: 0
  1087. m_RichText: 1
  1088. m_TextClipping: 1
  1089. m_ImagePosition: 0
  1090. m_ContentOffset: {x: 0, y: 0}
  1091. m_FixedWidth: 15
  1092. m_FixedHeight: 0
  1093. m_StretchWidth: 1
  1094. m_StretchHeight: 0
  1095. m_verticalScrollbarThumb:
  1096. m_Name: verticalscrollbarthumb
  1097. m_Normal:
  1098. m_Background: {fileID: 11019, guid: 0000000000000000e000000000000000, type: 0}
  1099. m_ScaledBackgrounds: []
  1100. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1101. m_Hover:
  1102. m_Background: {fileID: 0}
  1103. m_ScaledBackgrounds: []
  1104. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1105. m_Active:
  1106. m_Background: {fileID: 0}
  1107. m_ScaledBackgrounds: []
  1108. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1109. m_Focused:
  1110. m_Background: {fileID: 0}
  1111. m_ScaledBackgrounds: []
  1112. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1113. m_OnNormal:
  1114. m_Background: {fileID: 0}
  1115. m_ScaledBackgrounds: []
  1116. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1117. m_OnHover:
  1118. m_Background: {fileID: 0}
  1119. m_ScaledBackgrounds: []
  1120. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1121. m_OnActive:
  1122. m_Background: {fileID: 0}
  1123. m_ScaledBackgrounds: []
  1124. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1125. m_OnFocused:
  1126. m_Background: {fileID: 0}
  1127. m_ScaledBackgrounds: []
  1128. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1129. m_Border:
  1130. m_Left: 6
  1131. m_Right: 6
  1132. m_Top: 6
  1133. m_Bottom: 6
  1134. m_Margin:
  1135. m_Left: 0
  1136. m_Right: 0
  1137. m_Top: 0
  1138. m_Bottom: 0
  1139. m_Padding:
  1140. m_Left: 0
  1141. m_Right: 0
  1142. m_Top: 6
  1143. m_Bottom: 6
  1144. m_Overflow:
  1145. m_Left: -1
  1146. m_Right: -1
  1147. m_Top: 0
  1148. m_Bottom: 0
  1149. m_Font: {fileID: 0}
  1150. m_FontSize: 0
  1151. m_FontStyle: 0
  1152. m_Alignment: 0
  1153. m_WordWrap: 0
  1154. m_RichText: 1
  1155. m_TextClipping: 1
  1156. m_ImagePosition: 2
  1157. m_ContentOffset: {x: 0, y: 0}
  1158. m_FixedWidth: 15
  1159. m_FixedHeight: 0
  1160. m_StretchWidth: 0
  1161. m_StretchHeight: 1
  1162. m_verticalScrollbarUpButton:
  1163. m_Name: verticalscrollbarupbutton
  1164. m_Normal:
  1165. m_Background: {fileID: 0}
  1166. m_ScaledBackgrounds: []
  1167. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1168. m_Hover:
  1169. m_Background: {fileID: 0}
  1170. m_ScaledBackgrounds: []
  1171. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1172. m_Active:
  1173. m_Background: {fileID: 0}
  1174. m_ScaledBackgrounds: []
  1175. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1176. m_Focused:
  1177. m_Background: {fileID: 0}
  1178. m_ScaledBackgrounds: []
  1179. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1180. m_OnNormal:
  1181. m_Background: {fileID: 0}
  1182. m_ScaledBackgrounds: []
  1183. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1184. m_OnHover:
  1185. m_Background: {fileID: 0}
  1186. m_ScaledBackgrounds: []
  1187. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1188. m_OnActive:
  1189. m_Background: {fileID: 0}
  1190. m_ScaledBackgrounds: []
  1191. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1192. m_OnFocused:
  1193. m_Background: {fileID: 0}
  1194. m_ScaledBackgrounds: []
  1195. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1196. m_Border:
  1197. m_Left: 0
  1198. m_Right: 0
  1199. m_Top: 0
  1200. m_Bottom: 0
  1201. m_Margin:
  1202. m_Left: 0
  1203. m_Right: 0
  1204. m_Top: 0
  1205. m_Bottom: 0
  1206. m_Padding:
  1207. m_Left: 0
  1208. m_Right: 0
  1209. m_Top: 0
  1210. m_Bottom: 0
  1211. m_Overflow:
  1212. m_Left: 0
  1213. m_Right: 0
  1214. m_Top: 0
  1215. m_Bottom: 0
  1216. m_Font: {fileID: 0}
  1217. m_FontSize: 0
  1218. m_FontStyle: 0
  1219. m_Alignment: 0
  1220. m_WordWrap: 0
  1221. m_RichText: 1
  1222. m_TextClipping: 1
  1223. m_ImagePosition: 0
  1224. m_ContentOffset: {x: 0, y: 0}
  1225. m_FixedWidth: 0
  1226. m_FixedHeight: 0
  1227. m_StretchWidth: 1
  1228. m_StretchHeight: 0
  1229. m_verticalScrollbarDownButton:
  1230. m_Name: verticalscrollbardownbutton
  1231. m_Normal:
  1232. m_Background: {fileID: 0}
  1233. m_ScaledBackgrounds: []
  1234. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1235. m_Hover:
  1236. m_Background: {fileID: 0}
  1237. m_ScaledBackgrounds: []
  1238. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1239. m_Active:
  1240. m_Background: {fileID: 0}
  1241. m_ScaledBackgrounds: []
  1242. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1243. m_Focused:
  1244. m_Background: {fileID: 0}
  1245. m_ScaledBackgrounds: []
  1246. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1247. m_OnNormal:
  1248. m_Background: {fileID: 0}
  1249. m_ScaledBackgrounds: []
  1250. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1251. m_OnHover:
  1252. m_Background: {fileID: 0}
  1253. m_ScaledBackgrounds: []
  1254. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1255. m_OnActive:
  1256. m_Background: {fileID: 0}
  1257. m_ScaledBackgrounds: []
  1258. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1259. m_OnFocused:
  1260. m_Background: {fileID: 0}
  1261. m_ScaledBackgrounds: []
  1262. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1263. m_Border:
  1264. m_Left: 0
  1265. m_Right: 0
  1266. m_Top: 0
  1267. m_Bottom: 0
  1268. m_Margin:
  1269. m_Left: 0
  1270. m_Right: 0
  1271. m_Top: 0
  1272. m_Bottom: 0
  1273. m_Padding:
  1274. m_Left: 0
  1275. m_Right: 0
  1276. m_Top: 0
  1277. m_Bottom: 0
  1278. m_Overflow:
  1279. m_Left: 0
  1280. m_Right: 0
  1281. m_Top: 0
  1282. m_Bottom: 0
  1283. m_Font: {fileID: 0}
  1284. m_FontSize: 0
  1285. m_FontStyle: 0
  1286. m_Alignment: 0
  1287. m_WordWrap: 0
  1288. m_RichText: 1
  1289. m_TextClipping: 1
  1290. m_ImagePosition: 0
  1291. m_ContentOffset: {x: 0, y: 0}
  1292. m_FixedWidth: 0
  1293. m_FixedHeight: 0
  1294. m_StretchWidth: 1
  1295. m_StretchHeight: 0
  1296. m_ScrollView:
  1297. m_Name: scrollview
  1298. m_Normal:
  1299. m_Background: {fileID: 0}
  1300. m_ScaledBackgrounds: []
  1301. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1302. m_Hover:
  1303. m_Background: {fileID: 0}
  1304. m_ScaledBackgrounds: []
  1305. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1306. m_Active:
  1307. m_Background: {fileID: 0}
  1308. m_ScaledBackgrounds: []
  1309. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1310. m_Focused:
  1311. m_Background: {fileID: 0}
  1312. m_ScaledBackgrounds: []
  1313. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1314. m_OnNormal:
  1315. m_Background: {fileID: 0}
  1316. m_ScaledBackgrounds: []
  1317. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1318. m_OnHover:
  1319. m_Background: {fileID: 0}
  1320. m_ScaledBackgrounds: []
  1321. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1322. m_OnActive:
  1323. m_Background: {fileID: 0}
  1324. m_ScaledBackgrounds: []
  1325. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1326. m_OnFocused:
  1327. m_Background: {fileID: 0}
  1328. m_ScaledBackgrounds: []
  1329. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1330. m_Border:
  1331. m_Left: 0
  1332. m_Right: 0
  1333. m_Top: 0
  1334. m_Bottom: 0
  1335. m_Margin:
  1336. m_Left: 0
  1337. m_Right: 0
  1338. m_Top: 0
  1339. m_Bottom: 0
  1340. m_Padding:
  1341. m_Left: 0
  1342. m_Right: 0
  1343. m_Top: 0
  1344. m_Bottom: 0
  1345. m_Overflow:
  1346. m_Left: 0
  1347. m_Right: 0
  1348. m_Top: 0
  1349. m_Bottom: 0
  1350. m_Font: {fileID: 0}
  1351. m_FontSize: 0
  1352. m_FontStyle: 0
  1353. m_Alignment: 0
  1354. m_WordWrap: 0
  1355. m_RichText: 1
  1356. m_TextClipping: 1
  1357. m_ImagePosition: 0
  1358. m_ContentOffset: {x: 0, y: 0}
  1359. m_FixedWidth: 0
  1360. m_FixedHeight: 0
  1361. m_StretchWidth: 1
  1362. m_StretchHeight: 0
  1363. m_CustomStyles:
  1364. - m_Name: PixelBox
  1365. m_Normal:
  1366. m_Background: {fileID: 2800000, guid: 5d951d0a838a34f40ac2b9ce8968a7d6, type: 3}
  1367. m_ScaledBackgrounds: []
  1368. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  1369. m_Hover:
  1370. m_Background: {fileID: 0}
  1371. m_ScaledBackgrounds: []
  1372. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1373. m_Active:
  1374. m_Background: {fileID: 0}
  1375. m_ScaledBackgrounds: []
  1376. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1377. m_Focused:
  1378. m_Background: {fileID: 0}
  1379. m_ScaledBackgrounds: []
  1380. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1381. m_OnNormal:
  1382. m_Background: {fileID: 0}
  1383. m_ScaledBackgrounds: []
  1384. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1385. m_OnHover:
  1386. m_Background: {fileID: 0}
  1387. m_ScaledBackgrounds: []
  1388. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1389. m_OnActive:
  1390. m_Background: {fileID: 0}
  1391. m_ScaledBackgrounds: []
  1392. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1393. m_OnFocused:
  1394. m_Background: {fileID: 0}
  1395. m_ScaledBackgrounds: []
  1396. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1397. m_Border:
  1398. m_Left: 8
  1399. m_Right: 8
  1400. m_Top: 8
  1401. m_Bottom: 8
  1402. m_Margin:
  1403. m_Left: 0
  1404. m_Right: 0
  1405. m_Top: 4
  1406. m_Bottom: 6
  1407. m_Padding:
  1408. m_Left: 6
  1409. m_Right: 6
  1410. m_Top: 0
  1411. m_Bottom: 0
  1412. m_Overflow:
  1413. m_Left: 1
  1414. m_Right: 1
  1415. m_Top: 0
  1416. m_Bottom: 1
  1417. m_Font: {fileID: 0}
  1418. m_FontSize: 0
  1419. m_FontStyle: 0
  1420. m_Alignment: 0
  1421. m_WordWrap: 0
  1422. m_RichText: 1
  1423. m_TextClipping: 0
  1424. m_ImagePosition: 0
  1425. m_ContentOffset: {x: 0, y: 0}
  1426. m_FixedWidth: 0
  1427. m_FixedHeight: 0
  1428. m_StretchWidth: 1
  1429. m_StretchHeight: 0
  1430. - m_Name: ColorInterpolationBox
  1431. m_Normal:
  1432. m_Background: {fileID: 2800000, guid: 0790ee8db18ed49ed8369be285199835, type: 3}
  1433. m_ScaledBackgrounds: []
  1434. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  1435. m_Hover:
  1436. m_Background: {fileID: 0}
  1437. m_ScaledBackgrounds: []
  1438. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1439. m_Active:
  1440. m_Background: {fileID: 0}
  1441. m_ScaledBackgrounds: []
  1442. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1443. m_Focused:
  1444. m_Background: {fileID: 0}
  1445. m_ScaledBackgrounds: []
  1446. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1447. m_OnNormal:
  1448. m_Background: {fileID: 0}
  1449. m_ScaledBackgrounds: []
  1450. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1451. m_OnHover:
  1452. m_Background: {fileID: 0}
  1453. m_ScaledBackgrounds: []
  1454. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1455. m_OnActive:
  1456. m_Background: {fileID: 0}
  1457. m_ScaledBackgrounds: []
  1458. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1459. m_OnFocused:
  1460. m_Background: {fileID: 0}
  1461. m_ScaledBackgrounds: []
  1462. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1463. m_Border:
  1464. m_Left: 7
  1465. m_Right: 7
  1466. m_Top: 6
  1467. m_Bottom: 6
  1468. m_Margin:
  1469. m_Left: 4
  1470. m_Right: 4
  1471. m_Top: 6
  1472. m_Bottom: 4
  1473. m_Padding:
  1474. m_Left: 6
  1475. m_Right: 6
  1476. m_Top: 0
  1477. m_Bottom: 4
  1478. m_Overflow:
  1479. m_Left: 1
  1480. m_Right: 1
  1481. m_Top: 0
  1482. m_Bottom: 1
  1483. m_Font: {fileID: 0}
  1484. m_FontSize: 0
  1485. m_FontStyle: 0
  1486. m_Alignment: 0
  1487. m_WordWrap: 0
  1488. m_RichText: 1
  1489. m_TextClipping: 0
  1490. m_ImagePosition: 0
  1491. m_ContentOffset: {x: 0, y: 0}
  1492. m_FixedWidth: 0
  1493. m_FixedHeight: 12
  1494. m_StretchWidth: 1
  1495. m_StretchHeight: 0
  1496. - m_Name: StretchWidth
  1497. m_Normal:
  1498. m_Background: {fileID: 0}
  1499. m_ScaledBackgrounds: []
  1500. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  1501. m_Hover:
  1502. m_Background: {fileID: 0}
  1503. m_ScaledBackgrounds: []
  1504. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1505. m_Active:
  1506. m_Background: {fileID: 0}
  1507. m_ScaledBackgrounds: []
  1508. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1509. m_Focused:
  1510. m_Background: {fileID: 0}
  1511. m_ScaledBackgrounds: []
  1512. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1513. m_OnNormal:
  1514. m_Background: {fileID: 0}
  1515. m_ScaledBackgrounds: []
  1516. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1517. m_OnHover:
  1518. m_Background: {fileID: 0}
  1519. m_ScaledBackgrounds: []
  1520. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1521. m_OnActive:
  1522. m_Background: {fileID: 0}
  1523. m_ScaledBackgrounds: []
  1524. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1525. m_OnFocused:
  1526. m_Background: {fileID: 0}
  1527. m_ScaledBackgrounds: []
  1528. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1529. m_Border:
  1530. m_Left: 0
  1531. m_Right: 0
  1532. m_Top: 0
  1533. m_Bottom: 0
  1534. m_Margin:
  1535. m_Left: 0
  1536. m_Right: 0
  1537. m_Top: 0
  1538. m_Bottom: 0
  1539. m_Padding:
  1540. m_Left: 0
  1541. m_Right: 0
  1542. m_Top: 0
  1543. m_Bottom: 0
  1544. m_Overflow:
  1545. m_Left: 0
  1546. m_Right: 0
  1547. m_Top: 0
  1548. m_Bottom: 0
  1549. m_Font: {fileID: 0}
  1550. m_FontSize: 0
  1551. m_FontStyle: 0
  1552. m_Alignment: 0
  1553. m_WordWrap: 0
  1554. m_RichText: 1
  1555. m_TextClipping: 0
  1556. m_ImagePosition: 0
  1557. m_ContentOffset: {x: 0, y: 0}
  1558. m_FixedWidth: 0
  1559. m_FixedHeight: 0
  1560. m_StretchWidth: 1
  1561. m_StretchHeight: 0
  1562. - m_Name: BoxHeader
  1563. m_Normal:
  1564. m_Background: {fileID: 0}
  1565. m_ScaledBackgrounds: []
  1566. m_TextColor: {r: 0.6334038, g: 0.63352257, b: 0.6333745, a: 1}
  1567. m_Hover:
  1568. m_Background: {fileID: 0}
  1569. m_ScaledBackgrounds: []
  1570. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1571. m_Active:
  1572. m_Background: {fileID: 0}
  1573. m_ScaledBackgrounds: []
  1574. m_TextColor: {r: 0.7397959, g: 0.7397959, b: 0.7397959, a: 1}
  1575. m_Focused:
  1576. m_Background: {fileID: 2800000, guid: db5b85df63e094a1c96f11019bccc577, type: 3}
  1577. m_ScaledBackgrounds: []
  1578. m_TextColor: {r: 0.63529414, g: 0.63529414, b: 0.63529414, a: 1}
  1579. m_OnNormal:
  1580. m_Background: {fileID: 0}
  1581. m_ScaledBackgrounds: []
  1582. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1583. m_OnHover:
  1584. m_Background: {fileID: 0}
  1585. m_ScaledBackgrounds: []
  1586. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1587. m_OnActive:
  1588. m_Background: {fileID: 0}
  1589. m_ScaledBackgrounds: []
  1590. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1591. m_OnFocused:
  1592. m_Background: {fileID: 0}
  1593. m_ScaledBackgrounds: []
  1594. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1595. m_Border:
  1596. m_Left: 8
  1597. m_Right: 8
  1598. m_Top: 8
  1599. m_Bottom: 8
  1600. m_Margin:
  1601. m_Left: 0
  1602. m_Right: 0
  1603. m_Top: 0
  1604. m_Bottom: 0
  1605. m_Padding:
  1606. m_Left: 8
  1607. m_Right: 6
  1608. m_Top: 2
  1609. m_Bottom: 2
  1610. m_Overflow:
  1611. m_Left: 0
  1612. m_Right: 0
  1613. m_Top: 0
  1614. m_Bottom: 0
  1615. m_Font: {fileID: 0}
  1616. m_FontSize: 0
  1617. m_FontStyle: 1
  1618. m_Alignment: 0
  1619. m_WordWrap: 0
  1620. m_RichText: 0
  1621. m_TextClipping: 0
  1622. m_ImagePosition: 3
  1623. m_ContentOffset: {x: 0, y: 0}
  1624. m_FixedWidth: 0
  1625. m_FixedHeight: 18
  1626. m_StretchWidth: 1
  1627. m_StretchHeight: 0
  1628. - m_Name: TopBoxHeader
  1629. m_Normal:
  1630. m_Background: {fileID: 0}
  1631. m_ScaledBackgrounds: []
  1632. m_TextColor: {r: 0.6334038, g: 0.63352257, b: 0.6333745, a: 1}
  1633. m_Hover:
  1634. m_Background: {fileID: 0}
  1635. m_ScaledBackgrounds: []
  1636. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1637. m_Active:
  1638. m_Background: {fileID: 0}
  1639. m_ScaledBackgrounds: []
  1640. m_TextColor: {r: 0.7397959, g: 0.7397959, b: 0.7397959, a: 1}
  1641. m_Focused:
  1642. m_Background: {fileID: 2800000, guid: db5b85df63e094a1c96f11019bccc577, type: 3}
  1643. m_ScaledBackgrounds: []
  1644. m_TextColor: {r: 0.63529414, g: 0.63529414, b: 0.63529414, a: 1}
  1645. m_OnNormal:
  1646. m_Background: {fileID: 0}
  1647. m_ScaledBackgrounds: []
  1648. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1649. m_OnHover:
  1650. m_Background: {fileID: 0}
  1651. m_ScaledBackgrounds: []
  1652. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1653. m_OnActive:
  1654. m_Background: {fileID: 0}
  1655. m_ScaledBackgrounds: []
  1656. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1657. m_OnFocused:
  1658. m_Background: {fileID: 0}
  1659. m_ScaledBackgrounds: []
  1660. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1661. m_Border:
  1662. m_Left: 8
  1663. m_Right: 8
  1664. m_Top: 8
  1665. m_Bottom: 8
  1666. m_Margin:
  1667. m_Left: 0
  1668. m_Right: 0
  1669. m_Top: 0
  1670. m_Bottom: 0
  1671. m_Padding:
  1672. m_Left: 6
  1673. m_Right: 6
  1674. m_Top: 0
  1675. m_Bottom: 2
  1676. m_Overflow:
  1677. m_Left: 0
  1678. m_Right: 0
  1679. m_Top: 0
  1680. m_Bottom: 0
  1681. m_Font: {fileID: 0}
  1682. m_FontSize: 0
  1683. m_FontStyle: 1
  1684. m_Alignment: 0
  1685. m_WordWrap: 0
  1686. m_RichText: 0
  1687. m_TextClipping: 3
  1688. m_ImagePosition: 3
  1689. m_ContentOffset: {x: 0, y: 5}
  1690. m_FixedWidth: 0
  1691. m_FixedHeight: 24
  1692. m_StretchWidth: 1
  1693. m_StretchHeight: 0
  1694. - m_Name: PixelBox3
  1695. m_Normal:
  1696. m_Background: {fileID: 2800000, guid: 7991166a167af4b4793b4fc8fcc3bfe2, type: 3}
  1697. m_ScaledBackgrounds:
  1698. - {fileID: 2800000, guid: 9043fef44c60647b7a763eb86f912ba1, type: 3}
  1699. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  1700. m_Hover:
  1701. m_Background: {fileID: 0}
  1702. m_ScaledBackgrounds: []
  1703. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1704. m_Active:
  1705. m_Background: {fileID: 0}
  1706. m_ScaledBackgrounds: []
  1707. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1708. m_Focused:
  1709. m_Background: {fileID: 0}
  1710. m_ScaledBackgrounds: []
  1711. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1712. m_OnNormal:
  1713. m_Background: {fileID: 0}
  1714. m_ScaledBackgrounds: []
  1715. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1716. m_OnHover:
  1717. m_Background: {fileID: 0}
  1718. m_ScaledBackgrounds: []
  1719. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1720. m_OnActive:
  1721. m_Background: {fileID: 0}
  1722. m_ScaledBackgrounds: []
  1723. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1724. m_OnFocused:
  1725. m_Background: {fileID: 0}
  1726. m_ScaledBackgrounds: []
  1727. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1728. m_Border:
  1729. m_Left: 8
  1730. m_Right: 8
  1731. m_Top: 8
  1732. m_Bottom: 8
  1733. m_Margin:
  1734. m_Left: 0
  1735. m_Right: 0
  1736. m_Top: 5
  1737. m_Bottom: 2
  1738. m_Padding:
  1739. m_Left: 0
  1740. m_Right: 0
  1741. m_Top: 2
  1742. m_Bottom: 2
  1743. m_Overflow:
  1744. m_Left: 0
  1745. m_Right: 0
  1746. m_Top: 0
  1747. m_Bottom: 0
  1748. m_Font: {fileID: 0}
  1749. m_FontSize: 0
  1750. m_FontStyle: 0
  1751. m_Alignment: 0
  1752. m_WordWrap: 0
  1753. m_RichText: 1
  1754. m_TextClipping: 0
  1755. m_ImagePosition: 0
  1756. m_ContentOffset: {x: 0, y: 0}
  1757. m_FixedWidth: 0
  1758. m_FixedHeight: 0
  1759. m_StretchWidth: 1
  1760. m_StretchHeight: 0
  1761. - m_Name: PixelButton
  1762. m_Normal:
  1763. m_Background: {fileID: 2800000, guid: b5a4a564ac2dc4261a13719673f157e1, type: 3}
  1764. m_ScaledBackgrounds:
  1765. - {fileID: 2800000, guid: c730485723dee4bcbad9d8a7593a8799, type: 3}
  1766. m_TextColor: {r: 0.34183675, g: 0.34183675, b: 0.34183675, a: 1}
  1767. m_Hover:
  1768. m_Background: {fileID: 0}
  1769. m_ScaledBackgrounds: []
  1770. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1771. m_Active:
  1772. m_Background: {fileID: 2800000, guid: d0f7738d6b5b2420b9a77bfef3926e2a, type: 3}
  1773. m_ScaledBackgrounds:
  1774. - {fileID: 2800000, guid: b9d7d6d7befb34b9c889e6195746c452, type: 3}
  1775. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1776. m_Focused:
  1777. m_Background: {fileID: 0}
  1778. m_ScaledBackgrounds: []
  1779. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1780. m_OnNormal:
  1781. m_Background: {fileID: 0}
  1782. m_ScaledBackgrounds: []
  1783. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1784. m_OnHover:
  1785. m_Background: {fileID: 0}
  1786. m_ScaledBackgrounds: []
  1787. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1788. m_OnActive:
  1789. m_Background: {fileID: 0}
  1790. m_ScaledBackgrounds: []
  1791. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1792. m_OnFocused:
  1793. m_Background: {fileID: 0}
  1794. m_ScaledBackgrounds: []
  1795. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1796. m_Border:
  1797. m_Left: 8
  1798. m_Right: 8
  1799. m_Top: 8
  1800. m_Bottom: 8
  1801. m_Margin:
  1802. m_Left: 0
  1803. m_Right: 4
  1804. m_Top: 0
  1805. m_Bottom: 0
  1806. m_Padding:
  1807. m_Left: 0
  1808. m_Right: 0
  1809. m_Top: 0
  1810. m_Bottom: 0
  1811. m_Overflow:
  1812. m_Left: -1
  1813. m_Right: 1
  1814. m_Top: -1
  1815. m_Bottom: 1
  1816. m_Font: {fileID: 0}
  1817. m_FontSize: 0
  1818. m_FontStyle: 0
  1819. m_Alignment: 0
  1820. m_WordWrap: 0
  1821. m_RichText: 1
  1822. m_TextClipping: 0
  1823. m_ImagePosition: 2
  1824. m_ContentOffset: {x: 0, y: 0}
  1825. m_FixedWidth: 16
  1826. m_FixedHeight: 16
  1827. m_StretchWidth: 0
  1828. m_StretchHeight: 0
  1829. - m_Name: LinkButton
  1830. m_Normal:
  1831. m_Background: {fileID: 2800000, guid: 53ee29e7cbeb545bcb1ca238a2736fb8, type: 3}
  1832. m_ScaledBackgrounds: []
  1833. m_TextColor: {r: 0.34183675, g: 0.34183675, b: 0.34183675, a: 1}
  1834. m_Hover:
  1835. m_Background: {fileID: 0}
  1836. m_ScaledBackgrounds: []
  1837. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1838. m_Active:
  1839. m_Background: {fileID: 2800000, guid: 1066e2a70f10b481984312db993dadc8, type: 3}
  1840. m_ScaledBackgrounds: []
  1841. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1842. m_Focused:
  1843. m_Background: {fileID: 0}
  1844. m_ScaledBackgrounds: []
  1845. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1846. m_OnNormal:
  1847. m_Background: {fileID: 0}
  1848. m_ScaledBackgrounds: []
  1849. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1850. m_OnHover:
  1851. m_Background: {fileID: 0}
  1852. m_ScaledBackgrounds: []
  1853. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1854. m_OnActive:
  1855. m_Background: {fileID: 0}
  1856. m_ScaledBackgrounds: []
  1857. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1858. m_OnFocused:
  1859. m_Background: {fileID: 0}
  1860. m_ScaledBackgrounds: []
  1861. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1862. m_Border:
  1863. m_Left: 0
  1864. m_Right: 0
  1865. m_Top: 0
  1866. m_Bottom: 0
  1867. m_Margin:
  1868. m_Left: 0
  1869. m_Right: 0
  1870. m_Top: 0
  1871. m_Bottom: 0
  1872. m_Padding:
  1873. m_Left: 0
  1874. m_Right: 0
  1875. m_Top: 0
  1876. m_Bottom: 0
  1877. m_Overflow:
  1878. m_Left: 0
  1879. m_Right: 0
  1880. m_Top: 0
  1881. m_Bottom: 0
  1882. m_Font: {fileID: 0}
  1883. m_FontSize: 0
  1884. m_FontStyle: 0
  1885. m_Alignment: 0
  1886. m_WordWrap: 0
  1887. m_RichText: 1
  1888. m_TextClipping: 0
  1889. m_ImagePosition: 2
  1890. m_ContentOffset: {x: 0, y: 0}
  1891. m_FixedWidth: 34
  1892. m_FixedHeight: 34
  1893. m_StretchWidth: 0
  1894. m_StretchHeight: 0
  1895. - m_Name: CloseButton
  1896. m_Normal:
  1897. m_Background: {fileID: 2800000, guid: 9496521dd08a64ed2a92bc4e90a3a271, type: 3}
  1898. m_ScaledBackgrounds: []
  1899. m_TextColor: {r: 0.34183675, g: 0.34183675, b: 0.34183675, a: 1}
  1900. m_Hover:
  1901. m_Background: {fileID: 0}
  1902. m_ScaledBackgrounds: []
  1903. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1904. m_Active:
  1905. m_Background: {fileID: 2800000, guid: 921542314cf2f4a55952ad059454677e, type: 3}
  1906. m_ScaledBackgrounds: []
  1907. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1908. m_Focused:
  1909. m_Background: {fileID: 0}
  1910. m_ScaledBackgrounds: []
  1911. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1912. m_OnNormal:
  1913. m_Background: {fileID: 0}
  1914. m_ScaledBackgrounds: []
  1915. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1916. m_OnHover:
  1917. m_Background: {fileID: 0}
  1918. m_ScaledBackgrounds: []
  1919. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1920. m_OnActive:
  1921. m_Background: {fileID: 0}
  1922. m_ScaledBackgrounds: []
  1923. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1924. m_OnFocused:
  1925. m_Background: {fileID: 0}
  1926. m_ScaledBackgrounds: []
  1927. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1928. m_Border:
  1929. m_Left: 0
  1930. m_Right: 0
  1931. m_Top: 0
  1932. m_Bottom: 0
  1933. m_Margin:
  1934. m_Left: 0
  1935. m_Right: 0
  1936. m_Top: 0
  1937. m_Bottom: 0
  1938. m_Padding:
  1939. m_Left: 0
  1940. m_Right: 0
  1941. m_Top: 0
  1942. m_Bottom: 0
  1943. m_Overflow:
  1944. m_Left: -2
  1945. m_Right: 2
  1946. m_Top: -1
  1947. m_Bottom: 1
  1948. m_Font: {fileID: 0}
  1949. m_FontSize: 0
  1950. m_FontStyle: 0
  1951. m_Alignment: 0
  1952. m_WordWrap: 0
  1953. m_RichText: 1
  1954. m_TextClipping: 0
  1955. m_ImagePosition: 2
  1956. m_ContentOffset: {x: 0, y: 0}
  1957. m_FixedWidth: 13
  1958. m_FixedHeight: 13
  1959. m_StretchWidth: 0
  1960. m_StretchHeight: 0
  1961. - m_Name: GridPivotSelectButton
  1962. m_Normal:
  1963. m_Background: {fileID: 2800000, guid: 37972c32346084c13bfddb8c3dbed143, type: 3}
  1964. m_ScaledBackgrounds: []
  1965. m_TextColor: {r: 0.34183675, g: 0.34183675, b: 0.34183675, a: 1}
  1966. m_Hover:
  1967. m_Background: {fileID: 0}
  1968. m_ScaledBackgrounds: []
  1969. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1970. m_Active:
  1971. m_Background: {fileID: 2800000, guid: 7ea4fc739ffbb4af1a466f655bf1d178, type: 3}
  1972. m_ScaledBackgrounds: []
  1973. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1974. m_Focused:
  1975. m_Background: {fileID: 0}
  1976. m_ScaledBackgrounds: []
  1977. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1978. m_OnNormal:
  1979. m_Background: {fileID: 2800000, guid: 7ea4fc739ffbb4af1a466f655bf1d178, type: 3}
  1980. m_ScaledBackgrounds: []
  1981. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1982. m_OnHover:
  1983. m_Background: {fileID: 0}
  1984. m_ScaledBackgrounds: []
  1985. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1986. m_OnActive:
  1987. m_Background: {fileID: 2800000, guid: 37972c32346084c13bfddb8c3dbed143, type: 3}
  1988. m_ScaledBackgrounds: []
  1989. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1990. m_OnFocused:
  1991. m_Background: {fileID: 0}
  1992. m_ScaledBackgrounds: []
  1993. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1994. m_Border:
  1995. m_Left: 0
  1996. m_Right: 0
  1997. m_Top: 0
  1998. m_Bottom: 0
  1999. m_Margin:
  2000. m_Left: 0
  2001. m_Right: 0
  2002. m_Top: 0
  2003. m_Bottom: 0
  2004. m_Padding:
  2005. m_Left: 0
  2006. m_Right: 0
  2007. m_Top: 0
  2008. m_Bottom: 0
  2009. m_Overflow:
  2010. m_Left: 0
  2011. m_Right: 0
  2012. m_Top: 0
  2013. m_Bottom: 0
  2014. m_Font: {fileID: 0}
  2015. m_FontSize: 0
  2016. m_FontStyle: 0
  2017. m_Alignment: 0
  2018. m_WordWrap: 0
  2019. m_RichText: 1
  2020. m_TextClipping: 0
  2021. m_ImagePosition: 2
  2022. m_ContentOffset: {x: 0, y: 0}
  2023. m_FixedWidth: 0
  2024. m_FixedHeight: 0
  2025. m_StretchWidth: 0
  2026. m_StretchHeight: 0
  2027. - m_Name: GridPivotSelectBackground
  2028. m_Normal:
  2029. m_Background: {fileID: 2800000, guid: 11b8d44fcb3cf4c048a576df708e0ec6, type: 3}
  2030. m_ScaledBackgrounds: []
  2031. m_TextColor: {r: 0.34183675, g: 0.34183675, b: 0.34183675, a: 1}
  2032. m_Hover:
  2033. m_Background: {fileID: 0}
  2034. m_ScaledBackgrounds: []
  2035. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2036. m_Active:
  2037. m_Background: {fileID: 0}
  2038. m_ScaledBackgrounds: []
  2039. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2040. m_Focused:
  2041. m_Background: {fileID: 0}
  2042. m_ScaledBackgrounds: []
  2043. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2044. m_OnNormal:
  2045. m_Background: {fileID: 0}
  2046. m_ScaledBackgrounds: []
  2047. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2048. m_OnHover:
  2049. m_Background: {fileID: 0}
  2050. m_ScaledBackgrounds: []
  2051. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2052. m_OnActive:
  2053. m_Background: {fileID: 0}
  2054. m_ScaledBackgrounds: []
  2055. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2056. m_OnFocused:
  2057. m_Background: {fileID: 0}
  2058. m_ScaledBackgrounds: []
  2059. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2060. m_Border:
  2061. m_Left: 0
  2062. m_Right: 0
  2063. m_Top: 0
  2064. m_Bottom: 0
  2065. m_Margin:
  2066. m_Left: 7
  2067. m_Right: 4
  2068. m_Top: 14
  2069. m_Bottom: 0
  2070. m_Padding:
  2071. m_Left: 0
  2072. m_Right: 0
  2073. m_Top: 0
  2074. m_Bottom: 0
  2075. m_Overflow:
  2076. m_Left: 0
  2077. m_Right: 0
  2078. m_Top: 0
  2079. m_Bottom: 0
  2080. m_Font: {fileID: 0}
  2081. m_FontSize: 0
  2082. m_FontStyle: 0
  2083. m_Alignment: 0
  2084. m_WordWrap: 0
  2085. m_RichText: 1
  2086. m_TextClipping: 0
  2087. m_ImagePosition: 2
  2088. m_ContentOffset: {x: 0, y: 0}
  2089. m_FixedWidth: 0
  2090. m_FixedHeight: 0
  2091. m_StretchWidth: 0
  2092. m_StretchHeight: 0
  2093. - m_Name: CollisionHeader
  2094. m_Normal:
  2095. m_Background: {fileID: 0}
  2096. m_ScaledBackgrounds: []
  2097. m_TextColor: {r: 0.6334038, g: 0.63352257, b: 0.6333745, a: 1}
  2098. m_Hover:
  2099. m_Background: {fileID: 0}
  2100. m_ScaledBackgrounds: []
  2101. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2102. m_Active:
  2103. m_Background: {fileID: 0}
  2104. m_ScaledBackgrounds: []
  2105. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2106. m_Focused:
  2107. m_Background: {fileID: 0}
  2108. m_ScaledBackgrounds: []
  2109. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2110. m_OnNormal:
  2111. m_Background: {fileID: 0}
  2112. m_ScaledBackgrounds: []
  2113. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2114. m_OnHover:
  2115. m_Background: {fileID: 0}
  2116. m_ScaledBackgrounds: []
  2117. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2118. m_OnActive:
  2119. m_Background: {fileID: 0}
  2120. m_ScaledBackgrounds: []
  2121. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2122. m_OnFocused:
  2123. m_Background: {fileID: 0}
  2124. m_ScaledBackgrounds: []
  2125. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2126. m_Border:
  2127. m_Left: 0
  2128. m_Right: 0
  2129. m_Top: 0
  2130. m_Bottom: 0
  2131. m_Margin:
  2132. m_Left: 0
  2133. m_Right: 0
  2134. m_Top: 0
  2135. m_Bottom: 0
  2136. m_Padding:
  2137. m_Left: 6
  2138. m_Right: 4
  2139. m_Top: 4
  2140. m_Bottom: 4
  2141. m_Overflow:
  2142. m_Left: 0
  2143. m_Right: 0
  2144. m_Top: 0
  2145. m_Bottom: 0
  2146. m_Font: {fileID: 0}
  2147. m_FontSize: 0
  2148. m_FontStyle: 1
  2149. m_Alignment: 0
  2150. m_WordWrap: 0
  2151. m_RichText: 1
  2152. m_TextClipping: 0
  2153. m_ImagePosition: 3
  2154. m_ContentOffset: {x: 0, y: 0}
  2155. m_FixedWidth: 0
  2156. m_FixedHeight: 0
  2157. m_StretchWidth: 0
  2158. m_StretchHeight: 0
  2159. - m_Name: InfoButton
  2160. m_Normal:
  2161. m_Background: {fileID: 2800000, guid: 1986ec06d68774254928f44b896a3913, type: 3}
  2162. m_ScaledBackgrounds:
  2163. - {fileID: 2800000, guid: 623f6adf01f324cb7bc6aefe7f87d623, type: 3}
  2164. m_TextColor: {r: 0.12244898, g: 0.12244898, b: 0.12244898, a: 1}
  2165. m_Hover:
  2166. m_Background: {fileID: 0}
  2167. m_ScaledBackgrounds: []
  2168. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2169. m_Active:
  2170. m_Background: {fileID: 2800000, guid: d008deade2077407fbf14446df2547c9, type: 3}
  2171. m_ScaledBackgrounds:
  2172. - {fileID: 2800000, guid: 9b266e42522c048f6b62832985be51ed, type: 3}
  2173. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2174. m_Focused:
  2175. m_Background: {fileID: 0}
  2176. m_ScaledBackgrounds: []
  2177. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2178. m_OnNormal:
  2179. m_Background: {fileID: 2800000, guid: d008deade2077407fbf14446df2547c9, type: 3}
  2180. m_ScaledBackgrounds:
  2181. - {fileID: 2800000, guid: 9b266e42522c048f6b62832985be51ed, type: 3}
  2182. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2183. m_OnHover:
  2184. m_Background: {fileID: 0}
  2185. m_ScaledBackgrounds: []
  2186. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2187. m_OnActive:
  2188. m_Background: {fileID: 2800000, guid: 1986ec06d68774254928f44b896a3913, type: 3}
  2189. m_ScaledBackgrounds:
  2190. - {fileID: 2800000, guid: 623f6adf01f324cb7bc6aefe7f87d623, type: 3}
  2191. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2192. m_OnFocused:
  2193. m_Background: {fileID: 0}
  2194. m_ScaledBackgrounds: []
  2195. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2196. m_Border:
  2197. m_Left: 0
  2198. m_Right: 0
  2199. m_Top: 0
  2200. m_Bottom: 0
  2201. m_Margin:
  2202. m_Left: 0
  2203. m_Right: 1
  2204. m_Top: 0
  2205. m_Bottom: 0
  2206. m_Padding:
  2207. m_Left: 0
  2208. m_Right: 0
  2209. m_Top: 0
  2210. m_Bottom: 0
  2211. m_Overflow:
  2212. m_Left: 0
  2213. m_Right: 0
  2214. m_Top: -1
  2215. m_Bottom: 1
  2216. m_Font: {fileID: 0}
  2217. m_FontSize: 0
  2218. m_FontStyle: 1
  2219. m_Alignment: 0
  2220. m_WordWrap: 0
  2221. m_RichText: 1
  2222. m_TextClipping: 0
  2223. m_ImagePosition: 2
  2224. m_ContentOffset: {x: 0, y: 0}
  2225. m_FixedWidth: 16
  2226. m_FixedHeight: 16
  2227. m_StretchWidth: 0
  2228. m_StretchHeight: 0
  2229. - m_Name: PixelBox3Separator
  2230. m_Normal:
  2231. m_Background: {fileID: 2800000, guid: 3a08de11a34c44da28de4c086fd13461, type: 3}
  2232. m_ScaledBackgrounds: []
  2233. m_TextColor: {r: 0.12244898, g: 0.12244898, b: 0.12244898, a: 1}
  2234. m_Hover:
  2235. m_Background: {fileID: 0}
  2236. m_ScaledBackgrounds: []
  2237. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2238. m_Active:
  2239. m_Background: {fileID: 0}
  2240. m_ScaledBackgrounds: []
  2241. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2242. m_Focused:
  2243. m_Background: {fileID: 0}
  2244. m_ScaledBackgrounds: []
  2245. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2246. m_OnNormal:
  2247. m_Background: {fileID: 0}
  2248. m_ScaledBackgrounds: []
  2249. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2250. m_OnHover:
  2251. m_Background: {fileID: 0}
  2252. m_ScaledBackgrounds: []
  2253. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2254. m_OnActive:
  2255. m_Background: {fileID: 0}
  2256. m_ScaledBackgrounds: []
  2257. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2258. m_OnFocused:
  2259. m_Background: {fileID: 0}
  2260. m_ScaledBackgrounds: []
  2261. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2262. m_Border:
  2263. m_Left: 3
  2264. m_Right: 3
  2265. m_Top: 8
  2266. m_Bottom: 0
  2267. m_Margin:
  2268. m_Left: 0
  2269. m_Right: 0
  2270. m_Top: 1
  2271. m_Bottom: 0
  2272. m_Padding:
  2273. m_Left: 0
  2274. m_Right: 0
  2275. m_Top: 0
  2276. m_Bottom: 0
  2277. m_Overflow:
  2278. m_Left: 0
  2279. m_Right: 0
  2280. m_Top: -2
  2281. m_Bottom: 2
  2282. m_Font: {fileID: 0}
  2283. m_FontSize: 0
  2284. m_FontStyle: 0
  2285. m_Alignment: 0
  2286. m_WordWrap: 0
  2287. m_RichText: 1
  2288. m_TextClipping: 0
  2289. m_ImagePosition: 2
  2290. m_ContentOffset: {x: 0, y: 0}
  2291. m_FixedWidth: 0
  2292. m_FixedHeight: 4
  2293. m_StretchWidth: 1
  2294. m_StretchHeight: 0
  2295. - m_Name: GridSizeLock
  2296. m_Normal:
  2297. m_Background: {fileID: 2800000, guid: c43744025f7024e20b5fe880600d19a7, type: 3}
  2298. m_ScaledBackgrounds:
  2299. - {fileID: 2800000, guid: 957d0fd6ae3494da9aed50c5d7d7ce4e, type: 3}
  2300. m_TextColor: {r: 0.12244898, g: 0.12244898, b: 0.12244898, a: 1}
  2301. m_Hover:
  2302. m_Background: {fileID: 0}
  2303. m_ScaledBackgrounds: []
  2304. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2305. m_Active:
  2306. m_Background: {fileID: 2800000, guid: aaae516f9c5404f77a3e586cdd59695b, type: 3}
  2307. m_ScaledBackgrounds:
  2308. - {fileID: 2800000, guid: 6c38830c1556942fcb6ce893085d1daa, type: 3}
  2309. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2310. m_Focused:
  2311. m_Background: {fileID: 0}
  2312. m_ScaledBackgrounds: []
  2313. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2314. m_OnNormal:
  2315. m_Background: {fileID: 2800000, guid: aaae516f9c5404f77a3e586cdd59695b, type: 3}
  2316. m_ScaledBackgrounds:
  2317. - {fileID: 2800000, guid: 6c38830c1556942fcb6ce893085d1daa, type: 3}
  2318. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2319. m_OnHover:
  2320. m_Background: {fileID: 0}
  2321. m_ScaledBackgrounds: []
  2322. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2323. m_OnActive:
  2324. m_Background: {fileID: 2800000, guid: c43744025f7024e20b5fe880600d19a7, type: 3}
  2325. m_ScaledBackgrounds:
  2326. - {fileID: 2800000, guid: 957d0fd6ae3494da9aed50c5d7d7ce4e, type: 3}
  2327. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2328. m_OnFocused:
  2329. m_Background: {fileID: 0}
  2330. m_ScaledBackgrounds: []
  2331. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2332. m_Border:
  2333. m_Left: 0
  2334. m_Right: 0
  2335. m_Top: 0
  2336. m_Bottom: 0
  2337. m_Margin:
  2338. m_Left: 5
  2339. m_Right: 0
  2340. m_Top: 1
  2341. m_Bottom: 0
  2342. m_Padding:
  2343. m_Left: 0
  2344. m_Right: 0
  2345. m_Top: 0
  2346. m_Bottom: 0
  2347. m_Overflow:
  2348. m_Left: 0
  2349. m_Right: 0
  2350. m_Top: 0
  2351. m_Bottom: 0
  2352. m_Font: {fileID: 0}
  2353. m_FontSize: 0
  2354. m_FontStyle: 0
  2355. m_Alignment: 0
  2356. m_WordWrap: 0
  2357. m_RichText: 1
  2358. m_TextClipping: 0
  2359. m_ImagePosition: 2
  2360. m_ContentOffset: {x: 0, y: 0}
  2361. m_FixedWidth: 27
  2362. m_FixedHeight: 28
  2363. m_StretchWidth: 0
  2364. m_StretchHeight: 0
  2365. - m_Name: UpArrow
  2366. m_Normal:
  2367. m_Background: {fileID: 2800000, guid: b1722c752c8754c5281b2efd6cf8477c, type: 3}
  2368. m_ScaledBackgrounds: []
  2369. m_TextColor: {r: 0.12244898, g: 0.12244898, b: 0.12244898, a: 1}
  2370. m_Hover:
  2371. m_Background: {fileID: 0}
  2372. m_ScaledBackgrounds: []
  2373. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2374. m_Active:
  2375. m_Background: {fileID: 2800000, guid: 4c914fdaf554243fe9fb26afc323caef, type: 3}
  2376. m_ScaledBackgrounds: []
  2377. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2378. m_Focused:
  2379. m_Background: {fileID: 0}
  2380. m_ScaledBackgrounds: []
  2381. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2382. m_OnNormal:
  2383. m_Background: {fileID: 0}
  2384. m_ScaledBackgrounds: []
  2385. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2386. m_OnHover:
  2387. m_Background: {fileID: 0}
  2388. m_ScaledBackgrounds: []
  2389. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2390. m_OnActive:
  2391. m_Background: {fileID: 0}
  2392. m_ScaledBackgrounds: []
  2393. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2394. m_OnFocused:
  2395. m_Background: {fileID: 0}
  2396. m_ScaledBackgrounds: []
  2397. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2398. m_Border:
  2399. m_Left: 0
  2400. m_Right: 0
  2401. m_Top: 0
  2402. m_Bottom: 0
  2403. m_Margin:
  2404. m_Left: 0
  2405. m_Right: 0
  2406. m_Top: 0
  2407. m_Bottom: 0
  2408. m_Padding:
  2409. m_Left: 0
  2410. m_Right: 0
  2411. m_Top: 0
  2412. m_Bottom: 0
  2413. m_Overflow:
  2414. m_Left: 0
  2415. m_Right: 0
  2416. m_Top: 0
  2417. m_Bottom: 0
  2418. m_Font: {fileID: 0}
  2419. m_FontSize: 0
  2420. m_FontStyle: 0
  2421. m_Alignment: 0
  2422. m_WordWrap: 0
  2423. m_RichText: 1
  2424. m_TextClipping: 0
  2425. m_ImagePosition: 2
  2426. m_ContentOffset: {x: 0, y: 0}
  2427. m_FixedWidth: 11
  2428. m_FixedHeight: 10
  2429. m_StretchWidth: 0
  2430. m_StretchHeight: 0
  2431. - m_Name: DownArrow
  2432. m_Normal:
  2433. m_Background: {fileID: 2800000, guid: 12ea2fbedc5cc4bd191d795f44b2de75, type: 3}
  2434. m_ScaledBackgrounds: []
  2435. m_TextColor: {r: 0.12244898, g: 0.12244898, b: 0.12244898, a: 1}
  2436. m_Hover:
  2437. m_Background: {fileID: 0}
  2438. m_ScaledBackgrounds: []
  2439. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2440. m_Active:
  2441. m_Background: {fileID: 2800000, guid: d8951099054c64beaaa49d675d71cfcf, type: 3}
  2442. m_ScaledBackgrounds: []
  2443. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2444. m_Focused:
  2445. m_Background: {fileID: 0}
  2446. m_ScaledBackgrounds: []
  2447. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2448. m_OnNormal:
  2449. m_Background: {fileID: 0}
  2450. m_ScaledBackgrounds: []
  2451. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2452. m_OnHover:
  2453. m_Background: {fileID: 0}
  2454. m_ScaledBackgrounds: []
  2455. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2456. m_OnActive:
  2457. m_Background: {fileID: 0}
  2458. m_ScaledBackgrounds: []
  2459. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2460. m_OnFocused:
  2461. m_Background: {fileID: 0}
  2462. m_ScaledBackgrounds: []
  2463. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2464. m_Border:
  2465. m_Left: 0
  2466. m_Right: 0
  2467. m_Top: 0
  2468. m_Bottom: 0
  2469. m_Margin:
  2470. m_Left: 0
  2471. m_Right: 0
  2472. m_Top: 0
  2473. m_Bottom: 0
  2474. m_Padding:
  2475. m_Left: 0
  2476. m_Right: 0
  2477. m_Top: 0
  2478. m_Bottom: 0
  2479. m_Overflow:
  2480. m_Left: 0
  2481. m_Right: 0
  2482. m_Top: 0
  2483. m_Bottom: 0
  2484. m_Font: {fileID: 0}
  2485. m_FontSize: 0
  2486. m_FontStyle: 0
  2487. m_Alignment: 0
  2488. m_WordWrap: 0
  2489. m_RichText: 1
  2490. m_TextClipping: 0
  2491. m_ImagePosition: 2
  2492. m_ContentOffset: {x: 0, y: 0}
  2493. m_FixedWidth: 11
  2494. m_FixedHeight: 10
  2495. m_StretchWidth: 0
  2496. m_StretchHeight: 0
  2497. - m_Name: SmallReset
  2498. m_Normal:
  2499. m_Background: {fileID: 2800000, guid: fb3e1d793e4f0459f8b913d0d2d76e6c, type: 3}
  2500. m_ScaledBackgrounds: []
  2501. m_TextColor: {r: 0.12244898, g: 0.12244898, b: 0.12244898, a: 1}
  2502. m_Hover:
  2503. m_Background: {fileID: 0}
  2504. m_ScaledBackgrounds: []
  2505. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2506. m_Active:
  2507. m_Background: {fileID: 2800000, guid: 990963b32226c440fb1a72e47e0ad7a2, type: 3}
  2508. m_ScaledBackgrounds: []
  2509. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2510. m_Focused:
  2511. m_Background: {fileID: 0}
  2512. m_ScaledBackgrounds: []
  2513. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2514. m_OnNormal:
  2515. m_Background: {fileID: 0}
  2516. m_ScaledBackgrounds: []
  2517. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2518. m_OnHover:
  2519. m_Background: {fileID: 0}
  2520. m_ScaledBackgrounds: []
  2521. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2522. m_OnActive:
  2523. m_Background: {fileID: 0}
  2524. m_ScaledBackgrounds: []
  2525. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2526. m_OnFocused:
  2527. m_Background: {fileID: 0}
  2528. m_ScaledBackgrounds: []
  2529. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2530. m_Border:
  2531. m_Left: 0
  2532. m_Right: 0
  2533. m_Top: 0
  2534. m_Bottom: 0
  2535. m_Margin:
  2536. m_Left: 0
  2537. m_Right: 0
  2538. m_Top: 1
  2539. m_Bottom: 0
  2540. m_Padding:
  2541. m_Left: 0
  2542. m_Right: 0
  2543. m_Top: 0
  2544. m_Bottom: 0
  2545. m_Overflow:
  2546. m_Left: 0
  2547. m_Right: 0
  2548. m_Top: 0
  2549. m_Bottom: 0
  2550. m_Font: {fileID: 0}
  2551. m_FontSize: 0
  2552. m_FontStyle: 0
  2553. m_Alignment: 0
  2554. m_WordWrap: 0
  2555. m_RichText: 1
  2556. m_TextClipping: 0
  2557. m_ImagePosition: 2
  2558. m_ContentOffset: {x: 0, y: 0}
  2559. m_FixedWidth: 12
  2560. m_FixedHeight: 12
  2561. m_StretchWidth: 0
  2562. m_StretchHeight: 0
  2563. - m_Name: GizmoButton
  2564. m_Normal:
  2565. m_Background: {fileID: 2800000, guid: b05124c2b9dc5429a84ef0195a916fce, type: 3}
  2566. m_ScaledBackgrounds:
  2567. - {fileID: 2800000, guid: 3772050cdbd2a472789aa76d6de5b270, type: 3}
  2568. m_TextColor: {r: 0.12244898, g: 0.12244898, b: 0.12244898, a: 1}
  2569. m_Hover:
  2570. m_Background: {fileID: 0}
  2571. m_ScaledBackgrounds: []
  2572. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2573. m_Active:
  2574. m_Background: {fileID: 2800000, guid: 54ad5f6eb8a9349568e58cd1204388a2, type: 3}
  2575. m_ScaledBackgrounds:
  2576. - {fileID: 2800000, guid: a454b67ef7bd04780aca99e364202679, type: 3}
  2577. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2578. m_Focused:
  2579. m_Background: {fileID: 0}
  2580. m_ScaledBackgrounds: []
  2581. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2582. m_OnNormal:
  2583. m_Background: {fileID: 2800000, guid: 54ad5f6eb8a9349568e58cd1204388a2, type: 3}
  2584. m_ScaledBackgrounds:
  2585. - {fileID: 2800000, guid: a454b67ef7bd04780aca99e364202679, type: 3}
  2586. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2587. m_OnHover:
  2588. m_Background: {fileID: 0}
  2589. m_ScaledBackgrounds: []
  2590. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2591. m_OnActive:
  2592. m_Background: {fileID: 2800000, guid: b05124c2b9dc5429a84ef0195a916fce, type: 3}
  2593. m_ScaledBackgrounds:
  2594. - {fileID: 2800000, guid: 3772050cdbd2a472789aa76d6de5b270, type: 3}
  2595. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2596. m_OnFocused:
  2597. m_Background: {fileID: 0}
  2598. m_ScaledBackgrounds: []
  2599. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2600. m_Border:
  2601. m_Left: 0
  2602. m_Right: 0
  2603. m_Top: 0
  2604. m_Bottom: 0
  2605. m_Margin:
  2606. m_Left: 0
  2607. m_Right: 1
  2608. m_Top: 0
  2609. m_Bottom: 0
  2610. m_Padding:
  2611. m_Left: 0
  2612. m_Right: 0
  2613. m_Top: 0
  2614. m_Bottom: 0
  2615. m_Overflow:
  2616. m_Left: 0
  2617. m_Right: 0
  2618. m_Top: -1
  2619. m_Bottom: 1
  2620. m_Font: {fileID: 0}
  2621. m_FontSize: 0
  2622. m_FontStyle: 0
  2623. m_Alignment: 0
  2624. m_WordWrap: 0
  2625. m_RichText: 1
  2626. m_TextClipping: 0
  2627. m_ImagePosition: 2
  2628. m_ContentOffset: {x: 0, y: 0}
  2629. m_FixedWidth: 16
  2630. m_FixedHeight: 16
  2631. m_StretchWidth: 0
  2632. m_StretchHeight: 0
  2633. - m_Name: EditButton
  2634. m_Normal:
  2635. m_Background: {fileID: 2800000, guid: 705155b2c3fce47f0a818ac32d5abe3f, type: 3}
  2636. m_ScaledBackgrounds:
  2637. - {fileID: 2800000, guid: e8ebb72a41d314b288545fddfd20cafd, type: 3}
  2638. m_TextColor: {r: 0.12244898, g: 0.12244898, b: 0.12244898, a: 1}
  2639. m_Hover:
  2640. m_Background: {fileID: 0}
  2641. m_ScaledBackgrounds: []
  2642. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2643. m_Active:
  2644. m_Background: {fileID: 2800000, guid: e0cb3cc51f25a48bf8b0c647452b09b1, type: 3}
  2645. m_ScaledBackgrounds:
  2646. - {fileID: 2800000, guid: f6a4baf90a7bb4e4a92abe07f1a0a9d3, type: 3}
  2647. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2648. m_Focused:
  2649. m_Background: {fileID: 0}
  2650. m_ScaledBackgrounds: []
  2651. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2652. m_OnNormal:
  2653. m_Background: {fileID: 0}
  2654. m_ScaledBackgrounds:
  2655. - {fileID: 0}
  2656. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2657. m_OnHover:
  2658. m_Background: {fileID: 0}
  2659. m_ScaledBackgrounds: []
  2660. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2661. m_OnActive:
  2662. m_Background: {fileID: 0}
  2663. m_ScaledBackgrounds:
  2664. - {fileID: 0}
  2665. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2666. m_OnFocused:
  2667. m_Background: {fileID: 0}
  2668. m_ScaledBackgrounds: []
  2669. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  2670. m_Border:
  2671. m_Left: 0
  2672. m_Right: 0
  2673. m_Top: 0
  2674. m_Bottom: 0
  2675. m_Margin:
  2676. m_Left: 0
  2677. m_Right: 1
  2678. m_Top: 0
  2679. m_Bottom: 0
  2680. m_Padding:
  2681. m_Left: 0
  2682. m_Right: 0
  2683. m_Top: 0
  2684. m_Bottom: 0
  2685. m_Overflow:
  2686. m_Left: 0
  2687. m_Right: 0
  2688. m_Top: -1
  2689. m_Bottom: 1
  2690. m_Font: {fileID: 0}
  2691. m_FontSize: 0
  2692. m_FontStyle: 0
  2693. m_Alignment: 0
  2694. m_WordWrap: 0
  2695. m_RichText: 1
  2696. m_TextClipping: 0
  2697. m_ImagePosition: 2
  2698. m_ContentOffset: {x: 0, y: 0}
  2699. m_FixedWidth: 16
  2700. m_FixedHeight: 16
  2701. m_StretchWidth: 0
  2702. m_StretchHeight: 0
  2703. - m_Name: SceneBoxDark
  2704. m_Normal:
  2705. m_Background: {fileID: 2800000, guid: a4bb5812f98bf40a68d9c1a69ad860cb, type: 3}
  2706. m_ScaledBackgrounds:
  2707. - {fileID: 2800000, guid: f834e7df6f42446b59c83dca1e5bd098, type: 3}
  2708. m_TextColor: {r: 0.74509805, g: 0.74509805, b: 0.74509805, a: 1}
  2709. m_Hover:
  2710. m_Background: {fileID: 0}
  2711. m_ScaledBackgrounds: []
  2712. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2713. m_Active:
  2714. m_Background: {fileID: 0}
  2715. m_ScaledBackgrounds: []
  2716. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2717. m_Focused:
  2718. m_Background: {fileID: 0}
  2719. m_ScaledBackgrounds: []
  2720. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2721. m_OnNormal:
  2722. m_Background: {fileID: 0}
  2723. m_ScaledBackgrounds:
  2724. - {fileID: 0}
  2725. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2726. m_OnHover:
  2727. m_Background: {fileID: 0}
  2728. m_ScaledBackgrounds: []
  2729. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2730. m_OnActive:
  2731. m_Background: {fileID: 0}
  2732. m_ScaledBackgrounds: []
  2733. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2734. m_OnFocused:
  2735. m_Background: {fileID: 0}
  2736. m_ScaledBackgrounds: []
  2737. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2738. m_Border:
  2739. m_Left: 8
  2740. m_Right: 8
  2741. m_Top: 8
  2742. m_Bottom: 8
  2743. m_Margin:
  2744. m_Left: 0
  2745. m_Right: 0
  2746. m_Top: 0
  2747. m_Bottom: 0
  2748. m_Padding:
  2749. m_Left: 6
  2750. m_Right: 6
  2751. m_Top: 20
  2752. m_Bottom: 0
  2753. m_Overflow:
  2754. m_Left: 0
  2755. m_Right: 0
  2756. m_Top: 0
  2757. m_Bottom: 0
  2758. m_Font: {fileID: 0}
  2759. m_FontSize: 0
  2760. m_FontStyle: 0
  2761. m_Alignment: 1
  2762. m_WordWrap: 0
  2763. m_RichText: 1
  2764. m_TextClipping: 0
  2765. m_ImagePosition: 3
  2766. m_ContentOffset: {x: 0, y: -16}
  2767. m_FixedWidth: 0
  2768. m_FixedHeight: 0
  2769. m_StretchWidth: 1
  2770. m_StretchHeight: 0
  2771. - m_Name: ScenePrefixLabel
  2772. m_Normal:
  2773. m_Background: {fileID: 0}
  2774. m_ScaledBackgrounds: []
  2775. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2776. m_Hover:
  2777. m_Background: {fileID: 0}
  2778. m_ScaledBackgrounds: []
  2779. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2780. m_Active:
  2781. m_Background: {fileID: 0}
  2782. m_ScaledBackgrounds: []
  2783. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2784. m_Focused:
  2785. m_Background: {fileID: 0}
  2786. m_ScaledBackgrounds: []
  2787. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2788. m_OnNormal:
  2789. m_Background: {fileID: 0}
  2790. m_ScaledBackgrounds:
  2791. - {fileID: 0}
  2792. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2793. m_OnHover:
  2794. m_Background: {fileID: 0}
  2795. m_ScaledBackgrounds: []
  2796. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2797. m_OnActive:
  2798. m_Background: {fileID: 0}
  2799. m_ScaledBackgrounds: []
  2800. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2801. m_OnFocused:
  2802. m_Background: {fileID: 0}
  2803. m_ScaledBackgrounds: []
  2804. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2805. m_Border:
  2806. m_Left: 0
  2807. m_Right: 0
  2808. m_Top: 0
  2809. m_Bottom: 0
  2810. m_Margin:
  2811. m_Left: 0
  2812. m_Right: 0
  2813. m_Top: 0
  2814. m_Bottom: 0
  2815. m_Padding:
  2816. m_Left: 1
  2817. m_Right: 0
  2818. m_Top: 0
  2819. m_Bottom: 0
  2820. m_Overflow:
  2821. m_Left: 0
  2822. m_Right: 0
  2823. m_Top: 0
  2824. m_Bottom: 0
  2825. m_Font: {fileID: 0}
  2826. m_FontSize: 12
  2827. m_FontStyle: 0
  2828. m_Alignment: 0
  2829. m_WordWrap: 0
  2830. m_RichText: 1
  2831. m_TextClipping: 0
  2832. m_ImagePosition: 0
  2833. m_ContentOffset: {x: 0, y: -3}
  2834. m_FixedWidth: 0
  2835. m_FixedHeight: 0
  2836. m_StretchWidth: 1
  2837. m_StretchHeight: 0
  2838. - m_Name: HexagonDiameter
  2839. m_Normal:
  2840. m_Background: {fileID: 2800000, guid: aec40eb6c450c4bdea484100ff9fb9a4, type: 3}
  2841. m_ScaledBackgrounds:
  2842. - {fileID: 2800000, guid: 36094f49ffe31443eb5e8ea185115a1d, type: 3}
  2843. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2844. m_Hover:
  2845. m_Background: {fileID: 0}
  2846. m_ScaledBackgrounds: []
  2847. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2848. m_Active:
  2849. m_Background: {fileID: 0}
  2850. m_ScaledBackgrounds: []
  2851. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2852. m_Focused:
  2853. m_Background: {fileID: 0}
  2854. m_ScaledBackgrounds: []
  2855. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2856. m_OnNormal:
  2857. m_Background: {fileID: 0}
  2858. m_ScaledBackgrounds:
  2859. - {fileID: 0}
  2860. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2861. m_OnHover:
  2862. m_Background: {fileID: 0}
  2863. m_ScaledBackgrounds: []
  2864. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2865. m_OnActive:
  2866. m_Background: {fileID: 0}
  2867. m_ScaledBackgrounds: []
  2868. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2869. m_OnFocused:
  2870. m_Background: {fileID: 0}
  2871. m_ScaledBackgrounds: []
  2872. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2873. m_Border:
  2874. m_Left: 0
  2875. m_Right: 0
  2876. m_Top: 0
  2877. m_Bottom: 0
  2878. m_Margin:
  2879. m_Left: 8
  2880. m_Right: 8
  2881. m_Top: 5
  2882. m_Bottom: 0
  2883. m_Padding:
  2884. m_Left: 0
  2885. m_Right: 0
  2886. m_Top: 0
  2887. m_Bottom: 0
  2888. m_Overflow:
  2889. m_Left: 0
  2890. m_Right: 0
  2891. m_Top: 0
  2892. m_Bottom: 0
  2893. m_Font: {fileID: 0}
  2894. m_FontSize: 12
  2895. m_FontStyle: 0
  2896. m_Alignment: 0
  2897. m_WordWrap: 0
  2898. m_RichText: 1
  2899. m_TextClipping: 0
  2900. m_ImagePosition: 2
  2901. m_ContentOffset: {x: 0, y: 0}
  2902. m_FixedWidth: 32
  2903. m_FixedHeight: 32
  2904. m_StretchWidth: 0
  2905. m_StretchHeight: 0
  2906. - m_Name: HexagonWidth
  2907. m_Normal:
  2908. m_Background: {fileID: 2800000, guid: 43a4af66a8c594a2daa4744ed77da2dd, type: 3}
  2909. m_ScaledBackgrounds:
  2910. - {fileID: 2800000, guid: 321a1fe2502bc493d87337a3a4429cf5, type: 3}
  2911. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2912. m_Hover:
  2913. m_Background: {fileID: 0}
  2914. m_ScaledBackgrounds: []
  2915. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2916. m_Active:
  2917. m_Background: {fileID: 0}
  2918. m_ScaledBackgrounds: []
  2919. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2920. m_Focused:
  2921. m_Background: {fileID: 0}
  2922. m_ScaledBackgrounds: []
  2923. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2924. m_OnNormal:
  2925. m_Background: {fileID: 0}
  2926. m_ScaledBackgrounds:
  2927. - {fileID: 0}
  2928. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2929. m_OnHover:
  2930. m_Background: {fileID: 0}
  2931. m_ScaledBackgrounds: []
  2932. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2933. m_OnActive:
  2934. m_Background: {fileID: 0}
  2935. m_ScaledBackgrounds: []
  2936. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2937. m_OnFocused:
  2938. m_Background: {fileID: 0}
  2939. m_ScaledBackgrounds: []
  2940. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  2941. m_Border:
  2942. m_Left: 0
  2943. m_Right: 0
  2944. m_Top: 0
  2945. m_Bottom: 0
  2946. m_Margin:
  2947. m_Left: 8
  2948. m_Right: 8
  2949. m_Top: 5
  2950. m_Bottom: 0
  2951. m_Padding:
  2952. m_Left: 0
  2953. m_Right: 0
  2954. m_Top: 0
  2955. m_Bottom: 0
  2956. m_Overflow:
  2957. m_Left: 0
  2958. m_Right: 0
  2959. m_Top: 0
  2960. m_Bottom: 0
  2961. m_Font: {fileID: 0}
  2962. m_FontSize: 12
  2963. m_FontStyle: 0
  2964. m_Alignment: 0
  2965. m_WordWrap: 0
  2966. m_RichText: 1
  2967. m_TextClipping: 0
  2968. m_ImagePosition: 2
  2969. m_ContentOffset: {x: 0, y: 0}
  2970. m_FixedWidth: 32
  2971. m_FixedHeight: 32
  2972. m_StretchWidth: 0
  2973. m_StretchHeight: 0
  2974. m_Settings:
  2975. m_DoubleClickSelectsWord: 1
  2976. m_TripleClickSelectsLine: 1
  2977. m_CursorColor: {r: 1, g: 1, b: 1, a: 1}
  2978. m_CursorFlashSpeed: -1
  2979. m_SelectionColor: {r: 1, g: 0.38403907, b: 0, a: 0.7}
  2980. --- !u!1002 &11400001
  2981. EditorExtensionImpl:
  2982. serializedVersion: 6