UI_Show.prefab 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "UI_Show",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "UI_Show",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 10
  26. },
  27. {
  28. "__id__": 20
  29. },
  30. {
  31. "__id__": 30
  32. },
  33. {
  34. "__id__": 94
  35. }
  36. ],
  37. "_active": true,
  38. "_components": [
  39. {
  40. "__id__": 104
  41. },
  42. {
  43. "__id__": 106
  44. },
  45. {
  46. "__id__": 108
  47. }
  48. ],
  49. "_prefab": {
  50. "__id__": 110
  51. },
  52. "_lpos": {
  53. "__type__": "cc.Vec3",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0
  57. },
  58. "_lrot": {
  59. "__type__": "cc.Quat",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0,
  63. "w": 1
  64. },
  65. "_lscale": {
  66. "__type__": "cc.Vec3",
  67. "x": 1,
  68. "y": 1,
  69. "z": 1
  70. },
  71. "_mobility": 0,
  72. "_layer": 33554432,
  73. "_euler": {
  74. "__type__": "cc.Vec3",
  75. "x": 0,
  76. "y": 0,
  77. "z": 0
  78. },
  79. "_id": ""
  80. },
  81. {
  82. "__type__": "cc.Node",
  83. "_name": "Title",
  84. "_objFlags": 0,
  85. "__editorExtras__": {},
  86. "_parent": {
  87. "__id__": 1
  88. },
  89. "_children": [],
  90. "_active": true,
  91. "_components": [
  92. {
  93. "__id__": 3
  94. },
  95. {
  96. "__id__": 5
  97. },
  98. {
  99. "__id__": 7
  100. }
  101. ],
  102. "_prefab": {
  103. "__id__": 9
  104. },
  105. "_lpos": {
  106. "__type__": "cc.Vec3",
  107. "x": -12.122000000000014,
  108. "y": 314.9290000000001,
  109. "z": 0
  110. },
  111. "_lrot": {
  112. "__type__": "cc.Quat",
  113. "x": 0,
  114. "y": 0,
  115. "z": 0,
  116. "w": 1
  117. },
  118. "_lscale": {
  119. "__type__": "cc.Vec3",
  120. "x": 1,
  121. "y": 1,
  122. "z": 1
  123. },
  124. "_mobility": 0,
  125. "_layer": 33554432,
  126. "_euler": {
  127. "__type__": "cc.Vec3",
  128. "x": 0,
  129. "y": 0,
  130. "z": 0
  131. },
  132. "_id": ""
  133. },
  134. {
  135. "__type__": "cc.UITransform",
  136. "_name": "",
  137. "_objFlags": 0,
  138. "__editorExtras__": {},
  139. "node": {
  140. "__id__": 2
  141. },
  142. "_enabled": true,
  143. "__prefab": {
  144. "__id__": 4
  145. },
  146. "_contentSize": {
  147. "__type__": "cc.Size",
  148. "width": 544,
  149. "height": 408
  150. },
  151. "_anchorPoint": {
  152. "__type__": "cc.Vec2",
  153. "x": 0.5,
  154. "y": 0.5
  155. },
  156. "_id": ""
  157. },
  158. {
  159. "__type__": "cc.CompPrefabInfo",
  160. "fileId": "adqwid43BIy4uEEjQQrLHC"
  161. },
  162. {
  163. "__type__": "cc.Sprite",
  164. "_name": "",
  165. "_objFlags": 0,
  166. "__editorExtras__": {},
  167. "node": {
  168. "__id__": 2
  169. },
  170. "_enabled": true,
  171. "__prefab": {
  172. "__id__": 6
  173. },
  174. "_customMaterial": null,
  175. "_srcBlendFactor": 2,
  176. "_dstBlendFactor": 4,
  177. "_color": {
  178. "__type__": "cc.Color",
  179. "r": 255,
  180. "g": 255,
  181. "b": 255,
  182. "a": 255
  183. },
  184. "_spriteFrame": {
  185. "__uuid__": "9b458389-20b3-40e9-956a-fce5b2394da8@f9941",
  186. "__expectedType__": "cc.SpriteFrame"
  187. },
  188. "_type": 0,
  189. "_fillType": 0,
  190. "_sizeMode": 1,
  191. "_fillCenter": {
  192. "__type__": "cc.Vec2",
  193. "x": 0,
  194. "y": 0
  195. },
  196. "_fillStart": 0,
  197. "_fillRange": 0,
  198. "_isTrimmedMode": true,
  199. "_useGrayscale": false,
  200. "_atlas": null,
  201. "_id": ""
  202. },
  203. {
  204. "__type__": "cc.CompPrefabInfo",
  205. "fileId": "da14spbLVInKJz8cR97Zxt"
  206. },
  207. {
  208. "__type__": "cc.Widget",
  209. "_name": "",
  210. "_objFlags": 0,
  211. "__editorExtras__": {},
  212. "node": {
  213. "__id__": 2
  214. },
  215. "_enabled": true,
  216. "__prefab": {
  217. "__id__": 8
  218. },
  219. "_alignFlags": 45,
  220. "_target": null,
  221. "_left": -234.122,
  222. "_right": -209.878,
  223. "_top": -468.9290000000001,
  224. "_bottom": 160.9290000000001,
  225. "_horizontalCenter": 0,
  226. "_verticalCenter": 0,
  227. "_isAbsLeft": true,
  228. "_isAbsRight": true,
  229. "_isAbsTop": true,
  230. "_isAbsBottom": true,
  231. "_isAbsHorizontalCenter": true,
  232. "_isAbsVerticalCenter": true,
  233. "_originalWidth": 544,
  234. "_originalHeight": 408,
  235. "_alignMode": 2,
  236. "_lockFlags": 0,
  237. "_id": ""
  238. },
  239. {
  240. "__type__": "cc.CompPrefabInfo",
  241. "fileId": "d4W4o7r51Jz5hhCFN40vAA"
  242. },
  243. {
  244. "__type__": "cc.PrefabInfo",
  245. "root": {
  246. "__id__": 1
  247. },
  248. "asset": {
  249. "__id__": 0
  250. },
  251. "fileId": "a7TIRqf7BFd4cF3qLnIbjL",
  252. "instance": null,
  253. "targetOverrides": null,
  254. "nestedPrefabInstanceRoots": null
  255. },
  256. {
  257. "__type__": "cc.Node",
  258. "_name": "Start_Btn",
  259. "_objFlags": 0,
  260. "__editorExtras__": {},
  261. "_parent": {
  262. "__id__": 1
  263. },
  264. "_children": [],
  265. "_active": true,
  266. "_components": [
  267. {
  268. "__id__": 11
  269. },
  270. {
  271. "__id__": 13
  272. },
  273. {
  274. "__id__": 15
  275. },
  276. {
  277. "__id__": 17
  278. }
  279. ],
  280. "_prefab": {
  281. "__id__": 19
  282. },
  283. "_lpos": {
  284. "__type__": "cc.Vec3",
  285. "x": 0,
  286. "y": -178.139,
  287. "z": 0
  288. },
  289. "_lrot": {
  290. "__type__": "cc.Quat",
  291. "x": 0,
  292. "y": 0,
  293. "z": 0,
  294. "w": 1
  295. },
  296. "_lscale": {
  297. "__type__": "cc.Vec3",
  298. "x": 1,
  299. "y": 1,
  300. "z": 1
  301. },
  302. "_mobility": 0,
  303. "_layer": 33554432,
  304. "_euler": {
  305. "__type__": "cc.Vec3",
  306. "x": 0,
  307. "y": 0,
  308. "z": 0
  309. },
  310. "_id": ""
  311. },
  312. {
  313. "__type__": "cc.UITransform",
  314. "_name": "",
  315. "_objFlags": 0,
  316. "__editorExtras__": {},
  317. "node": {
  318. "__id__": 10
  319. },
  320. "_enabled": true,
  321. "__prefab": {
  322. "__id__": 12
  323. },
  324. "_contentSize": {
  325. "__type__": "cc.Size",
  326. "width": 400,
  327. "height": 170
  328. },
  329. "_anchorPoint": {
  330. "__type__": "cc.Vec2",
  331. "x": 0.5,
  332. "y": 0.5
  333. },
  334. "_id": ""
  335. },
  336. {
  337. "__type__": "cc.CompPrefabInfo",
  338. "fileId": "796wW1PvBHQrUYS1yJjhm3"
  339. },
  340. {
  341. "__type__": "cc.Sprite",
  342. "_name": "",
  343. "_objFlags": 0,
  344. "__editorExtras__": {},
  345. "node": {
  346. "__id__": 10
  347. },
  348. "_enabled": true,
  349. "__prefab": {
  350. "__id__": 14
  351. },
  352. "_customMaterial": null,
  353. "_srcBlendFactor": 2,
  354. "_dstBlendFactor": 4,
  355. "_color": {
  356. "__type__": "cc.Color",
  357. "r": 255,
  358. "g": 255,
  359. "b": 255,
  360. "a": 255
  361. },
  362. "_spriteFrame": {
  363. "__uuid__": "159c6314-0d8b-4b33-96bf-ca57a0dc594b@f9941",
  364. "__expectedType__": "cc.SpriteFrame"
  365. },
  366. "_type": 1,
  367. "_fillType": 0,
  368. "_sizeMode": 0,
  369. "_fillCenter": {
  370. "__type__": "cc.Vec2",
  371. "x": 0,
  372. "y": 0
  373. },
  374. "_fillStart": 0,
  375. "_fillRange": 0,
  376. "_isTrimmedMode": true,
  377. "_useGrayscale": false,
  378. "_atlas": null,
  379. "_id": ""
  380. },
  381. {
  382. "__type__": "cc.CompPrefabInfo",
  383. "fileId": "caKHCSLlRJsKqE4Ymrk1+Q"
  384. },
  385. {
  386. "__type__": "cc.Button",
  387. "_name": "",
  388. "_objFlags": 0,
  389. "__editorExtras__": {},
  390. "node": {
  391. "__id__": 10
  392. },
  393. "_enabled": true,
  394. "__prefab": {
  395. "__id__": 16
  396. },
  397. "clickEvents": [],
  398. "_interactable": true,
  399. "_transition": 2,
  400. "_normalColor": {
  401. "__type__": "cc.Color",
  402. "r": 214,
  403. "g": 214,
  404. "b": 214,
  405. "a": 255
  406. },
  407. "_hoverColor": {
  408. "__type__": "cc.Color",
  409. "r": 211,
  410. "g": 211,
  411. "b": 211,
  412. "a": 255
  413. },
  414. "_pressedColor": {
  415. "__type__": "cc.Color",
  416. "r": 255,
  417. "g": 255,
  418. "b": 255,
  419. "a": 255
  420. },
  421. "_disabledColor": {
  422. "__type__": "cc.Color",
  423. "r": 124,
  424. "g": 124,
  425. "b": 124,
  426. "a": 255
  427. },
  428. "_normalSprite": {
  429. "__uuid__": "159c6314-0d8b-4b33-96bf-ca57a0dc594b@f9941",
  430. "__expectedType__": "cc.SpriteFrame"
  431. },
  432. "_hoverSprite": {
  433. "__uuid__": "159c6314-0d8b-4b33-96bf-ca57a0dc594b@f9941",
  434. "__expectedType__": "cc.SpriteFrame"
  435. },
  436. "_pressedSprite": {
  437. "__uuid__": "159c6314-0d8b-4b33-96bf-ca57a0dc594b@f9941",
  438. "__expectedType__": "cc.SpriteFrame"
  439. },
  440. "_disabledSprite": {
  441. "__uuid__": "159c6314-0d8b-4b33-96bf-ca57a0dc594b@f9941",
  442. "__expectedType__": "cc.SpriteFrame"
  443. },
  444. "_duration": 0.1,
  445. "_zoomScale": 1.2,
  446. "_target": {
  447. "__id__": 10
  448. },
  449. "_id": ""
  450. },
  451. {
  452. "__type__": "cc.CompPrefabInfo",
  453. "fileId": "feiCXwCPpHA68wHMLUyEa4"
  454. },
  455. {
  456. "__type__": "54737G3yX9LGJuh5ijF7qZ3",
  457. "_name": "",
  458. "_objFlags": 0,
  459. "__editorExtras__": {},
  460. "node": {
  461. "__id__": 10
  462. },
  463. "_enabled": true,
  464. "__prefab": {
  465. "__id__": 18
  466. },
  467. "button": {
  468. "__id__": 15
  469. },
  470. "_id": ""
  471. },
  472. {
  473. "__type__": "cc.CompPrefabInfo",
  474. "fileId": "66MI7AGApLIYmvuk0IRZE/"
  475. },
  476. {
  477. "__type__": "cc.PrefabInfo",
  478. "root": {
  479. "__id__": 1
  480. },
  481. "asset": {
  482. "__id__": 0
  483. },
  484. "fileId": "ffwrax+EZGsYZF21s53mhN",
  485. "instance": null,
  486. "targetOverrides": null,
  487. "nestedPrefabInstanceRoots": null
  488. },
  489. {
  490. "__type__": "cc.Node",
  491. "_name": "SettingsBtn",
  492. "_objFlags": 0,
  493. "__editorExtras__": {},
  494. "_parent": {
  495. "__id__": 1
  496. },
  497. "_children": [],
  498. "_active": true,
  499. "_components": [
  500. {
  501. "__id__": 21
  502. },
  503. {
  504. "__id__": 23
  505. },
  506. {
  507. "__id__": 25
  508. },
  509. {
  510. "__id__": 27
  511. }
  512. ],
  513. "_prefab": {
  514. "__id__": 29
  515. },
  516. "_lpos": {
  517. "__type__": "cc.Vec3",
  518. "x": -313.304,
  519. "y": 749.239,
  520. "z": 0
  521. },
  522. "_lrot": {
  523. "__type__": "cc.Quat",
  524. "x": 0,
  525. "y": 0,
  526. "z": 0,
  527. "w": 1
  528. },
  529. "_lscale": {
  530. "__type__": "cc.Vec3",
  531. "x": 1,
  532. "y": 1,
  533. "z": 1
  534. },
  535. "_mobility": 0,
  536. "_layer": 33554432,
  537. "_euler": {
  538. "__type__": "cc.Vec3",
  539. "x": 0,
  540. "y": 0,
  541. "z": 0
  542. },
  543. "_id": ""
  544. },
  545. {
  546. "__type__": "cc.UITransform",
  547. "_name": "",
  548. "_objFlags": 0,
  549. "__editorExtras__": {},
  550. "node": {
  551. "__id__": 20
  552. },
  553. "_enabled": true,
  554. "__prefab": {
  555. "__id__": 22
  556. },
  557. "_contentSize": {
  558. "__type__": "cc.Size",
  559. "width": 95,
  560. "height": 102
  561. },
  562. "_anchorPoint": {
  563. "__type__": "cc.Vec2",
  564. "x": 0.5,
  565. "y": 0.5
  566. },
  567. "_id": ""
  568. },
  569. {
  570. "__type__": "cc.CompPrefabInfo",
  571. "fileId": "b3+x/qGCZJ7KtprBOEbVl+"
  572. },
  573. {
  574. "__type__": "cc.Sprite",
  575. "_name": "",
  576. "_objFlags": 0,
  577. "__editorExtras__": {},
  578. "node": {
  579. "__id__": 20
  580. },
  581. "_enabled": true,
  582. "__prefab": {
  583. "__id__": 24
  584. },
  585. "_customMaterial": null,
  586. "_srcBlendFactor": 2,
  587. "_dstBlendFactor": 4,
  588. "_color": {
  589. "__type__": "cc.Color",
  590. "r": 255,
  591. "g": 255,
  592. "b": 255,
  593. "a": 255
  594. },
  595. "_spriteFrame": {
  596. "__uuid__": "ff5c57dd-d9a3-4db6-82c0-f5ee244214ff@f9941",
  597. "__expectedType__": "cc.SpriteFrame"
  598. },
  599. "_type": 1,
  600. "_fillType": 0,
  601. "_sizeMode": 0,
  602. "_fillCenter": {
  603. "__type__": "cc.Vec2",
  604. "x": 0,
  605. "y": 0
  606. },
  607. "_fillStart": 0,
  608. "_fillRange": 0,
  609. "_isTrimmedMode": true,
  610. "_useGrayscale": false,
  611. "_atlas": null,
  612. "_id": ""
  613. },
  614. {
  615. "__type__": "cc.CompPrefabInfo",
  616. "fileId": "d2vumJ23FGFa4BopKW/vQQ"
  617. },
  618. {
  619. "__type__": "cc.Button",
  620. "_name": "",
  621. "_objFlags": 0,
  622. "__editorExtras__": {},
  623. "node": {
  624. "__id__": 20
  625. },
  626. "_enabled": true,
  627. "__prefab": {
  628. "__id__": 26
  629. },
  630. "clickEvents": [],
  631. "_interactable": true,
  632. "_transition": 2,
  633. "_normalColor": {
  634. "__type__": "cc.Color",
  635. "r": 214,
  636. "g": 214,
  637. "b": 214,
  638. "a": 255
  639. },
  640. "_hoverColor": {
  641. "__type__": "cc.Color",
  642. "r": 211,
  643. "g": 211,
  644. "b": 211,
  645. "a": 255
  646. },
  647. "_pressedColor": {
  648. "__type__": "cc.Color",
  649. "r": 255,
  650. "g": 255,
  651. "b": 255,
  652. "a": 255
  653. },
  654. "_disabledColor": {
  655. "__type__": "cc.Color",
  656. "r": 124,
  657. "g": 124,
  658. "b": 124,
  659. "a": 255
  660. },
  661. "_normalSprite": {
  662. "__uuid__": "ff5c57dd-d9a3-4db6-82c0-f5ee244214ff@f9941",
  663. "__expectedType__": "cc.SpriteFrame"
  664. },
  665. "_hoverSprite": {
  666. "__uuid__": "ff5c57dd-d9a3-4db6-82c0-f5ee244214ff@f9941",
  667. "__expectedType__": "cc.SpriteFrame"
  668. },
  669. "_pressedSprite": {
  670. "__uuid__": "ff5c57dd-d9a3-4db6-82c0-f5ee244214ff@f9941",
  671. "__expectedType__": "cc.SpriteFrame"
  672. },
  673. "_disabledSprite": {
  674. "__uuid__": "ff5c57dd-d9a3-4db6-82c0-f5ee244214ff@f9941",
  675. "__expectedType__": "cc.SpriteFrame"
  676. },
  677. "_duration": 0.1,
  678. "_zoomScale": 1.2,
  679. "_target": {
  680. "__id__": 20
  681. },
  682. "_id": ""
  683. },
  684. {
  685. "__type__": "cc.CompPrefabInfo",
  686. "fileId": "29KmgSo29Ae4CrWpVshCTP"
  687. },
  688. {
  689. "__type__": "cc.Widget",
  690. "_name": "",
  691. "_objFlags": 0,
  692. "__editorExtras__": {},
  693. "node": {
  694. "__id__": 20
  695. },
  696. "_enabled": true,
  697. "__prefab": {
  698. "__id__": 28
  699. },
  700. "_alignFlags": 9,
  701. "_target": null,
  702. "_left": -310.804,
  703. "_right": 0,
  704. "_top": -750.239,
  705. "_bottom": 0,
  706. "_horizontalCenter": 0,
  707. "_verticalCenter": 0,
  708. "_isAbsLeft": true,
  709. "_isAbsRight": true,
  710. "_isAbsTop": true,
  711. "_isAbsBottom": true,
  712. "_isAbsHorizontalCenter": true,
  713. "_isAbsVerticalCenter": true,
  714. "_originalWidth": 0,
  715. "_originalHeight": 0,
  716. "_alignMode": 2,
  717. "_lockFlags": 0,
  718. "_id": ""
  719. },
  720. {
  721. "__type__": "cc.CompPrefabInfo",
  722. "fileId": "5bmvHjQQRLZLWJ6aB0RgtX"
  723. },
  724. {
  725. "__type__": "cc.PrefabInfo",
  726. "root": {
  727. "__id__": 1
  728. },
  729. "asset": {
  730. "__id__": 0
  731. },
  732. "fileId": "7aVo3sUANDep5VjvTuGrVR",
  733. "instance": null,
  734. "targetOverrides": null,
  735. "nestedPrefabInstanceRoots": null
  736. },
  737. {
  738. "__type__": "cc.Node",
  739. "_name": "Menus",
  740. "_objFlags": 0,
  741. "__editorExtras__": {},
  742. "_parent": {
  743. "__id__": 1
  744. },
  745. "_children": [
  746. {
  747. "__id__": 31
  748. },
  749. {
  750. "__id__": 63
  751. }
  752. ],
  753. "_active": true,
  754. "_components": [
  755. {
  756. "__id__": 89
  757. },
  758. {
  759. "__id__": 91
  760. }
  761. ],
  762. "_prefab": {
  763. "__id__": 93
  764. },
  765. "_lpos": {
  766. "__type__": "cc.Vec3",
  767. "x": 0,
  768. "y": 0,
  769. "z": 0
  770. },
  771. "_lrot": {
  772. "__type__": "cc.Quat",
  773. "x": 0,
  774. "y": 0,
  775. "z": 0,
  776. "w": 1
  777. },
  778. "_lscale": {
  779. "__type__": "cc.Vec3",
  780. "x": 1,
  781. "y": 1,
  782. "z": 1
  783. },
  784. "_mobility": 0,
  785. "_layer": 33554432,
  786. "_euler": {
  787. "__type__": "cc.Vec3",
  788. "x": 0,
  789. "y": 0,
  790. "z": 0
  791. },
  792. "_id": ""
  793. },
  794. {
  795. "__type__": "cc.Node",
  796. "_name": "LeftMenu",
  797. "_objFlags": 0,
  798. "__editorExtras__": {},
  799. "_parent": {
  800. "__id__": 30
  801. },
  802. "_children": [
  803. {
  804. "__id__": 32
  805. },
  806. {
  807. "__id__": 40
  808. },
  809. {
  810. "__id__": 48
  811. }
  812. ],
  813. "_active": true,
  814. "_components": [
  815. {
  816. "__id__": 56
  817. },
  818. {
  819. "__id__": 58
  820. },
  821. {
  822. "__id__": 60
  823. }
  824. ],
  825. "_prefab": {
  826. "__id__": 62
  827. },
  828. "_lpos": {
  829. "__type__": "cc.Vec3",
  830. "x": -256.36199999999997,
  831. "y": -255.87400000000002,
  832. "z": 0
  833. },
  834. "_lrot": {
  835. "__type__": "cc.Quat",
  836. "x": 0,
  837. "y": 0,
  838. "z": 0,
  839. "w": 1
  840. },
  841. "_lscale": {
  842. "__type__": "cc.Vec3",
  843. "x": 1,
  844. "y": 1,
  845. "z": 1
  846. },
  847. "_mobility": 0,
  848. "_layer": 33554432,
  849. "_euler": {
  850. "__type__": "cc.Vec3",
  851. "x": 0,
  852. "y": 0,
  853. "z": 0
  854. },
  855. "_id": ""
  856. },
  857. {
  858. "__type__": "cc.Node",
  859. "_name": "SignBtn",
  860. "_objFlags": 0,
  861. "__editorExtras__": {},
  862. "_parent": {
  863. "__id__": 31
  864. },
  865. "_children": [],
  866. "_active": true,
  867. "_components": [
  868. {
  869. "__id__": 33
  870. },
  871. {
  872. "__id__": 35
  873. },
  874. {
  875. "__id__": 37
  876. }
  877. ],
  878. "_prefab": {
  879. "__id__": 39
  880. },
  881. "_lpos": {
  882. "__type__": "cc.Vec3",
  883. "x": -27.302000000000035,
  884. "y": 0,
  885. "z": 0
  886. },
  887. "_lrot": {
  888. "__type__": "cc.Quat",
  889. "x": 0,
  890. "y": 0,
  891. "z": 0,
  892. "w": 1
  893. },
  894. "_lscale": {
  895. "__type__": "cc.Vec3",
  896. "x": 1,
  897. "y": 1,
  898. "z": 1
  899. },
  900. "_mobility": 0,
  901. "_layer": 33554432,
  902. "_euler": {
  903. "__type__": "cc.Vec3",
  904. "x": 0,
  905. "y": 0,
  906. "z": 0
  907. },
  908. "_id": ""
  909. },
  910. {
  911. "__type__": "cc.UITransform",
  912. "_name": "",
  913. "_objFlags": 0,
  914. "__editorExtras__": {},
  915. "node": {
  916. "__id__": 32
  917. },
  918. "_enabled": true,
  919. "__prefab": {
  920. "__id__": 34
  921. },
  922. "_contentSize": {
  923. "__type__": "cc.Size",
  924. "width": 162,
  925. "height": 162
  926. },
  927. "_anchorPoint": {
  928. "__type__": "cc.Vec2",
  929. "x": 0.5,
  930. "y": 0.5
  931. },
  932. "_id": ""
  933. },
  934. {
  935. "__type__": "cc.CompPrefabInfo",
  936. "fileId": "19UuOnTSJMV59rY04Axpwu"
  937. },
  938. {
  939. "__type__": "cc.Sprite",
  940. "_name": "",
  941. "_objFlags": 0,
  942. "__editorExtras__": {},
  943. "node": {
  944. "__id__": 32
  945. },
  946. "_enabled": true,
  947. "__prefab": {
  948. "__id__": 36
  949. },
  950. "_customMaterial": null,
  951. "_srcBlendFactor": 2,
  952. "_dstBlendFactor": 4,
  953. "_color": {
  954. "__type__": "cc.Color",
  955. "r": 255,
  956. "g": 255,
  957. "b": 255,
  958. "a": 255
  959. },
  960. "_spriteFrame": {
  961. "__uuid__": "42c031a6-a1ea-4555-a6c7-06f334b1dceb@f9941",
  962. "__expectedType__": "cc.SpriteFrame"
  963. },
  964. "_type": 1,
  965. "_fillType": 0,
  966. "_sizeMode": 0,
  967. "_fillCenter": {
  968. "__type__": "cc.Vec2",
  969. "x": 0,
  970. "y": 0
  971. },
  972. "_fillStart": 0,
  973. "_fillRange": 0,
  974. "_isTrimmedMode": true,
  975. "_useGrayscale": false,
  976. "_atlas": null,
  977. "_id": ""
  978. },
  979. {
  980. "__type__": "cc.CompPrefabInfo",
  981. "fileId": "6878aiT+ZNLJjoDZwHd1JQ"
  982. },
  983. {
  984. "__type__": "cc.Button",
  985. "_name": "",
  986. "_objFlags": 0,
  987. "__editorExtras__": {},
  988. "node": {
  989. "__id__": 32
  990. },
  991. "_enabled": true,
  992. "__prefab": {
  993. "__id__": 38
  994. },
  995. "clickEvents": [],
  996. "_interactable": true,
  997. "_transition": 2,
  998. "_normalColor": {
  999. "__type__": "cc.Color",
  1000. "r": 214,
  1001. "g": 214,
  1002. "b": 214,
  1003. "a": 255
  1004. },
  1005. "_hoverColor": {
  1006. "__type__": "cc.Color",
  1007. "r": 211,
  1008. "g": 211,
  1009. "b": 211,
  1010. "a": 255
  1011. },
  1012. "_pressedColor": {
  1013. "__type__": "cc.Color",
  1014. "r": 255,
  1015. "g": 255,
  1016. "b": 255,
  1017. "a": 255
  1018. },
  1019. "_disabledColor": {
  1020. "__type__": "cc.Color",
  1021. "r": 124,
  1022. "g": 124,
  1023. "b": 124,
  1024. "a": 255
  1025. },
  1026. "_normalSprite": {
  1027. "__uuid__": "42c031a6-a1ea-4555-a6c7-06f334b1dceb@f9941",
  1028. "__expectedType__": "cc.SpriteFrame"
  1029. },
  1030. "_hoverSprite": {
  1031. "__uuid__": "42c031a6-a1ea-4555-a6c7-06f334b1dceb@f9941",
  1032. "__expectedType__": "cc.SpriteFrame"
  1033. },
  1034. "_pressedSprite": {
  1035. "__uuid__": "42c031a6-a1ea-4555-a6c7-06f334b1dceb@f9941",
  1036. "__expectedType__": "cc.SpriteFrame"
  1037. },
  1038. "_disabledSprite": {
  1039. "__uuid__": "42c031a6-a1ea-4555-a6c7-06f334b1dceb@f9941",
  1040. "__expectedType__": "cc.SpriteFrame"
  1041. },
  1042. "_duration": 0.1,
  1043. "_zoomScale": 1.2,
  1044. "_target": {
  1045. "__id__": 32
  1046. },
  1047. "_id": ""
  1048. },
  1049. {
  1050. "__type__": "cc.CompPrefabInfo",
  1051. "fileId": "b35a2drgxMF7vM4HI/78Dm"
  1052. },
  1053. {
  1054. "__type__": "cc.PrefabInfo",
  1055. "root": {
  1056. "__id__": 1
  1057. },
  1058. "asset": {
  1059. "__id__": 0
  1060. },
  1061. "fileId": "d1eAlk8RtGPKplDqgDcART",
  1062. "instance": null,
  1063. "targetOverrides": null,
  1064. "nestedPrefabInstanceRoots": null
  1065. },
  1066. {
  1067. "__type__": "cc.Node",
  1068. "_name": "StoreBtn",
  1069. "_objFlags": 0,
  1070. "__editorExtras__": {},
  1071. "_parent": {
  1072. "__id__": 31
  1073. },
  1074. "_children": [],
  1075. "_active": true,
  1076. "_components": [
  1077. {
  1078. "__id__": 41
  1079. },
  1080. {
  1081. "__id__": 43
  1082. },
  1083. {
  1084. "__id__": 45
  1085. }
  1086. ],
  1087. "_prefab": {
  1088. "__id__": 47
  1089. },
  1090. "_lpos": {
  1091. "__type__": "cc.Vec3",
  1092. "x": -24.505000000000038,
  1093. "y": -187,
  1094. "z": 0
  1095. },
  1096. "_lrot": {
  1097. "__type__": "cc.Quat",
  1098. "x": 0,
  1099. "y": 0,
  1100. "z": 0,
  1101. "w": 1
  1102. },
  1103. "_lscale": {
  1104. "__type__": "cc.Vec3",
  1105. "x": 1,
  1106. "y": 1,
  1107. "z": 1
  1108. },
  1109. "_mobility": 0,
  1110. "_layer": 33554432,
  1111. "_euler": {
  1112. "__type__": "cc.Vec3",
  1113. "x": 0,
  1114. "y": 0,
  1115. "z": 0
  1116. },
  1117. "_id": ""
  1118. },
  1119. {
  1120. "__type__": "cc.UITransform",
  1121. "_name": "",
  1122. "_objFlags": 0,
  1123. "__editorExtras__": {},
  1124. "node": {
  1125. "__id__": 40
  1126. },
  1127. "_enabled": true,
  1128. "__prefab": {
  1129. "__id__": 42
  1130. },
  1131. "_contentSize": {
  1132. "__type__": "cc.Size",
  1133. "width": 162,
  1134. "height": 162
  1135. },
  1136. "_anchorPoint": {
  1137. "__type__": "cc.Vec2",
  1138. "x": 0.5,
  1139. "y": 0.5
  1140. },
  1141. "_id": ""
  1142. },
  1143. {
  1144. "__type__": "cc.CompPrefabInfo",
  1145. "fileId": "a9A8Au6otBk6bPLjrUWAgF"
  1146. },
  1147. {
  1148. "__type__": "cc.Sprite",
  1149. "_name": "",
  1150. "_objFlags": 0,
  1151. "__editorExtras__": {},
  1152. "node": {
  1153. "__id__": 40
  1154. },
  1155. "_enabled": true,
  1156. "__prefab": {
  1157. "__id__": 44
  1158. },
  1159. "_customMaterial": null,
  1160. "_srcBlendFactor": 2,
  1161. "_dstBlendFactor": 4,
  1162. "_color": {
  1163. "__type__": "cc.Color",
  1164. "r": 255,
  1165. "g": 255,
  1166. "b": 255,
  1167. "a": 255
  1168. },
  1169. "_spriteFrame": {
  1170. "__uuid__": "ffd6e026-8662-4b7f-83c9-da62dfe938c9@f9941",
  1171. "__expectedType__": "cc.SpriteFrame"
  1172. },
  1173. "_type": 1,
  1174. "_fillType": 0,
  1175. "_sizeMode": 0,
  1176. "_fillCenter": {
  1177. "__type__": "cc.Vec2",
  1178. "x": 0,
  1179. "y": 0
  1180. },
  1181. "_fillStart": 0,
  1182. "_fillRange": 0,
  1183. "_isTrimmedMode": true,
  1184. "_useGrayscale": false,
  1185. "_atlas": null,
  1186. "_id": ""
  1187. },
  1188. {
  1189. "__type__": "cc.CompPrefabInfo",
  1190. "fileId": "0aUYO8KxJMeII1c2Rw/aGY"
  1191. },
  1192. {
  1193. "__type__": "cc.Button",
  1194. "_name": "",
  1195. "_objFlags": 0,
  1196. "__editorExtras__": {},
  1197. "node": {
  1198. "__id__": 40
  1199. },
  1200. "_enabled": true,
  1201. "__prefab": {
  1202. "__id__": 46
  1203. },
  1204. "clickEvents": [],
  1205. "_interactable": true,
  1206. "_transition": 2,
  1207. "_normalColor": {
  1208. "__type__": "cc.Color",
  1209. "r": 214,
  1210. "g": 214,
  1211. "b": 214,
  1212. "a": 255
  1213. },
  1214. "_hoverColor": {
  1215. "__type__": "cc.Color",
  1216. "r": 211,
  1217. "g": 211,
  1218. "b": 211,
  1219. "a": 255
  1220. },
  1221. "_pressedColor": {
  1222. "__type__": "cc.Color",
  1223. "r": 255,
  1224. "g": 255,
  1225. "b": 255,
  1226. "a": 255
  1227. },
  1228. "_disabledColor": {
  1229. "__type__": "cc.Color",
  1230. "r": 124,
  1231. "g": 124,
  1232. "b": 124,
  1233. "a": 255
  1234. },
  1235. "_normalSprite": {
  1236. "__uuid__": "ffd6e026-8662-4b7f-83c9-da62dfe938c9@f9941",
  1237. "__expectedType__": "cc.SpriteFrame"
  1238. },
  1239. "_hoverSprite": {
  1240. "__uuid__": "ffd6e026-8662-4b7f-83c9-da62dfe938c9@f9941",
  1241. "__expectedType__": "cc.SpriteFrame"
  1242. },
  1243. "_pressedSprite": {
  1244. "__uuid__": "ffd6e026-8662-4b7f-83c9-da62dfe938c9@f9941",
  1245. "__expectedType__": "cc.SpriteFrame"
  1246. },
  1247. "_disabledSprite": {
  1248. "__uuid__": "ffd6e026-8662-4b7f-83c9-da62dfe938c9@f9941",
  1249. "__expectedType__": "cc.SpriteFrame"
  1250. },
  1251. "_duration": 0.1,
  1252. "_zoomScale": 1.2,
  1253. "_target": {
  1254. "__id__": 40
  1255. },
  1256. "_id": ""
  1257. },
  1258. {
  1259. "__type__": "cc.CompPrefabInfo",
  1260. "fileId": "76RGNtTgRBAodkzSGcqhAa"
  1261. },
  1262. {
  1263. "__type__": "cc.PrefabInfo",
  1264. "root": {
  1265. "__id__": 1
  1266. },
  1267. "asset": {
  1268. "__id__": 0
  1269. },
  1270. "fileId": "7aM/PDQrNHm4CxbGgpalKN",
  1271. "instance": null,
  1272. "targetOverrides": null,
  1273. "nestedPrefabInstanceRoots": null
  1274. },
  1275. {
  1276. "__type__": "cc.Node",
  1277. "_name": "RankBtn",
  1278. "_objFlags": 0,
  1279. "__editorExtras__": {},
  1280. "_parent": {
  1281. "__id__": 31
  1282. },
  1283. "_children": [],
  1284. "_active": true,
  1285. "_components": [
  1286. {
  1287. "__id__": 49
  1288. },
  1289. {
  1290. "__id__": 51
  1291. },
  1292. {
  1293. "__id__": 53
  1294. }
  1295. ],
  1296. "_prefab": {
  1297. "__id__": 55
  1298. },
  1299. "_lpos": {
  1300. "__type__": "cc.Vec3",
  1301. "x": -24.05300000000004,
  1302. "y": -374,
  1303. "z": 0
  1304. },
  1305. "_lrot": {
  1306. "__type__": "cc.Quat",
  1307. "x": 0,
  1308. "y": 0,
  1309. "z": 0,
  1310. "w": 1
  1311. },
  1312. "_lscale": {
  1313. "__type__": "cc.Vec3",
  1314. "x": 1,
  1315. "y": 1,
  1316. "z": 1
  1317. },
  1318. "_mobility": 0,
  1319. "_layer": 33554432,
  1320. "_euler": {
  1321. "__type__": "cc.Vec3",
  1322. "x": 0,
  1323. "y": 0,
  1324. "z": 0
  1325. },
  1326. "_id": ""
  1327. },
  1328. {
  1329. "__type__": "cc.UITransform",
  1330. "_name": "",
  1331. "_objFlags": 0,
  1332. "__editorExtras__": {},
  1333. "node": {
  1334. "__id__": 48
  1335. },
  1336. "_enabled": true,
  1337. "__prefab": {
  1338. "__id__": 50
  1339. },
  1340. "_contentSize": {
  1341. "__type__": "cc.Size",
  1342. "width": 162,
  1343. "height": 162
  1344. },
  1345. "_anchorPoint": {
  1346. "__type__": "cc.Vec2",
  1347. "x": 0.5,
  1348. "y": 0.5
  1349. },
  1350. "_id": ""
  1351. },
  1352. {
  1353. "__type__": "cc.CompPrefabInfo",
  1354. "fileId": "64xPgZvydLr4Vcpqe2/9VN"
  1355. },
  1356. {
  1357. "__type__": "cc.Sprite",
  1358. "_name": "",
  1359. "_objFlags": 0,
  1360. "__editorExtras__": {},
  1361. "node": {
  1362. "__id__": 48
  1363. },
  1364. "_enabled": true,
  1365. "__prefab": {
  1366. "__id__": 52
  1367. },
  1368. "_customMaterial": null,
  1369. "_srcBlendFactor": 2,
  1370. "_dstBlendFactor": 4,
  1371. "_color": {
  1372. "__type__": "cc.Color",
  1373. "r": 255,
  1374. "g": 255,
  1375. "b": 255,
  1376. "a": 255
  1377. },
  1378. "_spriteFrame": {
  1379. "__uuid__": "00bc13a0-2e67-4a02-b130-c285954c1cd4@f9941",
  1380. "__expectedType__": "cc.SpriteFrame"
  1381. },
  1382. "_type": 1,
  1383. "_fillType": 0,
  1384. "_sizeMode": 0,
  1385. "_fillCenter": {
  1386. "__type__": "cc.Vec2",
  1387. "x": 0,
  1388. "y": 0
  1389. },
  1390. "_fillStart": 0,
  1391. "_fillRange": 0,
  1392. "_isTrimmedMode": true,
  1393. "_useGrayscale": false,
  1394. "_atlas": null,
  1395. "_id": ""
  1396. },
  1397. {
  1398. "__type__": "cc.CompPrefabInfo",
  1399. "fileId": "59JPq6HoRLC7KtbF+QMHJR"
  1400. },
  1401. {
  1402. "__type__": "cc.Button",
  1403. "_name": "",
  1404. "_objFlags": 0,
  1405. "__editorExtras__": {},
  1406. "node": {
  1407. "__id__": 48
  1408. },
  1409. "_enabled": true,
  1410. "__prefab": {
  1411. "__id__": 54
  1412. },
  1413. "clickEvents": [],
  1414. "_interactable": true,
  1415. "_transition": 2,
  1416. "_normalColor": {
  1417. "__type__": "cc.Color",
  1418. "r": 214,
  1419. "g": 214,
  1420. "b": 214,
  1421. "a": 255
  1422. },
  1423. "_hoverColor": {
  1424. "__type__": "cc.Color",
  1425. "r": 211,
  1426. "g": 211,
  1427. "b": 211,
  1428. "a": 255
  1429. },
  1430. "_pressedColor": {
  1431. "__type__": "cc.Color",
  1432. "r": 255,
  1433. "g": 255,
  1434. "b": 255,
  1435. "a": 255
  1436. },
  1437. "_disabledColor": {
  1438. "__type__": "cc.Color",
  1439. "r": 124,
  1440. "g": 124,
  1441. "b": 124,
  1442. "a": 255
  1443. },
  1444. "_normalSprite": {
  1445. "__uuid__": "00bc13a0-2e67-4a02-b130-c285954c1cd4@f9941",
  1446. "__expectedType__": "cc.SpriteFrame"
  1447. },
  1448. "_hoverSprite": {
  1449. "__uuid__": "00bc13a0-2e67-4a02-b130-c285954c1cd4@f9941",
  1450. "__expectedType__": "cc.SpriteFrame"
  1451. },
  1452. "_pressedSprite": {
  1453. "__uuid__": "00bc13a0-2e67-4a02-b130-c285954c1cd4@f9941",
  1454. "__expectedType__": "cc.SpriteFrame"
  1455. },
  1456. "_disabledSprite": {
  1457. "__uuid__": "00bc13a0-2e67-4a02-b130-c285954c1cd4@f9941",
  1458. "__expectedType__": "cc.SpriteFrame"
  1459. },
  1460. "_duration": 0.1,
  1461. "_zoomScale": 1.2,
  1462. "_target": {
  1463. "__id__": 48
  1464. },
  1465. "_id": ""
  1466. },
  1467. {
  1468. "__type__": "cc.CompPrefabInfo",
  1469. "fileId": "ff46f+r4ZEz4p6u6LnFrw/"
  1470. },
  1471. {
  1472. "__type__": "cc.PrefabInfo",
  1473. "root": {
  1474. "__id__": 1
  1475. },
  1476. "asset": {
  1477. "__id__": 0
  1478. },
  1479. "fileId": "90F0LCOI9DoZigwlzBnNOg",
  1480. "instance": null,
  1481. "targetOverrides": null,
  1482. "nestedPrefabInstanceRoots": null
  1483. },
  1484. {
  1485. "__type__": "cc.UITransform",
  1486. "_name": "",
  1487. "_objFlags": 0,
  1488. "__editorExtras__": {},
  1489. "node": {
  1490. "__id__": 31
  1491. },
  1492. "_enabled": true,
  1493. "__prefab": {
  1494. "__id__": 57
  1495. },
  1496. "_contentSize": {
  1497. "__type__": "cc.Size",
  1498. "width": 162,
  1499. "height": 162
  1500. },
  1501. "_anchorPoint": {
  1502. "__type__": "cc.Vec2",
  1503. "x": 0.5,
  1504. "y": 0.5
  1505. },
  1506. "_id": ""
  1507. },
  1508. {
  1509. "__type__": "cc.CompPrefabInfo",
  1510. "fileId": "43h5QYE5dN34a42Cly3Ern"
  1511. },
  1512. {
  1513. "__type__": "cc.Layout",
  1514. "_name": "",
  1515. "_objFlags": 0,
  1516. "__editorExtras__": {},
  1517. "node": {
  1518. "__id__": 31
  1519. },
  1520. "_enabled": false,
  1521. "__prefab": {
  1522. "__id__": 59
  1523. },
  1524. "_resizeMode": 0,
  1525. "_layoutType": 2,
  1526. "_cellSize": {
  1527. "__type__": "cc.Size",
  1528. "width": 40,
  1529. "height": 40
  1530. },
  1531. "_startAxis": 0,
  1532. "_paddingLeft": 0,
  1533. "_paddingRight": 0,
  1534. "_paddingTop": 0,
  1535. "_paddingBottom": 0,
  1536. "_spacingX": 0,
  1537. "_spacingY": 25,
  1538. "_verticalDirection": 1,
  1539. "_horizontalDirection": 0,
  1540. "_constraint": 0,
  1541. "_constraintNum": 2,
  1542. "_affectedByScale": false,
  1543. "_isAlign": false,
  1544. "_id": ""
  1545. },
  1546. {
  1547. "__type__": "cc.CompPrefabInfo",
  1548. "fileId": "a7FG/e2a9NYYsQgvt3Qj1k"
  1549. },
  1550. {
  1551. "__type__": "cc.Widget",
  1552. "_name": "",
  1553. "_objFlags": 0,
  1554. "__editorExtras__": {},
  1555. "node": {
  1556. "__id__": 31
  1557. },
  1558. "_enabled": true,
  1559. "__prefab": {
  1560. "__id__": 61
  1561. },
  1562. "_alignFlags": 12,
  1563. "_target": null,
  1564. "_left": -287.36199999999997,
  1565. "_right": 0,
  1566. "_top": 0,
  1567. "_bottom": -286.874,
  1568. "_horizontalCenter": 0,
  1569. "_verticalCenter": 0,
  1570. "_isAbsLeft": true,
  1571. "_isAbsRight": true,
  1572. "_isAbsTop": true,
  1573. "_isAbsBottom": true,
  1574. "_isAbsHorizontalCenter": true,
  1575. "_isAbsVerticalCenter": true,
  1576. "_originalWidth": 0,
  1577. "_originalHeight": 0,
  1578. "_alignMode": 1,
  1579. "_lockFlags": 0,
  1580. "_id": ""
  1581. },
  1582. {
  1583. "__type__": "cc.CompPrefabInfo",
  1584. "fileId": "29ZcLnh+VPoJrRsL2d2Asp"
  1585. },
  1586. {
  1587. "__type__": "cc.PrefabInfo",
  1588. "root": {
  1589. "__id__": 1
  1590. },
  1591. "asset": {
  1592. "__id__": 0
  1593. },
  1594. "fileId": "510V22xNRC4r6J9ijB0LzK",
  1595. "instance": null,
  1596. "targetOverrides": null,
  1597. "nestedPrefabInstanceRoots": null
  1598. },
  1599. {
  1600. "__type__": "cc.Node",
  1601. "_name": "RightMenu",
  1602. "_objFlags": 0,
  1603. "__editorExtras__": {},
  1604. "_parent": {
  1605. "__id__": 30
  1606. },
  1607. "_children": [
  1608. {
  1609. "__id__": 64
  1610. },
  1611. {
  1612. "__id__": 72
  1613. }
  1614. ],
  1615. "_active": true,
  1616. "_components": [
  1617. {
  1618. "__id__": 82
  1619. },
  1620. {
  1621. "__id__": 84
  1622. },
  1623. {
  1624. "__id__": 86
  1625. }
  1626. ],
  1627. "_prefab": {
  1628. "__id__": 88
  1629. },
  1630. "_lpos": {
  1631. "__type__": "cc.Vec3",
  1632. "x": 277.111,
  1633. "y": -254.76700000000005,
  1634. "z": 0
  1635. },
  1636. "_lrot": {
  1637. "__type__": "cc.Quat",
  1638. "x": 0,
  1639. "y": 0,
  1640. "z": 0,
  1641. "w": 1
  1642. },
  1643. "_lscale": {
  1644. "__type__": "cc.Vec3",
  1645. "x": 1,
  1646. "y": 1,
  1647. "z": 1
  1648. },
  1649. "_mobility": 0,
  1650. "_layer": 33554432,
  1651. "_euler": {
  1652. "__type__": "cc.Vec3",
  1653. "x": 0,
  1654. "y": 0,
  1655. "z": 0
  1656. },
  1657. "_id": ""
  1658. },
  1659. {
  1660. "__type__": "cc.Node",
  1661. "_name": "InforBtn",
  1662. "_objFlags": 0,
  1663. "__editorExtras__": {},
  1664. "_parent": {
  1665. "__id__": 63
  1666. },
  1667. "_children": [],
  1668. "_active": true,
  1669. "_components": [
  1670. {
  1671. "__id__": 65
  1672. },
  1673. {
  1674. "__id__": 67
  1675. },
  1676. {
  1677. "__id__": 69
  1678. }
  1679. ],
  1680. "_prefab": {
  1681. "__id__": 71
  1682. },
  1683. "_lpos": {
  1684. "__type__": "cc.Vec3",
  1685. "x": 0,
  1686. "y": 0,
  1687. "z": 0
  1688. },
  1689. "_lrot": {
  1690. "__type__": "cc.Quat",
  1691. "x": 0,
  1692. "y": 0,
  1693. "z": 0,
  1694. "w": 1
  1695. },
  1696. "_lscale": {
  1697. "__type__": "cc.Vec3",
  1698. "x": 1,
  1699. "y": 1,
  1700. "z": 1
  1701. },
  1702. "_mobility": 0,
  1703. "_layer": 33554432,
  1704. "_euler": {
  1705. "__type__": "cc.Vec3",
  1706. "x": 0,
  1707. "y": 0,
  1708. "z": 0
  1709. },
  1710. "_id": ""
  1711. },
  1712. {
  1713. "__type__": "cc.UITransform",
  1714. "_name": "",
  1715. "_objFlags": 0,
  1716. "__editorExtras__": {},
  1717. "node": {
  1718. "__id__": 64
  1719. },
  1720. "_enabled": true,
  1721. "__prefab": {
  1722. "__id__": 66
  1723. },
  1724. "_contentSize": {
  1725. "__type__": "cc.Size",
  1726. "width": 162,
  1727. "height": 162
  1728. },
  1729. "_anchorPoint": {
  1730. "__type__": "cc.Vec2",
  1731. "x": 0.5,
  1732. "y": 0.5
  1733. },
  1734. "_id": ""
  1735. },
  1736. {
  1737. "__type__": "cc.CompPrefabInfo",
  1738. "fileId": "55urHFO+JFKpUnQ2UBZuIh"
  1739. },
  1740. {
  1741. "__type__": "cc.Sprite",
  1742. "_name": "",
  1743. "_objFlags": 0,
  1744. "__editorExtras__": {},
  1745. "node": {
  1746. "__id__": 64
  1747. },
  1748. "_enabled": true,
  1749. "__prefab": {
  1750. "__id__": 68
  1751. },
  1752. "_customMaterial": null,
  1753. "_srcBlendFactor": 2,
  1754. "_dstBlendFactor": 4,
  1755. "_color": {
  1756. "__type__": "cc.Color",
  1757. "r": 255,
  1758. "g": 255,
  1759. "b": 255,
  1760. "a": 255
  1761. },
  1762. "_spriteFrame": {
  1763. "__uuid__": "f28e16af-e1c0-4cc2-8b55-1fcf09d046e6@f9941",
  1764. "__expectedType__": "cc.SpriteFrame"
  1765. },
  1766. "_type": 1,
  1767. "_fillType": 0,
  1768. "_sizeMode": 0,
  1769. "_fillCenter": {
  1770. "__type__": "cc.Vec2",
  1771. "x": 0,
  1772. "y": 0
  1773. },
  1774. "_fillStart": 0,
  1775. "_fillRange": 0,
  1776. "_isTrimmedMode": true,
  1777. "_useGrayscale": false,
  1778. "_atlas": null,
  1779. "_id": ""
  1780. },
  1781. {
  1782. "__type__": "cc.CompPrefabInfo",
  1783. "fileId": "c0ww28GztHEpdAjVpbfa92"
  1784. },
  1785. {
  1786. "__type__": "cc.Button",
  1787. "_name": "",
  1788. "_objFlags": 0,
  1789. "__editorExtras__": {},
  1790. "node": {
  1791. "__id__": 64
  1792. },
  1793. "_enabled": true,
  1794. "__prefab": {
  1795. "__id__": 70
  1796. },
  1797. "clickEvents": [],
  1798. "_interactable": true,
  1799. "_transition": 2,
  1800. "_normalColor": {
  1801. "__type__": "cc.Color",
  1802. "r": 214,
  1803. "g": 214,
  1804. "b": 214,
  1805. "a": 255
  1806. },
  1807. "_hoverColor": {
  1808. "__type__": "cc.Color",
  1809. "r": 211,
  1810. "g": 211,
  1811. "b": 211,
  1812. "a": 255
  1813. },
  1814. "_pressedColor": {
  1815. "__type__": "cc.Color",
  1816. "r": 255,
  1817. "g": 255,
  1818. "b": 255,
  1819. "a": 255
  1820. },
  1821. "_disabledColor": {
  1822. "__type__": "cc.Color",
  1823. "r": 124,
  1824. "g": 124,
  1825. "b": 124,
  1826. "a": 255
  1827. },
  1828. "_normalSprite": {
  1829. "__uuid__": "f28e16af-e1c0-4cc2-8b55-1fcf09d046e6@f9941",
  1830. "__expectedType__": "cc.SpriteFrame"
  1831. },
  1832. "_hoverSprite": {
  1833. "__uuid__": "f28e16af-e1c0-4cc2-8b55-1fcf09d046e6@f9941",
  1834. "__expectedType__": "cc.SpriteFrame"
  1835. },
  1836. "_pressedSprite": {
  1837. "__uuid__": "f28e16af-e1c0-4cc2-8b55-1fcf09d046e6@f9941",
  1838. "__expectedType__": "cc.SpriteFrame"
  1839. },
  1840. "_disabledSprite": {
  1841. "__uuid__": "f28e16af-e1c0-4cc2-8b55-1fcf09d046e6@f9941",
  1842. "__expectedType__": "cc.SpriteFrame"
  1843. },
  1844. "_duration": 0.1,
  1845. "_zoomScale": 1.2,
  1846. "_target": {
  1847. "__id__": 64
  1848. },
  1849. "_id": ""
  1850. },
  1851. {
  1852. "__type__": "cc.CompPrefabInfo",
  1853. "fileId": "aa/zMDJS5A2J1PFwddk1Ek"
  1854. },
  1855. {
  1856. "__type__": "cc.PrefabInfo",
  1857. "root": {
  1858. "__id__": 1
  1859. },
  1860. "asset": {
  1861. "__id__": 0
  1862. },
  1863. "fileId": "4c5WoXE8VO8oeaDDVpvhAN",
  1864. "instance": null,
  1865. "targetOverrides": null,
  1866. "nestedPrefabInstanceRoots": null
  1867. },
  1868. {
  1869. "__type__": "cc.Node",
  1870. "_name": "ShareBtn",
  1871. "_objFlags": 0,
  1872. "__editorExtras__": {},
  1873. "_parent": {
  1874. "__id__": 63
  1875. },
  1876. "_children": [],
  1877. "_active": true,
  1878. "_components": [
  1879. {
  1880. "__id__": 73
  1881. },
  1882. {
  1883. "__id__": 75
  1884. },
  1885. {
  1886. "__id__": 77
  1887. },
  1888. {
  1889. "__id__": 79
  1890. }
  1891. ],
  1892. "_prefab": {
  1893. "__id__": 81
  1894. },
  1895. "_lpos": {
  1896. "__type__": "cc.Vec3",
  1897. "x": 0,
  1898. "y": -187,
  1899. "z": 0
  1900. },
  1901. "_lrot": {
  1902. "__type__": "cc.Quat",
  1903. "x": 0,
  1904. "y": 0,
  1905. "z": 0,
  1906. "w": 1
  1907. },
  1908. "_lscale": {
  1909. "__type__": "cc.Vec3",
  1910. "x": 1,
  1911. "y": 1,
  1912. "z": 1
  1913. },
  1914. "_mobility": 0,
  1915. "_layer": 33554432,
  1916. "_euler": {
  1917. "__type__": "cc.Vec3",
  1918. "x": 0,
  1919. "y": 0,
  1920. "z": 0
  1921. },
  1922. "_id": ""
  1923. },
  1924. {
  1925. "__type__": "cc.UITransform",
  1926. "_name": "",
  1927. "_objFlags": 0,
  1928. "__editorExtras__": {},
  1929. "node": {
  1930. "__id__": 72
  1931. },
  1932. "_enabled": true,
  1933. "__prefab": {
  1934. "__id__": 74
  1935. },
  1936. "_contentSize": {
  1937. "__type__": "cc.Size",
  1938. "width": 162,
  1939. "height": 162
  1940. },
  1941. "_anchorPoint": {
  1942. "__type__": "cc.Vec2",
  1943. "x": 0.5,
  1944. "y": 0.5
  1945. },
  1946. "_id": ""
  1947. },
  1948. {
  1949. "__type__": "cc.CompPrefabInfo",
  1950. "fileId": "54XHNcjipDJICgoOa1f+sD"
  1951. },
  1952. {
  1953. "__type__": "cc.Sprite",
  1954. "_name": "",
  1955. "_objFlags": 0,
  1956. "__editorExtras__": {},
  1957. "node": {
  1958. "__id__": 72
  1959. },
  1960. "_enabled": true,
  1961. "__prefab": {
  1962. "__id__": 76
  1963. },
  1964. "_customMaterial": null,
  1965. "_srcBlendFactor": 2,
  1966. "_dstBlendFactor": 4,
  1967. "_color": {
  1968. "__type__": "cc.Color",
  1969. "r": 255,
  1970. "g": 255,
  1971. "b": 255,
  1972. "a": 255
  1973. },
  1974. "_spriteFrame": {
  1975. "__uuid__": "2fe157a8-7f70-404b-a4b8-d669261bd9f1@f9941",
  1976. "__expectedType__": "cc.SpriteFrame"
  1977. },
  1978. "_type": 1,
  1979. "_fillType": 0,
  1980. "_sizeMode": 0,
  1981. "_fillCenter": {
  1982. "__type__": "cc.Vec2",
  1983. "x": 0,
  1984. "y": 0
  1985. },
  1986. "_fillStart": 0,
  1987. "_fillRange": 0,
  1988. "_isTrimmedMode": true,
  1989. "_useGrayscale": false,
  1990. "_atlas": null,
  1991. "_id": ""
  1992. },
  1993. {
  1994. "__type__": "cc.CompPrefabInfo",
  1995. "fileId": "bd9v5kFNNO/JKjogEuTXue"
  1996. },
  1997. {
  1998. "__type__": "cc.Button",
  1999. "_name": "",
  2000. "_objFlags": 0,
  2001. "__editorExtras__": {},
  2002. "node": {
  2003. "__id__": 72
  2004. },
  2005. "_enabled": true,
  2006. "__prefab": {
  2007. "__id__": 78
  2008. },
  2009. "clickEvents": [],
  2010. "_interactable": true,
  2011. "_transition": 2,
  2012. "_normalColor": {
  2013. "__type__": "cc.Color",
  2014. "r": 214,
  2015. "g": 214,
  2016. "b": 214,
  2017. "a": 255
  2018. },
  2019. "_hoverColor": {
  2020. "__type__": "cc.Color",
  2021. "r": 211,
  2022. "g": 211,
  2023. "b": 211,
  2024. "a": 255
  2025. },
  2026. "_pressedColor": {
  2027. "__type__": "cc.Color",
  2028. "r": 255,
  2029. "g": 255,
  2030. "b": 255,
  2031. "a": 255
  2032. },
  2033. "_disabledColor": {
  2034. "__type__": "cc.Color",
  2035. "r": 124,
  2036. "g": 124,
  2037. "b": 124,
  2038. "a": 255
  2039. },
  2040. "_normalSprite": {
  2041. "__uuid__": "2fe157a8-7f70-404b-a4b8-d669261bd9f1@f9941",
  2042. "__expectedType__": "cc.SpriteFrame"
  2043. },
  2044. "_hoverSprite": {
  2045. "__uuid__": "2fe157a8-7f70-404b-a4b8-d669261bd9f1@f9941",
  2046. "__expectedType__": "cc.SpriteFrame"
  2047. },
  2048. "_pressedSprite": {
  2049. "__uuid__": "2fe157a8-7f70-404b-a4b8-d669261bd9f1@f9941",
  2050. "__expectedType__": "cc.SpriteFrame"
  2051. },
  2052. "_disabledSprite": {
  2053. "__uuid__": "2fe157a8-7f70-404b-a4b8-d669261bd9f1@f9941",
  2054. "__expectedType__": "cc.SpriteFrame"
  2055. },
  2056. "_duration": 0.1,
  2057. "_zoomScale": 1.2,
  2058. "_target": {
  2059. "__id__": 72
  2060. },
  2061. "_id": ""
  2062. },
  2063. {
  2064. "__type__": "cc.CompPrefabInfo",
  2065. "fileId": "38ieAzm+ZNwYDm1oWzoz1z"
  2066. },
  2067. {
  2068. "__type__": "883240x5n5Bj7YvUrWleQ4v",
  2069. "_name": "",
  2070. "_objFlags": 0,
  2071. "__editorExtras__": {},
  2072. "node": {
  2073. "__id__": 72
  2074. },
  2075. "_enabled": true,
  2076. "__prefab": {
  2077. "__id__": 80
  2078. },
  2079. "_id": ""
  2080. },
  2081. {
  2082. "__type__": "cc.CompPrefabInfo",
  2083. "fileId": "b96kHS3zlAzKAPLfitr2/v"
  2084. },
  2085. {
  2086. "__type__": "cc.PrefabInfo",
  2087. "root": {
  2088. "__id__": 1
  2089. },
  2090. "asset": {
  2091. "__id__": 0
  2092. },
  2093. "fileId": "f6YsebabtGMK40oH60XCgn",
  2094. "instance": null,
  2095. "targetOverrides": null,
  2096. "nestedPrefabInstanceRoots": null
  2097. },
  2098. {
  2099. "__type__": "cc.UITransform",
  2100. "_name": "",
  2101. "_objFlags": 0,
  2102. "__editorExtras__": {},
  2103. "node": {
  2104. "__id__": 63
  2105. },
  2106. "_enabled": true,
  2107. "__prefab": {
  2108. "__id__": 83
  2109. },
  2110. "_contentSize": {
  2111. "__type__": "cc.Size",
  2112. "width": 162,
  2113. "height": 162
  2114. },
  2115. "_anchorPoint": {
  2116. "__type__": "cc.Vec2",
  2117. "x": 0.5,
  2118. "y": 0.5
  2119. },
  2120. "_id": ""
  2121. },
  2122. {
  2123. "__type__": "cc.CompPrefabInfo",
  2124. "fileId": "66AO6MTChPGabmxAWFGCkB"
  2125. },
  2126. {
  2127. "__type__": "cc.Layout",
  2128. "_name": "",
  2129. "_objFlags": 0,
  2130. "__editorExtras__": {},
  2131. "node": {
  2132. "__id__": 63
  2133. },
  2134. "_enabled": false,
  2135. "__prefab": {
  2136. "__id__": 85
  2137. },
  2138. "_resizeMode": 0,
  2139. "_layoutType": 2,
  2140. "_cellSize": {
  2141. "__type__": "cc.Size",
  2142. "width": 40,
  2143. "height": 40
  2144. },
  2145. "_startAxis": 0,
  2146. "_paddingLeft": 0,
  2147. "_paddingRight": 0,
  2148. "_paddingTop": 0,
  2149. "_paddingBottom": 0,
  2150. "_spacingX": 0,
  2151. "_spacingY": 25,
  2152. "_verticalDirection": 1,
  2153. "_horizontalDirection": 0,
  2154. "_constraint": 0,
  2155. "_constraintNum": 2,
  2156. "_affectedByScale": false,
  2157. "_isAlign": false,
  2158. "_id": ""
  2159. },
  2160. {
  2161. "__type__": "cc.CompPrefabInfo",
  2162. "fileId": "83MR7ZsHBAIr9QPNAhlkVf"
  2163. },
  2164. {
  2165. "__type__": "cc.Widget",
  2166. "_name": "",
  2167. "_objFlags": 0,
  2168. "__editorExtras__": {},
  2169. "node": {
  2170. "__id__": 63
  2171. },
  2172. "_enabled": true,
  2173. "__prefab": {
  2174. "__id__": 87
  2175. },
  2176. "_alignFlags": 36,
  2177. "_target": null,
  2178. "_left": 0,
  2179. "_right": -308.111,
  2180. "_top": 0,
  2181. "_bottom": -285.76700000000005,
  2182. "_horizontalCenter": 0,
  2183. "_verticalCenter": 0,
  2184. "_isAbsLeft": true,
  2185. "_isAbsRight": true,
  2186. "_isAbsTop": true,
  2187. "_isAbsBottom": true,
  2188. "_isAbsHorizontalCenter": true,
  2189. "_isAbsVerticalCenter": true,
  2190. "_originalWidth": 0,
  2191. "_originalHeight": 0,
  2192. "_alignMode": 1,
  2193. "_lockFlags": 0,
  2194. "_id": ""
  2195. },
  2196. {
  2197. "__type__": "cc.CompPrefabInfo",
  2198. "fileId": "abAbIUJwlH+b7Xvqiz0uMn"
  2199. },
  2200. {
  2201. "__type__": "cc.PrefabInfo",
  2202. "root": {
  2203. "__id__": 1
  2204. },
  2205. "asset": {
  2206. "__id__": 0
  2207. },
  2208. "fileId": "96p9DpwUpIXKF7igClmbDH",
  2209. "instance": null,
  2210. "targetOverrides": null,
  2211. "nestedPrefabInstanceRoots": null
  2212. },
  2213. {
  2214. "__type__": "cc.UITransform",
  2215. "_name": "",
  2216. "_objFlags": 0,
  2217. "__editorExtras__": {},
  2218. "node": {
  2219. "__id__": 30
  2220. },
  2221. "_enabled": true,
  2222. "__prefab": {
  2223. "__id__": 90
  2224. },
  2225. "_contentSize": {
  2226. "__type__": "cc.Size",
  2227. "width": 100,
  2228. "height": 100
  2229. },
  2230. "_anchorPoint": {
  2231. "__type__": "cc.Vec2",
  2232. "x": 0.5,
  2233. "y": 0.5
  2234. },
  2235. "_id": ""
  2236. },
  2237. {
  2238. "__type__": "cc.CompPrefabInfo",
  2239. "fileId": "57K6++lW1MAYe/pW9MFg0v"
  2240. },
  2241. {
  2242. "__type__": "cc.Widget",
  2243. "_name": "",
  2244. "_objFlags": 0,
  2245. "__editorExtras__": {},
  2246. "node": {
  2247. "__id__": 30
  2248. },
  2249. "_enabled": true,
  2250. "__prefab": {
  2251. "__id__": 92
  2252. },
  2253. "_alignFlags": 45,
  2254. "_target": null,
  2255. "_left": 0,
  2256. "_right": 0,
  2257. "_top": 0,
  2258. "_bottom": 0,
  2259. "_horizontalCenter": 0,
  2260. "_verticalCenter": 0,
  2261. "_isAbsLeft": true,
  2262. "_isAbsRight": true,
  2263. "_isAbsTop": true,
  2264. "_isAbsBottom": true,
  2265. "_isAbsHorizontalCenter": true,
  2266. "_isAbsVerticalCenter": true,
  2267. "_originalWidth": 100,
  2268. "_originalHeight": 100,
  2269. "_alignMode": 2,
  2270. "_lockFlags": 0,
  2271. "_id": ""
  2272. },
  2273. {
  2274. "__type__": "cc.CompPrefabInfo",
  2275. "fileId": "c34XskUaxOsLSqdbjjl3kh"
  2276. },
  2277. {
  2278. "__type__": "cc.PrefabInfo",
  2279. "root": {
  2280. "__id__": 1
  2281. },
  2282. "asset": {
  2283. "__id__": 0
  2284. },
  2285. "fileId": "45OVW9b+1MvpFxL5ogwrfU",
  2286. "instance": null,
  2287. "targetOverrides": null,
  2288. "nestedPrefabInstanceRoots": null
  2289. },
  2290. {
  2291. "__type__": "cc.Node",
  2292. "_name": "Sidebar_Btn",
  2293. "_objFlags": 0,
  2294. "__editorExtras__": {},
  2295. "_parent": {
  2296. "__id__": 1
  2297. },
  2298. "_children": [],
  2299. "_active": true,
  2300. "_components": [
  2301. {
  2302. "__id__": 95
  2303. },
  2304. {
  2305. "__id__": 97
  2306. },
  2307. {
  2308. "__id__": 99
  2309. },
  2310. {
  2311. "__id__": 101
  2312. }
  2313. ],
  2314. "_prefab": {
  2315. "__id__": 103
  2316. },
  2317. "_lpos": {
  2318. "__type__": "cc.Vec3",
  2319. "x": -308.90999999999997,
  2320. "y": 634.423,
  2321. "z": 0
  2322. },
  2323. "_lrot": {
  2324. "__type__": "cc.Quat",
  2325. "x": 0,
  2326. "y": 0,
  2327. "z": 0,
  2328. "w": 1
  2329. },
  2330. "_lscale": {
  2331. "__type__": "cc.Vec3",
  2332. "x": 1,
  2333. "y": 1,
  2334. "z": 1
  2335. },
  2336. "_mobility": 0,
  2337. "_layer": 33554432,
  2338. "_euler": {
  2339. "__type__": "cc.Vec3",
  2340. "x": 0,
  2341. "y": 0,
  2342. "z": 0
  2343. },
  2344. "_id": ""
  2345. },
  2346. {
  2347. "__type__": "cc.UITransform",
  2348. "_name": "",
  2349. "_objFlags": 0,
  2350. "__editorExtras__": {},
  2351. "node": {
  2352. "__id__": 94
  2353. },
  2354. "_enabled": true,
  2355. "__prefab": {
  2356. "__id__": 96
  2357. },
  2358. "_contentSize": {
  2359. "__type__": "cc.Size",
  2360. "width": 118,
  2361. "height": 118
  2362. },
  2363. "_anchorPoint": {
  2364. "__type__": "cc.Vec2",
  2365. "x": 0.5,
  2366. "y": 0.5
  2367. },
  2368. "_id": ""
  2369. },
  2370. {
  2371. "__type__": "cc.CompPrefabInfo",
  2372. "fileId": "88ZK6QB+pEqpwgrjrGKhAm"
  2373. },
  2374. {
  2375. "__type__": "cc.Sprite",
  2376. "_name": "",
  2377. "_objFlags": 0,
  2378. "__editorExtras__": {},
  2379. "node": {
  2380. "__id__": 94
  2381. },
  2382. "_enabled": true,
  2383. "__prefab": {
  2384. "__id__": 98
  2385. },
  2386. "_customMaterial": null,
  2387. "_srcBlendFactor": 2,
  2388. "_dstBlendFactor": 4,
  2389. "_color": {
  2390. "__type__": "cc.Color",
  2391. "r": 255,
  2392. "g": 255,
  2393. "b": 255,
  2394. "a": 255
  2395. },
  2396. "_spriteFrame": {
  2397. "__uuid__": "f3840459-1348-4249-92dc-d2faf6967e87@f9941",
  2398. "__expectedType__": "cc.SpriteFrame"
  2399. },
  2400. "_type": 1,
  2401. "_fillType": 0,
  2402. "_sizeMode": 0,
  2403. "_fillCenter": {
  2404. "__type__": "cc.Vec2",
  2405. "x": 0,
  2406. "y": 0
  2407. },
  2408. "_fillStart": 0,
  2409. "_fillRange": 0,
  2410. "_isTrimmedMode": true,
  2411. "_useGrayscale": false,
  2412. "_atlas": null,
  2413. "_id": ""
  2414. },
  2415. {
  2416. "__type__": "cc.CompPrefabInfo",
  2417. "fileId": "cehfn12TxFCJx/T0g2Vekx"
  2418. },
  2419. {
  2420. "__type__": "cc.Button",
  2421. "_name": "",
  2422. "_objFlags": 0,
  2423. "__editorExtras__": {},
  2424. "node": {
  2425. "__id__": 94
  2426. },
  2427. "_enabled": true,
  2428. "__prefab": {
  2429. "__id__": 100
  2430. },
  2431. "clickEvents": [],
  2432. "_interactable": true,
  2433. "_transition": 2,
  2434. "_normalColor": {
  2435. "__type__": "cc.Color",
  2436. "r": 214,
  2437. "g": 214,
  2438. "b": 214,
  2439. "a": 255
  2440. },
  2441. "_hoverColor": {
  2442. "__type__": "cc.Color",
  2443. "r": 211,
  2444. "g": 211,
  2445. "b": 211,
  2446. "a": 255
  2447. },
  2448. "_pressedColor": {
  2449. "__type__": "cc.Color",
  2450. "r": 255,
  2451. "g": 255,
  2452. "b": 255,
  2453. "a": 255
  2454. },
  2455. "_disabledColor": {
  2456. "__type__": "cc.Color",
  2457. "r": 124,
  2458. "g": 124,
  2459. "b": 124,
  2460. "a": 255
  2461. },
  2462. "_normalSprite": {
  2463. "__uuid__": "f3840459-1348-4249-92dc-d2faf6967e87@f9941",
  2464. "__expectedType__": "cc.SpriteFrame"
  2465. },
  2466. "_hoverSprite": {
  2467. "__uuid__": "f3840459-1348-4249-92dc-d2faf6967e87@f9941",
  2468. "__expectedType__": "cc.SpriteFrame"
  2469. },
  2470. "_pressedSprite": {
  2471. "__uuid__": "f3840459-1348-4249-92dc-d2faf6967e87@f9941",
  2472. "__expectedType__": "cc.SpriteFrame"
  2473. },
  2474. "_disabledSprite": {
  2475. "__uuid__": "f3840459-1348-4249-92dc-d2faf6967e87@f9941",
  2476. "__expectedType__": "cc.SpriteFrame"
  2477. },
  2478. "_duration": 0.1,
  2479. "_zoomScale": 1.2,
  2480. "_target": {
  2481. "__id__": 94
  2482. },
  2483. "_id": ""
  2484. },
  2485. {
  2486. "__type__": "cc.CompPrefabInfo",
  2487. "fileId": "b5bwss0XVP7av1VlGhoMOe"
  2488. },
  2489. {
  2490. "__type__": "cc.Widget",
  2491. "_name": "",
  2492. "_objFlags": 0,
  2493. "__editorExtras__": {},
  2494. "node": {
  2495. "__id__": 94
  2496. },
  2497. "_enabled": true,
  2498. "__prefab": {
  2499. "__id__": 102
  2500. },
  2501. "_alignFlags": 9,
  2502. "_target": null,
  2503. "_left": -317.90999999999997,
  2504. "_right": 0,
  2505. "_top": -643.423,
  2506. "_bottom": 0,
  2507. "_horizontalCenter": 0,
  2508. "_verticalCenter": 0,
  2509. "_isAbsLeft": true,
  2510. "_isAbsRight": true,
  2511. "_isAbsTop": true,
  2512. "_isAbsBottom": true,
  2513. "_isAbsHorizontalCenter": true,
  2514. "_isAbsVerticalCenter": true,
  2515. "_originalWidth": 0,
  2516. "_originalHeight": 0,
  2517. "_alignMode": 2,
  2518. "_lockFlags": 0,
  2519. "_id": ""
  2520. },
  2521. {
  2522. "__type__": "cc.CompPrefabInfo",
  2523. "fileId": "76KOEgBOZBbbgku+Tfx1ex"
  2524. },
  2525. {
  2526. "__type__": "cc.PrefabInfo",
  2527. "root": {
  2528. "__id__": 1
  2529. },
  2530. "asset": {
  2531. "__id__": 0
  2532. },
  2533. "fileId": "11ijl9nm5N9oiLTawa8GlP",
  2534. "instance": null,
  2535. "targetOverrides": null,
  2536. "nestedPrefabInstanceRoots": null
  2537. },
  2538. {
  2539. "__type__": "cc.UITransform",
  2540. "_name": "",
  2541. "_objFlags": 0,
  2542. "__editorExtras__": {},
  2543. "node": {
  2544. "__id__": 1
  2545. },
  2546. "_enabled": true,
  2547. "__prefab": {
  2548. "__id__": 105
  2549. },
  2550. "_contentSize": {
  2551. "__type__": "cc.Size",
  2552. "width": 100,
  2553. "height": 100
  2554. },
  2555. "_anchorPoint": {
  2556. "__type__": "cc.Vec2",
  2557. "x": 0.5,
  2558. "y": 0.5
  2559. },
  2560. "_id": ""
  2561. },
  2562. {
  2563. "__type__": "cc.CompPrefabInfo",
  2564. "fileId": "d8CigMRgFABIz+Si8jXysI"
  2565. },
  2566. {
  2567. "__type__": "5702eViR8lKB4ddlFc/Hlk6",
  2568. "_name": "",
  2569. "_objFlags": 0,
  2570. "__editorExtras__": {},
  2571. "node": {
  2572. "__id__": 1
  2573. },
  2574. "_enabled": true,
  2575. "__prefab": {
  2576. "__id__": 107
  2577. },
  2578. "settingsBtn": null,
  2579. "startBtn": null,
  2580. "inforBtn": null,
  2581. "rankBtn": null,
  2582. "signBtn": null,
  2583. "_id": ""
  2584. },
  2585. {
  2586. "__type__": "cc.CompPrefabInfo",
  2587. "fileId": "9dajzyTYlAcbZDKbjmAfOb"
  2588. },
  2589. {
  2590. "__type__": "cc.Widget",
  2591. "_name": "",
  2592. "_objFlags": 0,
  2593. "__editorExtras__": {},
  2594. "node": {
  2595. "__id__": 1
  2596. },
  2597. "_enabled": true,
  2598. "__prefab": {
  2599. "__id__": 109
  2600. },
  2601. "_alignFlags": 45,
  2602. "_target": null,
  2603. "_left": 325,
  2604. "_right": 325,
  2605. "_top": 767,
  2606. "_bottom": 767,
  2607. "_horizontalCenter": 0,
  2608. "_verticalCenter": 0,
  2609. "_isAbsLeft": true,
  2610. "_isAbsRight": true,
  2611. "_isAbsTop": true,
  2612. "_isAbsBottom": true,
  2613. "_isAbsHorizontalCenter": true,
  2614. "_isAbsVerticalCenter": true,
  2615. "_originalWidth": 100,
  2616. "_originalHeight": 100,
  2617. "_alignMode": 1,
  2618. "_lockFlags": 0,
  2619. "_id": ""
  2620. },
  2621. {
  2622. "__type__": "cc.CompPrefabInfo",
  2623. "fileId": "45R5XvC+JOdL0cXKaK4f+7"
  2624. },
  2625. {
  2626. "__type__": "cc.PrefabInfo",
  2627. "root": {
  2628. "__id__": 1
  2629. },
  2630. "asset": {
  2631. "__id__": 0
  2632. },
  2633. "fileId": "04kZ0eS0VOlrQocFRAH1Vt",
  2634. "instance": null,
  2635. "targetOverrides": null
  2636. }
  2637. ]