PolybayEditorSkin.guiskin 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!114 &11400000
  4. MonoBehaviour:
  5. m_ObjectHideFlags: 0
  6. m_PrefabParentObject: {fileID: 0}
  7. m_PrefabInternal: {fileID: 0}
  8. m_GameObject: {fileID: 0}
  9. m_Enabled: 1
  10. m_EditorHideFlags: 1
  11. m_Script: {fileID: 12001, guid: 0000000000000000e000000000000000, type: 0}
  12. m_Name: PolybayEditorSkin
  13. m_EditorClassIdentifier:
  14. m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
  15. m_box:
  16. m_Name: box
  17. m_Normal:
  18. m_Background: {fileID: 11001, guid: 0000000000000000e000000000000000, type: 0}
  19. m_ScaledBackgrounds: []
  20. m_TextColor: {r: 0.79999995, g: 0.79999995, b: 0.79999995, a: 1}
  21. m_Hover:
  22. m_Background: {fileID: 0}
  23. m_ScaledBackgrounds: []
  24. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  25. m_Active:
  26. m_Background: {fileID: 0}
  27. m_ScaledBackgrounds: []
  28. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  29. m_Focused:
  30. m_Background: {fileID: 0}
  31. m_ScaledBackgrounds: []
  32. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  33. m_OnNormal:
  34. m_Background: {fileID: 0}
  35. m_ScaledBackgrounds: []
  36. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  37. m_OnHover:
  38. m_Background: {fileID: 0}
  39. m_ScaledBackgrounds: []
  40. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  41. m_OnActive:
  42. m_Background: {fileID: 0}
  43. m_ScaledBackgrounds: []
  44. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  45. m_OnFocused:
  46. m_Background: {fileID: 0}
  47. m_ScaledBackgrounds: []
  48. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  49. m_Border:
  50. m_Left: 6
  51. m_Right: 6
  52. m_Top: 6
  53. m_Bottom: 6
  54. m_Margin:
  55. m_Left: 4
  56. m_Right: 4
  57. m_Top: 4
  58. m_Bottom: 4
  59. m_Padding:
  60. m_Left: 4
  61. m_Right: 4
  62. m_Top: 4
  63. m_Bottom: 4
  64. m_Overflow:
  65. m_Left: 0
  66. m_Right: 0
  67. m_Top: 0
  68. m_Bottom: 0
  69. m_Font: {fileID: 0}
  70. m_FontSize: 0
  71. m_FontStyle: 0
  72. m_Alignment: 1
  73. m_WordWrap: 0
  74. m_RichText: 1
  75. m_TextClipping: 1
  76. m_ImagePosition: 0
  77. m_ContentOffset: {x: 0, y: 0}
  78. m_FixedWidth: 0
  79. m_FixedHeight: 0
  80. m_StretchWidth: 1
  81. m_StretchHeight: 0
  82. m_button:
  83. m_Name: button
  84. m_Normal:
  85. m_Background: {fileID: 11006, guid: 0000000000000000e000000000000000, type: 0}
  86. m_ScaledBackgrounds: []
  87. m_TextColor: {r: 0.625, g: 0, b: 0, a: 1}
  88. m_Hover:
  89. m_Background: {fileID: 11003, guid: 0000000000000000e000000000000000, type: 0}
  90. m_ScaledBackgrounds: []
  91. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  92. m_Active:
  93. m_Background: {fileID: 11002, guid: 0000000000000000e000000000000000, type: 0}
  94. m_ScaledBackgrounds: []
  95. m_TextColor: {r: 0.9, g: 0.9, b: 0.9, a: 1}
  96. m_Focused:
  97. m_Background: {fileID: 0}
  98. m_ScaledBackgrounds: []
  99. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  100. m_OnNormal:
  101. m_Background: {fileID: 11005, guid: 0000000000000000e000000000000000, type: 0}
  102. m_ScaledBackgrounds: []
  103. m_TextColor: {r: 0.9019608, g: 0.9019608, b: 0.9019608, a: 1}
  104. m_OnHover:
  105. m_Background: {fileID: 11004, guid: 0000000000000000e000000000000000, type: 0}
  106. m_ScaledBackgrounds: []
  107. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  108. m_OnActive:
  109. m_Background: {fileID: 11002, guid: 0000000000000000e000000000000000, type: 0}
  110. m_ScaledBackgrounds: []
  111. m_TextColor: {r: 0.9, g: 0.9, b: 0.9, a: 1}
  112. m_OnFocused:
  113. m_Background: {fileID: 0}
  114. m_ScaledBackgrounds: []
  115. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  116. m_Border:
  117. m_Left: 6
  118. m_Right: 6
  119. m_Top: 6
  120. m_Bottom: 4
  121. m_Margin:
  122. m_Left: 4
  123. m_Right: 4
  124. m_Top: 4
  125. m_Bottom: 4
  126. m_Padding:
  127. m_Left: 6
  128. m_Right: 6
  129. m_Top: 3
  130. m_Bottom: 3
  131. m_Overflow:
  132. m_Left: 0
  133. m_Right: 0
  134. m_Top: 0
  135. m_Bottom: 0
  136. m_Font: {fileID: 0}
  137. m_FontSize: 0
  138. m_FontStyle: 0
  139. m_Alignment: 4
  140. m_WordWrap: 0
  141. m_RichText: 1
  142. m_TextClipping: 1
  143. m_ImagePosition: 0
  144. m_ContentOffset: {x: 0, y: 0}
  145. m_FixedWidth: 0
  146. m_FixedHeight: 0
  147. m_StretchWidth: 1
  148. m_StretchHeight: 0
  149. m_toggle:
  150. m_Name: toggle
  151. m_Normal:
  152. m_Background: {fileID: 11018, guid: 0000000000000000e000000000000000, type: 0}
  153. m_ScaledBackgrounds: []
  154. m_TextColor: {r: 0.89112896, g: 0.89112896, b: 0.89112896, a: 1}
  155. m_Hover:
  156. m_Background: {fileID: 11014, guid: 0000000000000000e000000000000000, type: 0}
  157. m_ScaledBackgrounds: []
  158. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  159. m_Active:
  160. m_Background: {fileID: 11013, guid: 0000000000000000e000000000000000, type: 0}
  161. m_ScaledBackgrounds: []
  162. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  163. m_Focused:
  164. m_Background: {fileID: 0}
  165. m_ScaledBackgrounds: []
  166. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  167. m_OnNormal:
  168. m_Background: {fileID: 11016, guid: 0000000000000000e000000000000000, type: 0}
  169. m_ScaledBackgrounds: []
  170. m_TextColor: {r: 0.8901961, g: 0.8901961, b: 0.8901961, a: 1}
  171. m_OnHover:
  172. m_Background: {fileID: 11015, guid: 0000000000000000e000000000000000, type: 0}
  173. m_ScaledBackgrounds: []
  174. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  175. m_OnActive:
  176. m_Background: {fileID: 11017, guid: 0000000000000000e000000000000000, type: 0}
  177. m_ScaledBackgrounds: []
  178. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  179. m_OnFocused:
  180. m_Background: {fileID: 0}
  181. m_ScaledBackgrounds: []
  182. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  183. m_Border:
  184. m_Left: 14
  185. m_Right: 0
  186. m_Top: 14
  187. m_Bottom: 0
  188. m_Margin:
  189. m_Left: 4
  190. m_Right: 4
  191. m_Top: 4
  192. m_Bottom: 4
  193. m_Padding:
  194. m_Left: 15
  195. m_Right: 0
  196. m_Top: 3
  197. m_Bottom: 0
  198. m_Overflow:
  199. m_Left: -1
  200. m_Right: 0
  201. m_Top: -4
  202. m_Bottom: 0
  203. m_Font: {fileID: 0}
  204. m_FontSize: 0
  205. m_FontStyle: 0
  206. m_Alignment: 0
  207. m_WordWrap: 0
  208. m_RichText: 1
  209. m_TextClipping: 1
  210. m_ImagePosition: 0
  211. m_ContentOffset: {x: 0, y: 0}
  212. m_FixedWidth: 0
  213. m_FixedHeight: 0
  214. m_StretchWidth: 1
  215. m_StretchHeight: 0
  216. m_label:
  217. m_Name: label
  218. m_Normal:
  219. m_Background: {fileID: 0}
  220. m_ScaledBackgrounds: []
  221. m_TextColor: {r: 0.9, g: 0.9, b: 0.9, a: 1}
  222. m_Hover:
  223. m_Background: {fileID: 0}
  224. m_ScaledBackgrounds: []
  225. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  226. m_Active:
  227. m_Background: {fileID: 0}
  228. m_ScaledBackgrounds: []
  229. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  230. m_Focused:
  231. m_Background: {fileID: 0}
  232. m_ScaledBackgrounds: []
  233. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  234. m_OnNormal:
  235. m_Background: {fileID: 0}
  236. m_ScaledBackgrounds: []
  237. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  238. m_OnHover:
  239. m_Background: {fileID: 0}
  240. m_ScaledBackgrounds: []
  241. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  242. m_OnActive:
  243. m_Background: {fileID: 0}
  244. m_ScaledBackgrounds: []
  245. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  246. m_OnFocused:
  247. m_Background: {fileID: 0}
  248. m_ScaledBackgrounds: []
  249. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  250. m_Border:
  251. m_Left: 0
  252. m_Right: 0
  253. m_Top: 0
  254. m_Bottom: 0
  255. m_Margin:
  256. m_Left: 4
  257. m_Right: 4
  258. m_Top: 4
  259. m_Bottom: 4
  260. m_Padding:
  261. m_Left: 0
  262. m_Right: 0
  263. m_Top: 3
  264. m_Bottom: 3
  265. m_Overflow:
  266. m_Left: 0
  267. m_Right: 0
  268. m_Top: 0
  269. m_Bottom: 0
  270. m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
  271. m_FontSize: 14
  272. m_FontStyle: 0
  273. m_Alignment: 0
  274. m_WordWrap: 1
  275. m_RichText: 1
  276. m_TextClipping: 1
  277. m_ImagePosition: 0
  278. m_ContentOffset: {x: 15, y: 5}
  279. m_FixedWidth: 0
  280. m_FixedHeight: 0
  281. m_StretchWidth: 1
  282. m_StretchHeight: 0
  283. m_textField:
  284. m_Name: textfield
  285. m_Normal:
  286. m_Background: {fileID: 11024, guid: 0000000000000000e000000000000000, type: 0}
  287. m_ScaledBackgrounds: []
  288. m_TextColor: {r: 0.79999995, g: 0.79999995, b: 0.79999995, a: 1}
  289. m_Hover:
  290. m_Background: {fileID: 11026, guid: 0000000000000000e000000000000000, type: 0}
  291. m_ScaledBackgrounds: []
  292. m_TextColor: {r: 0.9, g: 0.9, b: 0.9, a: 1}
  293. m_Active:
  294. m_Background: {fileID: 0}
  295. m_ScaledBackgrounds: []
  296. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  297. m_Focused:
  298. m_Background: {fileID: 11026, guid: 0000000000000000e000000000000000, type: 0}
  299. m_ScaledBackgrounds: []
  300. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  301. m_OnNormal:
  302. m_Background: {fileID: 11025, guid: 0000000000000000e000000000000000, type: 0}
  303. m_ScaledBackgrounds: []
  304. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  305. m_OnHover:
  306. m_Background: {fileID: 0}
  307. m_ScaledBackgrounds: []
  308. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  309. m_OnActive:
  310. m_Background: {fileID: 0}
  311. m_ScaledBackgrounds: []
  312. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  313. m_OnFocused:
  314. m_Background: {fileID: 0}
  315. m_ScaledBackgrounds: []
  316. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  317. m_Border:
  318. m_Left: 4
  319. m_Right: 4
  320. m_Top: 4
  321. m_Bottom: 4
  322. m_Margin:
  323. m_Left: 4
  324. m_Right: 4
  325. m_Top: 4
  326. m_Bottom: 4
  327. m_Padding:
  328. m_Left: 3
  329. m_Right: 3
  330. m_Top: 3
  331. m_Bottom: 3
  332. m_Overflow:
  333. m_Left: 0
  334. m_Right: 0
  335. m_Top: 0
  336. m_Bottom: 0
  337. m_Font: {fileID: 0}
  338. m_FontSize: 0
  339. m_FontStyle: 0
  340. m_Alignment: 0
  341. m_WordWrap: 0
  342. m_RichText: 0
  343. m_TextClipping: 1
  344. m_ImagePosition: 3
  345. m_ContentOffset: {x: 0, y: 0}
  346. m_FixedWidth: 0
  347. m_FixedHeight: 0
  348. m_StretchWidth: 1
  349. m_StretchHeight: 0
  350. m_textArea:
  351. m_Name: textarea
  352. m_Normal:
  353. m_Background: {fileID: 11024, guid: 0000000000000000e000000000000000, type: 0}
  354. m_ScaledBackgrounds: []
  355. m_TextColor: {r: 0.9019608, g: 0.9019608, b: 0.9019608, a: 1}
  356. m_Hover:
  357. m_Background: {fileID: 11026, guid: 0000000000000000e000000000000000, type: 0}
  358. m_ScaledBackgrounds: []
  359. m_TextColor: {r: 0.79999995, g: 0.79999995, b: 0.79999995, a: 1}
  360. m_Active:
  361. m_Background: {fileID: 0}
  362. m_ScaledBackgrounds: []
  363. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  364. m_Focused:
  365. m_Background: {fileID: 0}
  366. m_ScaledBackgrounds: []
  367. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  368. m_OnNormal:
  369. m_Background: {fileID: 11025, guid: 0000000000000000e000000000000000, type: 0}
  370. m_ScaledBackgrounds: []
  371. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  372. m_OnHover:
  373. m_Background: {fileID: 0}
  374. m_ScaledBackgrounds: []
  375. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  376. m_OnActive:
  377. m_Background: {fileID: 0}
  378. m_ScaledBackgrounds: []
  379. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  380. m_OnFocused:
  381. m_Background: {fileID: 0}
  382. m_ScaledBackgrounds: []
  383. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  384. m_Border:
  385. m_Left: 4
  386. m_Right: 4
  387. m_Top: 4
  388. m_Bottom: 4
  389. m_Margin:
  390. m_Left: 4
  391. m_Right: 4
  392. m_Top: 4
  393. m_Bottom: 4
  394. m_Padding:
  395. m_Left: 3
  396. m_Right: 3
  397. m_Top: 3
  398. m_Bottom: 3
  399. m_Overflow:
  400. m_Left: 0
  401. m_Right: 0
  402. m_Top: 0
  403. m_Bottom: 0
  404. m_Font: {fileID: 0}
  405. m_FontSize: 0
  406. m_FontStyle: 0
  407. m_Alignment: 0
  408. m_WordWrap: 1
  409. m_RichText: 0
  410. m_TextClipping: 1
  411. m_ImagePosition: 0
  412. m_ContentOffset: {x: 0, y: 0}
  413. m_FixedWidth: 0
  414. m_FixedHeight: 0
  415. m_StretchWidth: 1
  416. m_StretchHeight: 0
  417. m_window:
  418. m_Name: window
  419. m_Normal:
  420. m_Background: {fileID: 11023, guid: 0000000000000000e000000000000000, type: 0}
  421. m_ScaledBackgrounds: []
  422. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  423. m_Hover:
  424. m_Background: {fileID: 0}
  425. m_ScaledBackgrounds: []
  426. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  427. m_Active:
  428. m_Background: {fileID: 0}
  429. m_ScaledBackgrounds: []
  430. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  431. m_Focused:
  432. m_Background: {fileID: 0}
  433. m_ScaledBackgrounds: []
  434. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  435. m_OnNormal:
  436. m_Background: {fileID: 11022, guid: 0000000000000000e000000000000000, type: 0}
  437. m_ScaledBackgrounds: []
  438. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  439. m_OnHover:
  440. m_Background: {fileID: 0}
  441. m_ScaledBackgrounds: []
  442. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  443. m_OnActive:
  444. m_Background: {fileID: 0}
  445. m_ScaledBackgrounds: []
  446. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  447. m_OnFocused:
  448. m_Background: {fileID: 0}
  449. m_ScaledBackgrounds: []
  450. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  451. m_Border:
  452. m_Left: 8
  453. m_Right: 8
  454. m_Top: 18
  455. m_Bottom: 8
  456. m_Margin:
  457. m_Left: 0
  458. m_Right: 0
  459. m_Top: 0
  460. m_Bottom: 0
  461. m_Padding:
  462. m_Left: 10
  463. m_Right: 10
  464. m_Top: 20
  465. m_Bottom: 10
  466. m_Overflow:
  467. m_Left: 0
  468. m_Right: 0
  469. m_Top: 0
  470. m_Bottom: 0
  471. m_Font: {fileID: 0}
  472. m_FontSize: 0
  473. m_FontStyle: 0
  474. m_Alignment: 1
  475. m_WordWrap: 0
  476. m_RichText: 1
  477. m_TextClipping: 1
  478. m_ImagePosition: 0
  479. m_ContentOffset: {x: 0, y: -18}
  480. m_FixedWidth: 0
  481. m_FixedHeight: 0
  482. m_StretchWidth: 1
  483. m_StretchHeight: 0
  484. m_horizontalSlider:
  485. m_Name: horizontalslider
  486. m_Normal:
  487. m_Background: {fileID: 11009, guid: 0000000000000000e000000000000000, type: 0}
  488. m_ScaledBackgrounds: []
  489. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  490. m_Hover:
  491. m_Background: {fileID: 0}
  492. m_ScaledBackgrounds: []
  493. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  494. m_Active:
  495. m_Background: {fileID: 0}
  496. m_ScaledBackgrounds: []
  497. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  498. m_Focused:
  499. m_Background: {fileID: 0}
  500. m_ScaledBackgrounds: []
  501. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  502. m_OnNormal:
  503. m_Background: {fileID: 0}
  504. m_ScaledBackgrounds: []
  505. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  506. m_OnHover:
  507. m_Background: {fileID: 0}
  508. m_ScaledBackgrounds: []
  509. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  510. m_OnActive:
  511. m_Background: {fileID: 0}
  512. m_ScaledBackgrounds: []
  513. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  514. m_OnFocused:
  515. m_Background: {fileID: 0}
  516. m_ScaledBackgrounds: []
  517. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  518. m_Border:
  519. m_Left: 3
  520. m_Right: 3
  521. m_Top: 0
  522. m_Bottom: 0
  523. m_Margin:
  524. m_Left: 4
  525. m_Right: 4
  526. m_Top: 4
  527. m_Bottom: 4
  528. m_Padding:
  529. m_Left: -1
  530. m_Right: -1
  531. m_Top: 0
  532. m_Bottom: 0
  533. m_Overflow:
  534. m_Left: 0
  535. m_Right: 0
  536. m_Top: -2
  537. m_Bottom: -3
  538. m_Font: {fileID: 0}
  539. m_FontSize: 0
  540. m_FontStyle: 0
  541. m_Alignment: 0
  542. m_WordWrap: 0
  543. m_RichText: 1
  544. m_TextClipping: 1
  545. m_ImagePosition: 2
  546. m_ContentOffset: {x: 0, y: 0}
  547. m_FixedWidth: 0
  548. m_FixedHeight: 12
  549. m_StretchWidth: 1
  550. m_StretchHeight: 0
  551. m_horizontalSliderThumb:
  552. m_Name: horizontalsliderthumb
  553. m_Normal:
  554. m_Background: {fileID: 11011, guid: 0000000000000000e000000000000000, type: 0}
  555. m_ScaledBackgrounds: []
  556. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  557. m_Hover:
  558. m_Background: {fileID: 11012, guid: 0000000000000000e000000000000000, type: 0}
  559. m_ScaledBackgrounds: []
  560. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  561. m_Active:
  562. m_Background: {fileID: 11010, guid: 0000000000000000e000000000000000, type: 0}
  563. m_ScaledBackgrounds: []
  564. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  565. m_Focused:
  566. m_Background: {fileID: 0}
  567. m_ScaledBackgrounds: []
  568. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  569. m_OnNormal:
  570. m_Background: {fileID: 0}
  571. m_ScaledBackgrounds: []
  572. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  573. m_OnHover:
  574. m_Background: {fileID: 0}
  575. m_ScaledBackgrounds: []
  576. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  577. m_OnActive:
  578. m_Background: {fileID: 0}
  579. m_ScaledBackgrounds: []
  580. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  581. m_OnFocused:
  582. m_Background: {fileID: 0}
  583. m_ScaledBackgrounds: []
  584. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  585. m_Border:
  586. m_Left: 4
  587. m_Right: 4
  588. m_Top: 0
  589. m_Bottom: 0
  590. m_Margin:
  591. m_Left: 0
  592. m_Right: 0
  593. m_Top: 0
  594. m_Bottom: 0
  595. m_Padding:
  596. m_Left: 7
  597. m_Right: 7
  598. m_Top: 0
  599. m_Bottom: 0
  600. m_Overflow:
  601. m_Left: -1
  602. m_Right: -1
  603. m_Top: 0
  604. m_Bottom: 0
  605. m_Font: {fileID: 0}
  606. m_FontSize: 0
  607. m_FontStyle: 0
  608. m_Alignment: 0
  609. m_WordWrap: 0
  610. m_RichText: 1
  611. m_TextClipping: 1
  612. m_ImagePosition: 2
  613. m_ContentOffset: {x: 0, y: 0}
  614. m_FixedWidth: 0
  615. m_FixedHeight: 12
  616. m_StretchWidth: 1
  617. m_StretchHeight: 0
  618. m_verticalSlider:
  619. m_Name: verticalslider
  620. m_Normal:
  621. m_Background: {fileID: 11021, guid: 0000000000000000e000000000000000, type: 0}
  622. m_ScaledBackgrounds: []
  623. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  624. m_Hover:
  625. m_Background: {fileID: 0}
  626. m_ScaledBackgrounds: []
  627. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  628. m_Active:
  629. m_Background: {fileID: 0}
  630. m_ScaledBackgrounds: []
  631. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  632. m_Focused:
  633. m_Background: {fileID: 0}
  634. m_ScaledBackgrounds: []
  635. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  636. m_OnNormal:
  637. m_Background: {fileID: 0}
  638. m_ScaledBackgrounds: []
  639. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  640. m_OnHover:
  641. m_Background: {fileID: 0}
  642. m_ScaledBackgrounds: []
  643. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  644. m_OnActive:
  645. m_Background: {fileID: 0}
  646. m_ScaledBackgrounds: []
  647. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  648. m_OnFocused:
  649. m_Background: {fileID: 0}
  650. m_ScaledBackgrounds: []
  651. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  652. m_Border:
  653. m_Left: 0
  654. m_Right: 0
  655. m_Top: 3
  656. m_Bottom: 3
  657. m_Margin:
  658. m_Left: 4
  659. m_Right: 4
  660. m_Top: 4
  661. m_Bottom: 4
  662. m_Padding:
  663. m_Left: 0
  664. m_Right: 0
  665. m_Top: -1
  666. m_Bottom: -1
  667. m_Overflow:
  668. m_Left: -2
  669. m_Right: -3
  670. m_Top: 0
  671. m_Bottom: 0
  672. m_Font: {fileID: 0}
  673. m_FontSize: 0
  674. m_FontStyle: 0
  675. m_Alignment: 0
  676. m_WordWrap: 0
  677. m_RichText: 1
  678. m_TextClipping: 0
  679. m_ImagePosition: 0
  680. m_ContentOffset: {x: 0, y: 0}
  681. m_FixedWidth: 12
  682. m_FixedHeight: 0
  683. m_StretchWidth: 0
  684. m_StretchHeight: 1
  685. m_verticalSliderThumb:
  686. m_Name: verticalsliderthumb
  687. m_Normal:
  688. m_Background: {fileID: 11011, guid: 0000000000000000e000000000000000, type: 0}
  689. m_ScaledBackgrounds: []
  690. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  691. m_Hover:
  692. m_Background: {fileID: 11012, guid: 0000000000000000e000000000000000, type: 0}
  693. m_ScaledBackgrounds: []
  694. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  695. m_Active:
  696. m_Background: {fileID: 11010, guid: 0000000000000000e000000000000000, type: 0}
  697. m_ScaledBackgrounds: []
  698. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  699. m_Focused:
  700. m_Background: {fileID: 0}
  701. m_ScaledBackgrounds: []
  702. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  703. m_OnNormal:
  704. m_Background: {fileID: 0}
  705. m_ScaledBackgrounds: []
  706. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  707. m_OnHover:
  708. m_Background: {fileID: 0}
  709. m_ScaledBackgrounds: []
  710. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  711. m_OnActive:
  712. m_Background: {fileID: 0}
  713. m_ScaledBackgrounds: []
  714. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  715. m_OnFocused:
  716. m_Background: {fileID: 0}
  717. m_ScaledBackgrounds: []
  718. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  719. m_Border:
  720. m_Left: 0
  721. m_Right: 0
  722. m_Top: 0
  723. m_Bottom: 0
  724. m_Margin:
  725. m_Left: 0
  726. m_Right: 0
  727. m_Top: 0
  728. m_Bottom: 0
  729. m_Padding:
  730. m_Left: 0
  731. m_Right: 0
  732. m_Top: 7
  733. m_Bottom: 7
  734. m_Overflow:
  735. m_Left: 0
  736. m_Right: 0
  737. m_Top: -1
  738. m_Bottom: -1
  739. m_Font: {fileID: 0}
  740. m_FontSize: 0
  741. m_FontStyle: 0
  742. m_Alignment: 0
  743. m_WordWrap: 0
  744. m_RichText: 1
  745. m_TextClipping: 1
  746. m_ImagePosition: 0
  747. m_ContentOffset: {x: 0, y: 0}
  748. m_FixedWidth: 12
  749. m_FixedHeight: 0
  750. m_StretchWidth: 0
  751. m_StretchHeight: 1
  752. m_horizontalScrollbar:
  753. m_Name: horizontalscrollbar
  754. m_Normal:
  755. m_Background: {fileID: 11008, guid: 0000000000000000e000000000000000, type: 0}
  756. m_ScaledBackgrounds: []
  757. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  758. m_Hover:
  759. m_Background: {fileID: 0}
  760. m_ScaledBackgrounds: []
  761. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  762. m_Active:
  763. m_Background: {fileID: 0}
  764. m_ScaledBackgrounds: []
  765. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  766. m_Focused:
  767. m_Background: {fileID: 0}
  768. m_ScaledBackgrounds: []
  769. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  770. m_OnNormal:
  771. m_Background: {fileID: 0}
  772. m_ScaledBackgrounds: []
  773. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  774. m_OnHover:
  775. m_Background: {fileID: 0}
  776. m_ScaledBackgrounds: []
  777. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  778. m_OnActive:
  779. m_Background: {fileID: 0}
  780. m_ScaledBackgrounds: []
  781. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  782. m_OnFocused:
  783. m_Background: {fileID: 0}
  784. m_ScaledBackgrounds: []
  785. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  786. m_Border:
  787. m_Left: 9
  788. m_Right: 9
  789. m_Top: 0
  790. m_Bottom: 0
  791. m_Margin:
  792. m_Left: 4
  793. m_Right: 4
  794. m_Top: 1
  795. m_Bottom: 4
  796. m_Padding:
  797. m_Left: 0
  798. m_Right: 0
  799. m_Top: 0
  800. m_Bottom: 0
  801. m_Overflow:
  802. m_Left: 0
  803. m_Right: 0
  804. m_Top: 0
  805. m_Bottom: 0
  806. m_Font: {fileID: 0}
  807. m_FontSize: 0
  808. m_FontStyle: 0
  809. m_Alignment: 0
  810. m_WordWrap: 0
  811. m_RichText: 1
  812. m_TextClipping: 1
  813. m_ImagePosition: 2
  814. m_ContentOffset: {x: 0, y: 0}
  815. m_FixedWidth: 0
  816. m_FixedHeight: 15
  817. m_StretchWidth: 1
  818. m_StretchHeight: 0
  819. m_horizontalScrollbarThumb:
  820. m_Name: horizontalscrollbarthumb
  821. m_Normal:
  822. m_Background: {fileID: 11007, guid: 0000000000000000e000000000000000, type: 0}
  823. m_ScaledBackgrounds: []
  824. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  825. m_Hover:
  826. m_Background: {fileID: 0}
  827. m_ScaledBackgrounds: []
  828. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  829. m_Active:
  830. m_Background: {fileID: 0}
  831. m_ScaledBackgrounds: []
  832. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  833. m_Focused:
  834. m_Background: {fileID: 0}
  835. m_ScaledBackgrounds: []
  836. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  837. m_OnNormal:
  838. m_Background: {fileID: 0}
  839. m_ScaledBackgrounds: []
  840. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  841. m_OnHover:
  842. m_Background: {fileID: 0}
  843. m_ScaledBackgrounds: []
  844. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  845. m_OnActive:
  846. m_Background: {fileID: 0}
  847. m_ScaledBackgrounds: []
  848. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  849. m_OnFocused:
  850. m_Background: {fileID: 0}
  851. m_ScaledBackgrounds: []
  852. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  853. m_Border:
  854. m_Left: 6
  855. m_Right: 6
  856. m_Top: 6
  857. m_Bottom: 6
  858. m_Margin:
  859. m_Left: 0
  860. m_Right: 0
  861. m_Top: 0
  862. m_Bottom: 0
  863. m_Padding:
  864. m_Left: 6
  865. m_Right: 6
  866. m_Top: 0
  867. m_Bottom: 0
  868. m_Overflow:
  869. m_Left: 0
  870. m_Right: 0
  871. m_Top: -1
  872. m_Bottom: 1
  873. m_Font: {fileID: 0}
  874. m_FontSize: 0
  875. m_FontStyle: 0
  876. m_Alignment: 0
  877. m_WordWrap: 0
  878. m_RichText: 1
  879. m_TextClipping: 1
  880. m_ImagePosition: 0
  881. m_ContentOffset: {x: 0, y: 0}
  882. m_FixedWidth: 0
  883. m_FixedHeight: 13
  884. m_StretchWidth: 1
  885. m_StretchHeight: 0
  886. m_horizontalScrollbarLeftButton:
  887. m_Name: horizontalscrollbarleftbutton
  888. m_Normal:
  889. m_Background: {fileID: 0}
  890. m_ScaledBackgrounds: []
  891. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  892. m_Hover:
  893. m_Background: {fileID: 0}
  894. m_ScaledBackgrounds: []
  895. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  896. m_Active:
  897. m_Background: {fileID: 0}
  898. m_ScaledBackgrounds: []
  899. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  900. m_Focused:
  901. m_Background: {fileID: 0}
  902. m_ScaledBackgrounds: []
  903. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  904. m_OnNormal:
  905. m_Background: {fileID: 0}
  906. m_ScaledBackgrounds: []
  907. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  908. m_OnHover:
  909. m_Background: {fileID: 0}
  910. m_ScaledBackgrounds: []
  911. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  912. m_OnActive:
  913. m_Background: {fileID: 0}
  914. m_ScaledBackgrounds: []
  915. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  916. m_OnFocused:
  917. m_Background: {fileID: 0}
  918. m_ScaledBackgrounds: []
  919. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  920. m_Border:
  921. m_Left: 0
  922. m_Right: 0
  923. m_Top: 0
  924. m_Bottom: 0
  925. m_Margin:
  926. m_Left: 0
  927. m_Right: 0
  928. m_Top: 0
  929. m_Bottom: 0
  930. m_Padding:
  931. m_Left: 0
  932. m_Right: 0
  933. m_Top: 0
  934. m_Bottom: 0
  935. m_Overflow:
  936. m_Left: 0
  937. m_Right: 0
  938. m_Top: 0
  939. m_Bottom: 0
  940. m_Font: {fileID: 0}
  941. m_FontSize: 0
  942. m_FontStyle: 0
  943. m_Alignment: 0
  944. m_WordWrap: 0
  945. m_RichText: 1
  946. m_TextClipping: 1
  947. m_ImagePosition: 0
  948. m_ContentOffset: {x: 0, y: 0}
  949. m_FixedWidth: 0
  950. m_FixedHeight: 0
  951. m_StretchWidth: 1
  952. m_StretchHeight: 0
  953. m_horizontalScrollbarRightButton:
  954. m_Name: horizontalscrollbarrightbutton
  955. m_Normal:
  956. m_Background: {fileID: 0}
  957. m_ScaledBackgrounds: []
  958. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  959. m_Hover:
  960. m_Background: {fileID: 0}
  961. m_ScaledBackgrounds: []
  962. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  963. m_Active:
  964. m_Background: {fileID: 0}
  965. m_ScaledBackgrounds: []
  966. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  967. m_Focused:
  968. m_Background: {fileID: 0}
  969. m_ScaledBackgrounds: []
  970. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  971. m_OnNormal:
  972. m_Background: {fileID: 0}
  973. m_ScaledBackgrounds: []
  974. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  975. m_OnHover:
  976. m_Background: {fileID: 0}
  977. m_ScaledBackgrounds: []
  978. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  979. m_OnActive:
  980. m_Background: {fileID: 0}
  981. m_ScaledBackgrounds: []
  982. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  983. m_OnFocused:
  984. m_Background: {fileID: 0}
  985. m_ScaledBackgrounds: []
  986. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  987. m_Border:
  988. m_Left: 0
  989. m_Right: 0
  990. m_Top: 0
  991. m_Bottom: 0
  992. m_Margin:
  993. m_Left: 0
  994. m_Right: 0
  995. m_Top: 0
  996. m_Bottom: 0
  997. m_Padding:
  998. m_Left: 0
  999. m_Right: 0
  1000. m_Top: 0
  1001. m_Bottom: 0
  1002. m_Overflow:
  1003. m_Left: 0
  1004. m_Right: 0
  1005. m_Top: 0
  1006. m_Bottom: 0
  1007. m_Font: {fileID: 0}
  1008. m_FontSize: 0
  1009. m_FontStyle: 0
  1010. m_Alignment: 0
  1011. m_WordWrap: 0
  1012. m_RichText: 1
  1013. m_TextClipping: 1
  1014. m_ImagePosition: 0
  1015. m_ContentOffset: {x: 0, y: 0}
  1016. m_FixedWidth: 0
  1017. m_FixedHeight: 0
  1018. m_StretchWidth: 1
  1019. m_StretchHeight: 0
  1020. m_verticalScrollbar:
  1021. m_Name: verticalscrollbar
  1022. m_Normal:
  1023. m_Background: {fileID: 11020, guid: 0000000000000000e000000000000000, type: 0}
  1024. m_ScaledBackgrounds: []
  1025. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1026. m_Hover:
  1027. m_Background: {fileID: 0}
  1028. m_ScaledBackgrounds: []
  1029. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1030. m_Active:
  1031. m_Background: {fileID: 0}
  1032. m_ScaledBackgrounds: []
  1033. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1034. m_Focused:
  1035. m_Background: {fileID: 0}
  1036. m_ScaledBackgrounds: []
  1037. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1038. m_OnNormal:
  1039. m_Background: {fileID: 0}
  1040. m_ScaledBackgrounds: []
  1041. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1042. m_OnHover:
  1043. m_Background: {fileID: 0}
  1044. m_ScaledBackgrounds: []
  1045. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1046. m_OnActive:
  1047. m_Background: {fileID: 0}
  1048. m_ScaledBackgrounds: []
  1049. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1050. m_OnFocused:
  1051. m_Background: {fileID: 0}
  1052. m_ScaledBackgrounds: []
  1053. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1054. m_Border:
  1055. m_Left: 0
  1056. m_Right: 0
  1057. m_Top: 9
  1058. m_Bottom: 9
  1059. m_Margin:
  1060. m_Left: 1
  1061. m_Right: 4
  1062. m_Top: 4
  1063. m_Bottom: 4
  1064. m_Padding:
  1065. m_Left: 0
  1066. m_Right: 0
  1067. m_Top: 1
  1068. m_Bottom: 1
  1069. m_Overflow:
  1070. m_Left: 0
  1071. m_Right: 0
  1072. m_Top: 0
  1073. m_Bottom: 0
  1074. m_Font: {fileID: 0}
  1075. m_FontSize: 0
  1076. m_FontStyle: 0
  1077. m_Alignment: 0
  1078. m_WordWrap: 0
  1079. m_RichText: 1
  1080. m_TextClipping: 1
  1081. m_ImagePosition: 0
  1082. m_ContentOffset: {x: 0, y: 0}
  1083. m_FixedWidth: 15
  1084. m_FixedHeight: 0
  1085. m_StretchWidth: 1
  1086. m_StretchHeight: 0
  1087. m_verticalScrollbarThumb:
  1088. m_Name: verticalscrollbarthumb
  1089. m_Normal:
  1090. m_Background: {fileID: 11019, guid: 0000000000000000e000000000000000, type: 0}
  1091. m_ScaledBackgrounds: []
  1092. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1093. m_Hover:
  1094. m_Background: {fileID: 0}
  1095. m_ScaledBackgrounds: []
  1096. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1097. m_Active:
  1098. m_Background: {fileID: 0}
  1099. m_ScaledBackgrounds: []
  1100. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1101. m_Focused:
  1102. m_Background: {fileID: 0}
  1103. m_ScaledBackgrounds: []
  1104. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1105. m_OnNormal:
  1106. m_Background: {fileID: 0}
  1107. m_ScaledBackgrounds: []
  1108. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1109. m_OnHover:
  1110. m_Background: {fileID: 0}
  1111. m_ScaledBackgrounds: []
  1112. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1113. m_OnActive:
  1114. m_Background: {fileID: 0}
  1115. m_ScaledBackgrounds: []
  1116. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1117. m_OnFocused:
  1118. m_Background: {fileID: 0}
  1119. m_ScaledBackgrounds: []
  1120. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1121. m_Border:
  1122. m_Left: 6
  1123. m_Right: 6
  1124. m_Top: 6
  1125. m_Bottom: 6
  1126. m_Margin:
  1127. m_Left: 0
  1128. m_Right: 0
  1129. m_Top: 0
  1130. m_Bottom: 0
  1131. m_Padding:
  1132. m_Left: 0
  1133. m_Right: 0
  1134. m_Top: 6
  1135. m_Bottom: 6
  1136. m_Overflow:
  1137. m_Left: -1
  1138. m_Right: -1
  1139. m_Top: 0
  1140. m_Bottom: 0
  1141. m_Font: {fileID: 0}
  1142. m_FontSize: 0
  1143. m_FontStyle: 0
  1144. m_Alignment: 0
  1145. m_WordWrap: 0
  1146. m_RichText: 1
  1147. m_TextClipping: 1
  1148. m_ImagePosition: 2
  1149. m_ContentOffset: {x: 0, y: 0}
  1150. m_FixedWidth: 15
  1151. m_FixedHeight: 0
  1152. m_StretchWidth: 0
  1153. m_StretchHeight: 1
  1154. m_verticalScrollbarUpButton:
  1155. m_Name: verticalscrollbarupbutton
  1156. m_Normal:
  1157. m_Background: {fileID: 0}
  1158. m_ScaledBackgrounds: []
  1159. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1160. m_Hover:
  1161. m_Background: {fileID: 0}
  1162. m_ScaledBackgrounds: []
  1163. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1164. m_Active:
  1165. m_Background: {fileID: 0}
  1166. m_ScaledBackgrounds: []
  1167. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1168. m_Focused:
  1169. m_Background: {fileID: 0}
  1170. m_ScaledBackgrounds: []
  1171. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1172. m_OnNormal:
  1173. m_Background: {fileID: 0}
  1174. m_ScaledBackgrounds: []
  1175. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1176. m_OnHover:
  1177. m_Background: {fileID: 0}
  1178. m_ScaledBackgrounds: []
  1179. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1180. m_OnActive:
  1181. m_Background: {fileID: 0}
  1182. m_ScaledBackgrounds: []
  1183. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1184. m_OnFocused:
  1185. m_Background: {fileID: 0}
  1186. m_ScaledBackgrounds: []
  1187. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1188. m_Border:
  1189. m_Left: 0
  1190. m_Right: 0
  1191. m_Top: 0
  1192. m_Bottom: 0
  1193. m_Margin:
  1194. m_Left: 0
  1195. m_Right: 0
  1196. m_Top: 0
  1197. m_Bottom: 0
  1198. m_Padding:
  1199. m_Left: 0
  1200. m_Right: 0
  1201. m_Top: 0
  1202. m_Bottom: 0
  1203. m_Overflow:
  1204. m_Left: 0
  1205. m_Right: 0
  1206. m_Top: 0
  1207. m_Bottom: 0
  1208. m_Font: {fileID: 0}
  1209. m_FontSize: 0
  1210. m_FontStyle: 0
  1211. m_Alignment: 0
  1212. m_WordWrap: 0
  1213. m_RichText: 1
  1214. m_TextClipping: 1
  1215. m_ImagePosition: 0
  1216. m_ContentOffset: {x: 0, y: 0}
  1217. m_FixedWidth: 0
  1218. m_FixedHeight: 0
  1219. m_StretchWidth: 1
  1220. m_StretchHeight: 0
  1221. m_verticalScrollbarDownButton:
  1222. m_Name: verticalscrollbardownbutton
  1223. m_Normal:
  1224. m_Background: {fileID: 0}
  1225. m_ScaledBackgrounds: []
  1226. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1227. m_Hover:
  1228. m_Background: {fileID: 0}
  1229. m_ScaledBackgrounds: []
  1230. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1231. m_Active:
  1232. m_Background: {fileID: 0}
  1233. m_ScaledBackgrounds: []
  1234. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1235. m_Focused:
  1236. m_Background: {fileID: 0}
  1237. m_ScaledBackgrounds: []
  1238. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1239. m_OnNormal:
  1240. m_Background: {fileID: 0}
  1241. m_ScaledBackgrounds: []
  1242. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1243. m_OnHover:
  1244. m_Background: {fileID: 0}
  1245. m_ScaledBackgrounds: []
  1246. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1247. m_OnActive:
  1248. m_Background: {fileID: 0}
  1249. m_ScaledBackgrounds: []
  1250. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1251. m_OnFocused:
  1252. m_Background: {fileID: 0}
  1253. m_ScaledBackgrounds: []
  1254. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1255. m_Border:
  1256. m_Left: 0
  1257. m_Right: 0
  1258. m_Top: 0
  1259. m_Bottom: 0
  1260. m_Margin:
  1261. m_Left: 0
  1262. m_Right: 0
  1263. m_Top: 0
  1264. m_Bottom: 0
  1265. m_Padding:
  1266. m_Left: 0
  1267. m_Right: 0
  1268. m_Top: 0
  1269. m_Bottom: 0
  1270. m_Overflow:
  1271. m_Left: 0
  1272. m_Right: 0
  1273. m_Top: 0
  1274. m_Bottom: 0
  1275. m_Font: {fileID: 0}
  1276. m_FontSize: 0
  1277. m_FontStyle: 0
  1278. m_Alignment: 0
  1279. m_WordWrap: 0
  1280. m_RichText: 1
  1281. m_TextClipping: 1
  1282. m_ImagePosition: 0
  1283. m_ContentOffset: {x: 0, y: 0}
  1284. m_FixedWidth: 0
  1285. m_FixedHeight: 0
  1286. m_StretchWidth: 1
  1287. m_StretchHeight: 0
  1288. m_ScrollView:
  1289. m_Name: scrollview
  1290. m_Normal:
  1291. m_Background: {fileID: 0}
  1292. m_ScaledBackgrounds: []
  1293. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1294. m_Hover:
  1295. m_Background: {fileID: 0}
  1296. m_ScaledBackgrounds: []
  1297. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1298. m_Active:
  1299. m_Background: {fileID: 0}
  1300. m_ScaledBackgrounds: []
  1301. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1302. m_Focused:
  1303. m_Background: {fileID: 0}
  1304. m_ScaledBackgrounds: []
  1305. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1306. m_OnNormal:
  1307. m_Background: {fileID: 0}
  1308. m_ScaledBackgrounds: []
  1309. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1310. m_OnHover:
  1311. m_Background: {fileID: 0}
  1312. m_ScaledBackgrounds: []
  1313. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1314. m_OnActive:
  1315. m_Background: {fileID: 0}
  1316. m_ScaledBackgrounds: []
  1317. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1318. m_OnFocused:
  1319. m_Background: {fileID: 0}
  1320. m_ScaledBackgrounds: []
  1321. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1322. m_Border:
  1323. m_Left: 0
  1324. m_Right: 0
  1325. m_Top: 0
  1326. m_Bottom: 0
  1327. m_Margin:
  1328. m_Left: 0
  1329. m_Right: 0
  1330. m_Top: 0
  1331. m_Bottom: 0
  1332. m_Padding:
  1333. m_Left: 0
  1334. m_Right: 0
  1335. m_Top: 0
  1336. m_Bottom: 0
  1337. m_Overflow:
  1338. m_Left: 0
  1339. m_Right: 0
  1340. m_Top: 0
  1341. m_Bottom: 0
  1342. m_Font: {fileID: 0}
  1343. m_FontSize: 0
  1344. m_FontStyle: 0
  1345. m_Alignment: 0
  1346. m_WordWrap: 0
  1347. m_RichText: 1
  1348. m_TextClipping: 1
  1349. m_ImagePosition: 0
  1350. m_ContentOffset: {x: 0, y: 0}
  1351. m_FixedWidth: 0
  1352. m_FixedHeight: 0
  1353. m_StretchWidth: 1
  1354. m_StretchHeight: 0
  1355. m_CustomStyles:
  1356. - m_Name: SaveButton
  1357. m_Normal:
  1358. m_Background: {fileID: 2800000, guid: 76617318a8f002f4ab69acbf180b1646, type: 3}
  1359. m_ScaledBackgrounds: []
  1360. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1361. m_Hover:
  1362. m_Background: {fileID: 0}
  1363. m_ScaledBackgrounds: []
  1364. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1365. m_Active:
  1366. m_Background: {fileID: 2800000, guid: 2e4559e0e996f7743aeba307a234e807, type: 3}
  1367. m_ScaledBackgrounds: []
  1368. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1369. m_Focused:
  1370. m_Background: {fileID: 0}
  1371. m_ScaledBackgrounds: []
  1372. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1373. m_OnNormal:
  1374. m_Background: {fileID: 0}
  1375. m_ScaledBackgrounds: []
  1376. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1377. m_OnHover:
  1378. m_Background: {fileID: 0}
  1379. m_ScaledBackgrounds: []
  1380. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1381. m_OnActive:
  1382. m_Background: {fileID: 0}
  1383. m_ScaledBackgrounds: []
  1384. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1385. m_OnFocused:
  1386. m_Background: {fileID: 0}
  1387. m_ScaledBackgrounds: []
  1388. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1389. m_Border:
  1390. m_Left: 0
  1391. m_Right: 0
  1392. m_Top: 0
  1393. m_Bottom: 0
  1394. m_Margin:
  1395. m_Left: 0
  1396. m_Right: 0
  1397. m_Top: 0
  1398. m_Bottom: 0
  1399. m_Padding:
  1400. m_Left: 0
  1401. m_Right: 0
  1402. m_Top: 0
  1403. m_Bottom: 0
  1404. m_Overflow:
  1405. m_Left: 0
  1406. m_Right: 0
  1407. m_Top: 0
  1408. m_Bottom: 0
  1409. m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
  1410. m_FontSize: -12
  1411. m_FontStyle: 0
  1412. m_Alignment: 0
  1413. m_WordWrap: 0
  1414. m_RichText: 1
  1415. m_TextClipping: 0
  1416. m_ImagePosition: 0
  1417. m_ContentOffset: {x: 0, y: 0}
  1418. m_FixedWidth: 0
  1419. m_FixedHeight: 0
  1420. m_StretchWidth: 1
  1421. m_StretchHeight: 0
  1422. - m_Name: EditorLogo
  1423. m_Normal:
  1424. m_Background: {fileID: 2800000, guid: c8396222eb2e9354fa6dfb4964127952, type: 3}
  1425. m_ScaledBackgrounds: []
  1426. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1427. m_Hover:
  1428. m_Background: {fileID: 0}
  1429. m_ScaledBackgrounds: []
  1430. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1431. m_Active:
  1432. m_Background: {fileID: 0}
  1433. m_ScaledBackgrounds: []
  1434. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1435. m_Focused:
  1436. m_Background: {fileID: 0}
  1437. m_ScaledBackgrounds: []
  1438. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1439. m_OnNormal:
  1440. m_Background: {fileID: 0}
  1441. m_ScaledBackgrounds: []
  1442. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1443. m_OnHover:
  1444. m_Background: {fileID: 0}
  1445. m_ScaledBackgrounds: []
  1446. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1447. m_OnActive:
  1448. m_Background: {fileID: 0}
  1449. m_ScaledBackgrounds: []
  1450. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1451. m_OnFocused:
  1452. m_Background: {fileID: 0}
  1453. m_ScaledBackgrounds: []
  1454. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1455. m_Border:
  1456. m_Left: 0
  1457. m_Right: 0
  1458. m_Top: 0
  1459. m_Bottom: 0
  1460. m_Margin:
  1461. m_Left: 0
  1462. m_Right: 0
  1463. m_Top: 0
  1464. m_Bottom: 0
  1465. m_Padding:
  1466. m_Left: 0
  1467. m_Right: 0
  1468. m_Top: 0
  1469. m_Bottom: 0
  1470. m_Overflow:
  1471. m_Left: 0
  1472. m_Right: 0
  1473. m_Top: 0
  1474. m_Bottom: 0
  1475. m_Font: {fileID: 0}
  1476. m_FontSize: -31
  1477. m_FontStyle: 0
  1478. m_Alignment: 0
  1479. m_WordWrap: 0
  1480. m_RichText: 1
  1481. m_TextClipping: 0
  1482. m_ImagePosition: 0
  1483. m_ContentOffset: {x: 0, y: 0}
  1484. m_FixedWidth: 0
  1485. m_FixedHeight: 0
  1486. m_StretchWidth: 1
  1487. m_StretchHeight: 0
  1488. - m_Name: PoseLogo
  1489. m_Normal:
  1490. m_Background: {fileID: 2800000, guid: 9c8bd6a4f54b7024cb3c100eea1d2205, type: 3}
  1491. m_ScaledBackgrounds: []
  1492. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1493. m_Hover:
  1494. m_Background: {fileID: 0}
  1495. m_ScaledBackgrounds: []
  1496. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1497. m_Active:
  1498. m_Background: {fileID: 0}
  1499. m_ScaledBackgrounds: []
  1500. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1501. m_Focused:
  1502. m_Background: {fileID: 0}
  1503. m_ScaledBackgrounds: []
  1504. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1505. m_OnNormal:
  1506. m_Background: {fileID: 0}
  1507. m_ScaledBackgrounds: []
  1508. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1509. m_OnHover:
  1510. m_Background: {fileID: 0}
  1511. m_ScaledBackgrounds: []
  1512. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1513. m_OnActive:
  1514. m_Background: {fileID: 0}
  1515. m_ScaledBackgrounds: []
  1516. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1517. m_OnFocused:
  1518. m_Background: {fileID: 0}
  1519. m_ScaledBackgrounds: []
  1520. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1521. m_Border:
  1522. m_Left: 0
  1523. m_Right: 0
  1524. m_Top: 0
  1525. m_Bottom: 0
  1526. m_Margin:
  1527. m_Left: 0
  1528. m_Right: 0
  1529. m_Top: 0
  1530. m_Bottom: 0
  1531. m_Padding:
  1532. m_Left: 0
  1533. m_Right: 0
  1534. m_Top: 0
  1535. m_Bottom: 0
  1536. m_Overflow:
  1537. m_Left: 0
  1538. m_Right: 0
  1539. m_Top: 0
  1540. m_Bottom: 0
  1541. m_Font: {fileID: 0}
  1542. m_FontSize: -20
  1543. m_FontStyle: 0
  1544. m_Alignment: 0
  1545. m_WordWrap: 0
  1546. m_RichText: 1
  1547. m_TextClipping: 0
  1548. m_ImagePosition: 0
  1549. m_ContentOffset: {x: 0, y: 0}
  1550. m_FixedWidth: 0
  1551. m_FixedHeight: 0
  1552. m_StretchWidth: 1
  1553. m_StretchHeight: 0
  1554. - m_Name: CustomLabel
  1555. m_Normal:
  1556. m_Background: {fileID: 0}
  1557. m_ScaledBackgrounds: []
  1558. m_TextColor: {r: 1, g: 1, b: 1, a: 1}
  1559. m_Hover:
  1560. m_Background: {fileID: 0}
  1561. m_ScaledBackgrounds: []
  1562. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1563. m_Active:
  1564. m_Background: {fileID: 0}
  1565. m_ScaledBackgrounds: []
  1566. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1567. m_Focused:
  1568. m_Background: {fileID: 0}
  1569. m_ScaledBackgrounds: []
  1570. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1571. m_OnNormal:
  1572. m_Background: {fileID: 0}
  1573. m_ScaledBackgrounds: []
  1574. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1575. m_OnHover:
  1576. m_Background: {fileID: 0}
  1577. m_ScaledBackgrounds: []
  1578. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1579. m_OnActive:
  1580. m_Background: {fileID: 0}
  1581. m_ScaledBackgrounds: []
  1582. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1583. m_OnFocused:
  1584. m_Background: {fileID: 0}
  1585. m_ScaledBackgrounds: []
  1586. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1587. m_Border:
  1588. m_Left: 0
  1589. m_Right: 0
  1590. m_Top: 0
  1591. m_Bottom: 0
  1592. m_Margin:
  1593. m_Left: 0
  1594. m_Right: 0
  1595. m_Top: 0
  1596. m_Bottom: 0
  1597. m_Padding:
  1598. m_Left: 0
  1599. m_Right: 0
  1600. m_Top: 0
  1601. m_Bottom: 0
  1602. m_Overflow:
  1603. m_Left: 0
  1604. m_Right: 0
  1605. m_Top: 0
  1606. m_Bottom: 0
  1607. m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
  1608. m_FontSize: 0
  1609. m_FontStyle: 0
  1610. m_Alignment: 0
  1611. m_WordWrap: 1
  1612. m_RichText: 1
  1613. m_TextClipping: 0
  1614. m_ImagePosition: 0
  1615. m_ContentOffset: {x: 0, y: 0}
  1616. m_FixedWidth: 0
  1617. m_FixedHeight: 0
  1618. m_StretchWidth: 1
  1619. m_StretchHeight: 0
  1620. - m_Name: YUpButton
  1621. m_Normal:
  1622. m_Background: {fileID: 2800000, guid: ab8f3255c3a7ac74782739c254b411ca, type: 3}
  1623. m_ScaledBackgrounds: []
  1624. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1625. m_Hover:
  1626. m_Background: {fileID: 0}
  1627. m_ScaledBackgrounds: []
  1628. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1629. m_Active:
  1630. m_Background: {fileID: 2800000, guid: ab8f3255c3a7ac74782739c254b411ca, type: 3}
  1631. m_ScaledBackgrounds: []
  1632. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1633. m_Focused:
  1634. m_Background: {fileID: 0}
  1635. m_ScaledBackgrounds: []
  1636. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1637. m_OnNormal:
  1638. m_Background: {fileID: 0}
  1639. m_ScaledBackgrounds: []
  1640. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1641. m_OnHover:
  1642. m_Background: {fileID: 0}
  1643. m_ScaledBackgrounds: []
  1644. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1645. m_OnActive:
  1646. m_Background: {fileID: 0}
  1647. m_ScaledBackgrounds: []
  1648. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1649. m_OnFocused:
  1650. m_Background: {fileID: 0}
  1651. m_ScaledBackgrounds: []
  1652. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1653. m_Border:
  1654. m_Left: 0
  1655. m_Right: 0
  1656. m_Top: 0
  1657. m_Bottom: 0
  1658. m_Margin:
  1659. m_Left: 0
  1660. m_Right: 0
  1661. m_Top: 0
  1662. m_Bottom: 0
  1663. m_Padding:
  1664. m_Left: 0
  1665. m_Right: 0
  1666. m_Top: 0
  1667. m_Bottom: 0
  1668. m_Overflow:
  1669. m_Left: 0
  1670. m_Right: 0
  1671. m_Top: 0
  1672. m_Bottom: 0
  1673. m_Font: {fileID: 0}
  1674. m_FontSize: -12
  1675. m_FontStyle: 0
  1676. m_Alignment: 0
  1677. m_WordWrap: 0
  1678. m_RichText: 1
  1679. m_TextClipping: 0
  1680. m_ImagePosition: 0
  1681. m_ContentOffset: {x: 0, y: 0}
  1682. m_FixedWidth: 0
  1683. m_FixedHeight: 0
  1684. m_StretchWidth: 1
  1685. m_StretchHeight: 0
  1686. - m_Name: ZUpButton
  1687. m_Normal:
  1688. m_Background: {fileID: 2800000, guid: 8a39f1264044e87408da7ef08fe36d13, type: 3}
  1689. m_ScaledBackgrounds: []
  1690. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1691. m_Hover:
  1692. m_Background: {fileID: 0}
  1693. m_ScaledBackgrounds: []
  1694. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1695. m_Active:
  1696. m_Background: {fileID: 2800000, guid: 8a39f1264044e87408da7ef08fe36d13, type: 3}
  1697. m_ScaledBackgrounds: []
  1698. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1699. m_Focused:
  1700. m_Background: {fileID: 2800000, guid: 8a39f1264044e87408da7ef08fe36d13, type: 3}
  1701. m_ScaledBackgrounds: []
  1702. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1703. m_OnNormal:
  1704. m_Background: {fileID: 0}
  1705. m_ScaledBackgrounds: []
  1706. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1707. m_OnHover:
  1708. m_Background: {fileID: 0}
  1709. m_ScaledBackgrounds: []
  1710. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1711. m_OnActive:
  1712. m_Background: {fileID: 2800000, guid: b81c4e13614d09f4b8f37f08bc460273, type: 3}
  1713. m_ScaledBackgrounds: []
  1714. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1715. m_OnFocused:
  1716. m_Background: {fileID: 0}
  1717. m_ScaledBackgrounds: []
  1718. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1719. m_Border:
  1720. m_Left: 0
  1721. m_Right: 0
  1722. m_Top: 0
  1723. m_Bottom: 0
  1724. m_Margin:
  1725. m_Left: 0
  1726. m_Right: 0
  1727. m_Top: 0
  1728. m_Bottom: 0
  1729. m_Padding:
  1730. m_Left: 0
  1731. m_Right: 0
  1732. m_Top: 0
  1733. m_Bottom: 0
  1734. m_Overflow:
  1735. m_Left: 0
  1736. m_Right: 0
  1737. m_Top: 0
  1738. m_Bottom: 0
  1739. m_Font: {fileID: 0}
  1740. m_FontSize: -12
  1741. m_FontStyle: 0
  1742. m_Alignment: 0
  1743. m_WordWrap: 0
  1744. m_RichText: 1
  1745. m_TextClipping: 0
  1746. m_ImagePosition: 0
  1747. m_ContentOffset: {x: 0, y: 0}
  1748. m_FixedWidth: 0
  1749. m_FixedHeight: 0
  1750. m_StretchWidth: 1
  1751. m_StretchHeight: 0
  1752. - m_Name: HumanoidLogo
  1753. m_Normal:
  1754. m_Background: {fileID: 2800000, guid: 35570797cc7989f4aaa698c242221386, type: 3}
  1755. m_ScaledBackgrounds: []
  1756. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1757. m_Hover:
  1758. m_Background: {fileID: 0}
  1759. m_ScaledBackgrounds: []
  1760. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1761. m_Active:
  1762. m_Background: {fileID: 2800000, guid: 35570797cc7989f4aaa698c242221386, type: 3}
  1763. m_ScaledBackgrounds: []
  1764. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1765. m_Focused:
  1766. m_Background: {fileID: 0}
  1767. m_ScaledBackgrounds: []
  1768. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1769. m_OnNormal:
  1770. m_Background: {fileID: 0}
  1771. m_ScaledBackgrounds: []
  1772. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1773. m_OnHover:
  1774. m_Background: {fileID: 0}
  1775. m_ScaledBackgrounds: []
  1776. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1777. m_OnActive:
  1778. m_Background: {fileID: 2800000, guid: b81c4e13614d09f4b8f37f08bc460273, type: 3}
  1779. m_ScaledBackgrounds: []
  1780. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1781. m_OnFocused:
  1782. m_Background: {fileID: 0}
  1783. m_ScaledBackgrounds: []
  1784. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1785. m_Border:
  1786. m_Left: 0
  1787. m_Right: 0
  1788. m_Top: 0
  1789. m_Bottom: 0
  1790. m_Margin:
  1791. m_Left: 0
  1792. m_Right: 0
  1793. m_Top: 0
  1794. m_Bottom: 0
  1795. m_Padding:
  1796. m_Left: 0
  1797. m_Right: 0
  1798. m_Top: 0
  1799. m_Bottom: 0
  1800. m_Overflow:
  1801. m_Left: 0
  1802. m_Right: 0
  1803. m_Top: 0
  1804. m_Bottom: 0
  1805. m_Font: {fileID: 0}
  1806. m_FontSize: -12
  1807. m_FontStyle: 0
  1808. m_Alignment: 0
  1809. m_WordWrap: 0
  1810. m_RichText: 1
  1811. m_TextClipping: 0
  1812. m_ImagePosition: 0
  1813. m_ContentOffset: {x: 0, y: 0}
  1814. m_FixedWidth: 0
  1815. m_FixedHeight: 0
  1816. m_StretchWidth: 1
  1817. m_StretchHeight: 0
  1818. - m_Name: XUpButton
  1819. m_Normal:
  1820. m_Background: {fileID: 2800000, guid: 9facef3a8bb75d34eaa6a7d5fab58df8, type: 3}
  1821. m_ScaledBackgrounds: []
  1822. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1823. m_Hover:
  1824. m_Background: {fileID: 0}
  1825. m_ScaledBackgrounds: []
  1826. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1827. m_Active:
  1828. m_Background: {fileID: 2800000, guid: 9facef3a8bb75d34eaa6a7d5fab58df8, type: 3}
  1829. m_ScaledBackgrounds: []
  1830. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1831. m_Focused:
  1832. m_Background: {fileID: 2800000, guid: 9facef3a8bb75d34eaa6a7d5fab58df8, type: 3}
  1833. m_ScaledBackgrounds: []
  1834. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1835. m_OnNormal:
  1836. m_Background: {fileID: 0}
  1837. m_ScaledBackgrounds: []
  1838. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1839. m_OnHover:
  1840. m_Background: {fileID: 0}
  1841. m_ScaledBackgrounds: []
  1842. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1843. m_OnActive:
  1844. m_Background: {fileID: 2800000, guid: b81c4e13614d09f4b8f37f08bc460273, type: 3}
  1845. m_ScaledBackgrounds: []
  1846. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1847. m_OnFocused:
  1848. m_Background: {fileID: 0}
  1849. m_ScaledBackgrounds: []
  1850. m_TextColor: {r: 0, g: 0, b: 0, a: 1}
  1851. m_Border:
  1852. m_Left: 0
  1853. m_Right: 0
  1854. m_Top: 0
  1855. m_Bottom: 0
  1856. m_Margin:
  1857. m_Left: 0
  1858. m_Right: 0
  1859. m_Top: 0
  1860. m_Bottom: 0
  1861. m_Padding:
  1862. m_Left: 0
  1863. m_Right: 0
  1864. m_Top: 0
  1865. m_Bottom: 0
  1866. m_Overflow:
  1867. m_Left: 0
  1868. m_Right: 0
  1869. m_Top: 0
  1870. m_Bottom: 0
  1871. m_Font: {fileID: 0}
  1872. m_FontSize: -12
  1873. m_FontStyle: 0
  1874. m_Alignment: 0
  1875. m_WordWrap: 0
  1876. m_RichText: 1
  1877. m_TextClipping: 0
  1878. m_ImagePosition: 0
  1879. m_ContentOffset: {x: 0, y: 0}
  1880. m_FixedWidth: 0
  1881. m_FixedHeight: 0
  1882. m_StretchWidth: 1
  1883. m_StretchHeight: 0
  1884. m_Settings:
  1885. m_DoubleClickSelectsWord: 1
  1886. m_TripleClickSelectsLine: 1
  1887. m_CursorColor: {r: 1, g: 1, b: 1, a: 1}
  1888. m_CursorFlashSpeed: -1
  1889. m_SelectionColor: {r: 1, g: 0.38403907, b: 0, a: 0.7}