redBagTask.prefab 92 KB

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