doubleRewards.prefab 36 KB

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