RemindNode.prefab 36 KB

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