doubleRewards.prefab 37 KB

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