redBagTask.prefab 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "redBagTask",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. }
  23. ],
  24. "_active": true,
  25. "_components": [
  26. {
  27. "__id__": 143
  28. },
  29. {
  30. "__id__": 144
  31. },
  32. {
  33. "__id__": 145
  34. },
  35. {
  36. "__id__": 146
  37. }
  38. ],
  39. "_prefab": {
  40. "__id__": 147
  41. },
  42. "_opacity": 255,
  43. "_color": {
  44. "__type__": "cc.Color",
  45. "r": 255,
  46. "g": 255,
  47. "b": 255,
  48. "a": 255
  49. },
  50. "_contentSize": {
  51. "__type__": "cc.Size",
  52. "width": 750,
  53. "height": 1334
  54. },
  55. "_anchorPoint": {
  56. "__type__": "cc.Vec2",
  57. "x": 0.5,
  58. "y": 0.5
  59. },
  60. "_trs": {
  61. "__type__": "TypedArray",
  62. "ctor": "Float64Array",
  63. "array": [
  64. 375,
  65. 667,
  66. 0,
  67. 0,
  68. 0,
  69. 0,
  70. 1,
  71. 1,
  72. 1,
  73. 1
  74. ]
  75. },
  76. "_eulerAngles": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_skewX": 0,
  83. "_skewY": 0,
  84. "_is3DNode": false,
  85. "_groupIndex": 0,
  86. "groupIndex": 0,
  87. "_id": ""
  88. },
  89. {
  90. "__type__": "cc.Node",
  91. "_name": "动画节点",
  92. "_objFlags": 0,
  93. "_parent": {
  94. "__id__": 1
  95. },
  96. "_children": [
  97. {
  98. "__id__": 3
  99. }
  100. ],
  101. "_active": true,
  102. "_components": [],
  103. "_prefab": {
  104. "__id__": 142
  105. },
  106. "_opacity": 255,
  107. "_color": {
  108. "__type__": "cc.Color",
  109. "r": 255,
  110. "g": 255,
  111. "b": 255,
  112. "a": 255
  113. },
  114. "_contentSize": {
  115. "__type__": "cc.Size",
  116. "width": 0,
  117. "height": 0
  118. },
  119. "_anchorPoint": {
  120. "__type__": "cc.Vec2",
  121. "x": 0.5,
  122. "y": 0.5
  123. },
  124. "_trs": {
  125. "__type__": "TypedArray",
  126. "ctor": "Float64Array",
  127. "array": [
  128. 0,
  129. 0,
  130. 0,
  131. 0,
  132. 0,
  133. 0,
  134. 1,
  135. 1,
  136. 1,
  137. 1
  138. ]
  139. },
  140. "_eulerAngles": {
  141. "__type__": "cc.Vec3",
  142. "x": 0,
  143. "y": 0,
  144. "z": 0
  145. },
  146. "_skewX": 0,
  147. "_skewY": 0,
  148. "_is3DNode": false,
  149. "_groupIndex": 0,
  150. "groupIndex": 0,
  151. "_id": ""
  152. },
  153. {
  154. "__type__": "cc.Node",
  155. "_name": "bg",
  156. "_objFlags": 0,
  157. "_parent": {
  158. "__id__": 2
  159. },
  160. "_children": [
  161. {
  162. "__id__": 4
  163. },
  164. {
  165. "__id__": 7
  166. },
  167. {
  168. "__id__": 10
  169. },
  170. {
  171. "__id__": 14
  172. },
  173. {
  174. "__id__": 23
  175. },
  176. {
  177. "__id__": 44
  178. },
  179. {
  180. "__id__": 67
  181. },
  182. {
  183. "__id__": 101
  184. },
  185. {
  186. "__id__": 136
  187. }
  188. ],
  189. "_active": true,
  190. "_components": [
  191. {
  192. "__id__": 139
  193. },
  194. {
  195. "__id__": 140
  196. }
  197. ],
  198. "_prefab": {
  199. "__id__": 141
  200. },
  201. "_opacity": 255,
  202. "_color": {
  203. "__type__": "cc.Color",
  204. "r": 255,
  205. "g": 255,
  206. "b": 255,
  207. "a": 255
  208. },
  209. "_contentSize": {
  210. "__type__": "cc.Size",
  211. "width": 610,
  212. "height": 777.0000000000003
  213. },
  214. "_anchorPoint": {
  215. "__type__": "cc.Vec2",
  216. "x": 0.5,
  217. "y": 0.5
  218. },
  219. "_trs": {
  220. "__type__": "TypedArray",
  221. "ctor": "Float64Array",
  222. "array": [
  223. 0,
  224. 113.74799999999999,
  225. 0,
  226. 0,
  227. 0,
  228. 0,
  229. 1,
  230. 1,
  231. 1,
  232. 1
  233. ]
  234. },
  235. "_eulerAngles": {
  236. "__type__": "cc.Vec3",
  237. "x": 0,
  238. "y": 0,
  239. "z": 0
  240. },
  241. "_skewX": 0,
  242. "_skewY": 0,
  243. "_is3DNode": false,
  244. "_groupIndex": 0,
  245. "groupIndex": 0,
  246. "_id": ""
  247. },
  248. {
  249. "__type__": "cc.Node",
  250. "_name": "title",
  251. "_objFlags": 0,
  252. "_parent": {
  253. "__id__": 3
  254. },
  255. "_children": [],
  256. "_active": true,
  257. "_components": [
  258. {
  259. "__id__": 5
  260. }
  261. ],
  262. "_prefab": {
  263. "__id__": 6
  264. },
  265. "_opacity": 255,
  266. "_color": {
  267. "__type__": "cc.Color",
  268. "r": 255,
  269. "g": 255,
  270. "b": 255,
  271. "a": 255
  272. },
  273. "_contentSize": {
  274. "__type__": "cc.Size",
  275. "width": 285,
  276. "height": 95
  277. },
  278. "_anchorPoint": {
  279. "__type__": "cc.Vec2",
  280. "x": 0.5,
  281. "y": 0.5
  282. },
  283. "_trs": {
  284. "__type__": "TypedArray",
  285. "ctor": "Float64Array",
  286. "array": [
  287. 0,
  288. 318,
  289. 0,
  290. 0,
  291. 0,
  292. 0,
  293. 1,
  294. 1,
  295. 1,
  296. 1
  297. ]
  298. },
  299. "_eulerAngles": {
  300. "__type__": "cc.Vec3",
  301. "x": 0,
  302. "y": 0,
  303. "z": 0
  304. },
  305. "_skewX": 0,
  306. "_skewY": 0,
  307. "_is3DNode": false,
  308. "_groupIndex": 0,
  309. "groupIndex": 0,
  310. "_id": ""
  311. },
  312. {
  313. "__type__": "cc.Sprite",
  314. "_name": "",
  315. "_objFlags": 0,
  316. "node": {
  317. "__id__": 4
  318. },
  319. "_enabled": true,
  320. "_materials": [
  321. {
  322. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  323. }
  324. ],
  325. "_srcBlendFactor": 770,
  326. "_dstBlendFactor": 771,
  327. "_spriteFrame": {
  328. "__uuid__": "8b7cc86f-26f9-4539-a924-e7fcd4fe6b78"
  329. },
  330. "_type": 0,
  331. "_sizeMode": 1,
  332. "_fillType": 0,
  333. "_fillCenter": {
  334. "__type__": "cc.Vec2",
  335. "x": 0,
  336. "y": 0
  337. },
  338. "_fillStart": 0,
  339. "_fillRange": 0,
  340. "_isTrimmedMode": true,
  341. "_atlas": null,
  342. "_id": ""
  343. },
  344. {
  345. "__type__": "cc.PrefabInfo",
  346. "root": {
  347. "__id__": 1
  348. },
  349. "asset": {
  350. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  351. },
  352. "fileId": "3czpnCdnxGW4S09ZoeBSmE",
  353. "sync": false
  354. },
  355. {
  356. "__type__": "cc.Node",
  357. "_name": "New Sprite(Splash)",
  358. "_objFlags": 0,
  359. "_parent": {
  360. "__id__": 3
  361. },
  362. "_children": [],
  363. "_active": true,
  364. "_components": [
  365. {
  366. "__id__": 8
  367. }
  368. ],
  369. "_prefab": {
  370. "__id__": 9
  371. },
  372. "_opacity": 255,
  373. "_color": {
  374. "__type__": "cc.Color",
  375. "r": 255,
  376. "g": 255,
  377. "b": 255,
  378. "a": 255
  379. },
  380. "_contentSize": {
  381. "__type__": "cc.Size",
  382. "width": 593,
  383. "height": 164
  384. },
  385. "_anchorPoint": {
  386. "__type__": "cc.Vec2",
  387. "x": 0.5,
  388. "y": 0.5
  389. },
  390. "_trs": {
  391. "__type__": "TypedArray",
  392. "ctor": "Float64Array",
  393. "array": [
  394. 0,
  395. -78,
  396. 0,
  397. 0,
  398. 0,
  399. 0,
  400. 1,
  401. 1,
  402. 1,
  403. 1
  404. ]
  405. },
  406. "_eulerAngles": {
  407. "__type__": "cc.Vec3",
  408. "x": 0,
  409. "y": 0,
  410. "z": 0
  411. },
  412. "_skewX": 0,
  413. "_skewY": 0,
  414. "_is3DNode": false,
  415. "_groupIndex": 0,
  416. "groupIndex": 0,
  417. "_id": ""
  418. },
  419. {
  420. "__type__": "cc.Sprite",
  421. "_name": "",
  422. "_objFlags": 0,
  423. "node": {
  424. "__id__": 7
  425. },
  426. "_enabled": true,
  427. "_materials": [
  428. {
  429. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  430. }
  431. ],
  432. "_srcBlendFactor": 770,
  433. "_dstBlendFactor": 771,
  434. "_spriteFrame": {
  435. "__uuid__": "f9e4033d-a584-430e-8b92-78fde4e2b2b0"
  436. },
  437. "_type": 0,
  438. "_sizeMode": 1,
  439. "_fillType": 0,
  440. "_fillCenter": {
  441. "__type__": "cc.Vec2",
  442. "x": 0,
  443. "y": 0
  444. },
  445. "_fillStart": 0,
  446. "_fillRange": 0,
  447. "_isTrimmedMode": true,
  448. "_atlas": null,
  449. "_id": ""
  450. },
  451. {
  452. "__type__": "cc.PrefabInfo",
  453. "root": {
  454. "__id__": 1
  455. },
  456. "asset": {
  457. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  458. },
  459. "fileId": "94KLwFPu1OI5L5/7C8KbfU",
  460. "sync": false
  461. },
  462. {
  463. "__type__": "cc.Node",
  464. "_name": "关闭按钮",
  465. "_objFlags": 0,
  466. "_parent": {
  467. "__id__": 3
  468. },
  469. "_children": [],
  470. "_active": true,
  471. "_components": [
  472. {
  473. "__id__": 11
  474. },
  475. {
  476. "__id__": 12
  477. }
  478. ],
  479. "_prefab": {
  480. "__id__": 13
  481. },
  482. "_opacity": 255,
  483. "_color": {
  484. "__type__": "cc.Color",
  485. "r": 255,
  486. "g": 255,
  487. "b": 255,
  488. "a": 255
  489. },
  490. "_contentSize": {
  491. "__type__": "cc.Size",
  492. "width": 82,
  493. "height": 87
  494. },
  495. "_anchorPoint": {
  496. "__type__": "cc.Vec2",
  497. "x": 0.5,
  498. "y": 0.5
  499. },
  500. "_trs": {
  501. "__type__": "TypedArray",
  502. "ctor": "Float64Array",
  503. "array": [
  504. 306.2,
  505. 418.876,
  506. 0,
  507. 0,
  508. 0,
  509. 0,
  510. 1,
  511. 1,
  512. 1,
  513. 1
  514. ]
  515. },
  516. "_eulerAngles": {
  517. "__type__": "cc.Vec3",
  518. "x": 0,
  519. "y": 0,
  520. "z": 0
  521. },
  522. "_skewX": 0,
  523. "_skewY": 0,
  524. "_is3DNode": false,
  525. "_groupIndex": 0,
  526. "groupIndex": 0,
  527. "_id": ""
  528. },
  529. {
  530. "__type__": "cc.Sprite",
  531. "_name": "",
  532. "_objFlags": 0,
  533. "node": {
  534. "__id__": 10
  535. },
  536. "_enabled": true,
  537. "_materials": [
  538. {
  539. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  540. }
  541. ],
  542. "_srcBlendFactor": 770,
  543. "_dstBlendFactor": 771,
  544. "_spriteFrame": {
  545. "__uuid__": "af2a7472-1f78-414a-8307-5ac0edead809"
  546. },
  547. "_type": 0,
  548. "_sizeMode": 1,
  549. "_fillType": 0,
  550. "_fillCenter": {
  551. "__type__": "cc.Vec2",
  552. "x": 0,
  553. "y": 0
  554. },
  555. "_fillStart": 0,
  556. "_fillRange": 0,
  557. "_isTrimmedMode": true,
  558. "_atlas": null,
  559. "_id": ""
  560. },
  561. {
  562. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  563. "_name": "",
  564. "_objFlags": 0,
  565. "node": {
  566. "__id__": 10
  567. },
  568. "_enabled": true,
  569. "node_panel": {
  570. "__id__": 1
  571. },
  572. "transition_type": 0,
  573. "onComplete": [],
  574. "_id": ""
  575. },
  576. {
  577. "__type__": "cc.PrefabInfo",
  578. "root": {
  579. "__id__": 1
  580. },
  581. "asset": {
  582. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  583. },
  584. "fileId": "a5n4DcS1hAq74L7cjwIYXc",
  585. "sync": false
  586. },
  587. {
  588. "__type__": "cc.Node",
  589. "_name": "tip",
  590. "_objFlags": 0,
  591. "_parent": {
  592. "__id__": 3
  593. },
  594. "_children": [
  595. {
  596. "__id__": 15
  597. },
  598. {
  599. "__id__": 18
  600. }
  601. ],
  602. "_active": true,
  603. "_components": [
  604. {
  605. "__id__": 21
  606. }
  607. ],
  608. "_prefab": {
  609. "__id__": 22
  610. },
  611. "_opacity": 255,
  612. "_color": {
  613. "__type__": "cc.Color",
  614. "r": 255,
  615. "g": 255,
  616. "b": 255,
  617. "a": 255
  618. },
  619. "_contentSize": {
  620. "__type__": "cc.Size",
  621. "width": 369,
  622. "height": 50
  623. },
  624. "_anchorPoint": {
  625. "__type__": "cc.Vec2",
  626. "x": 0.5,
  627. "y": 0.5
  628. },
  629. "_trs": {
  630. "__type__": "TypedArray",
  631. "ctor": "Float64Array",
  632. "array": [
  633. 0,
  634. -333.123,
  635. 0,
  636. 0,
  637. 0,
  638. 0,
  639. 1,
  640. 1,
  641. 1,
  642. 1
  643. ]
  644. },
  645. "_eulerAngles": {
  646. "__type__": "cc.Vec3",
  647. "x": 0,
  648. "y": 0,
  649. "z": 0
  650. },
  651. "_skewX": 0,
  652. "_skewY": 0,
  653. "_is3DNode": false,
  654. "_groupIndex": 0,
  655. "groupIndex": 0,
  656. "_id": ""
  657. },
  658. {
  659. "__type__": "cc.Node",
  660. "_name": "wechat",
  661. "_objFlags": 0,
  662. "_parent": {
  663. "__id__": 14
  664. },
  665. "_children": [],
  666. "_active": true,
  667. "_components": [
  668. {
  669. "__id__": 16
  670. }
  671. ],
  672. "_prefab": {
  673. "__id__": 17
  674. },
  675. "_opacity": 255,
  676. "_color": {
  677. "__type__": "cc.Color",
  678. "r": 255,
  679. "g": 255,
  680. "b": 255,
  681. "a": 255
  682. },
  683. "_contentSize": {
  684. "__type__": "cc.Size",
  685. "width": 35,
  686. "height": 31
  687. },
  688. "_anchorPoint": {
  689. "__type__": "cc.Vec2",
  690. "x": 0.5,
  691. "y": 0.5
  692. },
  693. "_trs": {
  694. "__type__": "TypedArray",
  695. "ctor": "Float64Array",
  696. "array": [
  697. -125.452,
  698. 0,
  699. 0,
  700. 0,
  701. 0,
  702. 0,
  703. 1,
  704. 1,
  705. 1,
  706. 1
  707. ]
  708. },
  709. "_eulerAngles": {
  710. "__type__": "cc.Vec3",
  711. "x": 0,
  712. "y": 0,
  713. "z": 0
  714. },
  715. "_skewX": 0,
  716. "_skewY": 0,
  717. "_is3DNode": false,
  718. "_groupIndex": 0,
  719. "groupIndex": 0,
  720. "_id": ""
  721. },
  722. {
  723. "__type__": "cc.Sprite",
  724. "_name": "",
  725. "_objFlags": 0,
  726. "node": {
  727. "__id__": 15
  728. },
  729. "_enabled": true,
  730. "_materials": [
  731. {
  732. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  733. }
  734. ],
  735. "_srcBlendFactor": 770,
  736. "_dstBlendFactor": 771,
  737. "_spriteFrame": {
  738. "__uuid__": "3c79e4ab-0789-4725-b593-e8c1f6b94bc4"
  739. },
  740. "_type": 0,
  741. "_sizeMode": 1,
  742. "_fillType": 0,
  743. "_fillCenter": {
  744. "__type__": "cc.Vec2",
  745. "x": 0,
  746. "y": 0
  747. },
  748. "_fillStart": 0,
  749. "_fillRange": 0,
  750. "_isTrimmedMode": true,
  751. "_atlas": null,
  752. "_id": ""
  753. },
  754. {
  755. "__type__": "cc.PrefabInfo",
  756. "root": {
  757. "__id__": 1
  758. },
  759. "asset": {
  760. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  761. },
  762. "fileId": "bcS+7B9J1HF6jnuVdt1G13",
  763. "sync": false
  764. },
  765. {
  766. "__type__": "cc.Node",
  767. "_name": "描述",
  768. "_objFlags": 0,
  769. "_parent": {
  770. "__id__": 14
  771. },
  772. "_children": [],
  773. "_active": true,
  774. "_components": [
  775. {
  776. "__id__": 19
  777. }
  778. ],
  779. "_prefab": {
  780. "__id__": 20
  781. },
  782. "_opacity": 255,
  783. "_color": {
  784. "__type__": "cc.Color",
  785. "r": 255,
  786. "g": 235,
  787. "b": 201,
  788. "a": 255
  789. },
  790. "_contentSize": {
  791. "__type__": "cc.Size",
  792. "width": 240,
  793. "height": 50.4
  794. },
  795. "_anchorPoint": {
  796. "__type__": "cc.Vec2",
  797. "x": 0.5,
  798. "y": 0.5
  799. },
  800. "_trs": {
  801. "__type__": "TypedArray",
  802. "ctor": "Float64Array",
  803. "array": [
  804. 22.439,
  805. 0,
  806. 0,
  807. 0,
  808. 0,
  809. 0,
  810. 1,
  811. 1,
  812. 1,
  813. 1
  814. ]
  815. },
  816. "_eulerAngles": {
  817. "__type__": "cc.Vec3",
  818. "x": 0,
  819. "y": 0,
  820. "z": 0
  821. },
  822. "_skewX": 0,
  823. "_skewY": 0,
  824. "_is3DNode": false,
  825. "_groupIndex": 0,
  826. "groupIndex": 0,
  827. "_id": ""
  828. },
  829. {
  830. "__type__": "cc.Label",
  831. "_name": "",
  832. "_objFlags": 0,
  833. "node": {
  834. "__id__": 18
  835. },
  836. "_enabled": true,
  837. "_materials": [
  838. {
  839. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  840. }
  841. ],
  842. "_srcBlendFactor": 770,
  843. "_dstBlendFactor": 771,
  844. "_string": "可提现至微信零钱",
  845. "_N$string": "可提现至微信零钱",
  846. "_fontSize": 30,
  847. "_lineHeight": 40,
  848. "_enableWrapText": true,
  849. "_N$file": null,
  850. "_isSystemFontUsed": true,
  851. "_spacingX": 0,
  852. "_batchAsBitmap": false,
  853. "_styleFlags": 0,
  854. "_underlineHeight": 0,
  855. "_N$horizontalAlign": 1,
  856. "_N$verticalAlign": 1,
  857. "_N$fontFamily": "Arial",
  858. "_N$overflow": 0,
  859. "_N$cacheMode": 0,
  860. "_id": ""
  861. },
  862. {
  863. "__type__": "cc.PrefabInfo",
  864. "root": {
  865. "__id__": 1
  866. },
  867. "asset": {
  868. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  869. },
  870. "fileId": "40lKfsbfdLbqJ15BJgNjLU",
  871. "sync": false
  872. },
  873. {
  874. "__type__": "cc.Sprite",
  875. "_name": "",
  876. "_objFlags": 0,
  877. "node": {
  878. "__id__": 14
  879. },
  880. "_enabled": true,
  881. "_materials": [
  882. {
  883. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  884. }
  885. ],
  886. "_srcBlendFactor": 770,
  887. "_dstBlendFactor": 771,
  888. "_spriteFrame": {
  889. "__uuid__": "f4526175-4459-494c-8a47-edb5e7a22be3"
  890. },
  891. "_type": 0,
  892. "_sizeMode": 1,
  893. "_fillType": 0,
  894. "_fillCenter": {
  895. "__type__": "cc.Vec2",
  896. "x": 0,
  897. "y": 0
  898. },
  899. "_fillStart": 0,
  900. "_fillRange": 0,
  901. "_isTrimmedMode": true,
  902. "_atlas": null,
  903. "_id": ""
  904. },
  905. {
  906. "__type__": "cc.PrefabInfo",
  907. "root": {
  908. "__id__": 1
  909. },
  910. "asset": {
  911. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  912. },
  913. "fileId": "79fPOPxcBMzJb/INIR4w2G",
  914. "sync": false
  915. },
  916. {
  917. "__type__": "cc.Node",
  918. "_name": "New Node",
  919. "_objFlags": 0,
  920. "_parent": {
  921. "__id__": 3
  922. },
  923. "_children": [
  924. {
  925. "__id__": 24
  926. },
  927. {
  928. "__id__": 34
  929. }
  930. ],
  931. "_active": true,
  932. "_components": [],
  933. "_prefab": {
  934. "__id__": 43
  935. },
  936. "_opacity": 255,
  937. "_color": {
  938. "__type__": "cc.Color",
  939. "r": 255,
  940. "g": 255,
  941. "b": 255,
  942. "a": 255
  943. },
  944. "_contentSize": {
  945. "__type__": "cc.Size",
  946. "width": 0,
  947. "height": 0
  948. },
  949. "_anchorPoint": {
  950. "__type__": "cc.Vec2",
  951. "x": 0.5,
  952. "y": 0.5
  953. },
  954. "_trs": {
  955. "__type__": "TypedArray",
  956. "ctor": "Float64Array",
  957. "array": [
  958. 0,
  959. -171,
  960. 0,
  961. 0,
  962. 0,
  963. 0,
  964. 1,
  965. 1.1,
  966. 1.1,
  967. 1
  968. ]
  969. },
  970. "_eulerAngles": {
  971. "__type__": "cc.Vec3",
  972. "x": 0,
  973. "y": 0,
  974. "z": 0
  975. },
  976. "_skewX": 0,
  977. "_skewY": 0,
  978. "_is3DNode": false,
  979. "_groupIndex": 0,
  980. "groupIndex": 0,
  981. "_id": ""
  982. },
  983. {
  984. "__type__": "cc.Node",
  985. "_name": "领取按钮",
  986. "_objFlags": 0,
  987. "_parent": {
  988. "__id__": 23
  989. },
  990. "_children": [
  991. {
  992. "__id__": 25
  993. }
  994. ],
  995. "_active": true,
  996. "_components": [
  997. {
  998. "__id__": 28
  999. },
  1000. {
  1001. "__id__": 29
  1002. },
  1003. {
  1004. "__id__": 30
  1005. },
  1006. {
  1007. "__id__": 32
  1008. }
  1009. ],
  1010. "_prefab": {
  1011. "__id__": 33
  1012. },
  1013. "_opacity": 255,
  1014. "_color": {
  1015. "__type__": "cc.Color",
  1016. "r": 255,
  1017. "g": 255,
  1018. "b": 255,
  1019. "a": 255
  1020. },
  1021. "_contentSize": {
  1022. "__type__": "cc.Size",
  1023. "width": 169,
  1024. "height": 178
  1025. },
  1026. "_anchorPoint": {
  1027. "__type__": "cc.Vec2",
  1028. "x": 0.5,
  1029. "y": 0.5
  1030. },
  1031. "_trs": {
  1032. "__type__": "TypedArray",
  1033. "ctor": "Float64Array",
  1034. "array": [
  1035. 0,
  1036. 0,
  1037. 0,
  1038. 0,
  1039. 0,
  1040. 0,
  1041. 1,
  1042. 1,
  1043. 1,
  1044. 1
  1045. ]
  1046. },
  1047. "_eulerAngles": {
  1048. "__type__": "cc.Vec3",
  1049. "x": 0,
  1050. "y": 0,
  1051. "z": 0
  1052. },
  1053. "_skewX": 0,
  1054. "_skewY": 0,
  1055. "_is3DNode": false,
  1056. "_groupIndex": 0,
  1057. "groupIndex": 0,
  1058. "_id": ""
  1059. },
  1060. {
  1061. "__type__": "cc.Node",
  1062. "_name": "video",
  1063. "_objFlags": 0,
  1064. "_parent": {
  1065. "__id__": 24
  1066. },
  1067. "_children": [],
  1068. "_active": false,
  1069. "_components": [
  1070. {
  1071. "__id__": 26
  1072. }
  1073. ],
  1074. "_prefab": {
  1075. "__id__": 27
  1076. },
  1077. "_opacity": 255,
  1078. "_color": {
  1079. "__type__": "cc.Color",
  1080. "r": 255,
  1081. "g": 255,
  1082. "b": 255,
  1083. "a": 255
  1084. },
  1085. "_contentSize": {
  1086. "__type__": "cc.Size",
  1087. "width": 57,
  1088. "height": 62
  1089. },
  1090. "_anchorPoint": {
  1091. "__type__": "cc.Vec2",
  1092. "x": 0.5,
  1093. "y": 0.5
  1094. },
  1095. "_trs": {
  1096. "__type__": "TypedArray",
  1097. "ctor": "Float64Array",
  1098. "array": [
  1099. 79.595,
  1100. 64.054,
  1101. 0,
  1102. 0,
  1103. 0,
  1104. 0,
  1105. 1,
  1106. 1,
  1107. 1,
  1108. 1
  1109. ]
  1110. },
  1111. "_eulerAngles": {
  1112. "__type__": "cc.Vec3",
  1113. "x": 0,
  1114. "y": 0,
  1115. "z": 0
  1116. },
  1117. "_skewX": 0,
  1118. "_skewY": 0,
  1119. "_is3DNode": false,
  1120. "_groupIndex": 0,
  1121. "groupIndex": 0,
  1122. "_id": ""
  1123. },
  1124. {
  1125. "__type__": "cc.Sprite",
  1126. "_name": "",
  1127. "_objFlags": 0,
  1128. "node": {
  1129. "__id__": 25
  1130. },
  1131. "_enabled": true,
  1132. "_materials": [
  1133. {
  1134. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1135. }
  1136. ],
  1137. "_srcBlendFactor": 770,
  1138. "_dstBlendFactor": 771,
  1139. "_spriteFrame": {
  1140. "__uuid__": "48b63ac2-149c-415c-9f34-eab7a86be1a7"
  1141. },
  1142. "_type": 0,
  1143. "_sizeMode": 1,
  1144. "_fillType": 0,
  1145. "_fillCenter": {
  1146. "__type__": "cc.Vec2",
  1147. "x": 0,
  1148. "y": 0
  1149. },
  1150. "_fillStart": 0,
  1151. "_fillRange": 0,
  1152. "_isTrimmedMode": true,
  1153. "_atlas": null,
  1154. "_id": ""
  1155. },
  1156. {
  1157. "__type__": "cc.PrefabInfo",
  1158. "root": {
  1159. "__id__": 1
  1160. },
  1161. "asset": {
  1162. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  1163. },
  1164. "fileId": "74CT8dlQtPZo3rial6WhtV",
  1165. "sync": false
  1166. },
  1167. {
  1168. "__type__": "cc.Sprite",
  1169. "_name": "",
  1170. "_objFlags": 0,
  1171. "node": {
  1172. "__id__": 24
  1173. },
  1174. "_enabled": true,
  1175. "_materials": [
  1176. {
  1177. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1178. }
  1179. ],
  1180. "_srcBlendFactor": 770,
  1181. "_dstBlendFactor": 771,
  1182. "_spriteFrame": {
  1183. "__uuid__": "ec78e965-4e6c-466b-bffb-f0fb2c0cda9c"
  1184. },
  1185. "_type": 0,
  1186. "_sizeMode": 1,
  1187. "_fillType": 0,
  1188. "_fillCenter": {
  1189. "__type__": "cc.Vec2",
  1190. "x": 0,
  1191. "y": 0
  1192. },
  1193. "_fillStart": 0,
  1194. "_fillRange": 0,
  1195. "_isTrimmedMode": true,
  1196. "_atlas": null,
  1197. "_id": ""
  1198. },
  1199. {
  1200. "__type__": "f67a9SEPlBL8rHHpVX6g1ZW",
  1201. "_name": "",
  1202. "_objFlags": 0,
  1203. "node": {
  1204. "__id__": 24
  1205. },
  1206. "_enabled": true,
  1207. "normal": {
  1208. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1209. },
  1210. "gray": {
  1211. "__uuid__": "3a7bb79f-32fd-422e-ada2-96f518fed422"
  1212. },
  1213. "grayState": false,
  1214. "_id": ""
  1215. },
  1216. {
  1217. "__type__": "cc.Button",
  1218. "_name": "",
  1219. "_objFlags": 0,
  1220. "node": {
  1221. "__id__": 24
  1222. },
  1223. "_enabled": true,
  1224. "_normalMaterial": {
  1225. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1226. },
  1227. "_grayMaterial": {
  1228. "__uuid__": "3a7bb79f-32fd-422e-ada2-96f518fed422"
  1229. },
  1230. "duration": 0.1,
  1231. "zoomScale": 1.2,
  1232. "clickEvents": [
  1233. {
  1234. "__id__": 31
  1235. }
  1236. ],
  1237. "_N$interactable": true,
  1238. "_N$enableAutoGrayEffect": false,
  1239. "_N$transition": 0,
  1240. "transition": 0,
  1241. "_N$normalColor": {
  1242. "__type__": "cc.Color",
  1243. "r": 255,
  1244. "g": 255,
  1245. "b": 255,
  1246. "a": 255
  1247. },
  1248. "_N$pressedColor": {
  1249. "__type__": "cc.Color",
  1250. "r": 211,
  1251. "g": 211,
  1252. "b": 211,
  1253. "a": 255
  1254. },
  1255. "pressedColor": {
  1256. "__type__": "cc.Color",
  1257. "r": 211,
  1258. "g": 211,
  1259. "b": 211,
  1260. "a": 255
  1261. },
  1262. "_N$hoverColor": {
  1263. "__type__": "cc.Color",
  1264. "r": 255,
  1265. "g": 255,
  1266. "b": 255,
  1267. "a": 255
  1268. },
  1269. "hoverColor": {
  1270. "__type__": "cc.Color",
  1271. "r": 255,
  1272. "g": 255,
  1273. "b": 255,
  1274. "a": 255
  1275. },
  1276. "_N$disabledColor": {
  1277. "__type__": "cc.Color",
  1278. "r": 124,
  1279. "g": 124,
  1280. "b": 124,
  1281. "a": 255
  1282. },
  1283. "_N$normalSprite": null,
  1284. "_N$pressedSprite": null,
  1285. "pressedSprite": null,
  1286. "_N$hoverSprite": null,
  1287. "hoverSprite": null,
  1288. "_N$disabledSprite": null,
  1289. "_N$target": {
  1290. "__id__": 24
  1291. },
  1292. "_id": ""
  1293. },
  1294. {
  1295. "__type__": "cc.ClickEvent",
  1296. "target": {
  1297. "__id__": 1
  1298. },
  1299. "component": "",
  1300. "_componentId": "bde9cH+JsJLHoZ2m6rtWbXI",
  1301. "handler": "clickGetRewardBtn",
  1302. "customEventData": ""
  1303. },
  1304. {
  1305. "__type__": "cc.Animation",
  1306. "_name": "",
  1307. "_objFlags": 0,
  1308. "node": {
  1309. "__id__": 24
  1310. },
  1311. "_enabled": true,
  1312. "_defaultClip": {
  1313. "__uuid__": "1c7cfdae-7b6c-46a5-9085-2fa8aa684ac7"
  1314. },
  1315. "_clips": [
  1316. {
  1317. "__uuid__": "1c7cfdae-7b6c-46a5-9085-2fa8aa684ac7"
  1318. }
  1319. ],
  1320. "playOnLoad": true,
  1321. "_id": ""
  1322. },
  1323. {
  1324. "__type__": "cc.PrefabInfo",
  1325. "root": {
  1326. "__id__": 1
  1327. },
  1328. "asset": {
  1329. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  1330. },
  1331. "fileId": "36m7N38j5C6JcZaBkS9CSJ",
  1332. "sync": false
  1333. },
  1334. {
  1335. "__type__": "cc.Node",
  1336. "_name": "hand",
  1337. "_objFlags": 0,
  1338. "_parent": {
  1339. "__id__": 23
  1340. },
  1341. "_children": [
  1342. {
  1343. "__id__": 35
  1344. },
  1345. {
  1346. "__id__": 38
  1347. }
  1348. ],
  1349. "_active": false,
  1350. "_components": [
  1351. {
  1352. "__id__": 41
  1353. }
  1354. ],
  1355. "_prefab": {
  1356. "__id__": 42
  1357. },
  1358. "_opacity": 255,
  1359. "_color": {
  1360. "__type__": "cc.Color",
  1361. "r": 255,
  1362. "g": 255,
  1363. "b": 255,
  1364. "a": 255
  1365. },
  1366. "_contentSize": {
  1367. "__type__": "cc.Size",
  1368. "width": 0,
  1369. "height": 0
  1370. },
  1371. "_anchorPoint": {
  1372. "__type__": "cc.Vec2",
  1373. "x": 0.5,
  1374. "y": 0.5
  1375. },
  1376. "_trs": {
  1377. "__type__": "TypedArray",
  1378. "ctor": "Float64Array",
  1379. "array": [
  1380. 0,
  1381. 0,
  1382. 0,
  1383. 0,
  1384. 0,
  1385. 0,
  1386. 1,
  1387. 1,
  1388. 1,
  1389. 1
  1390. ]
  1391. },
  1392. "_eulerAngles": {
  1393. "__type__": "cc.Vec3",
  1394. "x": 0,
  1395. "y": 0,
  1396. "z": 0
  1397. },
  1398. "_skewX": 0,
  1399. "_skewY": 0,
  1400. "_is3DNode": false,
  1401. "_groupIndex": 0,
  1402. "groupIndex": 0,
  1403. "_id": ""
  1404. },
  1405. {
  1406. "__type__": "cc.Node",
  1407. "_name": "out",
  1408. "_objFlags": 0,
  1409. "_parent": {
  1410. "__id__": 34
  1411. },
  1412. "_children": [],
  1413. "_active": true,
  1414. "_components": [
  1415. {
  1416. "__id__": 36
  1417. }
  1418. ],
  1419. "_prefab": {
  1420. "__id__": 37
  1421. },
  1422. "_opacity": 255,
  1423. "_color": {
  1424. "__type__": "cc.Color",
  1425. "r": 255,
  1426. "g": 255,
  1427. "b": 255,
  1428. "a": 255
  1429. },
  1430. "_contentSize": {
  1431. "__type__": "cc.Size",
  1432. "width": 129,
  1433. "height": 129
  1434. },
  1435. "_anchorPoint": {
  1436. "__type__": "cc.Vec2",
  1437. "x": 0.5,
  1438. "y": 0.5
  1439. },
  1440. "_trs": {
  1441. "__type__": "TypedArray",
  1442. "ctor": "Float64Array",
  1443. "array": [
  1444. 0,
  1445. 0,
  1446. 0,
  1447. 0,
  1448. 0,
  1449. 0,
  1450. 1,
  1451. 1,
  1452. 1,
  1453. 1
  1454. ]
  1455. },
  1456. "_eulerAngles": {
  1457. "__type__": "cc.Vec3",
  1458. "x": 0,
  1459. "y": 0,
  1460. "z": 0
  1461. },
  1462. "_skewX": 0,
  1463. "_skewY": 0,
  1464. "_is3DNode": false,
  1465. "_groupIndex": 0,
  1466. "groupIndex": 0,
  1467. "_id": ""
  1468. },
  1469. {
  1470. "__type__": "cc.Sprite",
  1471. "_name": "",
  1472. "_objFlags": 0,
  1473. "node": {
  1474. "__id__": 35
  1475. },
  1476. "_enabled": true,
  1477. "_materials": [
  1478. {
  1479. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1480. }
  1481. ],
  1482. "_srcBlendFactor": 770,
  1483. "_dstBlendFactor": 771,
  1484. "_spriteFrame": {
  1485. "__uuid__": "dcf79a6d-b107-430a-aef6-18af55e1131c"
  1486. },
  1487. "_type": 0,
  1488. "_sizeMode": 1,
  1489. "_fillType": 0,
  1490. "_fillCenter": {
  1491. "__type__": "cc.Vec2",
  1492. "x": 0,
  1493. "y": 0
  1494. },
  1495. "_fillStart": 0,
  1496. "_fillRange": 0,
  1497. "_isTrimmedMode": true,
  1498. "_atlas": null,
  1499. "_id": ""
  1500. },
  1501. {
  1502. "__type__": "cc.PrefabInfo",
  1503. "root": {
  1504. "__id__": 34
  1505. },
  1506. "asset": {
  1507. "__uuid__": "73bde1e5-ca53-420e-9f68-ca130e46fc49"
  1508. },
  1509. "fileId": "978bAYRDtPN62WBQC4oG16",
  1510. "sync": false
  1511. },
  1512. {
  1513. "__type__": "cc.Node",
  1514. "_name": "hand",
  1515. "_objFlags": 0,
  1516. "_parent": {
  1517. "__id__": 34
  1518. },
  1519. "_children": [],
  1520. "_active": true,
  1521. "_components": [
  1522. {
  1523. "__id__": 39
  1524. }
  1525. ],
  1526. "_prefab": {
  1527. "__id__": 40
  1528. },
  1529. "_opacity": 255,
  1530. "_color": {
  1531. "__type__": "cc.Color",
  1532. "r": 255,
  1533. "g": 255,
  1534. "b": 255,
  1535. "a": 255
  1536. },
  1537. "_contentSize": {
  1538. "__type__": "cc.Size",
  1539. "width": 137,
  1540. "height": 136
  1541. },
  1542. "_anchorPoint": {
  1543. "__type__": "cc.Vec2",
  1544. "x": 0.049095744680851094,
  1545. "y": 0.9625196078431373
  1546. },
  1547. "_trs": {
  1548. "__type__": "TypedArray",
  1549. "ctor": "Float64Array",
  1550. "array": [
  1551. 14,
  1552. -18,
  1553. 0,
  1554. 0,
  1555. 0,
  1556. 0,
  1557. 1,
  1558. 1,
  1559. 1,
  1560. 1
  1561. ]
  1562. },
  1563. "_eulerAngles": {
  1564. "__type__": "cc.Vec3",
  1565. "x": 0,
  1566. "y": 0,
  1567. "z": 0
  1568. },
  1569. "_skewX": 0,
  1570. "_skewY": 0,
  1571. "_is3DNode": false,
  1572. "_groupIndex": 0,
  1573. "groupIndex": 0,
  1574. "_id": ""
  1575. },
  1576. {
  1577. "__type__": "cc.Sprite",
  1578. "_name": "",
  1579. "_objFlags": 0,
  1580. "node": {
  1581. "__id__": 38
  1582. },
  1583. "_enabled": true,
  1584. "_materials": [
  1585. {
  1586. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1587. }
  1588. ],
  1589. "_srcBlendFactor": 770,
  1590. "_dstBlendFactor": 771,
  1591. "_spriteFrame": {
  1592. "__uuid__": "7703cd1c-b1a7-4207-8d63-ca26e03de71b"
  1593. },
  1594. "_type": 0,
  1595. "_sizeMode": 1,
  1596. "_fillType": 0,
  1597. "_fillCenter": {
  1598. "__type__": "cc.Vec2",
  1599. "x": 0,
  1600. "y": 0
  1601. },
  1602. "_fillStart": 0,
  1603. "_fillRange": 0,
  1604. "_isTrimmedMode": true,
  1605. "_atlas": null,
  1606. "_id": ""
  1607. },
  1608. {
  1609. "__type__": "cc.PrefabInfo",
  1610. "root": {
  1611. "__id__": 34
  1612. },
  1613. "asset": {
  1614. "__uuid__": "73bde1e5-ca53-420e-9f68-ca130e46fc49"
  1615. },
  1616. "fileId": "90ojC0TD9FTLLj2ZMEZ2+o",
  1617. "sync": false
  1618. },
  1619. {
  1620. "__type__": "cc.Animation",
  1621. "_name": "",
  1622. "_objFlags": 0,
  1623. "node": {
  1624. "__id__": 34
  1625. },
  1626. "_enabled": true,
  1627. "_defaultClip": {
  1628. "__uuid__": "af2486bc-a70c-49b1-a6f0-3290670ebceb"
  1629. },
  1630. "_clips": [
  1631. {
  1632. "__uuid__": "af2486bc-a70c-49b1-a6f0-3290670ebceb"
  1633. }
  1634. ],
  1635. "playOnLoad": true,
  1636. "_id": ""
  1637. },
  1638. {
  1639. "__type__": "cc.PrefabInfo",
  1640. "root": {
  1641. "__id__": 34
  1642. },
  1643. "asset": {
  1644. "__uuid__": "73bde1e5-ca53-420e-9f68-ca130e46fc49"
  1645. },
  1646. "fileId": "af40wNRqtFuruhtQN880FT",
  1647. "sync": false
  1648. },
  1649. {
  1650. "__type__": "cc.PrefabInfo",
  1651. "root": {
  1652. "__id__": 1
  1653. },
  1654. "asset": {
  1655. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  1656. },
  1657. "fileId": "bcfODG5VZEp7oD+NtZy8hO",
  1658. "sync": false
  1659. },
  1660. {
  1661. "__type__": "cc.Node",
  1662. "_name": "金额节点",
  1663. "_objFlags": 0,
  1664. "_parent": {
  1665. "__id__": 3
  1666. },
  1667. "_children": [
  1668. {
  1669. "__id__": 45
  1670. },
  1671. {
  1672. "__id__": 49
  1673. },
  1674. {
  1675. "__id__": 53
  1676. },
  1677. {
  1678. "__id__": 57
  1679. },
  1680. {
  1681. "__id__": 61
  1682. }
  1683. ],
  1684. "_active": true,
  1685. "_components": [
  1686. {
  1687. "__id__": 65
  1688. }
  1689. ],
  1690. "_prefab": {
  1691. "__id__": 66
  1692. },
  1693. "_opacity": 255,
  1694. "_color": {
  1695. "__type__": "cc.Color",
  1696. "r": 255,
  1697. "g": 255,
  1698. "b": 255,
  1699. "a": 255
  1700. },
  1701. "_contentSize": {
  1702. "__type__": "cc.Size",
  1703. "width": 200,
  1704. "height": 200
  1705. },
  1706. "_anchorPoint": {
  1707. "__type__": "cc.Vec2",
  1708. "x": 0.5,
  1709. "y": 0.5
  1710. },
  1711. "_trs": {
  1712. "__type__": "TypedArray",
  1713. "ctor": "Float64Array",
  1714. "array": [
  1715. -58.787,
  1716. 167.299,
  1717. 0,
  1718. 0,
  1719. 0,
  1720. 0,
  1721. 1,
  1722. 1,
  1723. 1,
  1724. 1
  1725. ]
  1726. },
  1727. "_eulerAngles": {
  1728. "__type__": "cc.Vec3",
  1729. "x": 0,
  1730. "y": 0,
  1731. "z": 0
  1732. },
  1733. "_skewX": 0,
  1734. "_skewY": 0,
  1735. "_is3DNode": false,
  1736. "_groupIndex": 0,
  1737. "groupIndex": 0,
  1738. "_id": ""
  1739. },
  1740. {
  1741. "__type__": "cc.Node",
  1742. "_name": "New Label",
  1743. "_objFlags": 0,
  1744. "_parent": {
  1745. "__id__": 44
  1746. },
  1747. "_children": [],
  1748. "_active": true,
  1749. "_components": [
  1750. {
  1751. "__id__": 46
  1752. },
  1753. {
  1754. "__id__": 47
  1755. }
  1756. ],
  1757. "_prefab": {
  1758. "__id__": 48
  1759. },
  1760. "_opacity": 255,
  1761. "_color": {
  1762. "__type__": "cc.Color",
  1763. "r": 255,
  1764. "g": 235,
  1765. "b": 201,
  1766. "a": 255
  1767. },
  1768. "_contentSize": {
  1769. "__type__": "cc.Size",
  1770. "width": 50,
  1771. "height": 63
  1772. },
  1773. "_anchorPoint": {
  1774. "__type__": "cc.Vec2",
  1775. "x": 0.5,
  1776. "y": 0.5
  1777. },
  1778. "_trs": {
  1779. "__type__": "TypedArray",
  1780. "ctor": "Float64Array",
  1781. "array": [
  1782. -75,
  1783. -17.999,
  1784. 0,
  1785. 0,
  1786. 0,
  1787. 0,
  1788. 1,
  1789. 1,
  1790. 1,
  1791. 1
  1792. ]
  1793. },
  1794. "_eulerAngles": {
  1795. "__type__": "cc.Vec3",
  1796. "x": 0,
  1797. "y": 0,
  1798. "z": 0
  1799. },
  1800. "_skewX": 0,
  1801. "_skewY": 0,
  1802. "_is3DNode": false,
  1803. "_groupIndex": 0,
  1804. "groupIndex": 0,
  1805. "_id": ""
  1806. },
  1807. {
  1808. "__type__": "cc.Label",
  1809. "_name": "",
  1810. "_objFlags": 0,
  1811. "node": {
  1812. "__id__": 45
  1813. },
  1814. "_enabled": true,
  1815. "_materials": [
  1816. {
  1817. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1818. }
  1819. ],
  1820. "_srcBlendFactor": 770,
  1821. "_dstBlendFactor": 771,
  1822. "_string": "¥",
  1823. "_N$string": "¥",
  1824. "_fontSize": 50,
  1825. "_lineHeight": 50,
  1826. "_enableWrapText": true,
  1827. "_N$file": null,
  1828. "_isSystemFontUsed": true,
  1829. "_spacingX": 0,
  1830. "_batchAsBitmap": false,
  1831. "_styleFlags": 0,
  1832. "_underlineHeight": 0,
  1833. "_N$horizontalAlign": 1,
  1834. "_N$verticalAlign": 1,
  1835. "_N$fontFamily": "Arial",
  1836. "_N$overflow": 0,
  1837. "_N$cacheMode": 0,
  1838. "_id": ""
  1839. },
  1840. {
  1841. "__type__": "cc.LabelOutline",
  1842. "_name": "",
  1843. "_objFlags": 0,
  1844. "node": {
  1845. "__id__": 45
  1846. },
  1847. "_enabled": false,
  1848. "_color": {
  1849. "__type__": "cc.Color",
  1850. "r": 0,
  1851. "g": 0,
  1852. "b": 0,
  1853. "a": 255
  1854. },
  1855. "_width": 1,
  1856. "_id": ""
  1857. },
  1858. {
  1859. "__type__": "cc.PrefabInfo",
  1860. "root": {
  1861. "__id__": 1
  1862. },
  1863. "asset": {
  1864. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  1865. },
  1866. "fileId": "0an8uC0MtKDKFNZkHtHd84",
  1867. "sync": false
  1868. },
  1869. {
  1870. "__type__": "cc.Node",
  1871. "_name": "New Label",
  1872. "_objFlags": 0,
  1873. "_parent": {
  1874. "__id__": 44
  1875. },
  1876. "_children": [],
  1877. "_active": true,
  1878. "_components": [
  1879. {
  1880. "__id__": 50
  1881. },
  1882. {
  1883. "__id__": 51
  1884. }
  1885. ],
  1886. "_prefab": {
  1887. "__id__": 52
  1888. },
  1889. "_opacity": 255,
  1890. "_color": {
  1891. "__type__": "cc.Color",
  1892. "r": 255,
  1893. "g": 235,
  1894. "b": 201,
  1895. "a": 255
  1896. },
  1897. "_contentSize": {
  1898. "__type__": "cc.Size",
  1899. "width": 66.74,
  1900. "height": 151.2
  1901. },
  1902. "_anchorPoint": {
  1903. "__type__": "cc.Vec2",
  1904. "x": 0.5,
  1905. "y": 0.5
  1906. },
  1907. "_trs": {
  1908. "__type__": "TypedArray",
  1909. "ctor": "Float64Array",
  1910. "array": [
  1911. -11.630000000000003,
  1912. 0,
  1913. 0,
  1914. 0,
  1915. 0,
  1916. 0,
  1917. 1,
  1918. 1,
  1919. 1,
  1920. 1
  1921. ]
  1922. },
  1923. "_eulerAngles": {
  1924. "__type__": "cc.Vec3",
  1925. "x": 0,
  1926. "y": 0,
  1927. "z": 0
  1928. },
  1929. "_skewX": 0,
  1930. "_skewY": 0,
  1931. "_is3DNode": false,
  1932. "_groupIndex": 0,
  1933. "groupIndex": 0,
  1934. "_id": ""
  1935. },
  1936. {
  1937. "__type__": "cc.Label",
  1938. "_name": "",
  1939. "_objFlags": 0,
  1940. "node": {
  1941. "__id__": 49
  1942. },
  1943. "_enabled": true,
  1944. "_materials": [
  1945. {
  1946. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1947. }
  1948. ],
  1949. "_srcBlendFactor": 770,
  1950. "_dstBlendFactor": 771,
  1951. "_string": "8",
  1952. "_N$string": "8",
  1953. "_fontSize": 120,
  1954. "_lineHeight": 120,
  1955. "_enableWrapText": true,
  1956. "_N$file": null,
  1957. "_isSystemFontUsed": true,
  1958. "_spacingX": 0,
  1959. "_batchAsBitmap": false,
  1960. "_styleFlags": 1,
  1961. "_underlineHeight": 0,
  1962. "_N$horizontalAlign": 1,
  1963. "_N$verticalAlign": 1,
  1964. "_N$fontFamily": "Arial",
  1965. "_N$overflow": 0,
  1966. "_N$cacheMode": 0,
  1967. "_id": ""
  1968. },
  1969. {
  1970. "__type__": "cc.LabelOutline",
  1971. "_name": "",
  1972. "_objFlags": 0,
  1973. "node": {
  1974. "__id__": 49
  1975. },
  1976. "_enabled": false,
  1977. "_color": {
  1978. "__type__": "cc.Color",
  1979. "r": 0,
  1980. "g": 0,
  1981. "b": 0,
  1982. "a": 255
  1983. },
  1984. "_width": 1,
  1985. "_id": ""
  1986. },
  1987. {
  1988. "__type__": "cc.PrefabInfo",
  1989. "root": {
  1990. "__id__": 1
  1991. },
  1992. "asset": {
  1993. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  1994. },
  1995. "fileId": "a8cywLVuVA/YFTyKJbBgQu",
  1996. "sync": false
  1997. },
  1998. {
  1999. "__type__": "cc.Node",
  2000. "_name": "New Label",
  2001. "_objFlags": 0,
  2002. "_parent": {
  2003. "__id__": 44
  2004. },
  2005. "_children": [],
  2006. "_active": false,
  2007. "_components": [
  2008. {
  2009. "__id__": 54
  2010. },
  2011. {
  2012. "__id__": 55
  2013. }
  2014. ],
  2015. "_prefab": {
  2016. "__id__": 56
  2017. },
  2018. "_opacity": 255,
  2019. "_color": {
  2020. "__type__": "cc.Color",
  2021. "r": 255,
  2022. "g": 235,
  2023. "b": 201,
  2024. "a": 255
  2025. },
  2026. "_contentSize": {
  2027. "__type__": "cc.Size",
  2028. "width": 33.34,
  2029. "height": 151.2
  2030. },
  2031. "_anchorPoint": {
  2032. "__type__": "cc.Vec2",
  2033. "x": 0.5,
  2034. "y": 0.5
  2035. },
  2036. "_trs": {
  2037. "__type__": "TypedArray",
  2038. "ctor": "Float64Array",
  2039. "array": [
  2040. 43.41,
  2041. 0,
  2042. 0,
  2043. 0,
  2044. 0,
  2045. 0,
  2046. 1,
  2047. 1,
  2048. 1,
  2049. 1
  2050. ]
  2051. },
  2052. "_eulerAngles": {
  2053. "__type__": "cc.Vec3",
  2054. "x": 0,
  2055. "y": 0,
  2056. "z": 0
  2057. },
  2058. "_skewX": 0,
  2059. "_skewY": 0,
  2060. "_is3DNode": false,
  2061. "_groupIndex": 0,
  2062. "groupIndex": 0,
  2063. "_id": ""
  2064. },
  2065. {
  2066. "__type__": "cc.Label",
  2067. "_name": "",
  2068. "_objFlags": 0,
  2069. "node": {
  2070. "__id__": 53
  2071. },
  2072. "_enabled": true,
  2073. "_materials": [
  2074. {
  2075. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2076. }
  2077. ],
  2078. "_srcBlendFactor": 770,
  2079. "_dstBlendFactor": 771,
  2080. "_string": ".",
  2081. "_N$string": ".",
  2082. "_fontSize": 120,
  2083. "_lineHeight": 120,
  2084. "_enableWrapText": true,
  2085. "_N$file": null,
  2086. "_isSystemFontUsed": true,
  2087. "_spacingX": 0,
  2088. "_batchAsBitmap": false,
  2089. "_styleFlags": 1,
  2090. "_underlineHeight": 0,
  2091. "_N$horizontalAlign": 1,
  2092. "_N$verticalAlign": 1,
  2093. "_N$fontFamily": "Arial",
  2094. "_N$overflow": 0,
  2095. "_N$cacheMode": 0,
  2096. "_id": ""
  2097. },
  2098. {
  2099. "__type__": "cc.LabelOutline",
  2100. "_name": "",
  2101. "_objFlags": 0,
  2102. "node": {
  2103. "__id__": 53
  2104. },
  2105. "_enabled": false,
  2106. "_color": {
  2107. "__type__": "cc.Color",
  2108. "r": 0,
  2109. "g": 0,
  2110. "b": 0,
  2111. "a": 255
  2112. },
  2113. "_width": 1,
  2114. "_id": ""
  2115. },
  2116. {
  2117. "__type__": "cc.PrefabInfo",
  2118. "root": {
  2119. "__id__": 1
  2120. },
  2121. "asset": {
  2122. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  2123. },
  2124. "fileId": "6eT1Rq6d5NH56f46xv++R6",
  2125. "sync": false
  2126. },
  2127. {
  2128. "__type__": "cc.Node",
  2129. "_name": "New Label",
  2130. "_objFlags": 0,
  2131. "_parent": {
  2132. "__id__": 44
  2133. },
  2134. "_children": [],
  2135. "_active": true,
  2136. "_components": [
  2137. {
  2138. "__id__": 58
  2139. },
  2140. {
  2141. "__id__": 59
  2142. }
  2143. ],
  2144. "_prefab": {
  2145. "__id__": 60
  2146. },
  2147. "_opacity": 255,
  2148. "_color": {
  2149. "__type__": "cc.Color",
  2150. "r": 255,
  2151. "g": 235,
  2152. "b": 201,
  2153. "a": 255
  2154. },
  2155. "_contentSize": {
  2156. "__type__": "cc.Size",
  2157. "width": 66.74,
  2158. "height": 151.2
  2159. },
  2160. "_anchorPoint": {
  2161. "__type__": "cc.Vec2",
  2162. "x": 0.5,
  2163. "y": 0.5
  2164. },
  2165. "_trs": {
  2166. "__type__": "TypedArray",
  2167. "ctor": "Float64Array",
  2168. "array": [
  2169. 60.10999999999999,
  2170. 0,
  2171. 0,
  2172. 0,
  2173. 0,
  2174. 0,
  2175. 1,
  2176. 1,
  2177. 1,
  2178. 1
  2179. ]
  2180. },
  2181. "_eulerAngles": {
  2182. "__type__": "cc.Vec3",
  2183. "x": 0,
  2184. "y": 0,
  2185. "z": 0
  2186. },
  2187. "_skewX": 0,
  2188. "_skewY": 0,
  2189. "_is3DNode": false,
  2190. "_groupIndex": 0,
  2191. "groupIndex": 0,
  2192. "_id": ""
  2193. },
  2194. {
  2195. "__type__": "cc.Label",
  2196. "_name": "",
  2197. "_objFlags": 0,
  2198. "node": {
  2199. "__id__": 57
  2200. },
  2201. "_enabled": true,
  2202. "_materials": [
  2203. {
  2204. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2205. }
  2206. ],
  2207. "_srcBlendFactor": 770,
  2208. "_dstBlendFactor": 771,
  2209. "_string": "8",
  2210. "_N$string": "8",
  2211. "_fontSize": 120,
  2212. "_lineHeight": 120,
  2213. "_enableWrapText": true,
  2214. "_N$file": null,
  2215. "_isSystemFontUsed": true,
  2216. "_spacingX": 0,
  2217. "_batchAsBitmap": false,
  2218. "_styleFlags": 1,
  2219. "_underlineHeight": 0,
  2220. "_N$horizontalAlign": 1,
  2221. "_N$verticalAlign": 1,
  2222. "_N$fontFamily": "Arial",
  2223. "_N$overflow": 0,
  2224. "_N$cacheMode": 0,
  2225. "_id": ""
  2226. },
  2227. {
  2228. "__type__": "cc.LabelOutline",
  2229. "_name": "",
  2230. "_objFlags": 0,
  2231. "node": {
  2232. "__id__": 57
  2233. },
  2234. "_enabled": false,
  2235. "_color": {
  2236. "__type__": "cc.Color",
  2237. "r": 0,
  2238. "g": 0,
  2239. "b": 0,
  2240. "a": 255
  2241. },
  2242. "_width": 1,
  2243. "_id": ""
  2244. },
  2245. {
  2246. "__type__": "cc.PrefabInfo",
  2247. "root": {
  2248. "__id__": 1
  2249. },
  2250. "asset": {
  2251. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  2252. },
  2253. "fileId": "7fwWutcexKALHJJ9sde6Kb",
  2254. "sync": false
  2255. },
  2256. {
  2257. "__type__": "cc.Node",
  2258. "_name": "New Label",
  2259. "_objFlags": 0,
  2260. "_parent": {
  2261. "__id__": 44
  2262. },
  2263. "_children": [],
  2264. "_active": true,
  2265. "_components": [
  2266. {
  2267. "__id__": 62
  2268. },
  2269. {
  2270. "__id__": 63
  2271. }
  2272. ],
  2273. "_prefab": {
  2274. "__id__": 64
  2275. },
  2276. "_opacity": 255,
  2277. "_color": {
  2278. "__type__": "cc.Color",
  2279. "r": 255,
  2280. "g": 235,
  2281. "b": 201,
  2282. "a": 255
  2283. },
  2284. "_contentSize": {
  2285. "__type__": "cc.Size",
  2286. "width": 66.74,
  2287. "height": 151.2
  2288. },
  2289. "_anchorPoint": {
  2290. "__type__": "cc.Vec2",
  2291. "x": 0.5,
  2292. "y": 0.5
  2293. },
  2294. "_trs": {
  2295. "__type__": "TypedArray",
  2296. "ctor": "Float64Array",
  2297. "array": [
  2298. 131.85,
  2299. 0,
  2300. 0,
  2301. 0,
  2302. 0,
  2303. 0,
  2304. 1,
  2305. 1,
  2306. 1,
  2307. 1
  2308. ]
  2309. },
  2310. "_eulerAngles": {
  2311. "__type__": "cc.Vec3",
  2312. "x": 0,
  2313. "y": 0,
  2314. "z": 0
  2315. },
  2316. "_skewX": 0,
  2317. "_skewY": 0,
  2318. "_is3DNode": false,
  2319. "_groupIndex": 0,
  2320. "groupIndex": 0,
  2321. "_id": ""
  2322. },
  2323. {
  2324. "__type__": "cc.Label",
  2325. "_name": "",
  2326. "_objFlags": 0,
  2327. "node": {
  2328. "__id__": 61
  2329. },
  2330. "_enabled": true,
  2331. "_materials": [
  2332. {
  2333. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2334. }
  2335. ],
  2336. "_srcBlendFactor": 770,
  2337. "_dstBlendFactor": 771,
  2338. "_string": "8",
  2339. "_N$string": "8",
  2340. "_fontSize": 120,
  2341. "_lineHeight": 120,
  2342. "_enableWrapText": true,
  2343. "_N$file": null,
  2344. "_isSystemFontUsed": true,
  2345. "_spacingX": 0,
  2346. "_batchAsBitmap": false,
  2347. "_styleFlags": 1,
  2348. "_underlineHeight": 0,
  2349. "_N$horizontalAlign": 1,
  2350. "_N$verticalAlign": 1,
  2351. "_N$fontFamily": "Arial",
  2352. "_N$overflow": 0,
  2353. "_N$cacheMode": 0,
  2354. "_id": ""
  2355. },
  2356. {
  2357. "__type__": "cc.LabelOutline",
  2358. "_name": "",
  2359. "_objFlags": 0,
  2360. "node": {
  2361. "__id__": 61
  2362. },
  2363. "_enabled": false,
  2364. "_color": {
  2365. "__type__": "cc.Color",
  2366. "r": 0,
  2367. "g": 0,
  2368. "b": 0,
  2369. "a": 255
  2370. },
  2371. "_width": 1,
  2372. "_id": ""
  2373. },
  2374. {
  2375. "__type__": "cc.PrefabInfo",
  2376. "root": {
  2377. "__id__": 1
  2378. },
  2379. "asset": {
  2380. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  2381. },
  2382. "fileId": "e65YhI4flCmJOhDb8bzRnH",
  2383. "sync": false
  2384. },
  2385. {
  2386. "__type__": "cc.Layout",
  2387. "_name": "",
  2388. "_objFlags": 0,
  2389. "node": {
  2390. "__id__": 44
  2391. },
  2392. "_enabled": false,
  2393. "_layoutSize": {
  2394. "__type__": "cc.Size",
  2395. "width": 200,
  2396. "height": 200
  2397. },
  2398. "_resize": 0,
  2399. "_N$layoutType": 1,
  2400. "_N$cellSize": {
  2401. "__type__": "cc.Size",
  2402. "width": 40,
  2403. "height": 40
  2404. },
  2405. "_N$startAxis": 0,
  2406. "_N$paddingLeft": 0,
  2407. "_N$paddingRight": 0,
  2408. "_N$paddingTop": 0,
  2409. "_N$paddingBottom": 0,
  2410. "_N$spacingX": 5,
  2411. "_N$spacingY": 0,
  2412. "_N$verticalDirection": 1,
  2413. "_N$horizontalDirection": 0,
  2414. "_N$affectedByScale": false,
  2415. "_id": ""
  2416. },
  2417. {
  2418. "__type__": "cc.PrefabInfo",
  2419. "root": {
  2420. "__id__": 1
  2421. },
  2422. "asset": {
  2423. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  2424. },
  2425. "fileId": "68XSTFnnpHl66l38W5MCQV",
  2426. "sync": false
  2427. },
  2428. {
  2429. "__type__": "cc.Node",
  2430. "_name": "提现节点",
  2431. "_objFlags": 0,
  2432. "_parent": {
  2433. "__id__": 3
  2434. },
  2435. "_children": [
  2436. {
  2437. "__id__": 68
  2438. }
  2439. ],
  2440. "_active": false,
  2441. "_components": [],
  2442. "_prefab": {
  2443. "__id__": 100
  2444. },
  2445. "_opacity": 255,
  2446. "_color": {
  2447. "__type__": "cc.Color",
  2448. "r": 255,
  2449. "g": 255,
  2450. "b": 255,
  2451. "a": 255
  2452. },
  2453. "_contentSize": {
  2454. "__type__": "cc.Size",
  2455. "width": 600,
  2456. "height": 110.00000000000023
  2457. },
  2458. "_anchorPoint": {
  2459. "__type__": "cc.Vec2",
  2460. "x": 0.5,
  2461. "y": 0.5
  2462. },
  2463. "_trs": {
  2464. "__type__": "TypedArray",
  2465. "ctor": "Float64Array",
  2466. "array": [
  2467. 0,
  2468. -505.313,
  2469. 0,
  2470. 0,
  2471. 0,
  2472. 0,
  2473. 1,
  2474. 1,
  2475. 1,
  2476. 1
  2477. ]
  2478. },
  2479. "_eulerAngles": {
  2480. "__type__": "cc.Vec3",
  2481. "x": 0,
  2482. "y": 0,
  2483. "z": 0
  2484. },
  2485. "_skewX": 0,
  2486. "_skewY": 0,
  2487. "_is3DNode": false,
  2488. "_groupIndex": 0,
  2489. "groupIndex": 0,
  2490. "_id": ""
  2491. },
  2492. {
  2493. "__type__": "cc.Node",
  2494. "_name": "背景",
  2495. "_objFlags": 0,
  2496. "_parent": {
  2497. "__id__": 67
  2498. },
  2499. "_children": [
  2500. {
  2501. "__id__": 69
  2502. },
  2503. {
  2504. "__id__": 72
  2505. },
  2506. {
  2507. "__id__": 82
  2508. },
  2509. {
  2510. "__id__": 88
  2511. }
  2512. ],
  2513. "_active": true,
  2514. "_components": [
  2515. {
  2516. "__id__": 98
  2517. }
  2518. ],
  2519. "_prefab": {
  2520. "__id__": 99
  2521. },
  2522. "_opacity": 255,
  2523. "_color": {
  2524. "__type__": "cc.Color",
  2525. "r": 255,
  2526. "g": 255,
  2527. "b": 255,
  2528. "a": 255
  2529. },
  2530. "_contentSize": {
  2531. "__type__": "cc.Size",
  2532. "width": 568,
  2533. "height": 127
  2534. },
  2535. "_anchorPoint": {
  2536. "__type__": "cc.Vec2",
  2537. "x": 0.5,
  2538. "y": 0.5
  2539. },
  2540. "_trs": {
  2541. "__type__": "TypedArray",
  2542. "ctor": "Float64Array",
  2543. "array": [
  2544. 0,
  2545. 0,
  2546. 0,
  2547. 0,
  2548. 0,
  2549. 0,
  2550. 1,
  2551. 1.08,
  2552. 1.08,
  2553. 1
  2554. ]
  2555. },
  2556. "_eulerAngles": {
  2557. "__type__": "cc.Vec3",
  2558. "x": 0,
  2559. "y": 0,
  2560. "z": 0
  2561. },
  2562. "_skewX": 0,
  2563. "_skewY": 0,
  2564. "_is3DNode": false,
  2565. "_groupIndex": 0,
  2566. "groupIndex": 0,
  2567. "_id": ""
  2568. },
  2569. {
  2570. "__type__": "cc.Node",
  2571. "_name": "图标",
  2572. "_objFlags": 0,
  2573. "_parent": {
  2574. "__id__": 68
  2575. },
  2576. "_children": [],
  2577. "_active": true,
  2578. "_components": [
  2579. {
  2580. "__id__": 70
  2581. }
  2582. ],
  2583. "_prefab": {
  2584. "__id__": 71
  2585. },
  2586. "_opacity": 255,
  2587. "_color": {
  2588. "__type__": "cc.Color",
  2589. "r": 255,
  2590. "g": 255,
  2591. "b": 255,
  2592. "a": 255
  2593. },
  2594. "_contentSize": {
  2595. "__type__": "cc.Size",
  2596. "width": 84,
  2597. "height": 84
  2598. },
  2599. "_anchorPoint": {
  2600. "__type__": "cc.Vec2",
  2601. "x": 0.5,
  2602. "y": 0.5
  2603. },
  2604. "_trs": {
  2605. "__type__": "TypedArray",
  2606. "ctor": "Float64Array",
  2607. "array": [
  2608. -208.886,
  2609. 0,
  2610. 0,
  2611. 0,
  2612. 0,
  2613. 0,
  2614. 1,
  2615. 1.1,
  2616. 1.1,
  2617. 1
  2618. ]
  2619. },
  2620. "_eulerAngles": {
  2621. "__type__": "cc.Vec3",
  2622. "x": 0,
  2623. "y": 0,
  2624. "z": 0
  2625. },
  2626. "_skewX": 0,
  2627. "_skewY": 0,
  2628. "_is3DNode": false,
  2629. "_groupIndex": 0,
  2630. "groupIndex": 0,
  2631. "_id": ""
  2632. },
  2633. {
  2634. "__type__": "cc.Sprite",
  2635. "_name": "",
  2636. "_objFlags": 0,
  2637. "node": {
  2638. "__id__": 69
  2639. },
  2640. "_enabled": true,
  2641. "_materials": [
  2642. {
  2643. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2644. }
  2645. ],
  2646. "_srcBlendFactor": 770,
  2647. "_dstBlendFactor": 771,
  2648. "_spriteFrame": {
  2649. "__uuid__": "d25dcb00-26e2-46bf-a977-9b25070ff00e"
  2650. },
  2651. "_type": 0,
  2652. "_sizeMode": 1,
  2653. "_fillType": 0,
  2654. "_fillCenter": {
  2655. "__type__": "cc.Vec2",
  2656. "x": 0,
  2657. "y": 0
  2658. },
  2659. "_fillStart": 0,
  2660. "_fillRange": 0,
  2661. "_isTrimmedMode": true,
  2662. "_atlas": null,
  2663. "_id": ""
  2664. },
  2665. {
  2666. "__type__": "cc.PrefabInfo",
  2667. "root": {
  2668. "__id__": 1
  2669. },
  2670. "asset": {
  2671. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  2672. },
  2673. "fileId": "95FmtU2AlNVpkNfqBCTHQ5",
  2674. "sync": false
  2675. },
  2676. {
  2677. "__type__": "cc.Node",
  2678. "_name": "进度条背景",
  2679. "_objFlags": 0,
  2680. "_parent": {
  2681. "__id__": 68
  2682. },
  2683. "_children": [
  2684. {
  2685. "__id__": 73
  2686. },
  2687. {
  2688. "__id__": 76
  2689. }
  2690. ],
  2691. "_active": true,
  2692. "_components": [
  2693. {
  2694. "__id__": 80
  2695. }
  2696. ],
  2697. "_prefab": {
  2698. "__id__": 81
  2699. },
  2700. "_opacity": 255,
  2701. "_color": {
  2702. "__type__": "cc.Color",
  2703. "r": 255,
  2704. "g": 255,
  2705. "b": 255,
  2706. "a": 255
  2707. },
  2708. "_contentSize": {
  2709. "__type__": "cc.Size",
  2710. "width": 200,
  2711. "height": 30
  2712. },
  2713. "_anchorPoint": {
  2714. "__type__": "cc.Vec2",
  2715. "x": 0.5,
  2716. "y": 0.5
  2717. },
  2718. "_trs": {
  2719. "__type__": "TypedArray",
  2720. "ctor": "Float64Array",
  2721. "array": [
  2722. -32.515,
  2723. -21.677,
  2724. 0,
  2725. 0,
  2726. 0,
  2727. 0,
  2728. 1,
  2729. 1,
  2730. 1,
  2731. 1
  2732. ]
  2733. },
  2734. "_eulerAngles": {
  2735. "__type__": "cc.Vec3",
  2736. "x": 0,
  2737. "y": 0,
  2738. "z": 0
  2739. },
  2740. "_skewX": 0,
  2741. "_skewY": 0,
  2742. "_is3DNode": false,
  2743. "_groupIndex": 0,
  2744. "groupIndex": 0,
  2745. "_id": ""
  2746. },
  2747. {
  2748. "__type__": "cc.Node",
  2749. "_name": "进度条",
  2750. "_objFlags": 0,
  2751. "_parent": {
  2752. "__id__": 72
  2753. },
  2754. "_children": [],
  2755. "_active": true,
  2756. "_components": [
  2757. {
  2758. "__id__": 74
  2759. }
  2760. ],
  2761. "_prefab": {
  2762. "__id__": 75
  2763. },
  2764. "_opacity": 255,
  2765. "_color": {
  2766. "__type__": "cc.Color",
  2767. "r": 255,
  2768. "g": 255,
  2769. "b": 255,
  2770. "a": 255
  2771. },
  2772. "_contentSize": {
  2773. "__type__": "cc.Size",
  2774. "width": 197,
  2775. "height": 26
  2776. },
  2777. "_anchorPoint": {
  2778. "__type__": "cc.Vec2",
  2779. "x": 0.5,
  2780. "y": 0.5
  2781. },
  2782. "_trs": {
  2783. "__type__": "TypedArray",
  2784. "ctor": "Float64Array",
  2785. "array": [
  2786. 0,
  2787. 0,
  2788. 0,
  2789. 0,
  2790. 0,
  2791. 0,
  2792. 1,
  2793. 1,
  2794. 1,
  2795. 1
  2796. ]
  2797. },
  2798. "_eulerAngles": {
  2799. "__type__": "cc.Vec3",
  2800. "x": 0,
  2801. "y": 0,
  2802. "z": 0
  2803. },
  2804. "_skewX": 0,
  2805. "_skewY": 0,
  2806. "_is3DNode": false,
  2807. "_groupIndex": 0,
  2808. "groupIndex": 0,
  2809. "_id": ""
  2810. },
  2811. {
  2812. "__type__": "cc.Sprite",
  2813. "_name": "",
  2814. "_objFlags": 0,
  2815. "node": {
  2816. "__id__": 73
  2817. },
  2818. "_enabled": true,
  2819. "_materials": [
  2820. {
  2821. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2822. }
  2823. ],
  2824. "_srcBlendFactor": 770,
  2825. "_dstBlendFactor": 771,
  2826. "_spriteFrame": {
  2827. "__uuid__": "9ae7b17e-12eb-4496-9746-ee4ab69b7680"
  2828. },
  2829. "_type": 3,
  2830. "_sizeMode": 0,
  2831. "_fillType": 0,
  2832. "_fillCenter": {
  2833. "__type__": "cc.Vec2",
  2834. "x": 0,
  2835. "y": 0
  2836. },
  2837. "_fillStart": 0,
  2838. "_fillRange": 0,
  2839. "_isTrimmedMode": true,
  2840. "_atlas": null,
  2841. "_id": ""
  2842. },
  2843. {
  2844. "__type__": "cc.PrefabInfo",
  2845. "root": {
  2846. "__id__": 1
  2847. },
  2848. "asset": {
  2849. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  2850. },
  2851. "fileId": "3fCjYCQfpN+ZfXGQkCuFpy",
  2852. "sync": false
  2853. },
  2854. {
  2855. "__type__": "cc.Node",
  2856. "_name": "进度",
  2857. "_objFlags": 0,
  2858. "_parent": {
  2859. "__id__": 72
  2860. },
  2861. "_children": [],
  2862. "_active": true,
  2863. "_components": [
  2864. {
  2865. "__id__": 77
  2866. },
  2867. {
  2868. "__id__": 78
  2869. }
  2870. ],
  2871. "_prefab": {
  2872. "__id__": 79
  2873. },
  2874. "_opacity": 255,
  2875. "_color": {
  2876. "__type__": "cc.Color",
  2877. "r": 255,
  2878. "g": 255,
  2879. "b": 255,
  2880. "a": 255
  2881. },
  2882. "_contentSize": {
  2883. "__type__": "cc.Size",
  2884. "width": 85.42,
  2885. "height": 52.4
  2886. },
  2887. "_anchorPoint": {
  2888. "__type__": "cc.Vec2",
  2889. "x": 0.5,
  2890. "y": 0.5
  2891. },
  2892. "_trs": {
  2893. "__type__": "TypedArray",
  2894. "ctor": "Float64Array",
  2895. "array": [
  2896. 2.367,
  2897. 1.323,
  2898. 0,
  2899. 0,
  2900. 0,
  2901. 0,
  2902. 1,
  2903. 1,
  2904. 1,
  2905. 1
  2906. ]
  2907. },
  2908. "_eulerAngles": {
  2909. "__type__": "cc.Vec3",
  2910. "x": 0,
  2911. "y": 0,
  2912. "z": 0
  2913. },
  2914. "_skewX": 0,
  2915. "_skewY": 0,
  2916. "_is3DNode": false,
  2917. "_groupIndex": 0,
  2918. "groupIndex": 0,
  2919. "_id": ""
  2920. },
  2921. {
  2922. "__type__": "cc.Label",
  2923. "_name": "",
  2924. "_objFlags": 0,
  2925. "node": {
  2926. "__id__": 76
  2927. },
  2928. "_enabled": true,
  2929. "_materials": [
  2930. {
  2931. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2932. }
  2933. ],
  2934. "_srcBlendFactor": 770,
  2935. "_dstBlendFactor": 771,
  2936. "_string": "888/3888",
  2937. "_N$string": "888/3888",
  2938. "_fontSize": 20,
  2939. "_lineHeight": 40,
  2940. "_enableWrapText": true,
  2941. "_N$file": null,
  2942. "_isSystemFontUsed": true,
  2943. "_spacingX": 0,
  2944. "_batchAsBitmap": false,
  2945. "_styleFlags": 1,
  2946. "_underlineHeight": 0,
  2947. "_N$horizontalAlign": 1,
  2948. "_N$verticalAlign": 1,
  2949. "_N$fontFamily": "Arial",
  2950. "_N$overflow": 0,
  2951. "_N$cacheMode": 0,
  2952. "_id": ""
  2953. },
  2954. {
  2955. "__type__": "cc.LabelOutline",
  2956. "_name": "",
  2957. "_objFlags": 0,
  2958. "node": {
  2959. "__id__": 76
  2960. },
  2961. "_enabled": true,
  2962. "_color": {
  2963. "__type__": "cc.Color",
  2964. "r": 151,
  2965. "g": 19,
  2966. "b": 8,
  2967. "a": 255
  2968. },
  2969. "_width": 1,
  2970. "_id": ""
  2971. },
  2972. {
  2973. "__type__": "cc.PrefabInfo",
  2974. "root": {
  2975. "__id__": 1
  2976. },
  2977. "asset": {
  2978. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  2979. },
  2980. "fileId": "5as9MLK89FaquiJmikHpmW",
  2981. "sync": false
  2982. },
  2983. {
  2984. "__type__": "cc.Sprite",
  2985. "_name": "",
  2986. "_objFlags": 0,
  2987. "node": {
  2988. "__id__": 72
  2989. },
  2990. "_enabled": true,
  2991. "_materials": [
  2992. {
  2993. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2994. }
  2995. ],
  2996. "_srcBlendFactor": 770,
  2997. "_dstBlendFactor": 771,
  2998. "_spriteFrame": {
  2999. "__uuid__": "518d1473-cc4c-429f-b845-19acb33fa54f"
  3000. },
  3001. "_type": 0,
  3002. "_sizeMode": 0,
  3003. "_fillType": 0,
  3004. "_fillCenter": {
  3005. "__type__": "cc.Vec2",
  3006. "x": 0,
  3007. "y": 0
  3008. },
  3009. "_fillStart": 0,
  3010. "_fillRange": 0,
  3011. "_isTrimmedMode": true,
  3012. "_atlas": null,
  3013. "_id": ""
  3014. },
  3015. {
  3016. "__type__": "cc.PrefabInfo",
  3017. "root": {
  3018. "__id__": 1
  3019. },
  3020. "asset": {
  3021. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  3022. },
  3023. "fileId": "49LWG66Y9GRrP1xKLr1nrV",
  3024. "sync": false
  3025. },
  3026. {
  3027. "__type__": "cc.Node",
  3028. "_name": "提现按钮",
  3029. "_objFlags": 0,
  3030. "_parent": {
  3031. "__id__": 68
  3032. },
  3033. "_children": [],
  3034. "_active": true,
  3035. "_components": [
  3036. {
  3037. "__id__": 83
  3038. },
  3039. {
  3040. "__id__": 84
  3041. },
  3042. {
  3043. "__id__": 85
  3044. }
  3045. ],
  3046. "_prefab": {
  3047. "__id__": 87
  3048. },
  3049. "_opacity": 255,
  3050. "_color": {
  3051. "__type__": "cc.Color",
  3052. "r": 255,
  3053. "g": 255,
  3054. "b": 255,
  3055. "a": 255
  3056. },
  3057. "_contentSize": {
  3058. "__type__": "cc.Size",
  3059. "width": 133,
  3060. "height": 60
  3061. },
  3062. "_anchorPoint": {
  3063. "__type__": "cc.Vec2",
  3064. "x": 0.5,
  3065. "y": 0.5
  3066. },
  3067. "_trs": {
  3068. "__type__": "TypedArray",
  3069. "ctor": "Float64Array",
  3070. "array": [
  3071. 180.156,
  3072. 0,
  3073. 0,
  3074. 0,
  3075. 0,
  3076. 0,
  3077. 1,
  3078. 1.1,
  3079. 1.1,
  3080. 0
  3081. ]
  3082. },
  3083. "_eulerAngles": {
  3084. "__type__": "cc.Vec3",
  3085. "x": 0,
  3086. "y": 0,
  3087. "z": 0
  3088. },
  3089. "_skewX": 0,
  3090. "_skewY": 0,
  3091. "_is3DNode": false,
  3092. "_groupIndex": 0,
  3093. "groupIndex": 0,
  3094. "_id": ""
  3095. },
  3096. {
  3097. "__type__": "cc.Sprite",
  3098. "_name": "",
  3099. "_objFlags": 0,
  3100. "node": {
  3101. "__id__": 82
  3102. },
  3103. "_enabled": true,
  3104. "_materials": [
  3105. {
  3106. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3107. }
  3108. ],
  3109. "_srcBlendFactor": 770,
  3110. "_dstBlendFactor": 771,
  3111. "_spriteFrame": {
  3112. "__uuid__": "86cc49ef-de56-475e-9bb9-c4193dda3b97"
  3113. },
  3114. "_type": 0,
  3115. "_sizeMode": 1,
  3116. "_fillType": 0,
  3117. "_fillCenter": {
  3118. "__type__": "cc.Vec2",
  3119. "x": 0,
  3120. "y": 0
  3121. },
  3122. "_fillStart": 0,
  3123. "_fillRange": 0,
  3124. "_isTrimmedMode": true,
  3125. "_atlas": null,
  3126. "_id": ""
  3127. },
  3128. {
  3129. "__type__": "cc.Animation",
  3130. "_name": "",
  3131. "_objFlags": 0,
  3132. "node": {
  3133. "__id__": 82
  3134. },
  3135. "_enabled": true,
  3136. "_defaultClip": {
  3137. "__uuid__": "1c7cfdae-7b6c-46a5-9085-2fa8aa684ac7"
  3138. },
  3139. "_clips": [
  3140. {
  3141. "__uuid__": "1c7cfdae-7b6c-46a5-9085-2fa8aa684ac7"
  3142. }
  3143. ],
  3144. "playOnLoad": false,
  3145. "_id": ""
  3146. },
  3147. {
  3148. "__type__": "cc.Button",
  3149. "_name": "",
  3150. "_objFlags": 0,
  3151. "node": {
  3152. "__id__": 82
  3153. },
  3154. "_enabled": true,
  3155. "_normalMaterial": null,
  3156. "_grayMaterial": null,
  3157. "duration": 0.1,
  3158. "zoomScale": 1.2,
  3159. "clickEvents": [
  3160. {
  3161. "__id__": 86
  3162. }
  3163. ],
  3164. "_N$interactable": true,
  3165. "_N$enableAutoGrayEffect": false,
  3166. "_N$transition": 3,
  3167. "transition": 3,
  3168. "_N$normalColor": {
  3169. "__type__": "cc.Color",
  3170. "r": 255,
  3171. "g": 255,
  3172. "b": 255,
  3173. "a": 255
  3174. },
  3175. "_N$pressedColor": {
  3176. "__type__": "cc.Color",
  3177. "r": 211,
  3178. "g": 211,
  3179. "b": 211,
  3180. "a": 255
  3181. },
  3182. "pressedColor": {
  3183. "__type__": "cc.Color",
  3184. "r": 211,
  3185. "g": 211,
  3186. "b": 211,
  3187. "a": 255
  3188. },
  3189. "_N$hoverColor": {
  3190. "__type__": "cc.Color",
  3191. "r": 255,
  3192. "g": 255,
  3193. "b": 255,
  3194. "a": 255
  3195. },
  3196. "hoverColor": {
  3197. "__type__": "cc.Color",
  3198. "r": 255,
  3199. "g": 255,
  3200. "b": 255,
  3201. "a": 255
  3202. },
  3203. "_N$disabledColor": {
  3204. "__type__": "cc.Color",
  3205. "r": 124,
  3206. "g": 124,
  3207. "b": 124,
  3208. "a": 255
  3209. },
  3210. "_N$normalSprite": null,
  3211. "_N$pressedSprite": null,
  3212. "pressedSprite": null,
  3213. "_N$hoverSprite": null,
  3214. "hoverSprite": null,
  3215. "_N$disabledSprite": null,
  3216. "_N$target": {
  3217. "__id__": 82
  3218. },
  3219. "_id": ""
  3220. },
  3221. {
  3222. "__type__": "cc.ClickEvent",
  3223. "target": {
  3224. "__id__": 1
  3225. },
  3226. "component": "",
  3227. "_componentId": "bde9cH+JsJLHoZ2m6rtWbXI",
  3228. "handler": "clickCashOut",
  3229. "customEventData": ""
  3230. },
  3231. {
  3232. "__type__": "cc.PrefabInfo",
  3233. "root": {
  3234. "__id__": 1
  3235. },
  3236. "asset": {
  3237. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  3238. },
  3239. "fileId": "cboaETstBMx6ctq/MHe2Yl",
  3240. "sync": false
  3241. },
  3242. {
  3243. "__type__": "cc.Node",
  3244. "_name": "New Node",
  3245. "_objFlags": 0,
  3246. "_parent": {
  3247. "__id__": 68
  3248. },
  3249. "_children": [
  3250. {
  3251. "__id__": 89
  3252. },
  3253. {
  3254. "__id__": 93
  3255. }
  3256. ],
  3257. "_active": true,
  3258. "_components": [
  3259. {
  3260. "__id__": 96
  3261. }
  3262. ],
  3263. "_prefab": {
  3264. "__id__": 97
  3265. },
  3266. "_opacity": 255,
  3267. "_color": {
  3268. "__type__": "cc.Color",
  3269. "r": 255,
  3270. "g": 255,
  3271. "b": 255,
  3272. "a": 255
  3273. },
  3274. "_contentSize": {
  3275. "__type__": "cc.Size",
  3276. "width": 162.68,
  3277. "height": 50
  3278. },
  3279. "_anchorPoint": {
  3280. "__type__": "cc.Vec2",
  3281. "x": 0.5,
  3282. "y": 0.5
  3283. },
  3284. "_trs": {
  3285. "__type__": "TypedArray",
  3286. "ctor": "Float64Array",
  3287. "array": [
  3288. -32.239000000000004,
  3289. 23.524,
  3290. 0,
  3291. 0,
  3292. 0,
  3293. 0,
  3294. 1,
  3295. 1,
  3296. 1,
  3297. 1
  3298. ]
  3299. },
  3300. "_eulerAngles": {
  3301. "__type__": "cc.Vec3",
  3302. "x": 0,
  3303. "y": 0,
  3304. "z": 0
  3305. },
  3306. "_skewX": 0,
  3307. "_skewY": 0,
  3308. "_is3DNode": false,
  3309. "_groupIndex": 0,
  3310. "groupIndex": 0,
  3311. "_id": ""
  3312. },
  3313. {
  3314. "__type__": "cc.Node",
  3315. "_name": "提现金额",
  3316. "_objFlags": 0,
  3317. "_parent": {
  3318. "__id__": 88
  3319. },
  3320. "_children": [],
  3321. "_active": true,
  3322. "_components": [
  3323. {
  3324. "__id__": 90
  3325. },
  3326. {
  3327. "__id__": 91
  3328. }
  3329. ],
  3330. "_prefab": {
  3331. "__id__": 92
  3332. },
  3333. "_opacity": 255,
  3334. "_color": {
  3335. "__type__": "cc.Color",
  3336. "r": 251,
  3337. "g": 240,
  3338. "b": 110,
  3339. "a": 255
  3340. },
  3341. "_contentSize": {
  3342. "__type__": "cc.Size",
  3343. "width": 50.68,
  3344. "height": 54.4
  3345. },
  3346. "_anchorPoint": {
  3347. "__type__": "cc.Vec2",
  3348. "x": 0.5,
  3349. "y": 0.5
  3350. },
  3351. "_trs": {
  3352. "__type__": "TypedArray",
  3353. "ctor": "Float64Array",
  3354. "array": [
  3355. -56,
  3356. -1.535,
  3357. 0,
  3358. 0,
  3359. 0,
  3360. 0,
  3361. 1,
  3362. 1,
  3363. 1,
  3364. 1
  3365. ]
  3366. },
  3367. "_eulerAngles": {
  3368. "__type__": "cc.Vec3",
  3369. "x": 0,
  3370. "y": 0,
  3371. "z": 0
  3372. },
  3373. "_skewX": 0,
  3374. "_skewY": 0,
  3375. "_is3DNode": false,
  3376. "_groupIndex": 0,
  3377. "groupIndex": 0,
  3378. "_id": ""
  3379. },
  3380. {
  3381. "__type__": "cc.Label",
  3382. "_name": "",
  3383. "_objFlags": 0,
  3384. "node": {
  3385. "__id__": 89
  3386. },
  3387. "_enabled": true,
  3388. "_materials": [
  3389. {
  3390. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3391. }
  3392. ],
  3393. "_srcBlendFactor": 770,
  3394. "_dstBlendFactor": 771,
  3395. "_string": "1元",
  3396. "_N$string": "1元",
  3397. "_fontSize": 30,
  3398. "_lineHeight": 40,
  3399. "_enableWrapText": true,
  3400. "_N$file": null,
  3401. "_isSystemFontUsed": true,
  3402. "_spacingX": 0,
  3403. "_batchAsBitmap": false,
  3404. "_styleFlags": 1,
  3405. "_underlineHeight": 0,
  3406. "_N$horizontalAlign": 1,
  3407. "_N$verticalAlign": 1,
  3408. "_N$fontFamily": "Arial",
  3409. "_N$overflow": 0,
  3410. "_N$cacheMode": 0,
  3411. "_id": ""
  3412. },
  3413. {
  3414. "__type__": "cc.LabelOutline",
  3415. "_name": "",
  3416. "_objFlags": 0,
  3417. "node": {
  3418. "__id__": 89
  3419. },
  3420. "_enabled": true,
  3421. "_color": {
  3422. "__type__": "cc.Color",
  3423. "r": 151,
  3424. "g": 19,
  3425. "b": 8,
  3426. "a": 255
  3427. },
  3428. "_width": 2,
  3429. "_id": ""
  3430. },
  3431. {
  3432. "__type__": "cc.PrefabInfo",
  3433. "root": {
  3434. "__id__": 1
  3435. },
  3436. "asset": {
  3437. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  3438. },
  3439. "fileId": "d19F05GeRHgIbQE513bda8",
  3440. "sync": false
  3441. },
  3442. {
  3443. "__type__": "cc.Node",
  3444. "_name": "提现进度",
  3445. "_objFlags": 0,
  3446. "_parent": {
  3447. "__id__": 88
  3448. },
  3449. "_children": [],
  3450. "_active": true,
  3451. "_components": [
  3452. {
  3453. "__id__": 94
  3454. }
  3455. ],
  3456. "_prefab": {
  3457. "__id__": 95
  3458. },
  3459. "_opacity": 255,
  3460. "_color": {
  3461. "__type__": "cc.Color",
  3462. "r": 151,
  3463. "g": 19,
  3464. "b": 8,
  3465. "a": 255
  3466. },
  3467. "_contentSize": {
  3468. "__type__": "cc.Size",
  3469. "width": 104,
  3470. "height": 50.4
  3471. },
  3472. "_anchorPoint": {
  3473. "__type__": "cc.Vec2",
  3474. "x": 0.5,
  3475. "y": 0.5
  3476. },
  3477. "_trs": {
  3478. "__type__": "TypedArray",
  3479. "ctor": "Float64Array",
  3480. "array": [
  3481. 29.34,
  3482. -4.285,
  3483. 0,
  3484. 0,
  3485. 0,
  3486. 0,
  3487. 1,
  3488. 1,
  3489. 1,
  3490. 1
  3491. ]
  3492. },
  3493. "_eulerAngles": {
  3494. "__type__": "cc.Vec3",
  3495. "x": 0,
  3496. "y": 0,
  3497. "z": 0
  3498. },
  3499. "_skewX": 0,
  3500. "_skewY": 0,
  3501. "_is3DNode": false,
  3502. "_groupIndex": 0,
  3503. "groupIndex": 0,
  3504. "_id": ""
  3505. },
  3506. {
  3507. "__type__": "cc.Label",
  3508. "_name": "",
  3509. "_objFlags": 0,
  3510. "node": {
  3511. "__id__": 93
  3512. },
  3513. "_enabled": true,
  3514. "_materials": [
  3515. {
  3516. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3517. }
  3518. ],
  3519. "_srcBlendFactor": 770,
  3520. "_dstBlendFactor": 771,
  3521. "_string": "提现进度",
  3522. "_N$string": "提现进度",
  3523. "_fontSize": 26,
  3524. "_lineHeight": 40,
  3525. "_enableWrapText": true,
  3526. "_N$file": null,
  3527. "_isSystemFontUsed": true,
  3528. "_spacingX": 0,
  3529. "_batchAsBitmap": false,
  3530. "_styleFlags": 1,
  3531. "_underlineHeight": 0,
  3532. "_N$horizontalAlign": 1,
  3533. "_N$verticalAlign": 1,
  3534. "_N$fontFamily": "Arial",
  3535. "_N$overflow": 0,
  3536. "_N$cacheMode": 0,
  3537. "_id": ""
  3538. },
  3539. {
  3540. "__type__": "cc.PrefabInfo",
  3541. "root": {
  3542. "__id__": 1
  3543. },
  3544. "asset": {
  3545. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  3546. },
  3547. "fileId": "8010NXF2RGE6kY1aXNJ7B6",
  3548. "sync": false
  3549. },
  3550. {
  3551. "__type__": "cc.Layout",
  3552. "_name": "",
  3553. "_objFlags": 0,
  3554. "node": {
  3555. "__id__": 88
  3556. },
  3557. "_enabled": true,
  3558. "_layoutSize": {
  3559. "__type__": "cc.Size",
  3560. "width": 162.68,
  3561. "height": 50
  3562. },
  3563. "_resize": 1,
  3564. "_N$layoutType": 1,
  3565. "_N$cellSize": {
  3566. "__type__": "cc.Size",
  3567. "width": 40,
  3568. "height": 40
  3569. },
  3570. "_N$startAxis": 0,
  3571. "_N$paddingLeft": 0,
  3572. "_N$paddingRight": 0,
  3573. "_N$paddingTop": 0,
  3574. "_N$paddingBottom": 0,
  3575. "_N$spacingX": 8,
  3576. "_N$spacingY": 0,
  3577. "_N$verticalDirection": 1,
  3578. "_N$horizontalDirection": 0,
  3579. "_N$affectedByScale": false,
  3580. "_id": ""
  3581. },
  3582. {
  3583. "__type__": "cc.PrefabInfo",
  3584. "root": {
  3585. "__id__": 1
  3586. },
  3587. "asset": {
  3588. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  3589. },
  3590. "fileId": "606jfkCaxMaJAfNnOsFK7z",
  3591. "sync": false
  3592. },
  3593. {
  3594. "__type__": "cc.Sprite",
  3595. "_name": "",
  3596. "_objFlags": 0,
  3597. "node": {
  3598. "__id__": 68
  3599. },
  3600. "_enabled": true,
  3601. "_materials": [
  3602. {
  3603. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3604. }
  3605. ],
  3606. "_srcBlendFactor": 770,
  3607. "_dstBlendFactor": 771,
  3608. "_spriteFrame": {
  3609. "__uuid__": "9b9b1be9-aac9-45e7-acc0-a4002425a17c"
  3610. },
  3611. "_type": 0,
  3612. "_sizeMode": 1,
  3613. "_fillType": 0,
  3614. "_fillCenter": {
  3615. "__type__": "cc.Vec2",
  3616. "x": 0,
  3617. "y": 0
  3618. },
  3619. "_fillStart": 0,
  3620. "_fillRange": 0,
  3621. "_isTrimmedMode": true,
  3622. "_atlas": null,
  3623. "_id": ""
  3624. },
  3625. {
  3626. "__type__": "cc.PrefabInfo",
  3627. "root": {
  3628. "__id__": 1
  3629. },
  3630. "asset": {
  3631. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  3632. },
  3633. "fileId": "d34JRsOpJAirj/xpgCcFRC",
  3634. "sync": false
  3635. },
  3636. {
  3637. "__type__": "cc.PrefabInfo",
  3638. "root": {
  3639. "__id__": 1
  3640. },
  3641. "asset": {
  3642. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  3643. },
  3644. "fileId": "c7o04LZldMr7SxnIYQcNNR",
  3645. "sync": false
  3646. },
  3647. {
  3648. "__type__": "cc.Node",
  3649. "_name": "任务进度节点",
  3650. "_objFlags": 0,
  3651. "_parent": {
  3652. "__id__": 3
  3653. },
  3654. "_children": [
  3655. {
  3656. "__id__": 102
  3657. },
  3658. {
  3659. "__id__": 114
  3660. }
  3661. ],
  3662. "_active": true,
  3663. "_components": [],
  3664. "_prefab": {
  3665. "__id__": 135
  3666. },
  3667. "_opacity": 255,
  3668. "_color": {
  3669. "__type__": "cc.Color",
  3670. "r": 255,
  3671. "g": 255,
  3672. "b": 255,
  3673. "a": 255
  3674. },
  3675. "_contentSize": {
  3676. "__type__": "cc.Size",
  3677. "width": 0,
  3678. "height": 0
  3679. },
  3680. "_anchorPoint": {
  3681. "__type__": "cc.Vec2",
  3682. "x": 0.5,
  3683. "y": 0.5
  3684. },
  3685. "_trs": {
  3686. "__type__": "TypedArray",
  3687. "ctor": "Float64Array",
  3688. "array": [
  3689. 0,
  3690. 0,
  3691. 0,
  3692. 0,
  3693. 0,
  3694. 0,
  3695. 1,
  3696. 1,
  3697. 1,
  3698. 1
  3699. ]
  3700. },
  3701. "_eulerAngles": {
  3702. "__type__": "cc.Vec3",
  3703. "x": 0,
  3704. "y": 0,
  3705. "z": 0
  3706. },
  3707. "_skewX": 0,
  3708. "_skewY": 0,
  3709. "_is3DNode": false,
  3710. "_groupIndex": 0,
  3711. "groupIndex": 0,
  3712. "_id": ""
  3713. },
  3714. {
  3715. "__type__": "cc.Node",
  3716. "_name": "New Node",
  3717. "_objFlags": 0,
  3718. "_parent": {
  3719. "__id__": 101
  3720. },
  3721. "_children": [
  3722. {
  3723. "__id__": 103
  3724. },
  3725. {
  3726. "__id__": 106
  3727. },
  3728. {
  3729. "__id__": 109
  3730. }
  3731. ],
  3732. "_active": true,
  3733. "_components": [
  3734. {
  3735. "__id__": 112
  3736. }
  3737. ],
  3738. "_prefab": {
  3739. "__id__": 113
  3740. },
  3741. "_opacity": 255,
  3742. "_color": {
  3743. "__type__": "cc.Color",
  3744. "r": 255,
  3745. "g": 255,
  3746. "b": 255,
  3747. "a": 255
  3748. },
  3749. "_contentSize": {
  3750. "__type__": "cc.Size",
  3751. "width": 280,
  3752. "height": 50
  3753. },
  3754. "_anchorPoint": {
  3755. "__type__": "cc.Vec2",
  3756. "x": 0.5,
  3757. "y": 0.5
  3758. },
  3759. "_trs": {
  3760. "__type__": "TypedArray",
  3761. "ctor": "Float64Array",
  3762. "array": [
  3763. 0,
  3764. 53,
  3765. 0,
  3766. 0,
  3767. 0,
  3768. 0,
  3769. 1,
  3770. 1,
  3771. 1,
  3772. 1
  3773. ]
  3774. },
  3775. "_eulerAngles": {
  3776. "__type__": "cc.Vec3",
  3777. "x": 0,
  3778. "y": 0,
  3779. "z": 0
  3780. },
  3781. "_skewX": 0,
  3782. "_skewY": 0,
  3783. "_is3DNode": false,
  3784. "_groupIndex": 0,
  3785. "groupIndex": 0,
  3786. "_id": ""
  3787. },
  3788. {
  3789. "__type__": "cc.Node",
  3790. "_name": "New Label",
  3791. "_objFlags": 0,
  3792. "_parent": {
  3793. "__id__": 102
  3794. },
  3795. "_children": [],
  3796. "_active": true,
  3797. "_components": [
  3798. {
  3799. "__id__": 104
  3800. }
  3801. ],
  3802. "_prefab": {
  3803. "__id__": 105
  3804. },
  3805. "_opacity": 255,
  3806. "_color": {
  3807. "__type__": "cc.Color",
  3808. "r": 255,
  3809. "g": 247,
  3810. "b": 212,
  3811. "a": 255
  3812. },
  3813. "_contentSize": {
  3814. "__type__": "cc.Size",
  3815. "width": 52,
  3816. "height": 50.4
  3817. },
  3818. "_anchorPoint": {
  3819. "__type__": "cc.Vec2",
  3820. "x": 0.5,
  3821. "y": 0.5
  3822. },
  3823. "_trs": {
  3824. "__type__": "TypedArray",
  3825. "ctor": "Float64Array",
  3826. "array": [
  3827. -114,
  3828. 0,
  3829. 0,
  3830. 0,
  3831. 0,
  3832. 0,
  3833. 1,
  3834. 1,
  3835. 1,
  3836. 1
  3837. ]
  3838. },
  3839. "_eulerAngles": {
  3840. "__type__": "cc.Vec3",
  3841. "x": 0,
  3842. "y": 0,
  3843. "z": 0
  3844. },
  3845. "_skewX": 0,
  3846. "_skewY": 0,
  3847. "_is3DNode": false,
  3848. "_groupIndex": 0,
  3849. "groupIndex": 0,
  3850. "_id": ""
  3851. },
  3852. {
  3853. "__type__": "cc.Label",
  3854. "_name": "",
  3855. "_objFlags": 0,
  3856. "node": {
  3857. "__id__": 103
  3858. },
  3859. "_enabled": true,
  3860. "_materials": [
  3861. {
  3862. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3863. }
  3864. ],
  3865. "_srcBlendFactor": 770,
  3866. "_dstBlendFactor": 771,
  3867. "_string": "进行",
  3868. "_N$string": "进行",
  3869. "_fontSize": 26,
  3870. "_lineHeight": 40,
  3871. "_enableWrapText": true,
  3872. "_N$file": null,
  3873. "_isSystemFontUsed": true,
  3874. "_spacingX": 0,
  3875. "_batchAsBitmap": false,
  3876. "_styleFlags": 0,
  3877. "_underlineHeight": 0,
  3878. "_N$horizontalAlign": 1,
  3879. "_N$verticalAlign": 1,
  3880. "_N$fontFamily": "Arial",
  3881. "_N$overflow": 0,
  3882. "_N$cacheMode": 0,
  3883. "_id": ""
  3884. },
  3885. {
  3886. "__type__": "cc.PrefabInfo",
  3887. "root": {
  3888. "__id__": 1
  3889. },
  3890. "asset": {
  3891. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  3892. },
  3893. "fileId": "1fzanBp31AmIFnbaxpHtj6",
  3894. "sync": false
  3895. },
  3896. {
  3897. "__type__": "cc.Node",
  3898. "_name": "任务数量",
  3899. "_objFlags": 0,
  3900. "_parent": {
  3901. "__id__": 102
  3902. },
  3903. "_children": [],
  3904. "_active": true,
  3905. "_components": [
  3906. {
  3907. "__id__": 107
  3908. }
  3909. ],
  3910. "_prefab": {
  3911. "__id__": 108
  3912. },
  3913. "_opacity": 255,
  3914. "_color": {
  3915. "__type__": "cc.Color",
  3916. "r": 255,
  3917. "g": 218,
  3918. "b": 49,
  3919. "a": 255
  3920. },
  3921. "_contentSize": {
  3922. "__type__": "cc.Size",
  3923. "width": 0,
  3924. "height": 50.4
  3925. },
  3926. "_anchorPoint": {
  3927. "__type__": "cc.Vec2",
  3928. "x": 0.5,
  3929. "y": 0.5
  3930. },
  3931. "_trs": {
  3932. "__type__": "TypedArray",
  3933. "ctor": "Float64Array",
  3934. "array": [
  3935. -78,
  3936. -4,
  3937. 0,
  3938. 0,
  3939. 0,
  3940. 0,
  3941. 1,
  3942. 1,
  3943. 1,
  3944. 1
  3945. ]
  3946. },
  3947. "_eulerAngles": {
  3948. "__type__": "cc.Vec3",
  3949. "x": 0,
  3950. "y": 0,
  3951. "z": 0
  3952. },
  3953. "_skewX": 0,
  3954. "_skewY": 0,
  3955. "_is3DNode": false,
  3956. "_groupIndex": 0,
  3957. "groupIndex": 0,
  3958. "_id": ""
  3959. },
  3960. {
  3961. "__type__": "cc.Label",
  3962. "_name": "",
  3963. "_objFlags": 0,
  3964. "node": {
  3965. "__id__": 106
  3966. },
  3967. "_enabled": true,
  3968. "_materials": [
  3969. {
  3970. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3971. }
  3972. ],
  3973. "_srcBlendFactor": 770,
  3974. "_dstBlendFactor": 771,
  3975. "_string": "",
  3976. "_N$string": "",
  3977. "_fontSize": 40,
  3978. "_lineHeight": 40,
  3979. "_enableWrapText": true,
  3980. "_N$file": null,
  3981. "_isSystemFontUsed": true,
  3982. "_spacingX": 0,
  3983. "_batchAsBitmap": false,
  3984. "_styleFlags": 0,
  3985. "_underlineHeight": 0,
  3986. "_N$horizontalAlign": 0,
  3987. "_N$verticalAlign": 0,
  3988. "_N$fontFamily": "Arial",
  3989. "_N$overflow": 0,
  3990. "_N$cacheMode": 0,
  3991. "_id": ""
  3992. },
  3993. {
  3994. "__type__": "cc.PrefabInfo",
  3995. "root": {
  3996. "__id__": 1
  3997. },
  3998. "asset": {
  3999. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  4000. },
  4001. "fileId": "54c8Dv0R1GS7uFqPeKEFIJ",
  4002. "sync": false
  4003. },
  4004. {
  4005. "__type__": "cc.Node",
  4006. "_name": "任务描述",
  4007. "_objFlags": 0,
  4008. "_parent": {
  4009. "__id__": 102
  4010. },
  4011. "_children": [],
  4012. "_active": true,
  4013. "_components": [
  4014. {
  4015. "__id__": 110
  4016. }
  4017. ],
  4018. "_prefab": {
  4019. "__id__": 111
  4020. },
  4021. "_opacity": 255,
  4022. "_color": {
  4023. "__type__": "cc.Color",
  4024. "r": 255,
  4025. "g": 247,
  4026. "b": 212,
  4027. "a": 255
  4028. },
  4029. "_contentSize": {
  4030. "__type__": "cc.Size",
  4031. "width": 208,
  4032. "height": 50.4
  4033. },
  4034. "_anchorPoint": {
  4035. "__type__": "cc.Vec2",
  4036. "x": 0.5,
  4037. "y": 0.5
  4038. },
  4039. "_trs": {
  4040. "__type__": "TypedArray",
  4041. "ctor": "Float64Array",
  4042. "array": [
  4043. 36,
  4044. 0,
  4045. 0,
  4046. 0,
  4047. 0,
  4048. 0,
  4049. 1,
  4050. 1,
  4051. 1,
  4052. 1
  4053. ]
  4054. },
  4055. "_eulerAngles": {
  4056. "__type__": "cc.Vec3",
  4057. "x": 0,
  4058. "y": 0,
  4059. "z": 0
  4060. },
  4061. "_skewX": 0,
  4062. "_skewY": 0,
  4063. "_is3DNode": false,
  4064. "_groupIndex": 0,
  4065. "groupIndex": 0,
  4066. "_id": ""
  4067. },
  4068. {
  4069. "__type__": "cc.Label",
  4070. "_name": "",
  4071. "_objFlags": 0,
  4072. "node": {
  4073. "__id__": 109
  4074. },
  4075. "_enabled": true,
  4076. "_materials": [
  4077. {
  4078. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4079. }
  4080. ],
  4081. "_srcBlendFactor": 770,
  4082. "_dstBlendFactor": 771,
  4083. "_string": "次生产,领取红包",
  4084. "_N$string": "次生产,领取红包",
  4085. "_fontSize": 26,
  4086. "_lineHeight": 40,
  4087. "_enableWrapText": true,
  4088. "_N$file": null,
  4089. "_isSystemFontUsed": true,
  4090. "_spacingX": 0,
  4091. "_batchAsBitmap": false,
  4092. "_styleFlags": 0,
  4093. "_underlineHeight": 0,
  4094. "_N$horizontalAlign": 1,
  4095. "_N$verticalAlign": 1,
  4096. "_N$fontFamily": "Arial",
  4097. "_N$overflow": 0,
  4098. "_N$cacheMode": 0,
  4099. "_id": ""
  4100. },
  4101. {
  4102. "__type__": "cc.PrefabInfo",
  4103. "root": {
  4104. "__id__": 1
  4105. },
  4106. "asset": {
  4107. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  4108. },
  4109. "fileId": "16aSFFEgBOtpC5D+xi+nMe",
  4110. "sync": false
  4111. },
  4112. {
  4113. "__type__": "cc.Layout",
  4114. "_name": "",
  4115. "_objFlags": 0,
  4116. "node": {
  4117. "__id__": 102
  4118. },
  4119. "_enabled": true,
  4120. "_layoutSize": {
  4121. "__type__": "cc.Size",
  4122. "width": 280,
  4123. "height": 50
  4124. },
  4125. "_resize": 1,
  4126. "_N$layoutType": 1,
  4127. "_N$cellSize": {
  4128. "__type__": "cc.Size",
  4129. "width": 40,
  4130. "height": 40
  4131. },
  4132. "_N$startAxis": 0,
  4133. "_N$paddingLeft": 0,
  4134. "_N$paddingRight": 0,
  4135. "_N$paddingTop": 0,
  4136. "_N$paddingBottom": 0,
  4137. "_N$spacingX": 10,
  4138. "_N$spacingY": 0,
  4139. "_N$verticalDirection": 1,
  4140. "_N$horizontalDirection": 0,
  4141. "_N$affectedByScale": false,
  4142. "_id": ""
  4143. },
  4144. {
  4145. "__type__": "cc.PrefabInfo",
  4146. "root": {
  4147. "__id__": 1
  4148. },
  4149. "asset": {
  4150. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  4151. },
  4152. "fileId": "be3WlwDChAWoj5ZA5deXt6",
  4153. "sync": false
  4154. },
  4155. {
  4156. "__type__": "cc.Node",
  4157. "_name": "进度条背景",
  4158. "_objFlags": 0,
  4159. "_parent": {
  4160. "__id__": 101
  4161. },
  4162. "_children": [
  4163. {
  4164. "__id__": 115
  4165. },
  4166. {
  4167. "__id__": 118
  4168. },
  4169. {
  4170. "__id__": 122
  4171. }
  4172. ],
  4173. "_active": true,
  4174. "_components": [
  4175. {
  4176. "__id__": 133
  4177. }
  4178. ],
  4179. "_prefab": {
  4180. "__id__": 134
  4181. },
  4182. "_opacity": 255,
  4183. "_color": {
  4184. "__type__": "cc.Color",
  4185. "r": 255,
  4186. "g": 255,
  4187. "b": 255,
  4188. "a": 255
  4189. },
  4190. "_contentSize": {
  4191. "__type__": "cc.Size",
  4192. "width": 450,
  4193. "height": 33
  4194. },
  4195. "_anchorPoint": {
  4196. "__type__": "cc.Vec2",
  4197. "x": 0.5,
  4198. "y": 0.5
  4199. },
  4200. "_trs": {
  4201. "__type__": "TypedArray",
  4202. "ctor": "Float64Array",
  4203. "array": [
  4204. 0,
  4205. 0,
  4206. 0,
  4207. 0,
  4208. 0,
  4209. 0,
  4210. 1,
  4211. 1,
  4212. 1,
  4213. 1
  4214. ]
  4215. },
  4216. "_eulerAngles": {
  4217. "__type__": "cc.Vec3",
  4218. "x": 0,
  4219. "y": 0,
  4220. "z": 0
  4221. },
  4222. "_skewX": 0,
  4223. "_skewY": 0,
  4224. "_is3DNode": false,
  4225. "_groupIndex": 0,
  4226. "groupIndex": 0,
  4227. "_id": ""
  4228. },
  4229. {
  4230. "__type__": "cc.Node",
  4231. "_name": "进度条",
  4232. "_objFlags": 0,
  4233. "_parent": {
  4234. "__id__": 114
  4235. },
  4236. "_children": [],
  4237. "_active": true,
  4238. "_components": [
  4239. {
  4240. "__id__": 116
  4241. }
  4242. ],
  4243. "_prefab": {
  4244. "__id__": 117
  4245. },
  4246. "_opacity": 255,
  4247. "_color": {
  4248. "__type__": "cc.Color",
  4249. "r": 255,
  4250. "g": 255,
  4251. "b": 255,
  4252. "a": 255
  4253. },
  4254. "_contentSize": {
  4255. "__type__": "cc.Size",
  4256. "width": 450,
  4257. "height": 33
  4258. },
  4259. "_anchorPoint": {
  4260. "__type__": "cc.Vec2",
  4261. "x": 0.5,
  4262. "y": 0.5
  4263. },
  4264. "_trs": {
  4265. "__type__": "TypedArray",
  4266. "ctor": "Float64Array",
  4267. "array": [
  4268. 0,
  4269. 0,
  4270. 0,
  4271. 0,
  4272. 0,
  4273. 0,
  4274. 1,
  4275. 1,
  4276. 1,
  4277. 1
  4278. ]
  4279. },
  4280. "_eulerAngles": {
  4281. "__type__": "cc.Vec3",
  4282. "x": 0,
  4283. "y": 0,
  4284. "z": 0
  4285. },
  4286. "_skewX": 0,
  4287. "_skewY": 0,
  4288. "_is3DNode": false,
  4289. "_groupIndex": 0,
  4290. "groupIndex": 0,
  4291. "_id": ""
  4292. },
  4293. {
  4294. "__type__": "cc.Sprite",
  4295. "_name": "",
  4296. "_objFlags": 0,
  4297. "node": {
  4298. "__id__": 115
  4299. },
  4300. "_enabled": true,
  4301. "_materials": [
  4302. {
  4303. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4304. }
  4305. ],
  4306. "_srcBlendFactor": 770,
  4307. "_dstBlendFactor": 771,
  4308. "_spriteFrame": {
  4309. "__uuid__": "6389923b-e670-4ac5-9284-42466a20c57b"
  4310. },
  4311. "_type": 3,
  4312. "_sizeMode": 0,
  4313. "_fillType": 0,
  4314. "_fillCenter": {
  4315. "__type__": "cc.Vec2",
  4316. "x": 0,
  4317. "y": 0
  4318. },
  4319. "_fillStart": 0,
  4320. "_fillRange": 0,
  4321. "_isTrimmedMode": true,
  4322. "_atlas": null,
  4323. "_id": ""
  4324. },
  4325. {
  4326. "__type__": "cc.PrefabInfo",
  4327. "root": {
  4328. "__id__": 1
  4329. },
  4330. "asset": {
  4331. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  4332. },
  4333. "fileId": "297ZkwvalOcLASX3F1WuGF",
  4334. "sync": false
  4335. },
  4336. {
  4337. "__type__": "cc.Node",
  4338. "_name": "进度文本",
  4339. "_objFlags": 0,
  4340. "_parent": {
  4341. "__id__": 114
  4342. },
  4343. "_children": [],
  4344. "_active": true,
  4345. "_components": [
  4346. {
  4347. "__id__": 119
  4348. },
  4349. {
  4350. "__id__": 120
  4351. }
  4352. ],
  4353. "_prefab": {
  4354. "__id__": 121
  4355. },
  4356. "_opacity": 255,
  4357. "_color": {
  4358. "__type__": "cc.Color",
  4359. "r": 255,
  4360. "g": 255,
  4361. "b": 255,
  4362. "a": 255
  4363. },
  4364. "_contentSize": {
  4365. "__type__": "cc.Size",
  4366. "width": 4,
  4367. "height": 54.4
  4368. },
  4369. "_anchorPoint": {
  4370. "__type__": "cc.Vec2",
  4371. "x": 0.5,
  4372. "y": 0.5
  4373. },
  4374. "_trs": {
  4375. "__type__": "TypedArray",
  4376. "ctor": "Float64Array",
  4377. "array": [
  4378. 0,
  4379. 1,
  4380. 0,
  4381. 0,
  4382. 0,
  4383. 0,
  4384. 1,
  4385. 1,
  4386. 1,
  4387. 1
  4388. ]
  4389. },
  4390. "_eulerAngles": {
  4391. "__type__": "cc.Vec3",
  4392. "x": 0,
  4393. "y": 0,
  4394. "z": 0
  4395. },
  4396. "_skewX": 0,
  4397. "_skewY": 0,
  4398. "_is3DNode": false,
  4399. "_groupIndex": 0,
  4400. "groupIndex": 0,
  4401. "_id": ""
  4402. },
  4403. {
  4404. "__type__": "cc.Label",
  4405. "_name": "",
  4406. "_objFlags": 0,
  4407. "node": {
  4408. "__id__": 118
  4409. },
  4410. "_enabled": true,
  4411. "_materials": [
  4412. {
  4413. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4414. }
  4415. ],
  4416. "_srcBlendFactor": 770,
  4417. "_dstBlendFactor": 771,
  4418. "_string": "",
  4419. "_N$string": "",
  4420. "_fontSize": 28,
  4421. "_lineHeight": 40,
  4422. "_enableWrapText": true,
  4423. "_N$file": null,
  4424. "_isSystemFontUsed": true,
  4425. "_spacingX": 0,
  4426. "_batchAsBitmap": false,
  4427. "_styleFlags": 0,
  4428. "_underlineHeight": 0,
  4429. "_N$horizontalAlign": 1,
  4430. "_N$verticalAlign": 1,
  4431. "_N$fontFamily": "Arial",
  4432. "_N$overflow": 0,
  4433. "_N$cacheMode": 0,
  4434. "_id": ""
  4435. },
  4436. {
  4437. "__type__": "cc.LabelOutline",
  4438. "_name": "",
  4439. "_objFlags": 0,
  4440. "node": {
  4441. "__id__": 118
  4442. },
  4443. "_enabled": true,
  4444. "_color": {
  4445. "__type__": "cc.Color",
  4446. "r": 142,
  4447. "g": 77,
  4448. "b": 49,
  4449. "a": 255
  4450. },
  4451. "_width": 2,
  4452. "_id": ""
  4453. },
  4454. {
  4455. "__type__": "cc.PrefabInfo",
  4456. "root": {
  4457. "__id__": 1
  4458. },
  4459. "asset": {
  4460. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  4461. },
  4462. "fileId": "c2PqsiFSpHOZ3UDBx2jOh9",
  4463. "sync": false
  4464. },
  4465. {
  4466. "__type__": "cc.Node",
  4467. "_name": "按钮",
  4468. "_objFlags": 0,
  4469. "_parent": {
  4470. "__id__": 114
  4471. },
  4472. "_children": [
  4473. {
  4474. "__id__": 123
  4475. },
  4476. {
  4477. "__id__": 127
  4478. }
  4479. ],
  4480. "_active": false,
  4481. "_components": [
  4482. {
  4483. "__id__": 130
  4484. },
  4485. {
  4486. "__id__": 131
  4487. }
  4488. ],
  4489. "_prefab": {
  4490. "__id__": 132
  4491. },
  4492. "_opacity": 255,
  4493. "_color": {
  4494. "__type__": "cc.Color",
  4495. "r": 255,
  4496. "g": 255,
  4497. "b": 255,
  4498. "a": 255
  4499. },
  4500. "_contentSize": {
  4501. "__type__": "cc.Size",
  4502. "width": 111,
  4503. "height": 40
  4504. },
  4505. "_anchorPoint": {
  4506. "__type__": "cc.Vec2",
  4507. "x": 0.5,
  4508. "y": 0.5
  4509. },
  4510. "_trs": {
  4511. "__type__": "TypedArray",
  4512. "ctor": "Float64Array",
  4513. "array": [
  4514. 229.637,
  4515. 0,
  4516. 0,
  4517. 0,
  4518. 0,
  4519. 0,
  4520. 1,
  4521. 1,
  4522. 1,
  4523. 1
  4524. ]
  4525. },
  4526. "_eulerAngles": {
  4527. "__type__": "cc.Vec3",
  4528. "x": 0,
  4529. "y": 0,
  4530. "z": 0
  4531. },
  4532. "_skewX": 0,
  4533. "_skewY": 0,
  4534. "_is3DNode": false,
  4535. "_groupIndex": 0,
  4536. "groupIndex": 0,
  4537. "_id": ""
  4538. },
  4539. {
  4540. "__type__": "cc.Node",
  4541. "_name": "描述",
  4542. "_objFlags": 0,
  4543. "_parent": {
  4544. "__id__": 122
  4545. },
  4546. "_children": [],
  4547. "_active": true,
  4548. "_components": [
  4549. {
  4550. "__id__": 124
  4551. },
  4552. {
  4553. "__id__": 125
  4554. }
  4555. ],
  4556. "_prefab": {
  4557. "__id__": 126
  4558. },
  4559. "_opacity": 255,
  4560. "_color": {
  4561. "__type__": "cc.Color",
  4562. "r": 255,
  4563. "g": 255,
  4564. "b": 255,
  4565. "a": 255
  4566. },
  4567. "_contentSize": {
  4568. "__type__": "cc.Size",
  4569. "width": 70,
  4570. "height": 54.4
  4571. },
  4572. "_anchorPoint": {
  4573. "__type__": "cc.Vec2",
  4574. "x": 0.5,
  4575. "y": 0.5
  4576. },
  4577. "_trs": {
  4578. "__type__": "TypedArray",
  4579. "ctor": "Float64Array",
  4580. "array": [
  4581. 0,
  4582. 3,
  4583. 0,
  4584. 0,
  4585. 0,
  4586. 0,
  4587. 1,
  4588. 1,
  4589. 1,
  4590. 1
  4591. ]
  4592. },
  4593. "_eulerAngles": {
  4594. "__type__": "cc.Vec3",
  4595. "x": 0,
  4596. "y": 0,
  4597. "z": 0
  4598. },
  4599. "_skewX": 0,
  4600. "_skewY": 0,
  4601. "_is3DNode": false,
  4602. "_groupIndex": 0,
  4603. "groupIndex": 0,
  4604. "_id": ""
  4605. },
  4606. {
  4607. "__type__": "cc.Label",
  4608. "_name": "",
  4609. "_objFlags": 0,
  4610. "node": {
  4611. "__id__": 123
  4612. },
  4613. "_enabled": true,
  4614. "_materials": [
  4615. {
  4616. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4617. }
  4618. ],
  4619. "_srcBlendFactor": 770,
  4620. "_dstBlendFactor": 771,
  4621. "_string": "加进度",
  4622. "_N$string": "加进度",
  4623. "_fontSize": 22,
  4624. "_lineHeight": 40,
  4625. "_enableWrapText": true,
  4626. "_N$file": null,
  4627. "_isSystemFontUsed": true,
  4628. "_spacingX": 0,
  4629. "_batchAsBitmap": false,
  4630. "_styleFlags": 0,
  4631. "_underlineHeight": 0,
  4632. "_N$horizontalAlign": 1,
  4633. "_N$verticalAlign": 1,
  4634. "_N$fontFamily": "Arial",
  4635. "_N$overflow": 0,
  4636. "_N$cacheMode": 0,
  4637. "_id": ""
  4638. },
  4639. {
  4640. "__type__": "cc.LabelOutline",
  4641. "_name": "",
  4642. "_objFlags": 0,
  4643. "node": {
  4644. "__id__": 123
  4645. },
  4646. "_enabled": true,
  4647. "_color": {
  4648. "__type__": "cc.Color",
  4649. "r": 147,
  4650. "g": 83,
  4651. "b": 56,
  4652. "a": 255
  4653. },
  4654. "_width": 2,
  4655. "_id": ""
  4656. },
  4657. {
  4658. "__type__": "cc.PrefabInfo",
  4659. "root": {
  4660. "__id__": 1
  4661. },
  4662. "asset": {
  4663. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  4664. },
  4665. "fileId": "8cgbX5Q1VAgaZ/mtLjq4hV",
  4666. "sync": false
  4667. },
  4668. {
  4669. "__type__": "cc.Node",
  4670. "_name": "video",
  4671. "_objFlags": 0,
  4672. "_parent": {
  4673. "__id__": 122
  4674. },
  4675. "_children": [],
  4676. "_active": true,
  4677. "_components": [
  4678. {
  4679. "__id__": 128
  4680. }
  4681. ],
  4682. "_prefab": {
  4683. "__id__": 129
  4684. },
  4685. "_opacity": 255,
  4686. "_color": {
  4687. "__type__": "cc.Color",
  4688. "r": 255,
  4689. "g": 255,
  4690. "b": 255,
  4691. "a": 255
  4692. },
  4693. "_contentSize": {
  4694. "__type__": "cc.Size",
  4695. "width": 28,
  4696. "height": 34
  4697. },
  4698. "_anchorPoint": {
  4699. "__type__": "cc.Vec2",
  4700. "x": 0.5,
  4701. "y": 0.5
  4702. },
  4703. "_trs": {
  4704. "__type__": "TypedArray",
  4705. "ctor": "Float64Array",
  4706. "array": [
  4707. 49.362,
  4708. 19.433,
  4709. 0,
  4710. 0,
  4711. 0,
  4712. 0,
  4713. 1,
  4714. 1,
  4715. 1,
  4716. 1
  4717. ]
  4718. },
  4719. "_eulerAngles": {
  4720. "__type__": "cc.Vec3",
  4721. "x": 0,
  4722. "y": 0,
  4723. "z": 0
  4724. },
  4725. "_skewX": 0,
  4726. "_skewY": 0,
  4727. "_is3DNode": false,
  4728. "_groupIndex": 0,
  4729. "groupIndex": 0,
  4730. "_id": ""
  4731. },
  4732. {
  4733. "__type__": "cc.Sprite",
  4734. "_name": "",
  4735. "_objFlags": 0,
  4736. "node": {
  4737. "__id__": 127
  4738. },
  4739. "_enabled": true,
  4740. "_materials": [
  4741. {
  4742. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4743. }
  4744. ],
  4745. "_srcBlendFactor": 770,
  4746. "_dstBlendFactor": 771,
  4747. "_spriteFrame": {
  4748. "__uuid__": "0c33994a-5e88-4a32-8985-e74eb26f4bff"
  4749. },
  4750. "_type": 0,
  4751. "_sizeMode": 1,
  4752. "_fillType": 0,
  4753. "_fillCenter": {
  4754. "__type__": "cc.Vec2",
  4755. "x": 0,
  4756. "y": 0
  4757. },
  4758. "_fillStart": 0,
  4759. "_fillRange": 0,
  4760. "_isTrimmedMode": true,
  4761. "_atlas": null,
  4762. "_id": ""
  4763. },
  4764. {
  4765. "__type__": "cc.PrefabInfo",
  4766. "root": {
  4767. "__id__": 1
  4768. },
  4769. "asset": {
  4770. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  4771. },
  4772. "fileId": "17ncUtwKNK56Kg+8kMf8OO",
  4773. "sync": false
  4774. },
  4775. {
  4776. "__type__": "cc.Sprite",
  4777. "_name": "",
  4778. "_objFlags": 0,
  4779. "node": {
  4780. "__id__": 122
  4781. },
  4782. "_enabled": true,
  4783. "_materials": [
  4784. {
  4785. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4786. }
  4787. ],
  4788. "_srcBlendFactor": 770,
  4789. "_dstBlendFactor": 771,
  4790. "_spriteFrame": {
  4791. "__uuid__": "a1f0d2b3-01dc-4412-b656-59aef01154a4"
  4792. },
  4793. "_type": 0,
  4794. "_sizeMode": 1,
  4795. "_fillType": 0,
  4796. "_fillCenter": {
  4797. "__type__": "cc.Vec2",
  4798. "x": 0,
  4799. "y": 0
  4800. },
  4801. "_fillStart": 0,
  4802. "_fillRange": 0,
  4803. "_isTrimmedMode": true,
  4804. "_atlas": null,
  4805. "_id": ""
  4806. },
  4807. {
  4808. "__type__": "cc.Animation",
  4809. "_name": "",
  4810. "_objFlags": 0,
  4811. "node": {
  4812. "__id__": 122
  4813. },
  4814. "_enabled": true,
  4815. "_defaultClip": {
  4816. "__uuid__": "d51cece8-b476-4297-9b9e-2e09bdd99a18"
  4817. },
  4818. "_clips": [
  4819. {
  4820. "__uuid__": "d51cece8-b476-4297-9b9e-2e09bdd99a18"
  4821. }
  4822. ],
  4823. "playOnLoad": true,
  4824. "_id": ""
  4825. },
  4826. {
  4827. "__type__": "cc.PrefabInfo",
  4828. "root": {
  4829. "__id__": 1
  4830. },
  4831. "asset": {
  4832. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  4833. },
  4834. "fileId": "335juBuP1HtoWULgovmj+P",
  4835. "sync": false
  4836. },
  4837. {
  4838. "__type__": "cc.Sprite",
  4839. "_name": "",
  4840. "_objFlags": 0,
  4841. "node": {
  4842. "__id__": 114
  4843. },
  4844. "_enabled": true,
  4845. "_materials": [
  4846. {
  4847. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4848. }
  4849. ],
  4850. "_srcBlendFactor": 770,
  4851. "_dstBlendFactor": 771,
  4852. "_spriteFrame": {
  4853. "__uuid__": "b58186aa-fe69-4dad-b263-cc6c32574961"
  4854. },
  4855. "_type": 0,
  4856. "_sizeMode": 0,
  4857. "_fillType": 0,
  4858. "_fillCenter": {
  4859. "__type__": "cc.Vec2",
  4860. "x": 0,
  4861. "y": 0
  4862. },
  4863. "_fillStart": 0,
  4864. "_fillRange": 0,
  4865. "_isTrimmedMode": true,
  4866. "_atlas": null,
  4867. "_id": ""
  4868. },
  4869. {
  4870. "__type__": "cc.PrefabInfo",
  4871. "root": {
  4872. "__id__": 1
  4873. },
  4874. "asset": {
  4875. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  4876. },
  4877. "fileId": "bdirYgRe9Hr79UO0TIkcou",
  4878. "sync": false
  4879. },
  4880. {
  4881. "__type__": "cc.PrefabInfo",
  4882. "root": {
  4883. "__id__": 1
  4884. },
  4885. "asset": {
  4886. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  4887. },
  4888. "fileId": "dawUXeOOtGSqrqxtNg/8w1",
  4889. "sync": false
  4890. },
  4891. {
  4892. "__type__": "cc.Node",
  4893. "_name": "动画显示文字",
  4894. "_objFlags": 0,
  4895. "_parent": {
  4896. "__id__": 3
  4897. },
  4898. "_children": [],
  4899. "_active": false,
  4900. "_components": [
  4901. {
  4902. "__id__": 137
  4903. }
  4904. ],
  4905. "_prefab": {
  4906. "__id__": 138
  4907. },
  4908. "_opacity": 255,
  4909. "_color": {
  4910. "__type__": "cc.Color",
  4911. "r": 255,
  4912. "g": 235,
  4913. "b": 201,
  4914. "a": 255
  4915. },
  4916. "_contentSize": {
  4917. "__type__": "cc.Size",
  4918. "width": 166.85,
  4919. "height": 126
  4920. },
  4921. "_anchorPoint": {
  4922. "__type__": "cc.Vec2",
  4923. "x": 0.5,
  4924. "y": 0.5
  4925. },
  4926. "_trs": {
  4927. "__type__": "TypedArray",
  4928. "ctor": "Float64Array",
  4929. "array": [
  4930. 0,
  4931. 130,
  4932. 0,
  4933. 0,
  4934. 0,
  4935. 0,
  4936. 1,
  4937. 1,
  4938. 1,
  4939. 1
  4940. ]
  4941. },
  4942. "_eulerAngles": {
  4943. "__type__": "cc.Vec3",
  4944. "x": 0,
  4945. "y": 0,
  4946. "z": 0
  4947. },
  4948. "_skewX": 0,
  4949. "_skewY": 0,
  4950. "_is3DNode": false,
  4951. "_groupIndex": 0,
  4952. "groupIndex": 0,
  4953. "_id": ""
  4954. },
  4955. {
  4956. "__type__": "cc.Label",
  4957. "_name": "",
  4958. "_objFlags": 0,
  4959. "node": {
  4960. "__id__": 136
  4961. },
  4962. "_enabled": true,
  4963. "_materials": [
  4964. {
  4965. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4966. }
  4967. ],
  4968. "_srcBlendFactor": 770,
  4969. "_dstBlendFactor": 771,
  4970. "_string": "???",
  4971. "_N$string": "???",
  4972. "_fontSize": 100,
  4973. "_lineHeight": 100,
  4974. "_enableWrapText": true,
  4975. "_N$file": null,
  4976. "_isSystemFontUsed": true,
  4977. "_spacingX": 0,
  4978. "_batchAsBitmap": false,
  4979. "_styleFlags": 0,
  4980. "_underlineHeight": 0,
  4981. "_N$horizontalAlign": 1,
  4982. "_N$verticalAlign": 1,
  4983. "_N$fontFamily": "Arial",
  4984. "_N$overflow": 0,
  4985. "_N$cacheMode": 0,
  4986. "_id": ""
  4987. },
  4988. {
  4989. "__type__": "cc.PrefabInfo",
  4990. "root": {
  4991. "__id__": 1
  4992. },
  4993. "asset": {
  4994. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  4995. },
  4996. "fileId": "2aCN/R4ctJ5ZRnnCcP2cmH",
  4997. "sync": false
  4998. },
  4999. {
  5000. "__type__": "cc.Sprite",
  5001. "_name": "",
  5002. "_objFlags": 0,
  5003. "node": {
  5004. "__id__": 3
  5005. },
  5006. "_enabled": true,
  5007. "_materials": [
  5008. {
  5009. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5010. }
  5011. ],
  5012. "_srcBlendFactor": 770,
  5013. "_dstBlendFactor": 771,
  5014. "_spriteFrame": {
  5015. "__uuid__": "d6b388b3-3e0c-4ca2-9e6b-abbd2f1eea44"
  5016. },
  5017. "_type": 0,
  5018. "_sizeMode": 0,
  5019. "_fillType": 0,
  5020. "_fillCenter": {
  5021. "__type__": "cc.Vec2",
  5022. "x": 0,
  5023. "y": 0
  5024. },
  5025. "_fillStart": 0,
  5026. "_fillRange": 0,
  5027. "_isTrimmedMode": true,
  5028. "_atlas": null,
  5029. "_id": ""
  5030. },
  5031. {
  5032. "__type__": "cc.Widget",
  5033. "_name": "",
  5034. "_objFlags": 0,
  5035. "node": {
  5036. "__id__": 3
  5037. },
  5038. "_enabled": true,
  5039. "alignMode": 1,
  5040. "_target": null,
  5041. "_alignFlags": 45,
  5042. "_left": -305,
  5043. "_right": -305,
  5044. "_top": -502.24800000000016,
  5045. "_bottom": -274.7520000000002,
  5046. "_verticalCenter": 0,
  5047. "_horizontalCenter": 0,
  5048. "_isAbsLeft": true,
  5049. "_isAbsRight": true,
  5050. "_isAbsTop": true,
  5051. "_isAbsBottom": true,
  5052. "_isAbsHorizontalCenter": true,
  5053. "_isAbsVerticalCenter": true,
  5054. "_originalWidth": 610,
  5055. "_originalHeight": 777,
  5056. "_id": ""
  5057. },
  5058. {
  5059. "__type__": "cc.PrefabInfo",
  5060. "root": {
  5061. "__id__": 1
  5062. },
  5063. "asset": {
  5064. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  5065. },
  5066. "fileId": "4aTmzHjuFECYqFYvvupqXv",
  5067. "sync": false
  5068. },
  5069. {
  5070. "__type__": "cc.PrefabInfo",
  5071. "root": {
  5072. "__id__": 1
  5073. },
  5074. "asset": {
  5075. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  5076. },
  5077. "fileId": "ecGKVmzVlF7bHPxpEWGO01",
  5078. "sync": false
  5079. },
  5080. {
  5081. "__type__": "cc.Widget",
  5082. "_name": "",
  5083. "_objFlags": 0,
  5084. "node": {
  5085. "__id__": 1
  5086. },
  5087. "_enabled": true,
  5088. "alignMode": 1,
  5089. "_target": null,
  5090. "_alignFlags": 45,
  5091. "_left": 0,
  5092. "_right": 0,
  5093. "_top": 0,
  5094. "_bottom": 0,
  5095. "_verticalCenter": 0,
  5096. "_horizontalCenter": 0,
  5097. "_isAbsLeft": true,
  5098. "_isAbsRight": true,
  5099. "_isAbsTop": true,
  5100. "_isAbsBottom": true,
  5101. "_isAbsHorizontalCenter": true,
  5102. "_isAbsVerticalCenter": true,
  5103. "_originalWidth": 750,
  5104. "_originalHeight": 1334,
  5105. "_id": ""
  5106. },
  5107. {
  5108. "__type__": "ac053zwqaRD6IJmTlQWmefZ",
  5109. "_name": "",
  5110. "_objFlags": 0,
  5111. "node": {
  5112. "__id__": 1
  5113. },
  5114. "_enabled": true,
  5115. "effect_par": {
  5116. "__id__": 2
  5117. },
  5118. "open_effect": 1,
  5119. "isOpenCloseEffect": true,
  5120. "close_effect": 1,
  5121. "close_toPoint": "",
  5122. "close_uibg": false,
  5123. "isDelayOneFrame": false,
  5124. "_id": ""
  5125. },
  5126. {
  5127. "__type__": "58495/rJOBNGoxELFSp8G2a",
  5128. "_name": "",
  5129. "_objFlags": 0,
  5130. "node": {
  5131. "__id__": 1
  5132. },
  5133. "_enabled": true,
  5134. "color": {
  5135. "__type__": "cc.Color",
  5136. "r": 0,
  5137. "g": 0,
  5138. "b": 0,
  5139. "a": 180
  5140. },
  5141. "design_block_node": null,
  5142. "bClickClose": false,
  5143. "onComplete": [],
  5144. "_id": ""
  5145. },
  5146. {
  5147. "__type__": "bde9cH+JsJLHoZ2m6rtWbXI",
  5148. "_name": "",
  5149. "_objFlags": 0,
  5150. "node": {
  5151. "__id__": 1
  5152. },
  5153. "_enabled": true,
  5154. "lbl_value": [
  5155. {
  5156. "__id__": 50
  5157. },
  5158. {
  5159. "__id__": 58
  5160. },
  5161. {
  5162. "__id__": 62
  5163. }
  5164. ],
  5165. "sp_taskProgress": {
  5166. "__id__": 116
  5167. },
  5168. "lbl_taskProgress": {
  5169. "__id__": 119
  5170. },
  5171. "openBtn_ani": {
  5172. "__id__": 32
  5173. },
  5174. "lbl_reward_value": {
  5175. "__id__": 90
  5176. },
  5177. "spr_cash_out": {
  5178. "__id__": 74
  5179. },
  5180. "lbl_progress": {
  5181. "__id__": 77
  5182. },
  5183. "node_cash": {
  5184. "__id__": 84
  5185. },
  5186. "node_value": {
  5187. "__id__": 44
  5188. },
  5189. "node_task": {
  5190. "__id__": 101
  5191. },
  5192. "lbl_Ani": {
  5193. "__id__": 137
  5194. },
  5195. "lbl_taskNum": {
  5196. "__id__": 107
  5197. },
  5198. "node_videoIcon": {
  5199. "__id__": 25
  5200. },
  5201. "node_hand": {
  5202. "__id__": 34
  5203. },
  5204. "_id": ""
  5205. },
  5206. {
  5207. "__type__": "cc.PrefabInfo",
  5208. "root": {
  5209. "__id__": 1
  5210. },
  5211. "asset": {
  5212. "__uuid__": "82a16e23-7ade-43a5-af4f-5504bb39b61f"
  5213. },
  5214. "fileId": "",
  5215. "sync": false
  5216. }
  5217. ]