reward.prefab 36 KB

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