UIADPanel.prefab 34 KB

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