redBagCashItem.prefab 34 KB

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