Interface_Activitys.prefab 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "Interface_Activitys",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 11
  28. },
  29. {
  30. "__id__": 15
  31. },
  32. {
  33. "__id__": 19
  34. },
  35. {
  36. "__id__": 25
  37. },
  38. {
  39. "__id__": 33
  40. },
  41. {
  42. "__id__": 41
  43. },
  44. {
  45. "__id__": 49
  46. }
  47. ],
  48. "_active": true,
  49. "_components": [
  50. {
  51. "__id__": 57
  52. },
  53. {
  54. "__id__": 58
  55. }
  56. ],
  57. "_prefab": {
  58. "__id__": 59
  59. },
  60. "_opacity": 255,
  61. "_color": {
  62. "__type__": "cc.Color",
  63. "r": 255,
  64. "g": 255,
  65. "b": 255,
  66. "a": 255
  67. },
  68. "_contentSize": {
  69. "__type__": "cc.Size",
  70. "width": 720,
  71. "height": 1280
  72. },
  73. "_anchorPoint": {
  74. "__type__": "cc.Vec2",
  75. "x": 0.5,
  76. "y": 0.5
  77. },
  78. "_trs": {
  79. "__type__": "TypedArray",
  80. "ctor": "Float64Array",
  81. "array": [
  82. 0,
  83. 0,
  84. 0,
  85. 0,
  86. 0,
  87. 0,
  88. 1,
  89. 1,
  90. 1,
  91. 1
  92. ]
  93. },
  94. "_eulerAngles": {
  95. "__type__": "cc.Vec3",
  96. "x": 0,
  97. "y": 0,
  98. "z": 0
  99. },
  100. "_skewX": 0,
  101. "_skewY": 0,
  102. "_is3DNode": false,
  103. "_groupIndex": 0,
  104. "groupIndex": 0,
  105. "_id": ""
  106. },
  107. {
  108. "__type__": "cc.Node",
  109. "_name": "Mesh",
  110. "_objFlags": 0,
  111. "_parent": {
  112. "__id__": 1
  113. },
  114. "_children": [],
  115. "_active": true,
  116. "_components": [
  117. {
  118. "__id__": 3
  119. },
  120. {
  121. "__id__": 4
  122. },
  123. {
  124. "__id__": 5
  125. }
  126. ],
  127. "_prefab": {
  128. "__id__": 6
  129. },
  130. "_opacity": 166,
  131. "_color": {
  132. "__type__": "cc.Color",
  133. "r": 43,
  134. "g": 43,
  135. "b": 43,
  136. "a": 255
  137. },
  138. "_contentSize": {
  139. "__type__": "cc.Size",
  140. "width": 720,
  141. "height": 1280
  142. },
  143. "_anchorPoint": {
  144. "__type__": "cc.Vec2",
  145. "x": 0.5,
  146. "y": 0.5
  147. },
  148. "_trs": {
  149. "__type__": "TypedArray",
  150. "ctor": "Float64Array",
  151. "array": [
  152. 0,
  153. 0,
  154. 0,
  155. 0,
  156. 0,
  157. 0,
  158. 1,
  159. 1,
  160. 1,
  161. 1
  162. ]
  163. },
  164. "_eulerAngles": {
  165. "__type__": "cc.Vec3",
  166. "x": 0,
  167. "y": 0,
  168. "z": 0
  169. },
  170. "_skewX": 0,
  171. "_skewY": 0,
  172. "_is3DNode": false,
  173. "_groupIndex": 0,
  174. "groupIndex": 0,
  175. "_id": ""
  176. },
  177. {
  178. "__type__": "cc.Sprite",
  179. "_name": "",
  180. "_objFlags": 0,
  181. "node": {
  182. "__id__": 2
  183. },
  184. "_enabled": true,
  185. "_materials": [
  186. {
  187. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  188. }
  189. ],
  190. "_srcBlendFactor": 770,
  191. "_dstBlendFactor": 771,
  192. "_spriteFrame": {
  193. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  194. },
  195. "_type": 0,
  196. "_sizeMode": 0,
  197. "_fillType": 0,
  198. "_fillCenter": {
  199. "__type__": "cc.Vec2",
  200. "x": 0,
  201. "y": 0
  202. },
  203. "_fillStart": 0,
  204. "_fillRange": 0,
  205. "_isTrimmedMode": true,
  206. "_atlas": null,
  207. "_id": ""
  208. },
  209. {
  210. "__type__": "cc.Widget",
  211. "_name": "",
  212. "_objFlags": 0,
  213. "node": {
  214. "__id__": 2
  215. },
  216. "_enabled": true,
  217. "alignMode": 1,
  218. "_target": {
  219. "__id__": 1
  220. },
  221. "_alignFlags": 45,
  222. "_left": 0,
  223. "_right": 0,
  224. "_top": 0,
  225. "_bottom": 0,
  226. "_verticalCenter": 0,
  227. "_horizontalCenter": 0,
  228. "_isAbsLeft": true,
  229. "_isAbsRight": true,
  230. "_isAbsTop": true,
  231. "_isAbsBottom": true,
  232. "_isAbsHorizontalCenter": true,
  233. "_isAbsVerticalCenter": true,
  234. "_originalWidth": 720,
  235. "_originalHeight": 100,
  236. "_id": ""
  237. },
  238. {
  239. "__type__": "cc.BlockInputEvents",
  240. "_name": "",
  241. "_objFlags": 0,
  242. "node": {
  243. "__id__": 2
  244. },
  245. "_enabled": true,
  246. "_id": ""
  247. },
  248. {
  249. "__type__": "cc.PrefabInfo",
  250. "root": {
  251. "__id__": 1
  252. },
  253. "asset": {
  254. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  255. },
  256. "fileId": "87wgRux4BDJYK36hTIVSWJ",
  257. "sync": false
  258. },
  259. {
  260. "__type__": "cc.Node",
  261. "_name": "Bg_Botton",
  262. "_objFlags": 0,
  263. "_parent": {
  264. "__id__": 1
  265. },
  266. "_children": [],
  267. "_active": true,
  268. "_components": [
  269. {
  270. "__id__": 8
  271. },
  272. {
  273. "__id__": 9
  274. }
  275. ],
  276. "_prefab": {
  277. "__id__": 10
  278. },
  279. "_opacity": 255,
  280. "_color": {
  281. "__type__": "cc.Color",
  282. "r": 255,
  283. "g": 255,
  284. "b": 255,
  285. "a": 255
  286. },
  287. "_contentSize": {
  288. "__type__": "cc.Size",
  289. "width": 711,
  290. "height": 786
  291. },
  292. "_anchorPoint": {
  293. "__type__": "cc.Vec2",
  294. "x": 0.5,
  295. "y": 0.5
  296. },
  297. "_trs": {
  298. "__type__": "TypedArray",
  299. "ctor": "Float64Array",
  300. "array": [
  301. 0,
  302. -25.024999999999977,
  303. 0,
  304. 0,
  305. 0,
  306. 0,
  307. 1,
  308. 1,
  309. 1,
  310. 1
  311. ]
  312. },
  313. "_eulerAngles": {
  314. "__type__": "cc.Vec3",
  315. "x": 0,
  316. "y": 0,
  317. "z": 0
  318. },
  319. "_skewX": 0,
  320. "_skewY": 0,
  321. "_is3DNode": false,
  322. "_groupIndex": 0,
  323. "groupIndex": 0,
  324. "_id": ""
  325. },
  326. {
  327. "__type__": "cc.Sprite",
  328. "_name": "",
  329. "_objFlags": 0,
  330. "node": {
  331. "__id__": 7
  332. },
  333. "_enabled": true,
  334. "_materials": [
  335. {
  336. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  337. }
  338. ],
  339. "_srcBlendFactor": 770,
  340. "_dstBlendFactor": 771,
  341. "_spriteFrame": {
  342. "__uuid__": "78ce4d72-a886-4a08-9872-5e7ea4437ba6"
  343. },
  344. "_type": 0,
  345. "_sizeMode": 1,
  346. "_fillType": 0,
  347. "_fillCenter": {
  348. "__type__": "cc.Vec2",
  349. "x": 0,
  350. "y": 0
  351. },
  352. "_fillStart": 0,
  353. "_fillRange": 0,
  354. "_isTrimmedMode": true,
  355. "_atlas": null,
  356. "_id": ""
  357. },
  358. {
  359. "__type__": "cc.Widget",
  360. "_name": "",
  361. "_objFlags": 0,
  362. "node": {
  363. "__id__": 7
  364. },
  365. "_enabled": true,
  366. "alignMode": 1,
  367. "_target": {
  368. "__id__": 1
  369. },
  370. "_alignFlags": 20,
  371. "_left": 0,
  372. "_right": 0,
  373. "_top": 0,
  374. "_bottom": 221.97500000000002,
  375. "_verticalCenter": 0,
  376. "_horizontalCenter": 0,
  377. "_isAbsLeft": true,
  378. "_isAbsRight": true,
  379. "_isAbsTop": true,
  380. "_isAbsBottom": true,
  381. "_isAbsHorizontalCenter": true,
  382. "_isAbsVerticalCenter": true,
  383. "_originalWidth": 0,
  384. "_originalHeight": 0,
  385. "_id": ""
  386. },
  387. {
  388. "__type__": "cc.PrefabInfo",
  389. "root": {
  390. "__id__": 1
  391. },
  392. "asset": {
  393. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  394. },
  395. "fileId": "f0MJ5Gmh1P/IP8mbwjDfnr",
  396. "sync": false
  397. },
  398. {
  399. "__type__": "cc.Node",
  400. "_name": "Bg_Sprite",
  401. "_objFlags": 0,
  402. "_parent": {
  403. "__id__": 1
  404. },
  405. "_children": [],
  406. "_active": true,
  407. "_components": [
  408. {
  409. "__id__": 12
  410. },
  411. {
  412. "__id__": 13
  413. }
  414. ],
  415. "_prefab": {
  416. "__id__": 14
  417. },
  418. "_opacity": 255,
  419. "_color": {
  420. "__type__": "cc.Color",
  421. "r": 255,
  422. "g": 255,
  423. "b": 255,
  424. "a": 255
  425. },
  426. "_contentSize": {
  427. "__type__": "cc.Size",
  428. "width": 584,
  429. "height": 247
  430. },
  431. "_anchorPoint": {
  432. "__type__": "cc.Vec2",
  433. "x": 0.5,
  434. "y": 0.5
  435. },
  436. "_trs": {
  437. "__type__": "TypedArray",
  438. "ctor": "Float64Array",
  439. "array": [
  440. 0,
  441. 225.224,
  442. 0,
  443. 0,
  444. 0,
  445. 0,
  446. 1,
  447. 1,
  448. 1,
  449. 1
  450. ]
  451. },
  452. "_eulerAngles": {
  453. "__type__": "cc.Vec3",
  454. "x": 0,
  455. "y": 0,
  456. "z": 0
  457. },
  458. "_skewX": 0,
  459. "_skewY": 0,
  460. "_is3DNode": false,
  461. "_groupIndex": 0,
  462. "groupIndex": 0,
  463. "_id": ""
  464. },
  465. {
  466. "__type__": "cc.Sprite",
  467. "_name": "",
  468. "_objFlags": 0,
  469. "node": {
  470. "__id__": 11
  471. },
  472. "_enabled": true,
  473. "_materials": [
  474. {
  475. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  476. }
  477. ],
  478. "_srcBlendFactor": 770,
  479. "_dstBlendFactor": 771,
  480. "_spriteFrame": {
  481. "__uuid__": "520f1b23-2e71-4af2-93cd-38910b8b3a9b"
  482. },
  483. "_type": 0,
  484. "_sizeMode": 1,
  485. "_fillType": 0,
  486. "_fillCenter": {
  487. "__type__": "cc.Vec2",
  488. "x": 0,
  489. "y": 0
  490. },
  491. "_fillStart": 0,
  492. "_fillRange": 0,
  493. "_isTrimmedMode": true,
  494. "_atlas": null,
  495. "_id": ""
  496. },
  497. {
  498. "__type__": "cc.Widget",
  499. "_name": "",
  500. "_objFlags": 0,
  501. "node": {
  502. "__id__": 11
  503. },
  504. "_enabled": true,
  505. "alignMode": 1,
  506. "_target": {
  507. "__id__": 1
  508. },
  509. "_alignFlags": 17,
  510. "_left": 0,
  511. "_right": 0,
  512. "_top": 291.276,
  513. "_bottom": 0,
  514. "_verticalCenter": 0,
  515. "_horizontalCenter": 0,
  516. "_isAbsLeft": true,
  517. "_isAbsRight": true,
  518. "_isAbsTop": true,
  519. "_isAbsBottom": true,
  520. "_isAbsHorizontalCenter": true,
  521. "_isAbsVerticalCenter": true,
  522. "_originalWidth": 0,
  523. "_originalHeight": 0,
  524. "_id": ""
  525. },
  526. {
  527. "__type__": "cc.PrefabInfo",
  528. "root": {
  529. "__id__": 1
  530. },
  531. "asset": {
  532. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  533. },
  534. "fileId": "21LIiHZItASapbFbUDpaRB",
  535. "sync": false
  536. },
  537. {
  538. "__type__": "cc.Node",
  539. "_name": "Bg_Top",
  540. "_objFlags": 0,
  541. "_parent": {
  542. "__id__": 1
  543. },
  544. "_children": [],
  545. "_active": true,
  546. "_components": [
  547. {
  548. "__id__": 16
  549. },
  550. {
  551. "__id__": 17
  552. }
  553. ],
  554. "_prefab": {
  555. "__id__": 18
  556. },
  557. "_opacity": 255,
  558. "_color": {
  559. "__type__": "cc.Color",
  560. "r": 255,
  561. "g": 255,
  562. "b": 255,
  563. "a": 255
  564. },
  565. "_contentSize": {
  566. "__type__": "cc.Size",
  567. "width": 574,
  568. "height": 240
  569. },
  570. "_anchorPoint": {
  571. "__type__": "cc.Vec2",
  572. "x": 0.5,
  573. "y": 0.5
  574. },
  575. "_trs": {
  576. "__type__": "TypedArray",
  577. "ctor": "Float64Array",
  578. "array": [
  579. 0,
  580. 443.62200000000007,
  581. 0,
  582. 0,
  583. 0,
  584. 0,
  585. 1,
  586. 1,
  587. 1,
  588. 1
  589. ]
  590. },
  591. "_eulerAngles": {
  592. "__type__": "cc.Vec3",
  593. "x": 0,
  594. "y": 0,
  595. "z": 0
  596. },
  597. "_skewX": 0,
  598. "_skewY": 0,
  599. "_is3DNode": false,
  600. "_groupIndex": 0,
  601. "groupIndex": 0,
  602. "_id": ""
  603. },
  604. {
  605. "__type__": "cc.Sprite",
  606. "_name": "",
  607. "_objFlags": 0,
  608. "node": {
  609. "__id__": 15
  610. },
  611. "_enabled": true,
  612. "_materials": [
  613. {
  614. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  615. }
  616. ],
  617. "_srcBlendFactor": 770,
  618. "_dstBlendFactor": 771,
  619. "_spriteFrame": {
  620. "__uuid__": "8071fd11-57d7-4253-8a7f-b4c5f2334882"
  621. },
  622. "_type": 0,
  623. "_sizeMode": 1,
  624. "_fillType": 0,
  625. "_fillCenter": {
  626. "__type__": "cc.Vec2",
  627. "x": 0,
  628. "y": 0
  629. },
  630. "_fillStart": 0,
  631. "_fillRange": 0,
  632. "_isTrimmedMode": true,
  633. "_atlas": null,
  634. "_id": ""
  635. },
  636. {
  637. "__type__": "cc.Widget",
  638. "_name": "",
  639. "_objFlags": 0,
  640. "node": {
  641. "__id__": 15
  642. },
  643. "_enabled": true,
  644. "alignMode": 1,
  645. "_target": {
  646. "__id__": 1
  647. },
  648. "_alignFlags": 17,
  649. "_left": 73,
  650. "_right": 73,
  651. "_top": 76.37799999999993,
  652. "_bottom": 0,
  653. "_verticalCenter": 0,
  654. "_horizontalCenter": 0,
  655. "_isAbsLeft": true,
  656. "_isAbsRight": true,
  657. "_isAbsTop": true,
  658. "_isAbsBottom": true,
  659. "_isAbsHorizontalCenter": true,
  660. "_isAbsVerticalCenter": true,
  661. "_originalWidth": 574,
  662. "_originalHeight": 0,
  663. "_id": ""
  664. },
  665. {
  666. "__type__": "cc.PrefabInfo",
  667. "root": {
  668. "__id__": 1
  669. },
  670. "asset": {
  671. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  672. },
  673. "fileId": "fe014hax5CfYTjLxHfk0XC",
  674. "sync": false
  675. },
  676. {
  677. "__type__": "cc.Node",
  678. "_name": "Text_Tile",
  679. "_objFlags": 0,
  680. "_parent": {
  681. "__id__": 1
  682. },
  683. "_children": [
  684. {
  685. "__id__": 20
  686. }
  687. ],
  688. "_active": true,
  689. "_components": [
  690. {
  691. "__id__": 23
  692. }
  693. ],
  694. "_prefab": {
  695. "__id__": 24
  696. },
  697. "_opacity": 255,
  698. "_color": {
  699. "__type__": "cc.Color",
  700. "r": 189,
  701. "g": 120,
  702. "b": 225,
  703. "a": 255
  704. },
  705. "_contentSize": {
  706. "__type__": "cc.Size",
  707. "width": 477.87,
  708. "height": 63
  709. },
  710. "_anchorPoint": {
  711. "__type__": "cc.Vec2",
  712. "x": 0.5,
  713. "y": 0.5
  714. },
  715. "_trs": {
  716. "__type__": "TypedArray",
  717. "ctor": "Float64Array",
  718. "array": [
  719. -11.676,
  720. 43.996,
  721. 0,
  722. 0,
  723. 0,
  724. 0,
  725. 1,
  726. 1,
  727. 1,
  728. 1
  729. ]
  730. },
  731. "_eulerAngles": {
  732. "__type__": "cc.Vec3",
  733. "x": 0,
  734. "y": 0,
  735. "z": 0
  736. },
  737. "_skewX": 0,
  738. "_skewY": 0,
  739. "_is3DNode": false,
  740. "_groupIndex": 0,
  741. "groupIndex": 0,
  742. "_id": ""
  743. },
  744. {
  745. "__type__": "cc.Node",
  746. "_name": "Text1",
  747. "_objFlags": 0,
  748. "_parent": {
  749. "__id__": 19
  750. },
  751. "_children": [],
  752. "_active": true,
  753. "_components": [
  754. {
  755. "__id__": 21
  756. }
  757. ],
  758. "_prefab": {
  759. "__id__": 22
  760. },
  761. "_opacity": 255,
  762. "_color": {
  763. "__type__": "cc.Color",
  764. "r": 255,
  765. "g": 255,
  766. "b": 255,
  767. "a": 255
  768. },
  769. "_contentSize": {
  770. "__type__": "cc.Size",
  771. "width": 461.34,
  772. "height": 183.18
  773. },
  774. "_anchorPoint": {
  775. "__type__": "cc.Vec2",
  776. "x": 0.5,
  777. "y": 0.5
  778. },
  779. "_trs": {
  780. "__type__": "TypedArray",
  781. "ctor": "Float64Array",
  782. "array": [
  783. 9.787,
  784. -114.178,
  785. 0,
  786. 0,
  787. 0,
  788. 0,
  789. 1,
  790. 1,
  791. 1,
  792. 1
  793. ]
  794. },
  795. "_eulerAngles": {
  796. "__type__": "cc.Vec3",
  797. "x": 0,
  798. "y": 0,
  799. "z": 0
  800. },
  801. "_skewX": 0,
  802. "_skewY": 0,
  803. "_is3DNode": false,
  804. "_groupIndex": 0,
  805. "groupIndex": 0,
  806. "_id": ""
  807. },
  808. {
  809. "__type__": "cc.Label",
  810. "_name": "",
  811. "_objFlags": 0,
  812. "node": {
  813. "__id__": 20
  814. },
  815. "_enabled": true,
  816. "_materials": [
  817. {
  818. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  819. }
  820. ],
  821. "_srcBlendFactor": 770,
  822. "_dstBlendFactor": 771,
  823. "_string": " 竞技场里来了一位超级厉害的拳击手,\n每个团队都可以对他发起挑战~!凡是在8\n小时内挑战胜利1000次的团队,团队里面\n的每个人都将获得超级丰厚的奖励~",
  824. "_N$string": " 竞技场里来了一位超级厉害的拳击手,\n每个团队都可以对他发起挑战~!凡是在8\n小时内挑战胜利1000次的团队,团队里面\n的每个人都将获得超级丰厚的奖励~",
  825. "_fontSize": 24,
  826. "_lineHeight": 43,
  827. "_enableWrapText": true,
  828. "_N$file": null,
  829. "_isSystemFontUsed": true,
  830. "_spacingX": 0,
  831. "_batchAsBitmap": false,
  832. "_styleFlags": 0,
  833. "_underlineHeight": 0,
  834. "_N$horizontalAlign": 0,
  835. "_N$verticalAlign": 1,
  836. "_N$fontFamily": "Arial",
  837. "_N$overflow": 0,
  838. "_N$cacheMode": 0,
  839. "_id": ""
  840. },
  841. {
  842. "__type__": "cc.PrefabInfo",
  843. "root": {
  844. "__id__": 1
  845. },
  846. "asset": {
  847. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  848. },
  849. "fileId": "16vTWc6wFHdJWU6Px4VnnM",
  850. "sync": false
  851. },
  852. {
  853. "__type__": "cc.Label",
  854. "_name": "",
  855. "_objFlags": 0,
  856. "node": {
  857. "__id__": 19
  858. },
  859. "_enabled": true,
  860. "_materials": [
  861. {
  862. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  863. }
  864. ],
  865. "_srcBlendFactor": 770,
  866. "_dstBlendFactor": 771,
  867. "_string": "~世界BOSS竞标赛开始啦~",
  868. "_N$string": "~世界BOSS竞标赛开始啦~",
  869. "_fontSize": 40,
  870. "_lineHeight": 50,
  871. "_enableWrapText": true,
  872. "_N$file": null,
  873. "_isSystemFontUsed": true,
  874. "_spacingX": 0,
  875. "_batchAsBitmap": false,
  876. "_styleFlags": 0,
  877. "_underlineHeight": 0,
  878. "_N$horizontalAlign": 0,
  879. "_N$verticalAlign": 1,
  880. "_N$fontFamily": "Arial",
  881. "_N$overflow": 0,
  882. "_N$cacheMode": 0,
  883. "_id": ""
  884. },
  885. {
  886. "__type__": "cc.PrefabInfo",
  887. "root": {
  888. "__id__": 1
  889. },
  890. "asset": {
  891. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  892. },
  893. "fileId": "462ACm3SBP9L1w9rIpZJHR",
  894. "sync": false
  895. },
  896. {
  897. "__type__": "cc.Node",
  898. "_name": "Icon_mnt",
  899. "_objFlags": 0,
  900. "_parent": {
  901. "__id__": 1
  902. },
  903. "_children": [
  904. {
  905. "__id__": 26
  906. }
  907. ],
  908. "_active": true,
  909. "_components": [
  910. {
  911. "__id__": 30
  912. },
  913. {
  914. "__id__": 31
  915. }
  916. ],
  917. "_prefab": {
  918. "__id__": 32
  919. },
  920. "_opacity": 255,
  921. "_color": {
  922. "__type__": "cc.Color",
  923. "r": 255,
  924. "g": 255,
  925. "b": 255,
  926. "a": 255
  927. },
  928. "_contentSize": {
  929. "__type__": "cc.Size",
  930. "width": 67,
  931. "height": 61
  932. },
  933. "_anchorPoint": {
  934. "__type__": "cc.Vec2",
  935. "x": 0.5,
  936. "y": 0.5
  937. },
  938. "_trs": {
  939. "__type__": "TypedArray",
  940. "ctor": "Float64Array",
  941. "array": [
  942. -158.439,
  943. -316.878,
  944. 0,
  945. 0,
  946. 0,
  947. 0,
  948. 1,
  949. 1,
  950. 1,
  951. 1
  952. ]
  953. },
  954. "_eulerAngles": {
  955. "__type__": "cc.Vec3",
  956. "x": 0,
  957. "y": 0,
  958. "z": 0
  959. },
  960. "_skewX": 0,
  961. "_skewY": 0,
  962. "_is3DNode": false,
  963. "_groupIndex": 0,
  964. "groupIndex": 0,
  965. "_id": ""
  966. },
  967. {
  968. "__type__": "cc.Node",
  969. "_name": "num",
  970. "_objFlags": 0,
  971. "_parent": {
  972. "__id__": 25
  973. },
  974. "_children": [],
  975. "_active": true,
  976. "_components": [
  977. {
  978. "__id__": 27
  979. },
  980. {
  981. "__id__": 28
  982. }
  983. ],
  984. "_prefab": {
  985. "__id__": 29
  986. },
  987. "_opacity": 255,
  988. "_color": {
  989. "__type__": "cc.Color",
  990. "r": 255,
  991. "g": 255,
  992. "b": 255,
  993. "a": 255
  994. },
  995. "_contentSize": {
  996. "__type__": "cc.Size",
  997. "width": 24.29,
  998. "height": 50.4
  999. },
  1000. "_anchorPoint": {
  1001. "__type__": "cc.Vec2",
  1002. "x": 0.5,
  1003. "y": 0.5
  1004. },
  1005. "_trs": {
  1006. "__type__": "TypedArray",
  1007. "ctor": "Float64Array",
  1008. "array": [
  1009. 0,
  1010. -54.464,
  1011. 0,
  1012. 0,
  1013. 0,
  1014. 0,
  1015. 1,
  1016. 1,
  1017. 1,
  1018. 1
  1019. ]
  1020. },
  1021. "_eulerAngles": {
  1022. "__type__": "cc.Vec3",
  1023. "x": 0,
  1024. "y": 0,
  1025. "z": 0
  1026. },
  1027. "_skewX": 0,
  1028. "_skewY": 0,
  1029. "_is3DNode": false,
  1030. "_groupIndex": 0,
  1031. "groupIndex": 0,
  1032. "_id": ""
  1033. },
  1034. {
  1035. "__type__": "cc.Label",
  1036. "_name": "",
  1037. "_objFlags": 0,
  1038. "node": {
  1039. "__id__": 26
  1040. },
  1041. "_enabled": true,
  1042. "_materials": [
  1043. {
  1044. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1045. }
  1046. ],
  1047. "_srcBlendFactor": 770,
  1048. "_dstBlendFactor": 771,
  1049. "_string": "x1",
  1050. "_N$string": "x1",
  1051. "_fontSize": 23,
  1052. "_lineHeight": 40,
  1053. "_enableWrapText": true,
  1054. "_N$file": null,
  1055. "_isSystemFontUsed": true,
  1056. "_spacingX": 0,
  1057. "_batchAsBitmap": false,
  1058. "_styleFlags": 0,
  1059. "_underlineHeight": 0,
  1060. "_N$horizontalAlign": 1,
  1061. "_N$verticalAlign": 1,
  1062. "_N$fontFamily": "Arial",
  1063. "_N$overflow": 0,
  1064. "_N$cacheMode": 0,
  1065. "_id": ""
  1066. },
  1067. {
  1068. "__type__": "cc.Widget",
  1069. "_name": "",
  1070. "_objFlags": 0,
  1071. "node": {
  1072. "__id__": 26
  1073. },
  1074. "_enabled": true,
  1075. "alignMode": 1,
  1076. "_target": null,
  1077. "_alignFlags": 20,
  1078. "_left": 0,
  1079. "_right": 0,
  1080. "_top": 0,
  1081. "_bottom": -49.164,
  1082. "_verticalCenter": -54.464,
  1083. "_horizontalCenter": 0,
  1084. "_isAbsLeft": true,
  1085. "_isAbsRight": true,
  1086. "_isAbsTop": true,
  1087. "_isAbsBottom": true,
  1088. "_isAbsHorizontalCenter": true,
  1089. "_isAbsVerticalCenter": true,
  1090. "_originalWidth": 0,
  1091. "_originalHeight": 0,
  1092. "_id": ""
  1093. },
  1094. {
  1095. "__type__": "cc.PrefabInfo",
  1096. "root": {
  1097. "__id__": 1
  1098. },
  1099. "asset": {
  1100. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  1101. },
  1102. "fileId": "88AffRgptONYc8hoOfpWJc",
  1103. "sync": false
  1104. },
  1105. {
  1106. "__type__": "cc.Sprite",
  1107. "_name": "",
  1108. "_objFlags": 0,
  1109. "node": {
  1110. "__id__": 25
  1111. },
  1112. "_enabled": true,
  1113. "_materials": [
  1114. {
  1115. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1116. }
  1117. ],
  1118. "_srcBlendFactor": 770,
  1119. "_dstBlendFactor": 771,
  1120. "_spriteFrame": {
  1121. "__uuid__": "4e8f155a-b99b-4b86-bbb0-b7df5b46005c"
  1122. },
  1123. "_type": 0,
  1124. "_sizeMode": 1,
  1125. "_fillType": 0,
  1126. "_fillCenter": {
  1127. "__type__": "cc.Vec2",
  1128. "x": 0,
  1129. "y": 0
  1130. },
  1131. "_fillStart": 0,
  1132. "_fillRange": 0,
  1133. "_isTrimmedMode": true,
  1134. "_atlas": null,
  1135. "_id": ""
  1136. },
  1137. {
  1138. "__type__": "cc.Widget",
  1139. "_name": "",
  1140. "_objFlags": 0,
  1141. "node": {
  1142. "__id__": 25
  1143. },
  1144. "_enabled": true,
  1145. "alignMode": 1,
  1146. "_target": null,
  1147. "_alignFlags": 0,
  1148. "_left": 0,
  1149. "_right": 0,
  1150. "_top": 0,
  1151. "_bottom": 0,
  1152. "_verticalCenter": 0,
  1153. "_horizontalCenter": 0,
  1154. "_isAbsLeft": true,
  1155. "_isAbsRight": true,
  1156. "_isAbsTop": true,
  1157. "_isAbsBottom": true,
  1158. "_isAbsHorizontalCenter": true,
  1159. "_isAbsVerticalCenter": true,
  1160. "_originalWidth": 0,
  1161. "_originalHeight": 0,
  1162. "_id": ""
  1163. },
  1164. {
  1165. "__type__": "cc.PrefabInfo",
  1166. "root": {
  1167. "__id__": 1
  1168. },
  1169. "asset": {
  1170. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  1171. },
  1172. "fileId": "917c8PU69FkqstaBmVNyWl",
  1173. "sync": false
  1174. },
  1175. {
  1176. "__type__": "cc.Node",
  1177. "_name": "Icon_mnw",
  1178. "_objFlags": 0,
  1179. "_parent": {
  1180. "__id__": 1
  1181. },
  1182. "_children": [
  1183. {
  1184. "__id__": 34
  1185. }
  1186. ],
  1187. "_active": true,
  1188. "_components": [
  1189. {
  1190. "__id__": 38
  1191. },
  1192. {
  1193. "__id__": 39
  1194. }
  1195. ],
  1196. "_prefab": {
  1197. "__id__": 40
  1198. },
  1199. "_opacity": 255,
  1200. "_color": {
  1201. "__type__": "cc.Color",
  1202. "r": 255,
  1203. "g": 255,
  1204. "b": 255,
  1205. "a": 255
  1206. },
  1207. "_contentSize": {
  1208. "__type__": "cc.Size",
  1209. "width": 82,
  1210. "height": 83
  1211. },
  1212. "_anchorPoint": {
  1213. "__type__": "cc.Vec2",
  1214. "x": 0.5,
  1215. "y": 0.5
  1216. },
  1217. "_trs": {
  1218. "__type__": "TypedArray",
  1219. "ctor": "Float64Array",
  1220. "array": [
  1221. -57.434,
  1222. -315.888,
  1223. 0,
  1224. 0,
  1225. 0,
  1226. 0,
  1227. 1,
  1228. 1,
  1229. 1,
  1230. 1
  1231. ]
  1232. },
  1233. "_eulerAngles": {
  1234. "__type__": "cc.Vec3",
  1235. "x": 0,
  1236. "y": 0,
  1237. "z": 0
  1238. },
  1239. "_skewX": 0,
  1240. "_skewY": 0,
  1241. "_is3DNode": false,
  1242. "_groupIndex": 0,
  1243. "groupIndex": 0,
  1244. "_id": ""
  1245. },
  1246. {
  1247. "__type__": "cc.Node",
  1248. "_name": "num",
  1249. "_objFlags": 0,
  1250. "_parent": {
  1251. "__id__": 33
  1252. },
  1253. "_children": [],
  1254. "_active": true,
  1255. "_components": [
  1256. {
  1257. "__id__": 35
  1258. },
  1259. {
  1260. "__id__": 36
  1261. }
  1262. ],
  1263. "_prefab": {
  1264. "__id__": 37
  1265. },
  1266. "_opacity": 255,
  1267. "_color": {
  1268. "__type__": "cc.Color",
  1269. "r": 255,
  1270. "g": 255,
  1271. "b": 255,
  1272. "a": 255
  1273. },
  1274. "_contentSize": {
  1275. "__type__": "cc.Size",
  1276. "width": 24.29,
  1277. "height": 50.4
  1278. },
  1279. "_anchorPoint": {
  1280. "__type__": "cc.Vec2",
  1281. "x": 0.5,
  1282. "y": 0.5
  1283. },
  1284. "_trs": {
  1285. "__type__": "TypedArray",
  1286. "ctor": "Float64Array",
  1287. "array": [
  1288. 0,
  1289. -54.464,
  1290. 0,
  1291. 0,
  1292. 0,
  1293. 0,
  1294. 1,
  1295. 1,
  1296. 1,
  1297. 1
  1298. ]
  1299. },
  1300. "_eulerAngles": {
  1301. "__type__": "cc.Vec3",
  1302. "x": 0,
  1303. "y": 0,
  1304. "z": 0
  1305. },
  1306. "_skewX": 0,
  1307. "_skewY": 0,
  1308. "_is3DNode": false,
  1309. "_groupIndex": 0,
  1310. "groupIndex": 0,
  1311. "_id": ""
  1312. },
  1313. {
  1314. "__type__": "cc.Label",
  1315. "_name": "",
  1316. "_objFlags": 0,
  1317. "node": {
  1318. "__id__": 34
  1319. },
  1320. "_enabled": true,
  1321. "_materials": [
  1322. {
  1323. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1324. }
  1325. ],
  1326. "_srcBlendFactor": 770,
  1327. "_dstBlendFactor": 771,
  1328. "_string": "x1",
  1329. "_N$string": "x1",
  1330. "_fontSize": 23,
  1331. "_lineHeight": 40,
  1332. "_enableWrapText": true,
  1333. "_N$file": null,
  1334. "_isSystemFontUsed": true,
  1335. "_spacingX": 0,
  1336. "_batchAsBitmap": false,
  1337. "_styleFlags": 0,
  1338. "_underlineHeight": 0,
  1339. "_N$horizontalAlign": 1,
  1340. "_N$verticalAlign": 1,
  1341. "_N$fontFamily": "Arial",
  1342. "_N$overflow": 0,
  1343. "_N$cacheMode": 0,
  1344. "_id": ""
  1345. },
  1346. {
  1347. "__type__": "cc.Widget",
  1348. "_name": "",
  1349. "_objFlags": 0,
  1350. "node": {
  1351. "__id__": 34
  1352. },
  1353. "_enabled": true,
  1354. "alignMode": 1,
  1355. "_target": null,
  1356. "_alignFlags": 20,
  1357. "_left": 0,
  1358. "_right": 0,
  1359. "_top": 0,
  1360. "_bottom": -38.164,
  1361. "_verticalCenter": -54.464,
  1362. "_horizontalCenter": 0,
  1363. "_isAbsLeft": true,
  1364. "_isAbsRight": true,
  1365. "_isAbsTop": true,
  1366. "_isAbsBottom": true,
  1367. "_isAbsHorizontalCenter": true,
  1368. "_isAbsVerticalCenter": true,
  1369. "_originalWidth": 0,
  1370. "_originalHeight": 0,
  1371. "_id": ""
  1372. },
  1373. {
  1374. "__type__": "cc.PrefabInfo",
  1375. "root": {
  1376. "__id__": 1
  1377. },
  1378. "asset": {
  1379. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  1380. },
  1381. "fileId": "63aF6XldpIAbiA1VnFk/F1",
  1382. "sync": false
  1383. },
  1384. {
  1385. "__type__": "cc.Sprite",
  1386. "_name": "",
  1387. "_objFlags": 0,
  1388. "node": {
  1389. "__id__": 33
  1390. },
  1391. "_enabled": true,
  1392. "_materials": [
  1393. {
  1394. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1395. }
  1396. ],
  1397. "_srcBlendFactor": 770,
  1398. "_dstBlendFactor": 771,
  1399. "_spriteFrame": {
  1400. "__uuid__": "fdc0fff7-69ac-4d05-8794-5f07392dcb0f"
  1401. },
  1402. "_type": 0,
  1403. "_sizeMode": 1,
  1404. "_fillType": 0,
  1405. "_fillCenter": {
  1406. "__type__": "cc.Vec2",
  1407. "x": 0,
  1408. "y": 0
  1409. },
  1410. "_fillStart": 0,
  1411. "_fillRange": 0,
  1412. "_isTrimmedMode": true,
  1413. "_atlas": null,
  1414. "_id": ""
  1415. },
  1416. {
  1417. "__type__": "cc.Widget",
  1418. "_name": "",
  1419. "_objFlags": 0,
  1420. "node": {
  1421. "__id__": 33
  1422. },
  1423. "_enabled": true,
  1424. "alignMode": 1,
  1425. "_target": null,
  1426. "_alignFlags": 0,
  1427. "_left": 0,
  1428. "_right": 0,
  1429. "_top": 0,
  1430. "_bottom": 0,
  1431. "_verticalCenter": 0,
  1432. "_horizontalCenter": 0,
  1433. "_isAbsLeft": true,
  1434. "_isAbsRight": true,
  1435. "_isAbsTop": true,
  1436. "_isAbsBottom": true,
  1437. "_isAbsHorizontalCenter": true,
  1438. "_isAbsVerticalCenter": true,
  1439. "_originalWidth": 0,
  1440. "_originalHeight": 0,
  1441. "_id": ""
  1442. },
  1443. {
  1444. "__type__": "cc.PrefabInfo",
  1445. "root": {
  1446. "__id__": 1
  1447. },
  1448. "asset": {
  1449. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  1450. },
  1451. "fileId": "8flFn5Y/NLDoygHiA6U1ZJ",
  1452. "sync": false
  1453. },
  1454. {
  1455. "__type__": "cc.Node",
  1456. "_name": "Icon_bpb",
  1457. "_objFlags": 0,
  1458. "_parent": {
  1459. "__id__": 1
  1460. },
  1461. "_children": [
  1462. {
  1463. "__id__": 42
  1464. }
  1465. ],
  1466. "_active": true,
  1467. "_components": [
  1468. {
  1469. "__id__": 46
  1470. },
  1471. {
  1472. "__id__": 47
  1473. }
  1474. ],
  1475. "_prefab": {
  1476. "__id__": 48
  1477. },
  1478. "_opacity": 255,
  1479. "_color": {
  1480. "__type__": "cc.Color",
  1481. "r": 255,
  1482. "g": 255,
  1483. "b": 255,
  1484. "a": 255
  1485. },
  1486. "_contentSize": {
  1487. "__type__": "cc.Size",
  1488. "width": 69,
  1489. "height": 69
  1490. },
  1491. "_anchorPoint": {
  1492. "__type__": "cc.Vec2",
  1493. "x": 0.5,
  1494. "y": 0.5
  1495. },
  1496. "_trs": {
  1497. "__type__": "TypedArray",
  1498. "ctor": "Float64Array",
  1499. "array": [
  1500. 44.616,
  1501. -316.667,
  1502. 0,
  1503. 0,
  1504. 0,
  1505. 0,
  1506. 1,
  1507. 1,
  1508. 1,
  1509. 1
  1510. ]
  1511. },
  1512. "_eulerAngles": {
  1513. "__type__": "cc.Vec3",
  1514. "x": 0,
  1515. "y": 0,
  1516. "z": 0
  1517. },
  1518. "_skewX": 0,
  1519. "_skewY": 0,
  1520. "_is3DNode": false,
  1521. "_groupIndex": 0,
  1522. "groupIndex": 0,
  1523. "_id": ""
  1524. },
  1525. {
  1526. "__type__": "cc.Node",
  1527. "_name": "num",
  1528. "_objFlags": 0,
  1529. "_parent": {
  1530. "__id__": 41
  1531. },
  1532. "_children": [],
  1533. "_active": true,
  1534. "_components": [
  1535. {
  1536. "__id__": 43
  1537. },
  1538. {
  1539. "__id__": 44
  1540. }
  1541. ],
  1542. "_prefab": {
  1543. "__id__": 45
  1544. },
  1545. "_opacity": 255,
  1546. "_color": {
  1547. "__type__": "cc.Color",
  1548. "r": 255,
  1549. "g": 255,
  1550. "b": 255,
  1551. "a": 255
  1552. },
  1553. "_contentSize": {
  1554. "__type__": "cc.Size",
  1555. "width": 24.29,
  1556. "height": 50.4
  1557. },
  1558. "_anchorPoint": {
  1559. "__type__": "cc.Vec2",
  1560. "x": 0.5,
  1561. "y": 0.5
  1562. },
  1563. "_trs": {
  1564. "__type__": "TypedArray",
  1565. "ctor": "Float64Array",
  1566. "array": [
  1567. 0,
  1568. -54.464,
  1569. 0,
  1570. 0,
  1571. 0,
  1572. 0,
  1573. 1,
  1574. 1,
  1575. 1,
  1576. 1
  1577. ]
  1578. },
  1579. "_eulerAngles": {
  1580. "__type__": "cc.Vec3",
  1581. "x": 0,
  1582. "y": 0,
  1583. "z": 0
  1584. },
  1585. "_skewX": 0,
  1586. "_skewY": 0,
  1587. "_is3DNode": false,
  1588. "_groupIndex": 0,
  1589. "groupIndex": 0,
  1590. "_id": ""
  1591. },
  1592. {
  1593. "__type__": "cc.Label",
  1594. "_name": "",
  1595. "_objFlags": 0,
  1596. "node": {
  1597. "__id__": 42
  1598. },
  1599. "_enabled": true,
  1600. "_materials": [
  1601. {
  1602. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1603. }
  1604. ],
  1605. "_srcBlendFactor": 770,
  1606. "_dstBlendFactor": 771,
  1607. "_string": "x1",
  1608. "_N$string": "x1",
  1609. "_fontSize": 23,
  1610. "_lineHeight": 40,
  1611. "_enableWrapText": true,
  1612. "_N$file": null,
  1613. "_isSystemFontUsed": true,
  1614. "_spacingX": 0,
  1615. "_batchAsBitmap": false,
  1616. "_styleFlags": 0,
  1617. "_underlineHeight": 0,
  1618. "_N$horizontalAlign": 1,
  1619. "_N$verticalAlign": 1,
  1620. "_N$fontFamily": "Arial",
  1621. "_N$overflow": 0,
  1622. "_N$cacheMode": 0,
  1623. "_id": ""
  1624. },
  1625. {
  1626. "__type__": "cc.Widget",
  1627. "_name": "",
  1628. "_objFlags": 0,
  1629. "node": {
  1630. "__id__": 42
  1631. },
  1632. "_enabled": true,
  1633. "alignMode": 1,
  1634. "_target": null,
  1635. "_alignFlags": 20,
  1636. "_left": 0,
  1637. "_right": 0,
  1638. "_top": 0,
  1639. "_bottom": -45.164,
  1640. "_verticalCenter": -54.464,
  1641. "_horizontalCenter": 0,
  1642. "_isAbsLeft": true,
  1643. "_isAbsRight": true,
  1644. "_isAbsTop": true,
  1645. "_isAbsBottom": true,
  1646. "_isAbsHorizontalCenter": true,
  1647. "_isAbsVerticalCenter": true,
  1648. "_originalWidth": 0,
  1649. "_originalHeight": 0,
  1650. "_id": ""
  1651. },
  1652. {
  1653. "__type__": "cc.PrefabInfo",
  1654. "root": {
  1655. "__id__": 1
  1656. },
  1657. "asset": {
  1658. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  1659. },
  1660. "fileId": "85hSWxzgpAX6FlNuPZxAiQ",
  1661. "sync": false
  1662. },
  1663. {
  1664. "__type__": "cc.Sprite",
  1665. "_name": "",
  1666. "_objFlags": 0,
  1667. "node": {
  1668. "__id__": 41
  1669. },
  1670. "_enabled": true,
  1671. "_materials": [
  1672. {
  1673. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1674. }
  1675. ],
  1676. "_srcBlendFactor": 770,
  1677. "_dstBlendFactor": 771,
  1678. "_spriteFrame": {
  1679. "__uuid__": "a5fc7746-c1ac-466c-a705-b9d49a516f96"
  1680. },
  1681. "_type": 0,
  1682. "_sizeMode": 1,
  1683. "_fillType": 0,
  1684. "_fillCenter": {
  1685. "__type__": "cc.Vec2",
  1686. "x": 0,
  1687. "y": 0
  1688. },
  1689. "_fillStart": 0,
  1690. "_fillRange": 0,
  1691. "_isTrimmedMode": true,
  1692. "_atlas": null,
  1693. "_id": ""
  1694. },
  1695. {
  1696. "__type__": "cc.Widget",
  1697. "_name": "",
  1698. "_objFlags": 0,
  1699. "node": {
  1700. "__id__": 41
  1701. },
  1702. "_enabled": true,
  1703. "alignMode": 1,
  1704. "_target": null,
  1705. "_alignFlags": 0,
  1706. "_left": 0,
  1707. "_right": 0,
  1708. "_top": 0,
  1709. "_bottom": 0,
  1710. "_verticalCenter": 0,
  1711. "_horizontalCenter": 0,
  1712. "_isAbsLeft": true,
  1713. "_isAbsRight": true,
  1714. "_isAbsTop": true,
  1715. "_isAbsBottom": true,
  1716. "_isAbsHorizontalCenter": true,
  1717. "_isAbsVerticalCenter": true,
  1718. "_originalWidth": 0,
  1719. "_originalHeight": 0,
  1720. "_id": ""
  1721. },
  1722. {
  1723. "__type__": "cc.PrefabInfo",
  1724. "root": {
  1725. "__id__": 1
  1726. },
  1727. "asset": {
  1728. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  1729. },
  1730. "fileId": "8aSl+t6mVA+JNe+la1sK9W",
  1731. "sync": false
  1732. },
  1733. {
  1734. "__type__": "cc.Node",
  1735. "_name": "Icon_mns",
  1736. "_objFlags": 0,
  1737. "_parent": {
  1738. "__id__": 1
  1739. },
  1740. "_children": [
  1741. {
  1742. "__id__": 50
  1743. }
  1744. ],
  1745. "_active": true,
  1746. "_components": [
  1747. {
  1748. "__id__": 54
  1749. },
  1750. {
  1751. "__id__": 55
  1752. }
  1753. ],
  1754. "_prefab": {
  1755. "__id__": 56
  1756. },
  1757. "_opacity": 255,
  1758. "_color": {
  1759. "__type__": "cc.Color",
  1760. "r": 255,
  1761. "g": 255,
  1762. "b": 255,
  1763. "a": 255
  1764. },
  1765. "_contentSize": {
  1766. "__type__": "cc.Size",
  1767. "width": 70,
  1768. "height": 81
  1769. },
  1770. "_anchorPoint": {
  1771. "__type__": "cc.Vec2",
  1772. "x": 0.5,
  1773. "y": 0.5
  1774. },
  1775. "_trs": {
  1776. "__type__": "TypedArray",
  1777. "ctor": "Float64Array",
  1778. "array": [
  1779. 148.537,
  1780. -317.869,
  1781. 0,
  1782. 0,
  1783. 0,
  1784. 0,
  1785. 1,
  1786. 1,
  1787. 1,
  1788. 1
  1789. ]
  1790. },
  1791. "_eulerAngles": {
  1792. "__type__": "cc.Vec3",
  1793. "x": 0,
  1794. "y": 0,
  1795. "z": 0
  1796. },
  1797. "_skewX": 0,
  1798. "_skewY": 0,
  1799. "_is3DNode": false,
  1800. "_groupIndex": 0,
  1801. "groupIndex": 0,
  1802. "_id": ""
  1803. },
  1804. {
  1805. "__type__": "cc.Node",
  1806. "_name": "num",
  1807. "_objFlags": 0,
  1808. "_parent": {
  1809. "__id__": 49
  1810. },
  1811. "_children": [],
  1812. "_active": true,
  1813. "_components": [
  1814. {
  1815. "__id__": 51
  1816. },
  1817. {
  1818. "__id__": 52
  1819. }
  1820. ],
  1821. "_prefab": {
  1822. "__id__": 53
  1823. },
  1824. "_opacity": 255,
  1825. "_color": {
  1826. "__type__": "cc.Color",
  1827. "r": 255,
  1828. "g": 255,
  1829. "b": 255,
  1830. "a": 255
  1831. },
  1832. "_contentSize": {
  1833. "__type__": "cc.Size",
  1834. "width": 24.29,
  1835. "height": 50.4
  1836. },
  1837. "_anchorPoint": {
  1838. "__type__": "cc.Vec2",
  1839. "x": 0.5,
  1840. "y": 0.5
  1841. },
  1842. "_trs": {
  1843. "__type__": "TypedArray",
  1844. "ctor": "Float64Array",
  1845. "array": [
  1846. 0.99,
  1847. -53.47399999999999,
  1848. 0,
  1849. 0,
  1850. 0,
  1851. 0,
  1852. 1,
  1853. 1,
  1854. 1,
  1855. 1
  1856. ]
  1857. },
  1858. "_eulerAngles": {
  1859. "__type__": "cc.Vec3",
  1860. "x": 0,
  1861. "y": 0,
  1862. "z": 0
  1863. },
  1864. "_skewX": 0,
  1865. "_skewY": 0,
  1866. "_is3DNode": false,
  1867. "_groupIndex": 0,
  1868. "groupIndex": 0,
  1869. "_id": ""
  1870. },
  1871. {
  1872. "__type__": "cc.Label",
  1873. "_name": "",
  1874. "_objFlags": 0,
  1875. "node": {
  1876. "__id__": 50
  1877. },
  1878. "_enabled": true,
  1879. "_materials": [
  1880. {
  1881. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1882. }
  1883. ],
  1884. "_srcBlendFactor": 770,
  1885. "_dstBlendFactor": 771,
  1886. "_string": "x1",
  1887. "_N$string": "x1",
  1888. "_fontSize": 23,
  1889. "_lineHeight": 40,
  1890. "_enableWrapText": true,
  1891. "_N$file": null,
  1892. "_isSystemFontUsed": true,
  1893. "_spacingX": 0,
  1894. "_batchAsBitmap": false,
  1895. "_styleFlags": 0,
  1896. "_underlineHeight": 0,
  1897. "_N$horizontalAlign": 1,
  1898. "_N$verticalAlign": 1,
  1899. "_N$fontFamily": "Arial",
  1900. "_N$overflow": 0,
  1901. "_N$cacheMode": 0,
  1902. "_id": ""
  1903. },
  1904. {
  1905. "__type__": "cc.Widget",
  1906. "_name": "",
  1907. "_objFlags": 0,
  1908. "node": {
  1909. "__id__": 50
  1910. },
  1911. "_enabled": true,
  1912. "alignMode": 1,
  1913. "_target": null,
  1914. "_alignFlags": 20,
  1915. "_left": 0,
  1916. "_right": 0,
  1917. "_top": 0,
  1918. "_bottom": -38.17399999999999,
  1919. "_verticalCenter": -54.464,
  1920. "_horizontalCenter": 0.99,
  1921. "_isAbsLeft": true,
  1922. "_isAbsRight": true,
  1923. "_isAbsTop": true,
  1924. "_isAbsBottom": true,
  1925. "_isAbsHorizontalCenter": true,
  1926. "_isAbsVerticalCenter": true,
  1927. "_originalWidth": 0,
  1928. "_originalHeight": 0,
  1929. "_id": ""
  1930. },
  1931. {
  1932. "__type__": "cc.PrefabInfo",
  1933. "root": {
  1934. "__id__": 1
  1935. },
  1936. "asset": {
  1937. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  1938. },
  1939. "fileId": "0bWPuFp65FbLQPJqe2lhN6",
  1940. "sync": false
  1941. },
  1942. {
  1943. "__type__": "cc.Sprite",
  1944. "_name": "",
  1945. "_objFlags": 0,
  1946. "node": {
  1947. "__id__": 49
  1948. },
  1949. "_enabled": true,
  1950. "_materials": [
  1951. {
  1952. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1953. }
  1954. ],
  1955. "_srcBlendFactor": 770,
  1956. "_dstBlendFactor": 771,
  1957. "_spriteFrame": {
  1958. "__uuid__": "124b0db1-c0b6-424b-82de-8b598c1b1d6b"
  1959. },
  1960. "_type": 0,
  1961. "_sizeMode": 1,
  1962. "_fillType": 0,
  1963. "_fillCenter": {
  1964. "__type__": "cc.Vec2",
  1965. "x": 0,
  1966. "y": 0
  1967. },
  1968. "_fillStart": 0,
  1969. "_fillRange": 0,
  1970. "_isTrimmedMode": true,
  1971. "_atlas": null,
  1972. "_id": ""
  1973. },
  1974. {
  1975. "__type__": "cc.Widget",
  1976. "_name": "",
  1977. "_objFlags": 0,
  1978. "node": {
  1979. "__id__": 49
  1980. },
  1981. "_enabled": true,
  1982. "alignMode": 1,
  1983. "_target": null,
  1984. "_alignFlags": 0,
  1985. "_left": 0,
  1986. "_right": 0,
  1987. "_top": 0,
  1988. "_bottom": 0,
  1989. "_verticalCenter": 0,
  1990. "_horizontalCenter": 0,
  1991. "_isAbsLeft": true,
  1992. "_isAbsRight": true,
  1993. "_isAbsTop": true,
  1994. "_isAbsBottom": true,
  1995. "_isAbsHorizontalCenter": true,
  1996. "_isAbsVerticalCenter": true,
  1997. "_originalWidth": 0,
  1998. "_originalHeight": 0,
  1999. "_id": ""
  2000. },
  2001. {
  2002. "__type__": "cc.PrefabInfo",
  2003. "root": {
  2004. "__id__": 1
  2005. },
  2006. "asset": {
  2007. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  2008. },
  2009. "fileId": "2e9bko86FKzKAc78G/HUNx",
  2010. "sync": false
  2011. },
  2012. {
  2013. "__type__": "cc.Widget",
  2014. "_name": "",
  2015. "_objFlags": 0,
  2016. "node": {
  2017. "__id__": 1
  2018. },
  2019. "_enabled": true,
  2020. "alignMode": 1,
  2021. "_target": null,
  2022. "_alignFlags": 18,
  2023. "_left": 0,
  2024. "_right": 0,
  2025. "_top": 0,
  2026. "_bottom": 0,
  2027. "_verticalCenter": 0,
  2028. "_horizontalCenter": 0,
  2029. "_isAbsLeft": true,
  2030. "_isAbsRight": true,
  2031. "_isAbsTop": true,
  2032. "_isAbsBottom": true,
  2033. "_isAbsHorizontalCenter": true,
  2034. "_isAbsVerticalCenter": true,
  2035. "_originalWidth": 0,
  2036. "_originalHeight": 0,
  2037. "_id": ""
  2038. },
  2039. {
  2040. "__type__": "ed1231IZUVAQbLCCkjB3qL0",
  2041. "_name": "",
  2042. "_objFlags": 0,
  2043. "node": {
  2044. "__id__": 1
  2045. },
  2046. "_enabled": true,
  2047. "Click_node": null,
  2048. "_id": ""
  2049. },
  2050. {
  2051. "__type__": "cc.PrefabInfo",
  2052. "root": {
  2053. "__id__": 1
  2054. },
  2055. "asset": {
  2056. "__uuid__": "15f67ebf-1510-4540-9b29-3fe223a6cdb9"
  2057. },
  2058. "fileId": "",
  2059. "sync": false
  2060. }
  2061. ]