Hall.prefab 45 KB

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