FightUpPanel.prefab 38 KB

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