redBagTask.prefab 88 KB

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