AdRbPanel.prefab 237 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611
  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": "AdRbPanel",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 5
  25. },
  26. {
  27. "__id__": 9
  28. },
  29. {
  30. "__id__": 256
  31. },
  32. {
  33. "__id__": 284
  34. },
  35. {
  36. "__id__": 346
  37. }
  38. ],
  39. "_active": true,
  40. "_components": [
  41. {
  42. "__id__": 374
  43. },
  44. {
  45. "__id__": 375
  46. },
  47. {
  48. "__id__": 376
  49. }
  50. ],
  51. "_prefab": {
  52. "__id__": 377
  53. },
  54. "_opacity": 255,
  55. "_color": {
  56. "__type__": "cc.Color",
  57. "r": 255,
  58. "g": 255,
  59. "b": 255,
  60. "a": 255
  61. },
  62. "_contentSize": {
  63. "__type__": "cc.Size",
  64. "width": 750,
  65. "height": 1334
  66. },
  67. "_anchorPoint": {
  68. "__type__": "cc.Vec2",
  69. "x": 0.5,
  70. "y": 0.5
  71. },
  72. "_trs": {
  73. "__type__": "TypedArray",
  74. "ctor": "Float64Array",
  75. "array": [
  76. 0,
  77. 0,
  78. 0,
  79. 0,
  80. 0,
  81. 0,
  82. 1,
  83. 1,
  84. 1,
  85. 1
  86. ]
  87. },
  88. "_eulerAngles": {
  89. "__type__": "cc.Vec3",
  90. "x": 0,
  91. "y": 0,
  92. "z": 0
  93. },
  94. "_skewX": 0,
  95. "_skewY": 0,
  96. "_is3DNode": false,
  97. "_groupIndex": 0,
  98. "groupIndex": 0,
  99. "_id": ""
  100. },
  101. {
  102. "__type__": "cc.Node",
  103. "_name": "bg",
  104. "_objFlags": 0,
  105. "_parent": {
  106. "__id__": 1
  107. },
  108. "_children": [],
  109. "_active": true,
  110. "_components": [
  111. {
  112. "__id__": 3
  113. }
  114. ],
  115. "_prefab": {
  116. "__id__": 4
  117. },
  118. "_opacity": 255,
  119. "_color": {
  120. "__type__": "cc.Color",
  121. "r": 255,
  122. "g": 242,
  123. "b": 225,
  124. "a": 255
  125. },
  126. "_contentSize": {
  127. "__type__": "cc.Size",
  128. "width": 750,
  129. "height": 2000
  130. },
  131. "_anchorPoint": {
  132. "__type__": "cc.Vec2",
  133. "x": 0.5,
  134. "y": 0.5
  135. },
  136. "_trs": {
  137. "__type__": "TypedArray",
  138. "ctor": "Float64Array",
  139. "array": [
  140. 0,
  141. 0,
  142. 0,
  143. 0,
  144. 0,
  145. 0,
  146. 1,
  147. 1,
  148. 1,
  149. 1
  150. ]
  151. },
  152. "_eulerAngles": {
  153. "__type__": "cc.Vec3",
  154. "x": 0,
  155. "y": 0,
  156. "z": 0
  157. },
  158. "_skewX": 0,
  159. "_skewY": 0,
  160. "_is3DNode": false,
  161. "_groupIndex": 0,
  162. "groupIndex": 0,
  163. "_id": ""
  164. },
  165. {
  166. "__type__": "cc.Sprite",
  167. "_name": "",
  168. "_objFlags": 0,
  169. "node": {
  170. "__id__": 2
  171. },
  172. "_enabled": true,
  173. "_materials": [
  174. {
  175. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  176. }
  177. ],
  178. "_srcBlendFactor": 770,
  179. "_dstBlendFactor": 771,
  180. "_spriteFrame": {
  181. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  182. },
  183. "_type": 0,
  184. "_sizeMode": 0,
  185. "_fillType": 0,
  186. "_fillCenter": {
  187. "__type__": "cc.Vec2",
  188. "x": 0,
  189. "y": 0
  190. },
  191. "_fillStart": 0,
  192. "_fillRange": 0,
  193. "_isTrimmedMode": true,
  194. "_atlas": null,
  195. "_id": ""
  196. },
  197. {
  198. "__type__": "cc.PrefabInfo",
  199. "root": {
  200. "__id__": 1
  201. },
  202. "asset": {
  203. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  204. },
  205. "fileId": "ceJvCZPbNDr5AAJyRdu+so",
  206. "sync": false
  207. },
  208. {
  209. "__type__": "cc.Node",
  210. "_name": "bg_img",
  211. "_objFlags": 0,
  212. "_parent": {
  213. "__id__": 1
  214. },
  215. "_children": [],
  216. "_active": true,
  217. "_components": [
  218. {
  219. "__id__": 6
  220. },
  221. {
  222. "__id__": 7
  223. }
  224. ],
  225. "_prefab": {
  226. "__id__": 8
  227. },
  228. "_opacity": 255,
  229. "_color": {
  230. "__type__": "cc.Color",
  231. "r": 255,
  232. "g": 255,
  233. "b": 255,
  234. "a": 255
  235. },
  236. "_contentSize": {
  237. "__type__": "cc.Size",
  238. "width": 750,
  239. "height": 1334
  240. },
  241. "_anchorPoint": {
  242. "__type__": "cc.Vec2",
  243. "x": 0.5,
  244. "y": 0.5
  245. },
  246. "_trs": {
  247. "__type__": "TypedArray",
  248. "ctor": "Float64Array",
  249. "array": [
  250. 0,
  251. 0,
  252. 0,
  253. 0,
  254. 0,
  255. 0,
  256. 1,
  257. 1,
  258. 1,
  259. 1
  260. ]
  261. },
  262. "_eulerAngles": {
  263. "__type__": "cc.Vec3",
  264. "x": 0,
  265. "y": 0,
  266. "z": 0
  267. },
  268. "_skewX": 0,
  269. "_skewY": 0,
  270. "_is3DNode": false,
  271. "_groupIndex": 0,
  272. "groupIndex": 0,
  273. "_id": ""
  274. },
  275. {
  276. "__type__": "cc.Sprite",
  277. "_name": "",
  278. "_objFlags": 0,
  279. "node": {
  280. "__id__": 5
  281. },
  282. "_enabled": true,
  283. "_materials": [
  284. {
  285. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  286. }
  287. ],
  288. "_srcBlendFactor": 770,
  289. "_dstBlendFactor": 771,
  290. "_spriteFrame": {
  291. "__uuid__": "a114a165-9624-4ec6-81d6-e16a0f7da326"
  292. },
  293. "_type": 0,
  294. "_sizeMode": 1,
  295. "_fillType": 0,
  296. "_fillCenter": {
  297. "__type__": "cc.Vec2",
  298. "x": 0,
  299. "y": 0
  300. },
  301. "_fillStart": 0,
  302. "_fillRange": 0,
  303. "_isTrimmedMode": true,
  304. "_atlas": null,
  305. "_id": ""
  306. },
  307. {
  308. "__type__": "cc.Widget",
  309. "_name": "",
  310. "_objFlags": 0,
  311. "node": {
  312. "__id__": 5
  313. },
  314. "_enabled": true,
  315. "alignMode": 1,
  316. "_target": null,
  317. "_alignFlags": 4,
  318. "_left": 0,
  319. "_right": 0,
  320. "_top": 0,
  321. "_bottom": 0,
  322. "_verticalCenter": 0,
  323. "_horizontalCenter": 0,
  324. "_isAbsLeft": true,
  325. "_isAbsRight": true,
  326. "_isAbsTop": true,
  327. "_isAbsBottom": true,
  328. "_isAbsHorizontalCenter": true,
  329. "_isAbsVerticalCenter": true,
  330. "_originalWidth": 0,
  331. "_originalHeight": 0,
  332. "_id": ""
  333. },
  334. {
  335. "__type__": "cc.PrefabInfo",
  336. "root": {
  337. "__id__": 1
  338. },
  339. "asset": {
  340. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  341. },
  342. "fileId": "795bXf1SxHy7IyFwuLCiBL",
  343. "sync": false
  344. },
  345. {
  346. "__type__": "cc.Node",
  347. "_name": "Panel",
  348. "_objFlags": 0,
  349. "_parent": {
  350. "__id__": 1
  351. },
  352. "_children": [
  353. {
  354. "__id__": 10
  355. },
  356. {
  357. "__id__": 16
  358. },
  359. {
  360. "__id__": 19
  361. },
  362. {
  363. "__id__": 24
  364. },
  365. {
  366. "__id__": 27
  367. },
  368. {
  369. "__id__": 39
  370. },
  371. {
  372. "__id__": 43
  373. },
  374. {
  375. "__id__": 63
  376. },
  377. {
  378. "__id__": 67
  379. },
  380. {
  381. "__id__": 78
  382. },
  383. {
  384. "__id__": 109
  385. },
  386. {
  387. "__id__": 168
  388. },
  389. {
  390. "__id__": 181
  391. },
  392. {
  393. "__id__": 195
  394. },
  395. {
  396. "__id__": 204
  397. },
  398. {
  399. "__id__": 209
  400. },
  401. {
  402. "__id__": 248
  403. },
  404. {
  405. "__id__": 250
  406. },
  407. {
  408. "__id__": 252
  409. }
  410. ],
  411. "_active": true,
  412. "_components": [
  413. {
  414. "__id__": 254
  415. }
  416. ],
  417. "_prefab": {
  418. "__id__": 255
  419. },
  420. "_opacity": 255,
  421. "_color": {
  422. "__type__": "cc.Color",
  423. "r": 255,
  424. "g": 255,
  425. "b": 255,
  426. "a": 255
  427. },
  428. "_contentSize": {
  429. "__type__": "cc.Size",
  430. "width": 750,
  431. "height": 1334
  432. },
  433. "_anchorPoint": {
  434. "__type__": "cc.Vec2",
  435. "x": 0.5,
  436. "y": 0.5
  437. },
  438. "_trs": {
  439. "__type__": "TypedArray",
  440. "ctor": "Float64Array",
  441. "array": [
  442. 0,
  443. 0,
  444. 0,
  445. 0,
  446. 0,
  447. 0,
  448. 1,
  449. 1,
  450. 1,
  451. 1
  452. ]
  453. },
  454. "_eulerAngles": {
  455. "__type__": "cc.Vec3",
  456. "x": 0,
  457. "y": 0,
  458. "z": 0
  459. },
  460. "_skewX": 0,
  461. "_skewY": 0,
  462. "_is3DNode": false,
  463. "_groupIndex": 0,
  464. "groupIndex": 0,
  465. "_id": ""
  466. },
  467. {
  468. "__type__": "cc.Node",
  469. "_name": "btnClose",
  470. "_objFlags": 0,
  471. "_parent": {
  472. "__id__": 9
  473. },
  474. "_children": [],
  475. "_active": true,
  476. "_components": [
  477. {
  478. "__id__": 11
  479. },
  480. {
  481. "__id__": 12
  482. },
  483. {
  484. "__id__": 14
  485. }
  486. ],
  487. "_prefab": {
  488. "__id__": 15
  489. },
  490. "_opacity": 255,
  491. "_color": {
  492. "__type__": "cc.Color",
  493. "r": 255,
  494. "g": 255,
  495. "b": 255,
  496. "a": 255
  497. },
  498. "_contentSize": {
  499. "__type__": "cc.Size",
  500. "width": 75,
  501. "height": 60
  502. },
  503. "_anchorPoint": {
  504. "__type__": "cc.Vec2",
  505. "x": 0.5,
  506. "y": 0.5
  507. },
  508. "_trs": {
  509. "__type__": "TypedArray",
  510. "ctor": "Float64Array",
  511. "array": [
  512. -310,
  513. 600.675,
  514. 0,
  515. 0,
  516. 0,
  517. 0,
  518. 1,
  519. 1,
  520. 1,
  521. 1
  522. ]
  523. },
  524. "_eulerAngles": {
  525. "__type__": "cc.Vec3",
  526. "x": 0,
  527. "y": 0,
  528. "z": 0
  529. },
  530. "_skewX": 0,
  531. "_skewY": 0,
  532. "_is3DNode": false,
  533. "_groupIndex": 0,
  534. "groupIndex": 0,
  535. "_id": ""
  536. },
  537. {
  538. "__type__": "cc.Sprite",
  539. "_name": "",
  540. "_objFlags": 0,
  541. "node": {
  542. "__id__": 10
  543. },
  544. "_enabled": true,
  545. "_materials": [
  546. {
  547. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  548. }
  549. ],
  550. "_srcBlendFactor": 770,
  551. "_dstBlendFactor": 771,
  552. "_spriteFrame": {
  553. "__uuid__": "aff7a7b5-a397-42b8-b7b5-aa9c6076b352"
  554. },
  555. "_type": 0,
  556. "_sizeMode": 1,
  557. "_fillType": 0,
  558. "_fillCenter": {
  559. "__type__": "cc.Vec2",
  560. "x": 0,
  561. "y": 0
  562. },
  563. "_fillStart": 0,
  564. "_fillRange": 0,
  565. "_isTrimmedMode": true,
  566. "_atlas": null,
  567. "_id": ""
  568. },
  569. {
  570. "__type__": "cc.Button",
  571. "_name": "",
  572. "_objFlags": 0,
  573. "node": {
  574. "__id__": 10
  575. },
  576. "_enabled": true,
  577. "_normalMaterial": {
  578. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  579. },
  580. "_grayMaterial": null,
  581. "duration": 0.1,
  582. "zoomScale": 1.2,
  583. "clickEvents": [
  584. {
  585. "__id__": 13
  586. }
  587. ],
  588. "_N$interactable": true,
  589. "_N$enableAutoGrayEffect": false,
  590. "_N$transition": 3,
  591. "transition": 3,
  592. "_N$normalColor": {
  593. "__type__": "cc.Color",
  594. "r": 255,
  595. "g": 255,
  596. "b": 255,
  597. "a": 255
  598. },
  599. "_N$pressedColor": {
  600. "__type__": "cc.Color",
  601. "r": 211,
  602. "g": 211,
  603. "b": 211,
  604. "a": 255
  605. },
  606. "pressedColor": {
  607. "__type__": "cc.Color",
  608. "r": 211,
  609. "g": 211,
  610. "b": 211,
  611. "a": 255
  612. },
  613. "_N$hoverColor": {
  614. "__type__": "cc.Color",
  615. "r": 255,
  616. "g": 255,
  617. "b": 255,
  618. "a": 255
  619. },
  620. "hoverColor": {
  621. "__type__": "cc.Color",
  622. "r": 255,
  623. "g": 255,
  624. "b": 255,
  625. "a": 255
  626. },
  627. "_N$disabledColor": {
  628. "__type__": "cc.Color",
  629. "r": 124,
  630. "g": 124,
  631. "b": 124,
  632. "a": 255
  633. },
  634. "_N$normalSprite": null,
  635. "_N$pressedSprite": null,
  636. "pressedSprite": null,
  637. "_N$hoverSprite": null,
  638. "hoverSprite": null,
  639. "_N$disabledSprite": null,
  640. "_N$target": null,
  641. "_id": ""
  642. },
  643. {
  644. "__type__": "cc.ClickEvent",
  645. "target": {
  646. "__id__": 1
  647. },
  648. "component": "",
  649. "_componentId": "bb002IlT3tILa3522JfGQ79",
  650. "handler": "Click_CloseBtn",
  651. "customEventData": ""
  652. },
  653. {
  654. "__type__": "cc.Widget",
  655. "_name": "",
  656. "_objFlags": 0,
  657. "node": {
  658. "__id__": 10
  659. },
  660. "_enabled": true,
  661. "alignMode": 1,
  662. "_target": null,
  663. "_alignFlags": 9,
  664. "_left": 27.5,
  665. "_right": 0,
  666. "_top": 36.325000000000045,
  667. "_bottom": 0,
  668. "_verticalCenter": 0,
  669. "_horizontalCenter": 0,
  670. "_isAbsLeft": true,
  671. "_isAbsRight": true,
  672. "_isAbsTop": true,
  673. "_isAbsBottom": true,
  674. "_isAbsHorizontalCenter": true,
  675. "_isAbsVerticalCenter": true,
  676. "_originalWidth": 0,
  677. "_originalHeight": 0,
  678. "_id": ""
  679. },
  680. {
  681. "__type__": "cc.PrefabInfo",
  682. "root": {
  683. "__id__": 1
  684. },
  685. "asset": {
  686. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  687. },
  688. "fileId": "18B/7af+9FCpd1oNAuCSVA",
  689. "sync": false
  690. },
  691. {
  692. "__type__": "cc.Node",
  693. "_name": "title",
  694. "_objFlags": 0,
  695. "_parent": {
  696. "__id__": 9
  697. },
  698. "_children": [],
  699. "_active": true,
  700. "_components": [
  701. {
  702. "__id__": 17
  703. }
  704. ],
  705. "_prefab": {
  706. "__id__": 18
  707. },
  708. "_opacity": 255,
  709. "_color": {
  710. "__type__": "cc.Color",
  711. "r": 255,
  712. "g": 255,
  713. "b": 255,
  714. "a": 255
  715. },
  716. "_contentSize": {
  717. "__type__": "cc.Size",
  718. "width": 441,
  719. "height": 75
  720. },
  721. "_anchorPoint": {
  722. "__type__": "cc.Vec2",
  723. "x": 0.5,
  724. "y": 0.5
  725. },
  726. "_trs": {
  727. "__type__": "TypedArray",
  728. "ctor": "Float64Array",
  729. "array": [
  730. 0,
  731. 600.675,
  732. 0,
  733. 0,
  734. 0,
  735. 0,
  736. 1,
  737. 1,
  738. 1,
  739. 1
  740. ]
  741. },
  742. "_eulerAngles": {
  743. "__type__": "cc.Vec3",
  744. "x": 0,
  745. "y": 0,
  746. "z": 0
  747. },
  748. "_skewX": 0,
  749. "_skewY": 0,
  750. "_is3DNode": false,
  751. "_groupIndex": 0,
  752. "groupIndex": 0,
  753. "_id": ""
  754. },
  755. {
  756. "__type__": "cc.Sprite",
  757. "_name": "",
  758. "_objFlags": 0,
  759. "node": {
  760. "__id__": 16
  761. },
  762. "_enabled": true,
  763. "_materials": [
  764. {
  765. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  766. }
  767. ],
  768. "_srcBlendFactor": 770,
  769. "_dstBlendFactor": 771,
  770. "_spriteFrame": {
  771. "__uuid__": "12b12f1e-ca86-4381-a182-761d70d925aa"
  772. },
  773. "_type": 0,
  774. "_sizeMode": 1,
  775. "_fillType": 0,
  776. "_fillCenter": {
  777. "__type__": "cc.Vec2",
  778. "x": 0,
  779. "y": 0
  780. },
  781. "_fillStart": 0,
  782. "_fillRange": 0,
  783. "_isTrimmedMode": true,
  784. "_atlas": null,
  785. "_id": ""
  786. },
  787. {
  788. "__type__": "cc.PrefabInfo",
  789. "root": {
  790. "__id__": 1
  791. },
  792. "asset": {
  793. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  794. },
  795. "fileId": "5aIZ/PelhFYIfXEPh80qt6",
  796. "sync": false
  797. },
  798. {
  799. "__type__": "cc.Node",
  800. "_name": "btnHelp",
  801. "_objFlags": 0,
  802. "_parent": {
  803. "__id__": 9
  804. },
  805. "_children": [],
  806. "_active": true,
  807. "_components": [
  808. {
  809. "__id__": 20
  810. },
  811. {
  812. "__id__": 22
  813. }
  814. ],
  815. "_prefab": {
  816. "__id__": 23
  817. },
  818. "_opacity": 255,
  819. "_color": {
  820. "__type__": "cc.Color",
  821. "r": 255,
  822. "g": 255,
  823. "b": 255,
  824. "a": 255
  825. },
  826. "_contentSize": {
  827. "__type__": "cc.Size",
  828. "width": 53,
  829. "height": 53
  830. },
  831. "_anchorPoint": {
  832. "__type__": "cc.Vec2",
  833. "x": 0.5,
  834. "y": 0.5
  835. },
  836. "_trs": {
  837. "__type__": "TypedArray",
  838. "ctor": "Float64Array",
  839. "array": [
  840. 259.499,
  841. 596.675,
  842. 0,
  843. 0,
  844. 0,
  845. 0,
  846. 1,
  847. 1,
  848. 1,
  849. 1
  850. ]
  851. },
  852. "_eulerAngles": {
  853. "__type__": "cc.Vec3",
  854. "x": 0,
  855. "y": 0,
  856. "z": 0
  857. },
  858. "_skewX": 0,
  859. "_skewY": 0,
  860. "_is3DNode": false,
  861. "_groupIndex": 0,
  862. "groupIndex": 0,
  863. "_id": ""
  864. },
  865. {
  866. "__type__": "cc.Button",
  867. "_name": "",
  868. "_objFlags": 0,
  869. "node": {
  870. "__id__": 19
  871. },
  872. "_enabled": true,
  873. "_normalMaterial": null,
  874. "_grayMaterial": null,
  875. "duration": 0.1,
  876. "zoomScale": 1.2,
  877. "clickEvents": [
  878. {
  879. "__id__": 21
  880. }
  881. ],
  882. "_N$interactable": true,
  883. "_N$enableAutoGrayEffect": false,
  884. "_N$transition": 0,
  885. "transition": 0,
  886. "_N$normalColor": {
  887. "__type__": "cc.Color",
  888. "r": 255,
  889. "g": 255,
  890. "b": 255,
  891. "a": 255
  892. },
  893. "_N$pressedColor": {
  894. "__type__": "cc.Color",
  895. "r": 211,
  896. "g": 211,
  897. "b": 211,
  898. "a": 255
  899. },
  900. "pressedColor": {
  901. "__type__": "cc.Color",
  902. "r": 211,
  903. "g": 211,
  904. "b": 211,
  905. "a": 255
  906. },
  907. "_N$hoverColor": {
  908. "__type__": "cc.Color",
  909. "r": 255,
  910. "g": 255,
  911. "b": 255,
  912. "a": 255
  913. },
  914. "hoverColor": {
  915. "__type__": "cc.Color",
  916. "r": 255,
  917. "g": 255,
  918. "b": 255,
  919. "a": 255
  920. },
  921. "_N$disabledColor": {
  922. "__type__": "cc.Color",
  923. "r": 124,
  924. "g": 124,
  925. "b": 124,
  926. "a": 255
  927. },
  928. "_N$normalSprite": null,
  929. "_N$pressedSprite": null,
  930. "pressedSprite": null,
  931. "_N$hoverSprite": null,
  932. "hoverSprite": null,
  933. "_N$disabledSprite": null,
  934. "_N$target": null,
  935. "_id": ""
  936. },
  937. {
  938. "__type__": "cc.ClickEvent",
  939. "target": {
  940. "__id__": 1
  941. },
  942. "component": "",
  943. "_componentId": "bb002IlT3tILa3522JfGQ79",
  944. "handler": "Click_HelpBtn",
  945. "customEventData": ""
  946. },
  947. {
  948. "__type__": "cc.Sprite",
  949. "_name": "",
  950. "_objFlags": 0,
  951. "node": {
  952. "__id__": 19
  953. },
  954. "_enabled": true,
  955. "_materials": [
  956. {
  957. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  958. }
  959. ],
  960. "_srcBlendFactor": 770,
  961. "_dstBlendFactor": 771,
  962. "_spriteFrame": {
  963. "__uuid__": "466b4885-a423-44a6-a773-e21f51450aed"
  964. },
  965. "_type": 0,
  966. "_sizeMode": 1,
  967. "_fillType": 0,
  968. "_fillCenter": {
  969. "__type__": "cc.Vec2",
  970. "x": 0,
  971. "y": 0
  972. },
  973. "_fillStart": 0,
  974. "_fillRange": 0,
  975. "_isTrimmedMode": true,
  976. "_atlas": null,
  977. "_id": ""
  978. },
  979. {
  980. "__type__": "cc.PrefabInfo",
  981. "root": {
  982. "__id__": 1
  983. },
  984. "asset": {
  985. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  986. },
  987. "fileId": "9fOIh1iuBO1JLKhze5clkF",
  988. "sync": false
  989. },
  990. {
  991. "__type__": "cc.Node",
  992. "_name": "Window1",
  993. "_objFlags": 0,
  994. "_parent": {
  995. "__id__": 9
  996. },
  997. "_children": [],
  998. "_active": true,
  999. "_components": [
  1000. {
  1001. "__id__": 25
  1002. }
  1003. ],
  1004. "_prefab": {
  1005. "__id__": 26
  1006. },
  1007. "_opacity": 255,
  1008. "_color": {
  1009. "__type__": "cc.Color",
  1010. "r": 255,
  1011. "g": 255,
  1012. "b": 255,
  1013. "a": 255
  1014. },
  1015. "_contentSize": {
  1016. "__type__": "cc.Size",
  1017. "width": 661,
  1018. "height": 344
  1019. },
  1020. "_anchorPoint": {
  1021. "__type__": "cc.Vec2",
  1022. "x": 0.5,
  1023. "y": 0.5
  1024. },
  1025. "_trs": {
  1026. "__type__": "TypedArray",
  1027. "ctor": "Float64Array",
  1028. "array": [
  1029. 0,
  1030. 367.164,
  1031. 0,
  1032. 0,
  1033. 0,
  1034. 0,
  1035. 1,
  1036. 1,
  1037. 1,
  1038. 1
  1039. ]
  1040. },
  1041. "_eulerAngles": {
  1042. "__type__": "cc.Vec3",
  1043. "x": 0,
  1044. "y": 0,
  1045. "z": 0
  1046. },
  1047. "_skewX": 0,
  1048. "_skewY": 0,
  1049. "_is3DNode": false,
  1050. "_groupIndex": 0,
  1051. "groupIndex": 0,
  1052. "_id": ""
  1053. },
  1054. {
  1055. "__type__": "cc.Sprite",
  1056. "_name": "",
  1057. "_objFlags": 0,
  1058. "node": {
  1059. "__id__": 24
  1060. },
  1061. "_enabled": true,
  1062. "_materials": [
  1063. {
  1064. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1065. }
  1066. ],
  1067. "_srcBlendFactor": 770,
  1068. "_dstBlendFactor": 771,
  1069. "_spriteFrame": {
  1070. "__uuid__": "ac279013-fcb6-4e97-91b4-0c839cdf2512"
  1071. },
  1072. "_type": 0,
  1073. "_sizeMode": 1,
  1074. "_fillType": 0,
  1075. "_fillCenter": {
  1076. "__type__": "cc.Vec2",
  1077. "x": 0,
  1078. "y": 0
  1079. },
  1080. "_fillStart": 0,
  1081. "_fillRange": 0,
  1082. "_isTrimmedMode": true,
  1083. "_atlas": null,
  1084. "_id": ""
  1085. },
  1086. {
  1087. "__type__": "cc.PrefabInfo",
  1088. "root": {
  1089. "__id__": 1
  1090. },
  1091. "asset": {
  1092. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  1093. },
  1094. "fileId": "eaU5N3CeRGaIyzwVWYkjx2",
  1095. "sync": false
  1096. },
  1097. {
  1098. "__type__": "cc.Node",
  1099. "_name": "cashTip",
  1100. "_objFlags": 0,
  1101. "_parent": {
  1102. "__id__": 9
  1103. },
  1104. "_children": [
  1105. {
  1106. "__id__": 28
  1107. },
  1108. {
  1109. "__id__": 31
  1110. },
  1111. {
  1112. "__id__": 34
  1113. }
  1114. ],
  1115. "_active": true,
  1116. "_components": [
  1117. {
  1118. "__id__": 37
  1119. }
  1120. ],
  1121. "_prefab": {
  1122. "__id__": 38
  1123. },
  1124. "_opacity": 255,
  1125. "_color": {
  1126. "__type__": "cc.Color",
  1127. "r": 255,
  1128. "g": 255,
  1129. "b": 255,
  1130. "a": 255
  1131. },
  1132. "_contentSize": {
  1133. "__type__": "cc.Size",
  1134. "width": 171.14,
  1135. "height": 50.4
  1136. },
  1137. "_anchorPoint": {
  1138. "__type__": "cc.Vec2",
  1139. "x": 0.5,
  1140. "y": 0.5
  1141. },
  1142. "_trs": {
  1143. "__type__": "TypedArray",
  1144. "ctor": "Float64Array",
  1145. "array": [
  1146. -231.434,
  1147. 513.372,
  1148. 0,
  1149. 0,
  1150. 0,
  1151. 0,
  1152. 1,
  1153. 1,
  1154. 1,
  1155. 1
  1156. ]
  1157. },
  1158. "_eulerAngles": {
  1159. "__type__": "cc.Vec3",
  1160. "x": 0,
  1161. "y": 0,
  1162. "z": 0
  1163. },
  1164. "_skewX": 0,
  1165. "_skewY": 0,
  1166. "_is3DNode": false,
  1167. "_groupIndex": 0,
  1168. "groupIndex": 0,
  1169. "_id": ""
  1170. },
  1171. {
  1172. "__type__": "cc.PrivateNode",
  1173. "_name": "RICHTEXT_CHILD",
  1174. "_objFlags": 1024,
  1175. "_parent": {
  1176. "__id__": 27
  1177. },
  1178. "_children": [],
  1179. "_active": true,
  1180. "_components": [
  1181. {
  1182. "__id__": 29
  1183. }
  1184. ],
  1185. "_prefab": {
  1186. "__id__": 30
  1187. },
  1188. "_opacity": 255,
  1189. "_color": {
  1190. "__type__": "cc.Color",
  1191. "r": 255,
  1192. "g": 255,
  1193. "b": 255,
  1194. "a": 255
  1195. },
  1196. "_contentSize": {
  1197. "__type__": "cc.Size",
  1198. "width": 28,
  1199. "height": 50.4
  1200. },
  1201. "_anchorPoint": {
  1202. "__type__": "cc.Vec2",
  1203. "x": 0,
  1204. "y": 0
  1205. },
  1206. "_trs": {
  1207. "__type__": "TypedArray",
  1208. "ctor": "Float64Array",
  1209. "array": [
  1210. -85.57,
  1211. -25.2,
  1212. 0,
  1213. 0,
  1214. 0,
  1215. 0,
  1216. 1,
  1217. 1,
  1218. 1,
  1219. 1
  1220. ]
  1221. },
  1222. "_eulerAngles": {
  1223. "__type__": "cc.Vec3",
  1224. "x": 0,
  1225. "y": 0,
  1226. "z": 0
  1227. },
  1228. "_skewX": 0,
  1229. "_skewY": 0,
  1230. "_zIndex": -32768,
  1231. "_is3DNode": false,
  1232. "_groupIndex": 0,
  1233. "groupIndex": 0,
  1234. "showInEditor": false,
  1235. "_id": ""
  1236. },
  1237. {
  1238. "__type__": "cc.Label",
  1239. "_name": "",
  1240. "_objFlags": 0,
  1241. "node": {
  1242. "__id__": 28
  1243. },
  1244. "_enabled": true,
  1245. "_materials": [
  1246. {
  1247. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1248. }
  1249. ],
  1250. "_useOriginalSize": true,
  1251. "_string": "满",
  1252. "_N$string": "满",
  1253. "_fontSize": 28,
  1254. "_lineHeight": 40,
  1255. "_enableWrapText": true,
  1256. "_N$file": null,
  1257. "_isSystemFontUsed": true,
  1258. "_spacingX": 0,
  1259. "_batchAsBitmap": false,
  1260. "_styleFlags": 1,
  1261. "_underlineHeight": 0,
  1262. "_N$horizontalAlign": 0,
  1263. "_N$verticalAlign": 1,
  1264. "_N$fontFamily": "Arial",
  1265. "_N$overflow": 0,
  1266. "_N$cacheMode": 0,
  1267. "_id": ""
  1268. },
  1269. {
  1270. "__type__": "cc.PrefabInfo",
  1271. "root": {
  1272. "__id__": 1
  1273. },
  1274. "asset": {
  1275. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  1276. },
  1277. "fileId": "95Q+NcjCVPJ60hk9MZ5G5C",
  1278. "sync": false
  1279. },
  1280. {
  1281. "__type__": "cc.PrivateNode",
  1282. "_name": "RICHTEXT_CHILD",
  1283. "_objFlags": 1024,
  1284. "_parent": {
  1285. "__id__": 27
  1286. },
  1287. "_children": [],
  1288. "_active": true,
  1289. "_components": [
  1290. {
  1291. "__id__": 32
  1292. }
  1293. ],
  1294. "_prefab": {
  1295. "__id__": 33
  1296. },
  1297. "_opacity": 255,
  1298. "_color": {
  1299. "__type__": "cc.Color",
  1300. "r": 255,
  1301. "g": 224,
  1302. "b": 12,
  1303. "a": 255
  1304. },
  1305. "_contentSize": {
  1306. "__type__": "cc.Size",
  1307. "width": 59.14,
  1308. "height": 50.4
  1309. },
  1310. "_anchorPoint": {
  1311. "__type__": "cc.Vec2",
  1312. "x": 0,
  1313. "y": 0
  1314. },
  1315. "_trs": {
  1316. "__type__": "TypedArray",
  1317. "ctor": "Float64Array",
  1318. "array": [
  1319. -57.56999999999999,
  1320. -25.2,
  1321. 0,
  1322. 0,
  1323. 0,
  1324. 0,
  1325. 1,
  1326. 1,
  1327. 1,
  1328. 1
  1329. ]
  1330. },
  1331. "_eulerAngles": {
  1332. "__type__": "cc.Vec3",
  1333. "x": 0,
  1334. "y": 0,
  1335. "z": 0
  1336. },
  1337. "_skewX": 0,
  1338. "_skewY": 0,
  1339. "_zIndex": -32768,
  1340. "_is3DNode": false,
  1341. "_groupIndex": 0,
  1342. "groupIndex": 0,
  1343. "showInEditor": false,
  1344. "_id": ""
  1345. },
  1346. {
  1347. "__type__": "cc.Label",
  1348. "_name": "",
  1349. "_objFlags": 0,
  1350. "node": {
  1351. "__id__": 31
  1352. },
  1353. "_enabled": true,
  1354. "_materials": [
  1355. {
  1356. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1357. }
  1358. ],
  1359. "_useOriginalSize": true,
  1360. "_string": "10元",
  1361. "_N$string": "10元",
  1362. "_fontSize": 28,
  1363. "_lineHeight": 40,
  1364. "_enableWrapText": true,
  1365. "_N$file": null,
  1366. "_isSystemFontUsed": true,
  1367. "_spacingX": 0,
  1368. "_batchAsBitmap": false,
  1369. "_styleFlags": 1,
  1370. "_underlineHeight": 0,
  1371. "_N$horizontalAlign": 0,
  1372. "_N$verticalAlign": 1,
  1373. "_N$fontFamily": "Arial",
  1374. "_N$overflow": 0,
  1375. "_N$cacheMode": 0,
  1376. "_id": ""
  1377. },
  1378. {
  1379. "__type__": "cc.PrefabInfo",
  1380. "root": {
  1381. "__id__": 1
  1382. },
  1383. "asset": {
  1384. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  1385. },
  1386. "fileId": "15wAWhEwNCt4jobUPfN4mK",
  1387. "sync": false
  1388. },
  1389. {
  1390. "__type__": "cc.PrivateNode",
  1391. "_name": "RICHTEXT_CHILD",
  1392. "_objFlags": 1024,
  1393. "_parent": {
  1394. "__id__": 27
  1395. },
  1396. "_children": [],
  1397. "_active": true,
  1398. "_components": [
  1399. {
  1400. "__id__": 35
  1401. }
  1402. ],
  1403. "_prefab": {
  1404. "__id__": 36
  1405. },
  1406. "_opacity": 255,
  1407. "_color": {
  1408. "__type__": "cc.Color",
  1409. "r": 255,
  1410. "g": 255,
  1411. "b": 255,
  1412. "a": 255
  1413. },
  1414. "_contentSize": {
  1415. "__type__": "cc.Size",
  1416. "width": 84,
  1417. "height": 50.4
  1418. },
  1419. "_anchorPoint": {
  1420. "__type__": "cc.Vec2",
  1421. "x": 0,
  1422. "y": 0
  1423. },
  1424. "_trs": {
  1425. "__type__": "TypedArray",
  1426. "ctor": "Float64Array",
  1427. "array": [
  1428. 1.5700000000000074,
  1429. -25.2,
  1430. 0,
  1431. 0,
  1432. 0,
  1433. 0,
  1434. 1,
  1435. 1,
  1436. 1,
  1437. 1
  1438. ]
  1439. },
  1440. "_eulerAngles": {
  1441. "__type__": "cc.Vec3",
  1442. "x": 0,
  1443. "y": 0,
  1444. "z": 0
  1445. },
  1446. "_skewX": 0,
  1447. "_skewY": 0,
  1448. "_zIndex": -32768,
  1449. "_is3DNode": false,
  1450. "_groupIndex": 0,
  1451. "groupIndex": 0,
  1452. "showInEditor": false,
  1453. "_id": ""
  1454. },
  1455. {
  1456. "__type__": "cc.Label",
  1457. "_name": "",
  1458. "_objFlags": 0,
  1459. "node": {
  1460. "__id__": 34
  1461. },
  1462. "_enabled": true,
  1463. "_materials": [
  1464. {
  1465. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1466. }
  1467. ],
  1468. "_useOriginalSize": true,
  1469. "_string": "可提现",
  1470. "_N$string": "可提现",
  1471. "_fontSize": 28,
  1472. "_lineHeight": 40,
  1473. "_enableWrapText": true,
  1474. "_N$file": null,
  1475. "_isSystemFontUsed": true,
  1476. "_spacingX": 0,
  1477. "_batchAsBitmap": false,
  1478. "_styleFlags": 1,
  1479. "_underlineHeight": 0,
  1480. "_N$horizontalAlign": 0,
  1481. "_N$verticalAlign": 1,
  1482. "_N$fontFamily": "Arial",
  1483. "_N$overflow": 0,
  1484. "_N$cacheMode": 0,
  1485. "_id": ""
  1486. },
  1487. {
  1488. "__type__": "cc.PrefabInfo",
  1489. "root": {
  1490. "__id__": 1
  1491. },
  1492. "asset": {
  1493. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  1494. },
  1495. "fileId": "d3TXXthnxOYqtSyYc1sbzD",
  1496. "sync": false
  1497. },
  1498. {
  1499. "__type__": "cc.RichText",
  1500. "_name": "",
  1501. "_objFlags": 0,
  1502. "node": {
  1503. "__id__": 27
  1504. },
  1505. "_enabled": true,
  1506. "_fontFamily": "Arial",
  1507. "_isSystemFontUsed": true,
  1508. "_N$string": "<b>满<color=#FFE00C>10元</color>可提现</b>",
  1509. "_N$horizontalAlign": 0,
  1510. "_N$fontSize": 28,
  1511. "_N$font": null,
  1512. "_N$cacheMode": 0,
  1513. "_N$maxWidth": 0,
  1514. "_N$lineHeight": 40,
  1515. "_N$imageAtlas": null,
  1516. "_N$handleTouchEvent": true,
  1517. "_id": ""
  1518. },
  1519. {
  1520. "__type__": "cc.PrefabInfo",
  1521. "root": {
  1522. "__id__": 1
  1523. },
  1524. "asset": {
  1525. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  1526. },
  1527. "fileId": "a4eWA+ET1L26f6jiw6hdFC",
  1528. "sync": false
  1529. },
  1530. {
  1531. "__type__": "cc.Node",
  1532. "_name": "txtNum",
  1533. "_objFlags": 0,
  1534. "_parent": {
  1535. "__id__": 9
  1536. },
  1537. "_children": [],
  1538. "_active": true,
  1539. "_components": [
  1540. {
  1541. "__id__": 40
  1542. },
  1543. {
  1544. "__id__": 41
  1545. }
  1546. ],
  1547. "_prefab": {
  1548. "__id__": 42
  1549. },
  1550. "_opacity": 255,
  1551. "_color": {
  1552. "__type__": "cc.Color",
  1553. "r": 255,
  1554. "g": 224,
  1555. "b": 12,
  1556. "a": 255
  1557. },
  1558. "_contentSize": {
  1559. "__type__": "cc.Size",
  1560. "width": 153.86,
  1561. "height": 94.2
  1562. },
  1563. "_anchorPoint": {
  1564. "__type__": "cc.Vec2",
  1565. "x": 0.5,
  1566. "y": 0.5
  1567. },
  1568. "_trs": {
  1569. "__type__": "TypedArray",
  1570. "ctor": "Float64Array",
  1571. "array": [
  1572. 0,
  1573. 471.905,
  1574. 0,
  1575. 0,
  1576. 0,
  1577. 0,
  1578. 1,
  1579. 1,
  1580. 1,
  1581. 1
  1582. ]
  1583. },
  1584. "_eulerAngles": {
  1585. "__type__": "cc.Vec3",
  1586. "x": 0,
  1587. "y": 0,
  1588. "z": 0
  1589. },
  1590. "_skewX": 0,
  1591. "_skewY": 0,
  1592. "_is3DNode": false,
  1593. "_groupIndex": 0,
  1594. "groupIndex": 0,
  1595. "_id": ""
  1596. },
  1597. {
  1598. "__type__": "cc.Label",
  1599. "_name": "",
  1600. "_objFlags": 0,
  1601. "node": {
  1602. "__id__": 39
  1603. },
  1604. "_enabled": true,
  1605. "_materials": [
  1606. {
  1607. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1608. }
  1609. ],
  1610. "_useOriginalSize": false,
  1611. "_string": "10元",
  1612. "_N$string": "10元",
  1613. "_fontSize": 70,
  1614. "_lineHeight": 70,
  1615. "_enableWrapText": true,
  1616. "_N$file": null,
  1617. "_isSystemFontUsed": true,
  1618. "_spacingX": 0,
  1619. "_batchAsBitmap": false,
  1620. "_styleFlags": 1,
  1621. "_underlineHeight": 0,
  1622. "_N$horizontalAlign": 1,
  1623. "_N$verticalAlign": 1,
  1624. "_N$fontFamily": "Arial",
  1625. "_N$overflow": 0,
  1626. "_N$cacheMode": 0,
  1627. "_id": ""
  1628. },
  1629. {
  1630. "__type__": "cc.LabelOutline",
  1631. "_name": "",
  1632. "_objFlags": 0,
  1633. "node": {
  1634. "__id__": 39
  1635. },
  1636. "_enabled": true,
  1637. "_color": {
  1638. "__type__": "cc.Color",
  1639. "r": 140,
  1640. "g": 16,
  1641. "b": 16,
  1642. "a": 255
  1643. },
  1644. "_width": 3,
  1645. "_id": ""
  1646. },
  1647. {
  1648. "__type__": "cc.PrefabInfo",
  1649. "root": {
  1650. "__id__": 1
  1651. },
  1652. "asset": {
  1653. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  1654. },
  1655. "fileId": "14R5TLXrRJqbrCvF8nslRP",
  1656. "sync": false
  1657. },
  1658. {
  1659. "__type__": "cc.Node",
  1660. "_name": "btnCash",
  1661. "_objFlags": 0,
  1662. "_parent": {
  1663. "__id__": 9
  1664. },
  1665. "_children": [
  1666. {
  1667. "__id__": 44
  1668. },
  1669. {
  1670. "__id__": 55
  1671. }
  1672. ],
  1673. "_active": true,
  1674. "_components": [
  1675. {
  1676. "__id__": 58
  1677. },
  1678. {
  1679. "__id__": 59
  1680. },
  1681. {
  1682. "__id__": 61
  1683. }
  1684. ],
  1685. "_prefab": {
  1686. "__id__": 62
  1687. },
  1688. "_opacity": 255,
  1689. "_color": {
  1690. "__type__": "cc.Color",
  1691. "r": 255,
  1692. "g": 255,
  1693. "b": 255,
  1694. "a": 255
  1695. },
  1696. "_contentSize": {
  1697. "__type__": "cc.Size",
  1698. "width": 161,
  1699. "height": 163
  1700. },
  1701. "_anchorPoint": {
  1702. "__type__": "cc.Vec2",
  1703. "x": 0.5,
  1704. "y": 0.5
  1705. },
  1706. "_trs": {
  1707. "__type__": "TypedArray",
  1708. "ctor": "Float64Array",
  1709. "array": [
  1710. 0,
  1711. 326.082,
  1712. 0,
  1713. 0,
  1714. 0,
  1715. 0,
  1716. 1,
  1717. 1,
  1718. 1,
  1719. 1
  1720. ]
  1721. },
  1722. "_eulerAngles": {
  1723. "__type__": "cc.Vec3",
  1724. "x": 0,
  1725. "y": 0,
  1726. "z": 0
  1727. },
  1728. "_skewX": 0,
  1729. "_skewY": 0,
  1730. "_is3DNode": false,
  1731. "_groupIndex": 0,
  1732. "groupIndex": 0,
  1733. "_id": ""
  1734. },
  1735. {
  1736. "__type__": "cc.Node",
  1737. "_name": "Ring",
  1738. "_objFlags": 0,
  1739. "_parent": {
  1740. "__id__": 43
  1741. },
  1742. "_children": [
  1743. {
  1744. "__id__": 45
  1745. },
  1746. {
  1747. "__id__": 48
  1748. },
  1749. {
  1750. "__id__": 51
  1751. }
  1752. ],
  1753. "_active": true,
  1754. "_components": [],
  1755. "_prefab": {
  1756. "__id__": 54
  1757. },
  1758. "_opacity": 255,
  1759. "_color": {
  1760. "__type__": "cc.Color",
  1761. "r": 255,
  1762. "g": 255,
  1763. "b": 255,
  1764. "a": 255
  1765. },
  1766. "_contentSize": {
  1767. "__type__": "cc.Size",
  1768. "width": 0,
  1769. "height": 0
  1770. },
  1771. "_anchorPoint": {
  1772. "__type__": "cc.Vec2",
  1773. "x": 0.5,
  1774. "y": 0.5
  1775. },
  1776. "_trs": {
  1777. "__type__": "TypedArray",
  1778. "ctor": "Float64Array",
  1779. "array": [
  1780. 0.643,
  1781. 5.17,
  1782. 0,
  1783. 0,
  1784. 0,
  1785. 0,
  1786. 1,
  1787. 1,
  1788. 1,
  1789. 1
  1790. ]
  1791. },
  1792. "_eulerAngles": {
  1793. "__type__": "cc.Vec3",
  1794. "x": 0,
  1795. "y": 0,
  1796. "z": 0
  1797. },
  1798. "_skewX": 0,
  1799. "_skewY": 0,
  1800. "_is3DNode": false,
  1801. "_groupIndex": 0,
  1802. "groupIndex": 0,
  1803. "_id": ""
  1804. },
  1805. {
  1806. "__type__": "cc.Node",
  1807. "_name": "Img",
  1808. "_objFlags": 0,
  1809. "_parent": {
  1810. "__id__": 44
  1811. },
  1812. "_children": [],
  1813. "_active": true,
  1814. "_components": [
  1815. {
  1816. "__id__": 46
  1817. }
  1818. ],
  1819. "_prefab": {
  1820. "__id__": 47
  1821. },
  1822. "_opacity": 255,
  1823. "_color": {
  1824. "__type__": "cc.Color",
  1825. "r": 255,
  1826. "g": 255,
  1827. "b": 255,
  1828. "a": 255
  1829. },
  1830. "_contentSize": {
  1831. "__type__": "cc.Size",
  1832. "width": 126,
  1833. "height": 126
  1834. },
  1835. "_anchorPoint": {
  1836. "__type__": "cc.Vec2",
  1837. "x": 0.5,
  1838. "y": 0.5
  1839. },
  1840. "_trs": {
  1841. "__type__": "TypedArray",
  1842. "ctor": "Float64Array",
  1843. "array": [
  1844. 0,
  1845. 0,
  1846. 0,
  1847. 0,
  1848. 0,
  1849. 0,
  1850. 1,
  1851. 1,
  1852. 1,
  1853. 1
  1854. ]
  1855. },
  1856. "_eulerAngles": {
  1857. "__type__": "cc.Vec3",
  1858. "x": 0,
  1859. "y": 0,
  1860. "z": 0
  1861. },
  1862. "_skewX": 0,
  1863. "_skewY": 0,
  1864. "_is3DNode": false,
  1865. "_groupIndex": 0,
  1866. "groupIndex": 0,
  1867. "_id": ""
  1868. },
  1869. {
  1870. "__type__": "cc.Sprite",
  1871. "_name": "",
  1872. "_objFlags": 0,
  1873. "node": {
  1874. "__id__": 45
  1875. },
  1876. "_enabled": true,
  1877. "_materials": [
  1878. {
  1879. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1880. }
  1881. ],
  1882. "_srcBlendFactor": 770,
  1883. "_dstBlendFactor": 771,
  1884. "_spriteFrame": {
  1885. "__uuid__": "bd6c894d-eedf-45f1-82af-bfc10b688c57"
  1886. },
  1887. "_type": 0,
  1888. "_sizeMode": 0,
  1889. "_fillType": 0,
  1890. "_fillCenter": {
  1891. "__type__": "cc.Vec2",
  1892. "x": 0,
  1893. "y": 0
  1894. },
  1895. "_fillStart": 0,
  1896. "_fillRange": 0,
  1897. "_isTrimmedMode": true,
  1898. "_atlas": null,
  1899. "_id": ""
  1900. },
  1901. {
  1902. "__type__": "cc.PrefabInfo",
  1903. "root": {
  1904. "__id__": 1
  1905. },
  1906. "asset": {
  1907. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  1908. },
  1909. "fileId": "aeQOPV1n5IKpuDxL8GVfky",
  1910. "sync": false
  1911. },
  1912. {
  1913. "__type__": "cc.Node",
  1914. "_name": "Img2",
  1915. "_objFlags": 0,
  1916. "_parent": {
  1917. "__id__": 44
  1918. },
  1919. "_children": [],
  1920. "_active": true,
  1921. "_components": [
  1922. {
  1923. "__id__": 49
  1924. }
  1925. ],
  1926. "_prefab": {
  1927. "__id__": 50
  1928. },
  1929. "_opacity": 255,
  1930. "_color": {
  1931. "__type__": "cc.Color",
  1932. "r": 255,
  1933. "g": 255,
  1934. "b": 255,
  1935. "a": 255
  1936. },
  1937. "_contentSize": {
  1938. "__type__": "cc.Size",
  1939. "width": 126,
  1940. "height": 126
  1941. },
  1942. "_anchorPoint": {
  1943. "__type__": "cc.Vec2",
  1944. "x": 0.5,
  1945. "y": 0.5
  1946. },
  1947. "_trs": {
  1948. "__type__": "TypedArray",
  1949. "ctor": "Float64Array",
  1950. "array": [
  1951. 0,
  1952. 0,
  1953. 0,
  1954. 0,
  1955. 0,
  1956. 0,
  1957. 1,
  1958. 1,
  1959. 1,
  1960. 1
  1961. ]
  1962. },
  1963. "_eulerAngles": {
  1964. "__type__": "cc.Vec3",
  1965. "x": 0,
  1966. "y": 0,
  1967. "z": 0
  1968. },
  1969. "_skewX": 0,
  1970. "_skewY": 0,
  1971. "_is3DNode": false,
  1972. "_groupIndex": 0,
  1973. "groupIndex": 0,
  1974. "_id": ""
  1975. },
  1976. {
  1977. "__type__": "cc.Sprite",
  1978. "_name": "",
  1979. "_objFlags": 0,
  1980. "node": {
  1981. "__id__": 48
  1982. },
  1983. "_enabled": true,
  1984. "_materials": [
  1985. {
  1986. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1987. }
  1988. ],
  1989. "_srcBlendFactor": 770,
  1990. "_dstBlendFactor": 771,
  1991. "_spriteFrame": {
  1992. "__uuid__": "bd6c894d-eedf-45f1-82af-bfc10b688c57"
  1993. },
  1994. "_type": 0,
  1995. "_sizeMode": 0,
  1996. "_fillType": 0,
  1997. "_fillCenter": {
  1998. "__type__": "cc.Vec2",
  1999. "x": 0,
  2000. "y": 0
  2001. },
  2002. "_fillStart": 0,
  2003. "_fillRange": 0,
  2004. "_isTrimmedMode": true,
  2005. "_atlas": null,
  2006. "_id": ""
  2007. },
  2008. {
  2009. "__type__": "cc.PrefabInfo",
  2010. "root": {
  2011. "__id__": 1
  2012. },
  2013. "asset": {
  2014. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  2015. },
  2016. "fileId": "0coEaTFyxJrrV7qqQMdhct",
  2017. "sync": false
  2018. },
  2019. {
  2020. "__type__": "cc.Node",
  2021. "_name": "Img3",
  2022. "_objFlags": 0,
  2023. "_parent": {
  2024. "__id__": 44
  2025. },
  2026. "_children": [],
  2027. "_active": true,
  2028. "_components": [
  2029. {
  2030. "__id__": 52
  2031. }
  2032. ],
  2033. "_prefab": {
  2034. "__id__": 53
  2035. },
  2036. "_opacity": 255,
  2037. "_color": {
  2038. "__type__": "cc.Color",
  2039. "r": 255,
  2040. "g": 255,
  2041. "b": 255,
  2042. "a": 255
  2043. },
  2044. "_contentSize": {
  2045. "__type__": "cc.Size",
  2046. "width": 126,
  2047. "height": 126
  2048. },
  2049. "_anchorPoint": {
  2050. "__type__": "cc.Vec2",
  2051. "x": 0.5,
  2052. "y": 0.5
  2053. },
  2054. "_trs": {
  2055. "__type__": "TypedArray",
  2056. "ctor": "Float64Array",
  2057. "array": [
  2058. 0,
  2059. 0,
  2060. 0,
  2061. 0,
  2062. 0,
  2063. 0,
  2064. 1,
  2065. 1,
  2066. 1,
  2067. 1
  2068. ]
  2069. },
  2070. "_eulerAngles": {
  2071. "__type__": "cc.Vec3",
  2072. "x": 0,
  2073. "y": 0,
  2074. "z": 0
  2075. },
  2076. "_skewX": 0,
  2077. "_skewY": 0,
  2078. "_is3DNode": false,
  2079. "_groupIndex": 0,
  2080. "groupIndex": 0,
  2081. "_id": ""
  2082. },
  2083. {
  2084. "__type__": "cc.Sprite",
  2085. "_name": "",
  2086. "_objFlags": 0,
  2087. "node": {
  2088. "__id__": 51
  2089. },
  2090. "_enabled": true,
  2091. "_materials": [
  2092. {
  2093. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2094. }
  2095. ],
  2096. "_srcBlendFactor": 770,
  2097. "_dstBlendFactor": 771,
  2098. "_spriteFrame": {
  2099. "__uuid__": "bd6c894d-eedf-45f1-82af-bfc10b688c57"
  2100. },
  2101. "_type": 0,
  2102. "_sizeMode": 0,
  2103. "_fillType": 0,
  2104. "_fillCenter": {
  2105. "__type__": "cc.Vec2",
  2106. "x": 0,
  2107. "y": 0
  2108. },
  2109. "_fillStart": 0,
  2110. "_fillRange": 0,
  2111. "_isTrimmedMode": true,
  2112. "_atlas": null,
  2113. "_id": ""
  2114. },
  2115. {
  2116. "__type__": "cc.PrefabInfo",
  2117. "root": {
  2118. "__id__": 1
  2119. },
  2120. "asset": {
  2121. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  2122. },
  2123. "fileId": "d9Off2bmpP0YAyGRE3D3rk",
  2124. "sync": false
  2125. },
  2126. {
  2127. "__type__": "cc.PrefabInfo",
  2128. "root": {
  2129. "__id__": 1
  2130. },
  2131. "asset": {
  2132. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  2133. },
  2134. "fileId": "a4gSMxryZC3qohRpTAgsRJ",
  2135. "sync": false
  2136. },
  2137. {
  2138. "__type__": "cc.Node",
  2139. "_name": "Img",
  2140. "_objFlags": 0,
  2141. "_parent": {
  2142. "__id__": 43
  2143. },
  2144. "_children": [],
  2145. "_active": true,
  2146. "_components": [
  2147. {
  2148. "__id__": 56
  2149. }
  2150. ],
  2151. "_prefab": {
  2152. "__id__": 57
  2153. },
  2154. "_opacity": 255,
  2155. "_color": {
  2156. "__type__": "cc.Color",
  2157. "r": 255,
  2158. "g": 255,
  2159. "b": 255,
  2160. "a": 255
  2161. },
  2162. "_contentSize": {
  2163. "__type__": "cc.Size",
  2164. "width": 161,
  2165. "height": 163
  2166. },
  2167. "_anchorPoint": {
  2168. "__type__": "cc.Vec2",
  2169. "x": 0.5,
  2170. "y": 0.5
  2171. },
  2172. "_trs": {
  2173. "__type__": "TypedArray",
  2174. "ctor": "Float64Array",
  2175. "array": [
  2176. 0,
  2177. 0,
  2178. 0,
  2179. 0,
  2180. 0,
  2181. 0,
  2182. 1,
  2183. 1,
  2184. 1,
  2185. 1
  2186. ]
  2187. },
  2188. "_eulerAngles": {
  2189. "__type__": "cc.Vec3",
  2190. "x": 0,
  2191. "y": 0,
  2192. "z": 0
  2193. },
  2194. "_skewX": 0,
  2195. "_skewY": 0,
  2196. "_is3DNode": false,
  2197. "_groupIndex": 0,
  2198. "groupIndex": 0,
  2199. "_id": ""
  2200. },
  2201. {
  2202. "__type__": "cc.Sprite",
  2203. "_name": "",
  2204. "_objFlags": 0,
  2205. "node": {
  2206. "__id__": 55
  2207. },
  2208. "_enabled": true,
  2209. "_materials": [
  2210. {
  2211. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2212. }
  2213. ],
  2214. "_srcBlendFactor": 770,
  2215. "_dstBlendFactor": 771,
  2216. "_spriteFrame": {
  2217. "__uuid__": "13187245-5396-4671-afa1-3ae74e398437"
  2218. },
  2219. "_type": 0,
  2220. "_sizeMode": 1,
  2221. "_fillType": 0,
  2222. "_fillCenter": {
  2223. "__type__": "cc.Vec2",
  2224. "x": 0,
  2225. "y": 0
  2226. },
  2227. "_fillStart": 0,
  2228. "_fillRange": 0,
  2229. "_isTrimmedMode": true,
  2230. "_atlas": null,
  2231. "_id": ""
  2232. },
  2233. {
  2234. "__type__": "cc.PrefabInfo",
  2235. "root": {
  2236. "__id__": 1
  2237. },
  2238. "asset": {
  2239. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  2240. },
  2241. "fileId": "b6oYotPJpBJqoFvU1v80pL",
  2242. "sync": false
  2243. },
  2244. {
  2245. "__type__": "cc.Sprite",
  2246. "_name": "",
  2247. "_objFlags": 0,
  2248. "node": {
  2249. "__id__": 43
  2250. },
  2251. "_enabled": true,
  2252. "_materials": [
  2253. {
  2254. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2255. }
  2256. ],
  2257. "_srcBlendFactor": 770,
  2258. "_dstBlendFactor": 771,
  2259. "_spriteFrame": {
  2260. "__uuid__": "13187245-5396-4671-afa1-3ae74e398437"
  2261. },
  2262. "_type": 0,
  2263. "_sizeMode": 1,
  2264. "_fillType": 0,
  2265. "_fillCenter": {
  2266. "__type__": "cc.Vec2",
  2267. "x": 0,
  2268. "y": 0
  2269. },
  2270. "_fillStart": 0,
  2271. "_fillRange": 0,
  2272. "_isTrimmedMode": true,
  2273. "_atlas": null,
  2274. "_id": ""
  2275. },
  2276. {
  2277. "__type__": "cc.Button",
  2278. "_name": "",
  2279. "_objFlags": 0,
  2280. "node": {
  2281. "__id__": 43
  2282. },
  2283. "_enabled": true,
  2284. "_normalMaterial": null,
  2285. "_grayMaterial": null,
  2286. "duration": 0.1,
  2287. "zoomScale": 1.2,
  2288. "clickEvents": [
  2289. {
  2290. "__id__": 60
  2291. }
  2292. ],
  2293. "_N$interactable": true,
  2294. "_N$enableAutoGrayEffect": false,
  2295. "_N$transition": 0,
  2296. "transition": 0,
  2297. "_N$normalColor": {
  2298. "__type__": "cc.Color",
  2299. "r": 255,
  2300. "g": 255,
  2301. "b": 255,
  2302. "a": 255
  2303. },
  2304. "_N$pressedColor": {
  2305. "__type__": "cc.Color",
  2306. "r": 211,
  2307. "g": 211,
  2308. "b": 211,
  2309. "a": 255
  2310. },
  2311. "pressedColor": {
  2312. "__type__": "cc.Color",
  2313. "r": 211,
  2314. "g": 211,
  2315. "b": 211,
  2316. "a": 255
  2317. },
  2318. "_N$hoverColor": {
  2319. "__type__": "cc.Color",
  2320. "r": 255,
  2321. "g": 255,
  2322. "b": 255,
  2323. "a": 255
  2324. },
  2325. "hoverColor": {
  2326. "__type__": "cc.Color",
  2327. "r": 255,
  2328. "g": 255,
  2329. "b": 255,
  2330. "a": 255
  2331. },
  2332. "_N$disabledColor": {
  2333. "__type__": "cc.Color",
  2334. "r": 124,
  2335. "g": 124,
  2336. "b": 124,
  2337. "a": 255
  2338. },
  2339. "_N$normalSprite": null,
  2340. "_N$pressedSprite": null,
  2341. "pressedSprite": null,
  2342. "_N$hoverSprite": null,
  2343. "hoverSprite": null,
  2344. "_N$disabledSprite": null,
  2345. "_N$target": null,
  2346. "_id": ""
  2347. },
  2348. {
  2349. "__type__": "cc.ClickEvent",
  2350. "target": {
  2351. "__id__": 1
  2352. },
  2353. "component": "",
  2354. "_componentId": "bb002IlT3tILa3522JfGQ79",
  2355. "handler": "Click_CashBtn",
  2356. "customEventData": ""
  2357. },
  2358. {
  2359. "__type__": "cc.Animation",
  2360. "_name": "",
  2361. "_objFlags": 0,
  2362. "node": {
  2363. "__id__": 43
  2364. },
  2365. "_enabled": true,
  2366. "_defaultClip": {
  2367. "__uuid__": "33768dd5-cab4-4dff-a4b7-6a918257e158"
  2368. },
  2369. "_clips": [
  2370. {
  2371. "__uuid__": "33768dd5-cab4-4dff-a4b7-6a918257e158"
  2372. }
  2373. ],
  2374. "playOnLoad": false,
  2375. "_id": ""
  2376. },
  2377. {
  2378. "__type__": "cc.PrefabInfo",
  2379. "root": {
  2380. "__id__": 1
  2381. },
  2382. "asset": {
  2383. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  2384. },
  2385. "fileId": "52SBAxVkFN370Z9GdNwfAw",
  2386. "sync": false
  2387. },
  2388. {
  2389. "__type__": "cc.Node",
  2390. "_name": "addTxtEft",
  2391. "_objFlags": 0,
  2392. "_parent": {
  2393. "__id__": 9
  2394. },
  2395. "_children": [],
  2396. "_active": false,
  2397. "_components": [
  2398. {
  2399. "__id__": 64
  2400. },
  2401. {
  2402. "__id__": 65
  2403. }
  2404. ],
  2405. "_prefab": {
  2406. "__id__": 66
  2407. },
  2408. "_opacity": 255,
  2409. "_color": {
  2410. "__type__": "cc.Color",
  2411. "r": 0,
  2412. "g": 255,
  2413. "b": 0,
  2414. "a": 255
  2415. },
  2416. "_contentSize": {
  2417. "__type__": "cc.Size",
  2418. "width": 136.84,
  2419. "height": 59.7
  2420. },
  2421. "_anchorPoint": {
  2422. "__type__": "cc.Vec2",
  2423. "x": 0.5,
  2424. "y": 0.5
  2425. },
  2426. "_trs": {
  2427. "__type__": "TypedArray",
  2428. "ctor": "Float64Array",
  2429. "array": [
  2430. 0,
  2431. 410,
  2432. 0,
  2433. 0,
  2434. 0,
  2435. 0,
  2436. 1,
  2437. 1,
  2438. 1,
  2439. 1
  2440. ]
  2441. },
  2442. "_eulerAngles": {
  2443. "__type__": "cc.Vec3",
  2444. "x": 0,
  2445. "y": 0,
  2446. "z": 0
  2447. },
  2448. "_skewX": 0,
  2449. "_skewY": 0,
  2450. "_is3DNode": false,
  2451. "_groupIndex": 0,
  2452. "groupIndex": 0,
  2453. "_id": ""
  2454. },
  2455. {
  2456. "__type__": "cc.Label",
  2457. "_name": "",
  2458. "_objFlags": 0,
  2459. "node": {
  2460. "__id__": 63
  2461. },
  2462. "_enabled": true,
  2463. "_materials": [
  2464. {
  2465. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2466. }
  2467. ],
  2468. "_useOriginalSize": false,
  2469. "_string": "+0.2元",
  2470. "_N$string": "+0.2元",
  2471. "_fontSize": 45,
  2472. "_lineHeight": 45,
  2473. "_enableWrapText": true,
  2474. "_N$file": null,
  2475. "_isSystemFontUsed": true,
  2476. "_spacingX": 0,
  2477. "_batchAsBitmap": false,
  2478. "_styleFlags": 1,
  2479. "_underlineHeight": 0,
  2480. "_N$horizontalAlign": 1,
  2481. "_N$verticalAlign": 1,
  2482. "_N$fontFamily": "Arial",
  2483. "_N$overflow": 0,
  2484. "_N$cacheMode": 0,
  2485. "_id": ""
  2486. },
  2487. {
  2488. "__type__": "cc.LabelOutline",
  2489. "_name": "",
  2490. "_objFlags": 0,
  2491. "node": {
  2492. "__id__": 63
  2493. },
  2494. "_enabled": true,
  2495. "_color": {
  2496. "__type__": "cc.Color",
  2497. "r": 0,
  2498. "g": 0,
  2499. "b": 0,
  2500. "a": 255
  2501. },
  2502. "_width": 1.5,
  2503. "_id": ""
  2504. },
  2505. {
  2506. "__type__": "cc.PrefabInfo",
  2507. "root": {
  2508. "__id__": 1
  2509. },
  2510. "asset": {
  2511. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  2512. },
  2513. "fileId": "a30zeUr4tJepHiEPua4q0Q",
  2514. "sync": false
  2515. },
  2516. {
  2517. "__type__": "cc.Node",
  2518. "_name": "cashDeltaTip1",
  2519. "_objFlags": 0,
  2520. "_parent": {
  2521. "__id__": 9
  2522. },
  2523. "_children": [
  2524. {
  2525. "__id__": 68
  2526. },
  2527. {
  2528. "__id__": 72
  2529. }
  2530. ],
  2531. "_active": false,
  2532. "_components": [
  2533. {
  2534. "__id__": 76
  2535. }
  2536. ],
  2537. "_prefab": {
  2538. "__id__": 77
  2539. },
  2540. "_opacity": 255,
  2541. "_color": {
  2542. "__type__": "cc.Color",
  2543. "r": 255,
  2544. "g": 255,
  2545. "b": 255,
  2546. "a": 255
  2547. },
  2548. "_contentSize": {
  2549. "__type__": "cc.Size",
  2550. "width": 348.48,
  2551. "height": 40.32
  2552. },
  2553. "_anchorPoint": {
  2554. "__type__": "cc.Vec2",
  2555. "x": 0.5,
  2556. "y": 0.5
  2557. },
  2558. "_trs": {
  2559. "__type__": "TypedArray",
  2560. "ctor": "Float64Array",
  2561. "array": [
  2562. 0,
  2563. 230.038,
  2564. 0,
  2565. 0,
  2566. 0,
  2567. 0,
  2568. 1,
  2569. 1,
  2570. 1,
  2571. 1
  2572. ]
  2573. },
  2574. "_eulerAngles": {
  2575. "__type__": "cc.Vec3",
  2576. "x": 0,
  2577. "y": 0,
  2578. "z": 0
  2579. },
  2580. "_skewX": 0,
  2581. "_skewY": 0,
  2582. "_is3DNode": false,
  2583. "_groupIndex": 0,
  2584. "groupIndex": 0,
  2585. "_id": ""
  2586. },
  2587. {
  2588. "__type__": "cc.PrivateNode",
  2589. "_name": "RICHTEXT_CHILD",
  2590. "_objFlags": 1024,
  2591. "_parent": {
  2592. "__id__": 67
  2593. },
  2594. "_children": [],
  2595. "_active": false,
  2596. "_components": [
  2597. {
  2598. "__id__": 69
  2599. },
  2600. {
  2601. "__id__": 70
  2602. }
  2603. ],
  2604. "_prefab": {
  2605. "__id__": 71
  2606. },
  2607. "_opacity": 255,
  2608. "_color": {
  2609. "__type__": "cc.Color",
  2610. "r": 255,
  2611. "g": 255,
  2612. "b": 255,
  2613. "a": 255
  2614. },
  2615. "_contentSize": {
  2616. "__type__": "cc.Size",
  2617. "width": 264,
  2618. "height": 48.32
  2619. },
  2620. "_anchorPoint": {
  2621. "__type__": "cc.Vec2",
  2622. "x": 0,
  2623. "y": 0
  2624. },
  2625. "_trs": {
  2626. "__type__": "TypedArray",
  2627. "ctor": "Float64Array",
  2628. "array": [
  2629. -174.24,
  2630. -24.16,
  2631. 0,
  2632. 0,
  2633. 0,
  2634. 0,
  2635. 1,
  2636. 1,
  2637. 1,
  2638. 1
  2639. ]
  2640. },
  2641. "_eulerAngles": {
  2642. "__type__": "cc.Vec3",
  2643. "x": 0,
  2644. "y": 0,
  2645. "z": 0
  2646. },
  2647. "_skewX": 0,
  2648. "_skewY": 0,
  2649. "_zIndex": -32768,
  2650. "_is3DNode": false,
  2651. "_groupIndex": 0,
  2652. "groupIndex": 0,
  2653. "showInEditor": false,
  2654. "_id": ""
  2655. },
  2656. {
  2657. "__type__": "cc.Label",
  2658. "_name": "",
  2659. "_objFlags": 0,
  2660. "node": {
  2661. "__id__": 68
  2662. },
  2663. "_enabled": true,
  2664. "_materials": [
  2665. {
  2666. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2667. }
  2668. ],
  2669. "_useOriginalSize": true,
  2670. "_string": "每次视频额外奖励",
  2671. "_N$string": "每次视频额外奖励",
  2672. "_fontSize": 32,
  2673. "_lineHeight": 32,
  2674. "_enableWrapText": true,
  2675. "_N$file": null,
  2676. "_isSystemFontUsed": true,
  2677. "_spacingX": 0,
  2678. "_batchAsBitmap": false,
  2679. "_styleFlags": 1,
  2680. "_underlineHeight": 0,
  2681. "_N$horizontalAlign": 0,
  2682. "_N$verticalAlign": 1,
  2683. "_N$fontFamily": "Arial",
  2684. "_N$overflow": 0,
  2685. "_N$cacheMode": 0,
  2686. "_id": ""
  2687. },
  2688. {
  2689. "__type__": "cc.LabelOutline",
  2690. "_name": "",
  2691. "_objFlags": 0,
  2692. "node": {
  2693. "__id__": 68
  2694. },
  2695. "_enabled": true,
  2696. "_color": {
  2697. "__type__": "cc.Color",
  2698. "r": 140,
  2699. "g": 16,
  2700. "b": 16,
  2701. "a": 255
  2702. },
  2703. "_width": 4,
  2704. "_id": ""
  2705. },
  2706. {
  2707. "__type__": "cc.PrefabInfo",
  2708. "root": {
  2709. "__id__": 1
  2710. },
  2711. "asset": {
  2712. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  2713. },
  2714. "fileId": "69APeuu6lD9LODHjI7AmBF",
  2715. "sync": false
  2716. },
  2717. {
  2718. "__type__": "cc.PrivateNode",
  2719. "_name": "RICHTEXT_CHILD",
  2720. "_objFlags": 1024,
  2721. "_parent": {
  2722. "__id__": 67
  2723. },
  2724. "_children": [],
  2725. "_active": false,
  2726. "_components": [
  2727. {
  2728. "__id__": 73
  2729. },
  2730. {
  2731. "__id__": 74
  2732. }
  2733. ],
  2734. "_prefab": {
  2735. "__id__": 75
  2736. },
  2737. "_opacity": 255,
  2738. "_color": {
  2739. "__type__": "cc.Color",
  2740. "r": 255,
  2741. "g": 224,
  2742. "b": 12,
  2743. "a": 255
  2744. },
  2745. "_contentSize": {
  2746. "__type__": "cc.Size",
  2747. "width": 84.48,
  2748. "height": 48.32
  2749. },
  2750. "_anchorPoint": {
  2751. "__type__": "cc.Vec2",
  2752. "x": 0,
  2753. "y": 0
  2754. },
  2755. "_trs": {
  2756. "__type__": "TypedArray",
  2757. "ctor": "Float64Array",
  2758. "array": [
  2759. 89.75999999999999,
  2760. -24.16,
  2761. 0,
  2762. 0,
  2763. 0,
  2764. 0,
  2765. 1,
  2766. 1,
  2767. 1,
  2768. 1
  2769. ]
  2770. },
  2771. "_eulerAngles": {
  2772. "__type__": "cc.Vec3",
  2773. "x": 0,
  2774. "y": 0,
  2775. "z": 0
  2776. },
  2777. "_skewX": 0,
  2778. "_skewY": 0,
  2779. "_zIndex": -32768,
  2780. "_is3DNode": false,
  2781. "_groupIndex": 0,
  2782. "groupIndex": 0,
  2783. "showInEditor": false,
  2784. "_id": ""
  2785. },
  2786. {
  2787. "__type__": "cc.Label",
  2788. "_name": "",
  2789. "_objFlags": 0,
  2790. "node": {
  2791. "__id__": 72
  2792. },
  2793. "_enabled": true,
  2794. "_materials": [
  2795. {
  2796. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2797. }
  2798. ],
  2799. "_useOriginalSize": true,
  2800. "_string": "0.2元",
  2801. "_N$string": "0.2元",
  2802. "_fontSize": 32,
  2803. "_lineHeight": 32,
  2804. "_enableWrapText": true,
  2805. "_N$file": null,
  2806. "_isSystemFontUsed": true,
  2807. "_spacingX": 0,
  2808. "_batchAsBitmap": false,
  2809. "_styleFlags": 1,
  2810. "_underlineHeight": 0,
  2811. "_N$horizontalAlign": 0,
  2812. "_N$verticalAlign": 1,
  2813. "_N$fontFamily": "Arial",
  2814. "_N$overflow": 0,
  2815. "_N$cacheMode": 0,
  2816. "_id": ""
  2817. },
  2818. {
  2819. "__type__": "cc.LabelOutline",
  2820. "_name": "",
  2821. "_objFlags": 0,
  2822. "node": {
  2823. "__id__": 72
  2824. },
  2825. "_enabled": true,
  2826. "_color": {
  2827. "__type__": "cc.Color",
  2828. "r": 140,
  2829. "g": 16,
  2830. "b": 16,
  2831. "a": 255
  2832. },
  2833. "_width": 4,
  2834. "_id": ""
  2835. },
  2836. {
  2837. "__type__": "cc.PrefabInfo",
  2838. "root": {
  2839. "__id__": 1
  2840. },
  2841. "asset": {
  2842. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  2843. },
  2844. "fileId": "9cNmapj4RG1phaxaoFfQ6n",
  2845. "sync": false
  2846. },
  2847. {
  2848. "__type__": "cc.RichText",
  2849. "_name": "",
  2850. "_objFlags": 0,
  2851. "node": {
  2852. "__id__": 67
  2853. },
  2854. "_enabled": true,
  2855. "_fontFamily": "Arial",
  2856. "_isSystemFontUsed": true,
  2857. "_N$string": "<outline color=#8C1010 width=4><b>每次视频额外奖励<color=#FFE00C>0.2元</color></b></outline>",
  2858. "_N$horizontalAlign": 0,
  2859. "_N$fontSize": 32,
  2860. "_N$font": null,
  2861. "_N$cacheMode": 0,
  2862. "_N$maxWidth": 0,
  2863. "_N$lineHeight": 32,
  2864. "_N$imageAtlas": null,
  2865. "_N$handleTouchEvent": true,
  2866. "_id": ""
  2867. },
  2868. {
  2869. "__type__": "cc.PrefabInfo",
  2870. "root": {
  2871. "__id__": 1
  2872. },
  2873. "asset": {
  2874. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  2875. },
  2876. "fileId": "3feO5KAWtKtbwTj6Aigy5h",
  2877. "sync": false
  2878. },
  2879. {
  2880. "__type__": "cc.Node",
  2881. "_name": "cashTaskTip2",
  2882. "_objFlags": 0,
  2883. "_parent": {
  2884. "__id__": 9
  2885. },
  2886. "_children": [
  2887. {
  2888. "__id__": 79
  2889. },
  2890. {
  2891. "__id__": 83
  2892. },
  2893. {
  2894. "__id__": 87
  2895. },
  2896. {
  2897. "__id__": 91
  2898. },
  2899. {
  2900. "__id__": 95
  2901. },
  2902. {
  2903. "__id__": 99
  2904. },
  2905. {
  2906. "__id__": 103
  2907. }
  2908. ],
  2909. "_active": true,
  2910. "_components": [
  2911. {
  2912. "__id__": 107
  2913. }
  2914. ],
  2915. "_prefab": {
  2916. "__id__": 108
  2917. },
  2918. "_opacity": 255,
  2919. "_color": {
  2920. "__type__": "cc.Color",
  2921. "r": 255,
  2922. "g": 255,
  2923. "b": 255,
  2924. "a": 255
  2925. },
  2926. "_contentSize": {
  2927. "__type__": "cc.Size",
  2928. "width": 453.73,
  2929. "height": 61.019999999999996
  2930. },
  2931. "_anchorPoint": {
  2932. "__type__": "cc.Vec2",
  2933. "x": 0.5,
  2934. "y": 0.5
  2935. },
  2936. "_trs": {
  2937. "__type__": "TypedArray",
  2938. "ctor": "Float64Array",
  2939. "array": [
  2940. 0,
  2941. 231.872,
  2942. 0,
  2943. 0,
  2944. 0,
  2945. 0,
  2946. 1,
  2947. 1,
  2948. 1,
  2949. 1
  2950. ]
  2951. },
  2952. "_eulerAngles": {
  2953. "__type__": "cc.Vec3",
  2954. "x": 0,
  2955. "y": 0,
  2956. "z": 0
  2957. },
  2958. "_skewX": 0,
  2959. "_skewY": 0,
  2960. "_is3DNode": false,
  2961. "_groupIndex": 0,
  2962. "groupIndex": 0,
  2963. "_id": ""
  2964. },
  2965. {
  2966. "__type__": "cc.PrivateNode",
  2967. "_name": "RICHTEXT_CHILD",
  2968. "_objFlags": 1024,
  2969. "_parent": {
  2970. "__id__": 78
  2971. },
  2972. "_children": [],
  2973. "_active": true,
  2974. "_components": [
  2975. {
  2976. "__id__": 80
  2977. },
  2978. {
  2979. "__id__": 81
  2980. }
  2981. ],
  2982. "_prefab": {
  2983. "__id__": 82
  2984. },
  2985. "_opacity": 255,
  2986. "_color": {
  2987. "__type__": "cc.Color",
  2988. "r": 255,
  2989. "g": 255,
  2990. "b": 255,
  2991. "a": 255
  2992. },
  2993. "_contentSize": {
  2994. "__type__": "cc.Size",
  2995. "width": 192,
  2996. "height": 42.02
  2997. },
  2998. "_anchorPoint": {
  2999. "__type__": "cc.Vec2",
  3000. "x": 0,
  3001. "y": 0
  3002. },
  3003. "_trs": {
  3004. "__type__": "TypedArray",
  3005. "ctor": "Float64Array",
  3006. "array": [
  3007. -207.5,
  3008. -7.509999999999998,
  3009. 0,
  3010. 0,
  3011. 0,
  3012. 0,
  3013. 1,
  3014. 1,
  3015. 1,
  3016. 1
  3017. ]
  3018. },
  3019. "_eulerAngles": {
  3020. "__type__": "cc.Vec3",
  3021. "x": 0,
  3022. "y": 0,
  3023. "z": 0
  3024. },
  3025. "_skewX": 0,
  3026. "_skewY": 0,
  3027. "_zIndex": -32768,
  3028. "_is3DNode": false,
  3029. "_groupIndex": 0,
  3030. "groupIndex": 0,
  3031. "showInEditor": false,
  3032. "_id": ""
  3033. },
  3034. {
  3035. "__type__": "cc.Label",
  3036. "_name": "",
  3037. "_objFlags": 0,
  3038. "node": {
  3039. "__id__": 79
  3040. },
  3041. "_enabled": true,
  3042. "_materials": [
  3043. {
  3044. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3045. }
  3046. ],
  3047. "_useOriginalSize": true,
  3048. "_string": "金额已达标,完成",
  3049. "_N$string": "金额已达标,完成",
  3050. "_fontSize": 23,
  3051. "_lineHeight": 27,
  3052. "_enableWrapText": true,
  3053. "_N$file": null,
  3054. "_isSystemFontUsed": true,
  3055. "_spacingX": 0,
  3056. "_batchAsBitmap": false,
  3057. "_styleFlags": 0,
  3058. "_underlineHeight": 0,
  3059. "_N$horizontalAlign": 0,
  3060. "_N$verticalAlign": 1,
  3061. "_N$fontFamily": "Arial",
  3062. "_N$overflow": 0,
  3063. "_N$cacheMode": 0,
  3064. "_id": ""
  3065. },
  3066. {
  3067. "__type__": "cc.LabelOutline",
  3068. "_name": "",
  3069. "_objFlags": 0,
  3070. "node": {
  3071. "__id__": 79
  3072. },
  3073. "_enabled": true,
  3074. "_color": {
  3075. "__type__": "cc.Color",
  3076. "r": 140,
  3077. "g": 16,
  3078. "b": 16,
  3079. "a": 255
  3080. },
  3081. "_width": 4,
  3082. "_id": ""
  3083. },
  3084. {
  3085. "__type__": "cc.PrefabInfo",
  3086. "root": {
  3087. "__id__": 1
  3088. },
  3089. "asset": {
  3090. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  3091. },
  3092. "fileId": "fbYez6lVpCiokAmI7nB4Ev",
  3093. "sync": false
  3094. },
  3095. {
  3096. "__type__": "cc.PrivateNode",
  3097. "_name": "RICHTEXT_CHILD",
  3098. "_objFlags": 1024,
  3099. "_parent": {
  3100. "__id__": 78
  3101. },
  3102. "_children": [],
  3103. "_active": true,
  3104. "_components": [
  3105. {
  3106. "__id__": 84
  3107. },
  3108. {
  3109. "__id__": 85
  3110. }
  3111. ],
  3112. "_prefab": {
  3113. "__id__": 86
  3114. },
  3115. "_opacity": 255,
  3116. "_color": {
  3117. "__type__": "cc.Color",
  3118. "r": 78,
  3119. "g": 183,
  3120. "b": 255,
  3121. "a": 255
  3122. },
  3123. "_contentSize": {
  3124. "__type__": "cc.Size",
  3125. "width": 100,
  3126. "height": 42.02
  3127. },
  3128. "_anchorPoint": {
  3129. "__type__": "cc.Vec2",
  3130. "x": 0,
  3131. "y": 0
  3132. },
  3133. "_trs": {
  3134. "__type__": "TypedArray",
  3135. "ctor": "Float64Array",
  3136. "array": [
  3137. -15.5,
  3138. -7.509999999999998,
  3139. 0,
  3140. 0,
  3141. 0,
  3142. 0,
  3143. 1,
  3144. 1,
  3145. 1,
  3146. 1
  3147. ]
  3148. },
  3149. "_eulerAngles": {
  3150. "__type__": "cc.Vec3",
  3151. "x": 0,
  3152. "y": 0,
  3153. "z": 0
  3154. },
  3155. "_skewX": 0,
  3156. "_skewY": 0,
  3157. "_zIndex": -32768,
  3158. "_is3DNode": false,
  3159. "_groupIndex": 0,
  3160. "groupIndex": 0,
  3161. "showInEditor": false,
  3162. "_id": ""
  3163. },
  3164. {
  3165. "__type__": "cc.Label",
  3166. "_name": "",
  3167. "_objFlags": 0,
  3168. "node": {
  3169. "__id__": 83
  3170. },
  3171. "_enabled": true,
  3172. "_materials": [
  3173. {
  3174. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3175. }
  3176. ],
  3177. "_useOriginalSize": true,
  3178. "_string": "观看视频",
  3179. "_N$string": "观看视频",
  3180. "_fontSize": 23,
  3181. "_lineHeight": 27,
  3182. "_enableWrapText": true,
  3183. "_N$file": null,
  3184. "_isSystemFontUsed": true,
  3185. "_spacingX": 0,
  3186. "_batchAsBitmap": false,
  3187. "_styleFlags": 0,
  3188. "_underlineHeight": 0,
  3189. "_N$horizontalAlign": 0,
  3190. "_N$verticalAlign": 1,
  3191. "_N$fontFamily": "Arial",
  3192. "_N$overflow": 0,
  3193. "_N$cacheMode": 0,
  3194. "_id": ""
  3195. },
  3196. {
  3197. "__type__": "cc.LabelOutline",
  3198. "_name": "",
  3199. "_objFlags": 0,
  3200. "node": {
  3201. "__id__": 83
  3202. },
  3203. "_enabled": true,
  3204. "_color": {
  3205. "__type__": "cc.Color",
  3206. "r": 140,
  3207. "g": 16,
  3208. "b": 16,
  3209. "a": 255
  3210. },
  3211. "_width": 4,
  3212. "_id": ""
  3213. },
  3214. {
  3215. "__type__": "cc.PrefabInfo",
  3216. "root": {
  3217. "__id__": 1
  3218. },
  3219. "asset": {
  3220. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  3221. },
  3222. "fileId": "c6diEee1xEUoniVxMPG/mI",
  3223. "sync": false
  3224. },
  3225. {
  3226. "__type__": "cc.PrivateNode",
  3227. "_name": "RICHTEXT_CHILD",
  3228. "_objFlags": 1024,
  3229. "_parent": {
  3230. "__id__": 78
  3231. },
  3232. "_children": [],
  3233. "_active": true,
  3234. "_components": [
  3235. {
  3236. "__id__": 88
  3237. },
  3238. {
  3239. "__id__": 89
  3240. }
  3241. ],
  3242. "_prefab": {
  3243. "__id__": 90
  3244. },
  3245. "_opacity": 255,
  3246. "_color": {
  3247. "__type__": "cc.Color",
  3248. "r": 255,
  3249. "g": 255,
  3250. "b": 255,
  3251. "a": 255
  3252. },
  3253. "_contentSize": {
  3254. "__type__": "cc.Size",
  3255. "width": 123,
  3256. "height": 42.02
  3257. },
  3258. "_anchorPoint": {
  3259. "__type__": "cc.Vec2",
  3260. "x": 0,
  3261. "y": 0
  3262. },
  3263. "_trs": {
  3264. "__type__": "TypedArray",
  3265. "ctor": "Float64Array",
  3266. "array": [
  3267. 84.5,
  3268. -7.509999999999998,
  3269. 0,
  3270. 0,
  3271. 0,
  3272. 0,
  3273. 1,
  3274. 1,
  3275. 1,
  3276. 1
  3277. ]
  3278. },
  3279. "_eulerAngles": {
  3280. "__type__": "cc.Vec3",
  3281. "x": 0,
  3282. "y": 0,
  3283. "z": 0
  3284. },
  3285. "_skewX": 0,
  3286. "_skewY": 0,
  3287. "_zIndex": -32768,
  3288. "_is3DNode": false,
  3289. "_groupIndex": 0,
  3290. "groupIndex": 0,
  3291. "showInEditor": false,
  3292. "_id": ""
  3293. },
  3294. {
  3295. "__type__": "cc.Label",
  3296. "_name": "",
  3297. "_objFlags": 0,
  3298. "node": {
  3299. "__id__": 87
  3300. },
  3301. "_enabled": true,
  3302. "_materials": [
  3303. {
  3304. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3305. }
  3306. ],
  3307. "_useOriginalSize": true,
  3308. "_string": "任务可到账",
  3309. "_N$string": "任务可到账",
  3310. "_fontSize": 23,
  3311. "_lineHeight": 27,
  3312. "_enableWrapText": true,
  3313. "_N$file": null,
  3314. "_isSystemFontUsed": true,
  3315. "_spacingX": 0,
  3316. "_batchAsBitmap": false,
  3317. "_styleFlags": 0,
  3318. "_underlineHeight": 0,
  3319. "_N$horizontalAlign": 0,
  3320. "_N$verticalAlign": 1,
  3321. "_N$fontFamily": "Arial",
  3322. "_N$overflow": 0,
  3323. "_N$cacheMode": 0,
  3324. "_id": ""
  3325. },
  3326. {
  3327. "__type__": "cc.LabelOutline",
  3328. "_name": "",
  3329. "_objFlags": 0,
  3330. "node": {
  3331. "__id__": 87
  3332. },
  3333. "_enabled": true,
  3334. "_color": {
  3335. "__type__": "cc.Color",
  3336. "r": 140,
  3337. "g": 16,
  3338. "b": 16,
  3339. "a": 255
  3340. },
  3341. "_width": 4,
  3342. "_id": ""
  3343. },
  3344. {
  3345. "__type__": "cc.PrefabInfo",
  3346. "root": {
  3347. "__id__": 1
  3348. },
  3349. "asset": {
  3350. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  3351. },
  3352. "fileId": "b2Zk67wZJEC4JNwPcOc+bj",
  3353. "sync": false
  3354. },
  3355. {
  3356. "__type__": "cc.PrivateNode",
  3357. "_name": "RICHTEXT_CHILD",
  3358. "_objFlags": 1024,
  3359. "_parent": {
  3360. "__id__": 78
  3361. },
  3362. "_children": [],
  3363. "_active": true,
  3364. "_components": [
  3365. {
  3366. "__id__": 92
  3367. },
  3368. {
  3369. "__id__": 93
  3370. }
  3371. ],
  3372. "_prefab": {
  3373. "__id__": 94
  3374. },
  3375. "_opacity": 255,
  3376. "_color": {
  3377. "__type__": "cc.Color",
  3378. "r": 255,
  3379. "g": 255,
  3380. "b": 255,
  3381. "a": 255
  3382. },
  3383. "_contentSize": {
  3384. "__type__": "cc.Size",
  3385. "width": 169,
  3386. "height": 42.02
  3387. },
  3388. "_anchorPoint": {
  3389. "__type__": "cc.Vec2",
  3390. "x": 0,
  3391. "y": 0
  3392. },
  3393. "_trs": {
  3394. "__type__": "TypedArray",
  3395. "ctor": "Float64Array",
  3396. "array": [
  3397. -226.865,
  3398. -34.51,
  3399. 0,
  3400. 0,
  3401. 0,
  3402. 0,
  3403. 1,
  3404. 1,
  3405. 1,
  3406. 1
  3407. ]
  3408. },
  3409. "_eulerAngles": {
  3410. "__type__": "cc.Vec3",
  3411. "x": 0,
  3412. "y": 0,
  3413. "z": 0
  3414. },
  3415. "_skewX": 0,
  3416. "_skewY": 0,
  3417. "_zIndex": -32768,
  3418. "_is3DNode": false,
  3419. "_groupIndex": 0,
  3420. "groupIndex": 0,
  3421. "showInEditor": false,
  3422. "_id": ""
  3423. },
  3424. {
  3425. "__type__": "cc.Label",
  3426. "_name": "",
  3427. "_objFlags": 0,
  3428. "node": {
  3429. "__id__": 91
  3430. },
  3431. "_enabled": true,
  3432. "_materials": [
  3433. {
  3434. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3435. }
  3436. ],
  3437. "_useOriginalSize": true,
  3438. "_string": "观看视频次数:",
  3439. "_N$string": "观看视频次数:",
  3440. "_fontSize": 23,
  3441. "_lineHeight": 27,
  3442. "_enableWrapText": true,
  3443. "_N$file": null,
  3444. "_isSystemFontUsed": true,
  3445. "_spacingX": 0,
  3446. "_batchAsBitmap": false,
  3447. "_styleFlags": 0,
  3448. "_underlineHeight": 0,
  3449. "_N$horizontalAlign": 0,
  3450. "_N$verticalAlign": 1,
  3451. "_N$fontFamily": "Arial",
  3452. "_N$overflow": 0,
  3453. "_N$cacheMode": 0,
  3454. "_id": ""
  3455. },
  3456. {
  3457. "__type__": "cc.LabelOutline",
  3458. "_name": "",
  3459. "_objFlags": 0,
  3460. "node": {
  3461. "__id__": 91
  3462. },
  3463. "_enabled": true,
  3464. "_color": {
  3465. "__type__": "cc.Color",
  3466. "r": 140,
  3467. "g": 16,
  3468. "b": 16,
  3469. "a": 255
  3470. },
  3471. "_width": 4,
  3472. "_id": ""
  3473. },
  3474. {
  3475. "__type__": "cc.PrefabInfo",
  3476. "root": {
  3477. "__id__": 1
  3478. },
  3479. "asset": {
  3480. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  3481. },
  3482. "fileId": "c6dge/NyRJMb0RafUq9k7c",
  3483. "sync": false
  3484. },
  3485. {
  3486. "__type__": "cc.PrivateNode",
  3487. "_name": "RICHTEXT_CHILD",
  3488. "_objFlags": 1024,
  3489. "_parent": {
  3490. "__id__": 78
  3491. },
  3492. "_children": [],
  3493. "_active": true,
  3494. "_components": [
  3495. {
  3496. "__id__": 96
  3497. },
  3498. {
  3499. "__id__": 97
  3500. }
  3501. ],
  3502. "_prefab": {
  3503. "__id__": 98
  3504. },
  3505. "_opacity": 255,
  3506. "_color": {
  3507. "__type__": "cc.Color",
  3508. "r": 255,
  3509. "g": 224,
  3510. "b": 12,
  3511. "a": 255
  3512. },
  3513. "_contentSize": {
  3514. "__type__": "cc.Size",
  3515. "width": 52.76,
  3516. "height": 42.02
  3517. },
  3518. "_anchorPoint": {
  3519. "__type__": "cc.Vec2",
  3520. "x": 0,
  3521. "y": 0
  3522. },
  3523. "_trs": {
  3524. "__type__": "TypedArray",
  3525. "ctor": "Float64Array",
  3526. "array": [
  3527. -57.86500000000001,
  3528. -34.51,
  3529. 0,
  3530. 0,
  3531. 0,
  3532. 0,
  3533. 1,
  3534. 1,
  3535. 1,
  3536. 1
  3537. ]
  3538. },
  3539. "_eulerAngles": {
  3540. "__type__": "cc.Vec3",
  3541. "x": 0,
  3542. "y": 0,
  3543. "z": 0
  3544. },
  3545. "_skewX": 0,
  3546. "_skewY": 0,
  3547. "_zIndex": -32768,
  3548. "_is3DNode": false,
  3549. "_groupIndex": 0,
  3550. "groupIndex": 0,
  3551. "showInEditor": false,
  3552. "_id": ""
  3553. },
  3554. {
  3555. "__type__": "cc.Label",
  3556. "_name": "",
  3557. "_objFlags": 0,
  3558. "node": {
  3559. "__id__": 95
  3560. },
  3561. "_enabled": true,
  3562. "_materials": [
  3563. {
  3564. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3565. }
  3566. ],
  3567. "_useOriginalSize": true,
  3568. "_string": "0/20",
  3569. "_N$string": "0/20",
  3570. "_fontSize": 23,
  3571. "_lineHeight": 27,
  3572. "_enableWrapText": true,
  3573. "_N$file": null,
  3574. "_isSystemFontUsed": true,
  3575. "_spacingX": 0,
  3576. "_batchAsBitmap": false,
  3577. "_styleFlags": 0,
  3578. "_underlineHeight": 0,
  3579. "_N$horizontalAlign": 0,
  3580. "_N$verticalAlign": 1,
  3581. "_N$fontFamily": "Arial",
  3582. "_N$overflow": 0,
  3583. "_N$cacheMode": 0,
  3584. "_id": ""
  3585. },
  3586. {
  3587. "__type__": "cc.LabelOutline",
  3588. "_name": "",
  3589. "_objFlags": 0,
  3590. "node": {
  3591. "__id__": 95
  3592. },
  3593. "_enabled": true,
  3594. "_color": {
  3595. "__type__": "cc.Color",
  3596. "r": 140,
  3597. "g": 16,
  3598. "b": 16,
  3599. "a": 255
  3600. },
  3601. "_width": 4,
  3602. "_id": ""
  3603. },
  3604. {
  3605. "__type__": "cc.PrefabInfo",
  3606. "root": {
  3607. "__id__": 1
  3608. },
  3609. "asset": {
  3610. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  3611. },
  3612. "fileId": "3d/Yw4Z11Jros1koNRIvbr",
  3613. "sync": false
  3614. },
  3615. {
  3616. "__type__": "cc.PrivateNode",
  3617. "_name": "RICHTEXT_CHILD",
  3618. "_objFlags": 1024,
  3619. "_parent": {
  3620. "__id__": 78
  3621. },
  3622. "_children": [],
  3623. "_active": true,
  3624. "_components": [
  3625. {
  3626. "__id__": 100
  3627. },
  3628. {
  3629. "__id__": 101
  3630. }
  3631. ],
  3632. "_prefab": {
  3633. "__id__": 102
  3634. },
  3635. "_opacity": 255,
  3636. "_color": {
  3637. "__type__": "cc.Color",
  3638. "r": 255,
  3639. "g": 255,
  3640. "b": 255,
  3641. "a": 255
  3642. },
  3643. "_contentSize": {
  3644. "__type__": "cc.Size",
  3645. "width": 192,
  3646. "height": 42.02
  3647. },
  3648. "_anchorPoint": {
  3649. "__type__": "cc.Vec2",
  3650. "x": 0,
  3651. "y": 0
  3652. },
  3653. "_trs": {
  3654. "__type__": "TypedArray",
  3655. "ctor": "Float64Array",
  3656. "array": [
  3657. -5.105000000000018,
  3658. -34.51,
  3659. 0,
  3660. 0,
  3661. 0,
  3662. 0,
  3663. 1,
  3664. 1,
  3665. 1,
  3666. 1
  3667. ]
  3668. },
  3669. "_eulerAngles": {
  3670. "__type__": "cc.Vec3",
  3671. "x": 0,
  3672. "y": 0,
  3673. "z": 0
  3674. },
  3675. "_skewX": 0,
  3676. "_skewY": 0,
  3677. "_zIndex": -32768,
  3678. "_is3DNode": false,
  3679. "_groupIndex": 0,
  3680. "groupIndex": 0,
  3681. "showInEditor": false,
  3682. "_id": ""
  3683. },
  3684. {
  3685. "__type__": "cc.Label",
  3686. "_name": "",
  3687. "_objFlags": 0,
  3688. "node": {
  3689. "__id__": 99
  3690. },
  3691. "_enabled": true,
  3692. "_materials": [
  3693. {
  3694. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3695. }
  3696. ],
  3697. "_useOriginalSize": true,
  3698. "_string": ",连续观看天数:",
  3699. "_N$string": ",连续观看天数:",
  3700. "_fontSize": 23,
  3701. "_lineHeight": 27,
  3702. "_enableWrapText": true,
  3703. "_N$file": null,
  3704. "_isSystemFontUsed": true,
  3705. "_spacingX": 0,
  3706. "_batchAsBitmap": false,
  3707. "_styleFlags": 0,
  3708. "_underlineHeight": 0,
  3709. "_N$horizontalAlign": 0,
  3710. "_N$verticalAlign": 1,
  3711. "_N$fontFamily": "Arial",
  3712. "_N$overflow": 0,
  3713. "_N$cacheMode": 0,
  3714. "_id": ""
  3715. },
  3716. {
  3717. "__type__": "cc.LabelOutline",
  3718. "_name": "",
  3719. "_objFlags": 0,
  3720. "node": {
  3721. "__id__": 99
  3722. },
  3723. "_enabled": true,
  3724. "_color": {
  3725. "__type__": "cc.Color",
  3726. "r": 140,
  3727. "g": 16,
  3728. "b": 16,
  3729. "a": 255
  3730. },
  3731. "_width": 4,
  3732. "_id": ""
  3733. },
  3734. {
  3735. "__type__": "cc.PrefabInfo",
  3736. "root": {
  3737. "__id__": 1
  3738. },
  3739. "asset": {
  3740. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  3741. },
  3742. "fileId": "caSLphBmRIH5pD0TTNM5sX",
  3743. "sync": false
  3744. },
  3745. {
  3746. "__type__": "cc.PrivateNode",
  3747. "_name": "RICHTEXT_CHILD",
  3748. "_objFlags": 1024,
  3749. "_parent": {
  3750. "__id__": 78
  3751. },
  3752. "_children": [],
  3753. "_active": true,
  3754. "_components": [
  3755. {
  3756. "__id__": 104
  3757. },
  3758. {
  3759. "__id__": 105
  3760. }
  3761. ],
  3762. "_prefab": {
  3763. "__id__": 106
  3764. },
  3765. "_opacity": 255,
  3766. "_color": {
  3767. "__type__": "cc.Color",
  3768. "r": 255,
  3769. "g": 224,
  3770. "b": 12,
  3771. "a": 255
  3772. },
  3773. "_contentSize": {
  3774. "__type__": "cc.Size",
  3775. "width": 39.97,
  3776. "height": 42.02
  3777. },
  3778. "_anchorPoint": {
  3779. "__type__": "cc.Vec2",
  3780. "x": 0,
  3781. "y": 0
  3782. },
  3783. "_trs": {
  3784. "__type__": "TypedArray",
  3785. "ctor": "Float64Array",
  3786. "array": [
  3787. 186.89499999999998,
  3788. -34.51,
  3789. 0,
  3790. 0,
  3791. 0,
  3792. 0,
  3793. 1,
  3794. 1,
  3795. 1,
  3796. 1
  3797. ]
  3798. },
  3799. "_eulerAngles": {
  3800. "__type__": "cc.Vec3",
  3801. "x": 0,
  3802. "y": 0,
  3803. "z": 0
  3804. },
  3805. "_skewX": 0,
  3806. "_skewY": 0,
  3807. "_zIndex": -32768,
  3808. "_is3DNode": false,
  3809. "_groupIndex": 0,
  3810. "groupIndex": 0,
  3811. "showInEditor": false,
  3812. "_id": ""
  3813. },
  3814. {
  3815. "__type__": "cc.Label",
  3816. "_name": "",
  3817. "_objFlags": 0,
  3818. "node": {
  3819. "__id__": 103
  3820. },
  3821. "_enabled": true,
  3822. "_materials": [
  3823. {
  3824. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3825. }
  3826. ],
  3827. "_useOriginalSize": true,
  3828. "_string": "0/5",
  3829. "_N$string": "0/5",
  3830. "_fontSize": 23,
  3831. "_lineHeight": 27,
  3832. "_enableWrapText": true,
  3833. "_N$file": null,
  3834. "_isSystemFontUsed": true,
  3835. "_spacingX": 0,
  3836. "_batchAsBitmap": false,
  3837. "_styleFlags": 0,
  3838. "_underlineHeight": 0,
  3839. "_N$horizontalAlign": 0,
  3840. "_N$verticalAlign": 1,
  3841. "_N$fontFamily": "Arial",
  3842. "_N$overflow": 0,
  3843. "_N$cacheMode": 0,
  3844. "_id": ""
  3845. },
  3846. {
  3847. "__type__": "cc.LabelOutline",
  3848. "_name": "",
  3849. "_objFlags": 0,
  3850. "node": {
  3851. "__id__": 103
  3852. },
  3853. "_enabled": true,
  3854. "_color": {
  3855. "__type__": "cc.Color",
  3856. "r": 140,
  3857. "g": 16,
  3858. "b": 16,
  3859. "a": 255
  3860. },
  3861. "_width": 4,
  3862. "_id": ""
  3863. },
  3864. {
  3865. "__type__": "cc.PrefabInfo",
  3866. "root": {
  3867. "__id__": 1
  3868. },
  3869. "asset": {
  3870. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  3871. },
  3872. "fileId": "09WKj3wu5Aa6lgSgnJhoP2",
  3873. "sync": false
  3874. },
  3875. {
  3876. "__type__": "cc.RichText",
  3877. "_name": "",
  3878. "_objFlags": 0,
  3879. "node": {
  3880. "__id__": 78
  3881. },
  3882. "_enabled": true,
  3883. "_fontFamily": "Arial",
  3884. "_isSystemFontUsed": true,
  3885. "_N$string": "<outline color=#8C1010 width=4>金额已达标,完成<color=#4EB7FF>观看视频</color>任务可到账\n观看视频次数:<color=#FFE00C>0/20</color>,连续观看天数:<color=#FFE00C>0/5</color></outline>",
  3886. "_N$horizontalAlign": 1,
  3887. "_N$fontSize": 23,
  3888. "_N$font": null,
  3889. "_N$cacheMode": 0,
  3890. "_N$maxWidth": 0,
  3891. "_N$lineHeight": 27,
  3892. "_N$imageAtlas": null,
  3893. "_N$handleTouchEvent": true,
  3894. "_id": ""
  3895. },
  3896. {
  3897. "__type__": "cc.PrefabInfo",
  3898. "root": {
  3899. "__id__": 1
  3900. },
  3901. "asset": {
  3902. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  3903. },
  3904. "fileId": "1dZlYAq25FHrK9HTXJAfez",
  3905. "sync": false
  3906. },
  3907. {
  3908. "__type__": "cc.Node",
  3909. "_name": "AdRbItem",
  3910. "_objFlags": 0,
  3911. "_parent": {
  3912. "__id__": 9
  3913. },
  3914. "_children": [
  3915. {
  3916. "__id__": 110
  3917. },
  3918. {
  3919. "__id__": 113
  3920. },
  3921. {
  3922. "__id__": 116
  3923. },
  3924. {
  3925. "__id__": 120
  3926. },
  3927. {
  3928. "__id__": 131
  3929. },
  3930. {
  3931. "__id__": 137
  3932. },
  3933. {
  3934. "__id__": 141
  3935. },
  3936. {
  3937. "__id__": 149
  3938. },
  3939. {
  3940. "__id__": 157
  3941. }
  3942. ],
  3943. "_active": false,
  3944. "_components": [
  3945. {
  3946. "__id__": 165
  3947. },
  3948. {
  3949. "__id__": 166
  3950. }
  3951. ],
  3952. "_prefab": {
  3953. "__id__": 167
  3954. },
  3955. "_opacity": 255,
  3956. "_color": {
  3957. "__type__": "cc.Color",
  3958. "r": 255,
  3959. "g": 255,
  3960. "b": 255,
  3961. "a": 255
  3962. },
  3963. "_contentSize": {
  3964. "__type__": "cc.Size",
  3965. "width": 651,
  3966. "height": 138
  3967. },
  3968. "_anchorPoint": {
  3969. "__type__": "cc.Vec2",
  3970. "x": 0.5,
  3971. "y": 0.5
  3972. },
  3973. "_trs": {
  3974. "__type__": "TypedArray",
  3975. "ctor": "Float64Array",
  3976. "array": [
  3977. 0,
  3978. -274.825,
  3979. 0,
  3980. 0,
  3981. 0,
  3982. 0,
  3983. 1,
  3984. 1,
  3985. 1,
  3986. 1
  3987. ]
  3988. },
  3989. "_eulerAngles": {
  3990. "__type__": "cc.Vec3",
  3991. "x": 0,
  3992. "y": 0,
  3993. "z": 0
  3994. },
  3995. "_skewX": 0,
  3996. "_skewY": 0,
  3997. "_is3DNode": false,
  3998. "_groupIndex": 0,
  3999. "groupIndex": 0,
  4000. "_id": ""
  4001. },
  4002. {
  4003. "__type__": "cc.Node",
  4004. "_name": "img",
  4005. "_objFlags": 0,
  4006. "_parent": {
  4007. "__id__": 109
  4008. },
  4009. "_children": [],
  4010. "_active": true,
  4011. "_components": [
  4012. {
  4013. "__id__": 111
  4014. }
  4015. ],
  4016. "_prefab": {
  4017. "__id__": 112
  4018. },
  4019. "_opacity": 255,
  4020. "_color": {
  4021. "__type__": "cc.Color",
  4022. "r": 255,
  4023. "g": 255,
  4024. "b": 255,
  4025. "a": 255
  4026. },
  4027. "_contentSize": {
  4028. "__type__": "cc.Size",
  4029. "width": 113,
  4030. "height": 114
  4031. },
  4032. "_anchorPoint": {
  4033. "__type__": "cc.Vec2",
  4034. "x": 0.5,
  4035. "y": 0.5
  4036. },
  4037. "_trs": {
  4038. "__type__": "TypedArray",
  4039. "ctor": "Float64Array",
  4040. "array": [
  4041. -250,
  4042. 1.537,
  4043. 0,
  4044. 0,
  4045. 0,
  4046. 0,
  4047. 1,
  4048. 1,
  4049. 1,
  4050. 1
  4051. ]
  4052. },
  4053. "_eulerAngles": {
  4054. "__type__": "cc.Vec3",
  4055. "x": 0,
  4056. "y": 0,
  4057. "z": 0
  4058. },
  4059. "_skewX": 0,
  4060. "_skewY": 0,
  4061. "_is3DNode": false,
  4062. "_groupIndex": 0,
  4063. "groupIndex": 0,
  4064. "_id": ""
  4065. },
  4066. {
  4067. "__type__": "cc.Sprite",
  4068. "_name": "",
  4069. "_objFlags": 0,
  4070. "node": {
  4071. "__id__": 110
  4072. },
  4073. "_enabled": true,
  4074. "_materials": [
  4075. {
  4076. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4077. }
  4078. ],
  4079. "_srcBlendFactor": 770,
  4080. "_dstBlendFactor": 771,
  4081. "_spriteFrame": {
  4082. "__uuid__": "a65ea8ba-d780-4a54-9b17-39dffa5d4e58"
  4083. },
  4084. "_type": 0,
  4085. "_sizeMode": 1,
  4086. "_fillType": 0,
  4087. "_fillCenter": {
  4088. "__type__": "cc.Vec2",
  4089. "x": 0,
  4090. "y": 0
  4091. },
  4092. "_fillStart": 0,
  4093. "_fillRange": 0,
  4094. "_isTrimmedMode": true,
  4095. "_atlas": null,
  4096. "_id": ""
  4097. },
  4098. {
  4099. "__type__": "cc.PrefabInfo",
  4100. "root": {
  4101. "__id__": 1
  4102. },
  4103. "asset": {
  4104. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  4105. },
  4106. "fileId": "caSR4igDxIb7TvIAagGLey",
  4107. "sync": false
  4108. },
  4109. {
  4110. "__type__": "cc.Node",
  4111. "_name": "imgbottom",
  4112. "_objFlags": 0,
  4113. "_parent": {
  4114. "__id__": 109
  4115. },
  4116. "_children": [],
  4117. "_active": true,
  4118. "_components": [
  4119. {
  4120. "__id__": 114
  4121. }
  4122. ],
  4123. "_prefab": {
  4124. "__id__": 115
  4125. },
  4126. "_opacity": 255,
  4127. "_color": {
  4128. "__type__": "cc.Color",
  4129. "r": 255,
  4130. "g": 255,
  4131. "b": 255,
  4132. "a": 255
  4133. },
  4134. "_contentSize": {
  4135. "__type__": "cc.Size",
  4136. "width": 105,
  4137. "height": 37
  4138. },
  4139. "_anchorPoint": {
  4140. "__type__": "cc.Vec2",
  4141. "x": 0.5,
  4142. "y": 0.5
  4143. },
  4144. "_trs": {
  4145. "__type__": "TypedArray",
  4146. "ctor": "Float64Array",
  4147. "array": [
  4148. -250,
  4149. -42.836,
  4150. 0,
  4151. 0,
  4152. 0,
  4153. 0,
  4154. 1,
  4155. 1,
  4156. 1,
  4157. 1
  4158. ]
  4159. },
  4160. "_eulerAngles": {
  4161. "__type__": "cc.Vec3",
  4162. "x": 0,
  4163. "y": 0,
  4164. "z": 0
  4165. },
  4166. "_skewX": 0,
  4167. "_skewY": 0,
  4168. "_is3DNode": false,
  4169. "_groupIndex": 0,
  4170. "groupIndex": 0,
  4171. "_id": ""
  4172. },
  4173. {
  4174. "__type__": "cc.Sprite",
  4175. "_name": "",
  4176. "_objFlags": 0,
  4177. "node": {
  4178. "__id__": 113
  4179. },
  4180. "_enabled": true,
  4181. "_materials": [
  4182. {
  4183. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4184. }
  4185. ],
  4186. "_srcBlendFactor": 770,
  4187. "_dstBlendFactor": 771,
  4188. "_spriteFrame": {
  4189. "__uuid__": "215ceb1f-646f-450a-b2bc-b77c35da9221"
  4190. },
  4191. "_type": 0,
  4192. "_sizeMode": 1,
  4193. "_fillType": 0,
  4194. "_fillCenter": {
  4195. "__type__": "cc.Vec2",
  4196. "x": 0,
  4197. "y": 0
  4198. },
  4199. "_fillStart": 0,
  4200. "_fillRange": 0,
  4201. "_isTrimmedMode": true,
  4202. "_atlas": null,
  4203. "_id": ""
  4204. },
  4205. {
  4206. "__type__": "cc.PrefabInfo",
  4207. "root": {
  4208. "__id__": 1
  4209. },
  4210. "asset": {
  4211. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  4212. },
  4213. "fileId": "0aMrO0a0JJgrCKHcvvWqLZ",
  4214. "sync": false
  4215. },
  4216. {
  4217. "__type__": "cc.Node",
  4218. "_name": "txtNum",
  4219. "_objFlags": 0,
  4220. "_parent": {
  4221. "__id__": 109
  4222. },
  4223. "_children": [],
  4224. "_active": true,
  4225. "_components": [
  4226. {
  4227. "__id__": 117
  4228. },
  4229. {
  4230. "__id__": 118
  4231. }
  4232. ],
  4233. "_prefab": {
  4234. "__id__": 119
  4235. },
  4236. "_opacity": 255,
  4237. "_color": {
  4238. "__type__": "cc.Color",
  4239. "r": 255,
  4240. "g": 252,
  4241. "b": 31,
  4242. "a": 255
  4243. },
  4244. "_contentSize": {
  4245. "__type__": "cc.Size",
  4246. "width": 74.7,
  4247. "height": 40.8
  4248. },
  4249. "_anchorPoint": {
  4250. "__type__": "cc.Vec2",
  4251. "x": 0.5,
  4252. "y": 0.5
  4253. },
  4254. "_trs": {
  4255. "__type__": "TypedArray",
  4256. "ctor": "Float64Array",
  4257. "array": [
  4258. -250,
  4259. -38.244,
  4260. 0,
  4261. 0,
  4262. 0,
  4263. 0,
  4264. 1,
  4265. 1,
  4266. 1,
  4267. 1
  4268. ]
  4269. },
  4270. "_eulerAngles": {
  4271. "__type__": "cc.Vec3",
  4272. "x": 0,
  4273. "y": 0,
  4274. "z": 0
  4275. },
  4276. "_skewX": 0,
  4277. "_skewY": 0,
  4278. "_is3DNode": false,
  4279. "_groupIndex": 0,
  4280. "groupIndex": 0,
  4281. "_id": ""
  4282. },
  4283. {
  4284. "__type__": "cc.Label",
  4285. "_name": "",
  4286. "_objFlags": 0,
  4287. "node": {
  4288. "__id__": 116
  4289. },
  4290. "_enabled": true,
  4291. "_materials": [
  4292. {
  4293. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4294. }
  4295. ],
  4296. "_useOriginalSize": false,
  4297. "_string": "0.3元",
  4298. "_N$string": "0.3元",
  4299. "_fontSize": 30,
  4300. "_lineHeight": 30,
  4301. "_enableWrapText": true,
  4302. "_N$file": null,
  4303. "_isSystemFontUsed": true,
  4304. "_spacingX": 0,
  4305. "_batchAsBitmap": false,
  4306. "_styleFlags": 1,
  4307. "_underlineHeight": 0,
  4308. "_N$horizontalAlign": 1,
  4309. "_N$verticalAlign": 1,
  4310. "_N$fontFamily": "Arial",
  4311. "_N$overflow": 0,
  4312. "_N$cacheMode": 0,
  4313. "_id": ""
  4314. },
  4315. {
  4316. "__type__": "cc.LabelOutline",
  4317. "_name": "",
  4318. "_objFlags": 0,
  4319. "node": {
  4320. "__id__": 116
  4321. },
  4322. "_enabled": true,
  4323. "_color": {
  4324. "__type__": "cc.Color",
  4325. "r": 82,
  4326. "g": 34,
  4327. "b": 25,
  4328. "a": 255
  4329. },
  4330. "_width": 1.5,
  4331. "_id": ""
  4332. },
  4333. {
  4334. "__type__": "cc.PrefabInfo",
  4335. "root": {
  4336. "__id__": 1
  4337. },
  4338. "asset": {
  4339. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  4340. },
  4341. "fileId": "0ecR5jVyhHYIO1gglJ3T9d",
  4342. "sync": false
  4343. },
  4344. {
  4345. "__type__": "cc.Node",
  4346. "_name": "txtSliderTip",
  4347. "_objFlags": 0,
  4348. "_parent": {
  4349. "__id__": 109
  4350. },
  4351. "_children": [
  4352. {
  4353. "__id__": 121
  4354. },
  4355. {
  4356. "__id__": 125
  4357. }
  4358. ],
  4359. "_active": true,
  4360. "_components": [
  4361. {
  4362. "__id__": 129
  4363. }
  4364. ],
  4365. "_prefab": {
  4366. "__id__": 130
  4367. },
  4368. "_opacity": 255,
  4369. "_color": {
  4370. "__type__": "cc.Color",
  4371. "r": 255,
  4372. "g": 255,
  4373. "b": 255,
  4374. "a": 255
  4375. },
  4376. "_contentSize": {
  4377. "__type__": "cc.Size",
  4378. "width": 207.7,
  4379. "height": 50.4
  4380. },
  4381. "_anchorPoint": {
  4382. "__type__": "cc.Vec2",
  4383. "x": 0.5,
  4384. "y": 0.5
  4385. },
  4386. "_trs": {
  4387. "__type__": "TypedArray",
  4388. "ctor": "Float64Array",
  4389. "array": [
  4390. -30.798,
  4391. 21.331,
  4392. 0,
  4393. 0,
  4394. 0,
  4395. 0,
  4396. 1,
  4397. 1,
  4398. 1,
  4399. 1
  4400. ]
  4401. },
  4402. "_eulerAngles": {
  4403. "__type__": "cc.Vec3",
  4404. "x": 0,
  4405. "y": 0,
  4406. "z": 0
  4407. },
  4408. "_skewX": 0,
  4409. "_skewY": 0,
  4410. "_is3DNode": false,
  4411. "_groupIndex": 0,
  4412. "groupIndex": 0,
  4413. "_id": ""
  4414. },
  4415. {
  4416. "__type__": "cc.PrivateNode",
  4417. "_name": "RICHTEXT_CHILD",
  4418. "_objFlags": 1024,
  4419. "_parent": {
  4420. "__id__": 120
  4421. },
  4422. "_children": [],
  4423. "_active": false,
  4424. "_components": [
  4425. {
  4426. "__id__": 122
  4427. },
  4428. {
  4429. "__id__": 123
  4430. }
  4431. ],
  4432. "_prefab": {
  4433. "__id__": 124
  4434. },
  4435. "_opacity": 255,
  4436. "_color": {
  4437. "__type__": "cc.Color",
  4438. "r": 255,
  4439. "g": 224,
  4440. "b": 12,
  4441. "a": 255
  4442. },
  4443. "_contentSize": {
  4444. "__type__": "cc.Size",
  4445. "width": 79.7,
  4446. "height": 58.4
  4447. },
  4448. "_anchorPoint": {
  4449. "__type__": "cc.Vec2",
  4450. "x": 0,
  4451. "y": 0
  4452. },
  4453. "_trs": {
  4454. "__type__": "TypedArray",
  4455. "ctor": "Float64Array",
  4456. "array": [
  4457. -103.85,
  4458. -29.2,
  4459. 0,
  4460. 0,
  4461. 0,
  4462. 0,
  4463. 1,
  4464. 1,
  4465. 1,
  4466. 1
  4467. ]
  4468. },
  4469. "_eulerAngles": {
  4470. "__type__": "cc.Vec3",
  4471. "x": 0,
  4472. "y": 0,
  4473. "z": 0
  4474. },
  4475. "_skewX": 0,
  4476. "_skewY": 0,
  4477. "_zIndex": -32768,
  4478. "_is3DNode": false,
  4479. "_groupIndex": 0,
  4480. "groupIndex": 0,
  4481. "showInEditor": false,
  4482. "_id": ""
  4483. },
  4484. {
  4485. "__type__": "cc.Label",
  4486. "_name": "",
  4487. "_objFlags": 0,
  4488. "node": {
  4489. "__id__": 121
  4490. },
  4491. "_enabled": true,
  4492. "_materials": [
  4493. {
  4494. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4495. }
  4496. ],
  4497. "_useOriginalSize": true,
  4498. "_string": "0.3元",
  4499. "_N$string": "0.3元",
  4500. "_fontSize": 30,
  4501. "_lineHeight": 40,
  4502. "_enableWrapText": true,
  4503. "_N$file": null,
  4504. "_isSystemFontUsed": true,
  4505. "_spacingX": 0,
  4506. "_batchAsBitmap": false,
  4507. "_styleFlags": 0,
  4508. "_underlineHeight": 0,
  4509. "_N$horizontalAlign": 0,
  4510. "_N$verticalAlign": 1,
  4511. "_N$fontFamily": "Arial",
  4512. "_N$overflow": 0,
  4513. "_N$cacheMode": 0,
  4514. "_id": ""
  4515. },
  4516. {
  4517. "__type__": "cc.LabelOutline",
  4518. "_name": "",
  4519. "_objFlags": 0,
  4520. "node": {
  4521. "__id__": 121
  4522. },
  4523. "_enabled": true,
  4524. "_color": {
  4525. "__type__": "cc.Color",
  4526. "r": 140,
  4527. "g": 16,
  4528. "b": 16,
  4529. "a": 255
  4530. },
  4531. "_width": 4,
  4532. "_id": ""
  4533. },
  4534. {
  4535. "__type__": "cc.PrefabInfo",
  4536. "root": {
  4537. "__id__": 1
  4538. },
  4539. "asset": {
  4540. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  4541. },
  4542. "fileId": "edj3wGpthIRId0d/BkPKfG",
  4543. "sync": false
  4544. },
  4545. {
  4546. "__type__": "cc.PrivateNode",
  4547. "_name": "RICHTEXT_CHILD",
  4548. "_objFlags": 1024,
  4549. "_parent": {
  4550. "__id__": 120
  4551. },
  4552. "_children": [],
  4553. "_active": false,
  4554. "_components": [
  4555. {
  4556. "__id__": 126
  4557. },
  4558. {
  4559. "__id__": 127
  4560. }
  4561. ],
  4562. "_prefab": {
  4563. "__id__": 128
  4564. },
  4565. "_opacity": 255,
  4566. "_color": {
  4567. "__type__": "cc.Color",
  4568. "r": 255,
  4569. "g": 255,
  4570. "b": 255,
  4571. "a": 255
  4572. },
  4573. "_contentSize": {
  4574. "__type__": "cc.Size",
  4575. "width": 128,
  4576. "height": 58.4
  4577. },
  4578. "_anchorPoint": {
  4579. "__type__": "cc.Vec2",
  4580. "x": 0,
  4581. "y": 0
  4582. },
  4583. "_trs": {
  4584. "__type__": "TypedArray",
  4585. "ctor": "Float64Array",
  4586. "array": [
  4587. -24.14999999999999,
  4588. -29.2,
  4589. 0,
  4590. 0,
  4591. 0,
  4592. 0,
  4593. 1,
  4594. 1,
  4595. 1,
  4596. 1
  4597. ]
  4598. },
  4599. "_eulerAngles": {
  4600. "__type__": "cc.Vec3",
  4601. "x": 0,
  4602. "y": 0,
  4603. "z": 0
  4604. },
  4605. "_skewX": 0,
  4606. "_skewY": 0,
  4607. "_zIndex": -32768,
  4608. "_is3DNode": false,
  4609. "_groupIndex": 0,
  4610. "groupIndex": 0,
  4611. "showInEditor": false,
  4612. "_id": ""
  4613. },
  4614. {
  4615. "__type__": "cc.Label",
  4616. "_name": "",
  4617. "_objFlags": 0,
  4618. "node": {
  4619. "__id__": 125
  4620. },
  4621. "_enabled": true,
  4622. "_materials": [
  4623. {
  4624. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4625. }
  4626. ],
  4627. "_useOriginalSize": true,
  4628. "_string": "提现进度",
  4629. "_N$string": "提现进度",
  4630. "_fontSize": 30,
  4631. "_lineHeight": 40,
  4632. "_enableWrapText": true,
  4633. "_N$file": null,
  4634. "_isSystemFontUsed": true,
  4635. "_spacingX": 0,
  4636. "_batchAsBitmap": false,
  4637. "_styleFlags": 0,
  4638. "_underlineHeight": 0,
  4639. "_N$horizontalAlign": 0,
  4640. "_N$verticalAlign": 1,
  4641. "_N$fontFamily": "Arial",
  4642. "_N$overflow": 0,
  4643. "_N$cacheMode": 0,
  4644. "_id": ""
  4645. },
  4646. {
  4647. "__type__": "cc.LabelOutline",
  4648. "_name": "",
  4649. "_objFlags": 0,
  4650. "node": {
  4651. "__id__": 125
  4652. },
  4653. "_enabled": true,
  4654. "_color": {
  4655. "__type__": "cc.Color",
  4656. "r": 140,
  4657. "g": 16,
  4658. "b": 16,
  4659. "a": 255
  4660. },
  4661. "_width": 4,
  4662. "_id": ""
  4663. },
  4664. {
  4665. "__type__": "cc.PrefabInfo",
  4666. "root": {
  4667. "__id__": 1
  4668. },
  4669. "asset": {
  4670. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  4671. },
  4672. "fileId": "002M1yqCxGyrsnSU2BGve5",
  4673. "sync": false
  4674. },
  4675. {
  4676. "__type__": "cc.RichText",
  4677. "_name": "",
  4678. "_objFlags": 0,
  4679. "node": {
  4680. "__id__": 120
  4681. },
  4682. "_enabled": true,
  4683. "_fontFamily": "Arial",
  4684. "_isSystemFontUsed": true,
  4685. "_N$string": "<outline color=#8C1010 width=4><color=#FFE00C>0.3元</c>提现进度</outline>",
  4686. "_N$horizontalAlign": 0,
  4687. "_N$fontSize": 30,
  4688. "_N$font": null,
  4689. "_N$cacheMode": 0,
  4690. "_N$maxWidth": 0,
  4691. "_N$lineHeight": 40,
  4692. "_N$imageAtlas": null,
  4693. "_N$handleTouchEvent": true,
  4694. "_id": ""
  4695. },
  4696. {
  4697. "__type__": "cc.PrefabInfo",
  4698. "root": {
  4699. "__id__": 1
  4700. },
  4701. "asset": {
  4702. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  4703. },
  4704. "fileId": "e1xGp6bf5CwKK6jywfEUM6",
  4705. "sync": false
  4706. },
  4707. {
  4708. "__type__": "cc.Node",
  4709. "_name": "SliderBg",
  4710. "_objFlags": 0,
  4711. "_parent": {
  4712. "__id__": 109
  4713. },
  4714. "_children": [
  4715. {
  4716. "__id__": 132
  4717. }
  4718. ],
  4719. "_active": true,
  4720. "_components": [
  4721. {
  4722. "__id__": 135
  4723. }
  4724. ],
  4725. "_prefab": {
  4726. "__id__": 136
  4727. },
  4728. "_opacity": 255,
  4729. "_color": {
  4730. "__type__": "cc.Color",
  4731. "r": 255,
  4732. "g": 255,
  4733. "b": 255,
  4734. "a": 255
  4735. },
  4736. "_contentSize": {
  4737. "__type__": "cc.Size",
  4738. "width": 285,
  4739. "height": 36
  4740. },
  4741. "_anchorPoint": {
  4742. "__type__": "cc.Vec2",
  4743. "x": 0.5,
  4744. "y": 0.5
  4745. },
  4746. "_trs": {
  4747. "__type__": "TypedArray",
  4748. "ctor": "Float64Array",
  4749. "array": [
  4750. -30.798,
  4751. -28.245,
  4752. 0,
  4753. 0,
  4754. 0,
  4755. 0,
  4756. 1,
  4757. 1,
  4758. 1,
  4759. 1
  4760. ]
  4761. },
  4762. "_eulerAngles": {
  4763. "__type__": "cc.Vec3",
  4764. "x": 0,
  4765. "y": 0,
  4766. "z": 0
  4767. },
  4768. "_skewX": 0,
  4769. "_skewY": 0,
  4770. "_is3DNode": false,
  4771. "_groupIndex": 0,
  4772. "groupIndex": 0,
  4773. "_id": ""
  4774. },
  4775. {
  4776. "__type__": "cc.Node",
  4777. "_name": "slider",
  4778. "_objFlags": 0,
  4779. "_parent": {
  4780. "__id__": 131
  4781. },
  4782. "_children": [],
  4783. "_active": true,
  4784. "_components": [
  4785. {
  4786. "__id__": 133
  4787. }
  4788. ],
  4789. "_prefab": {
  4790. "__id__": 134
  4791. },
  4792. "_opacity": 255,
  4793. "_color": {
  4794. "__type__": "cc.Color",
  4795. "r": 255,
  4796. "g": 255,
  4797. "b": 255,
  4798. "a": 255
  4799. },
  4800. "_contentSize": {
  4801. "__type__": "cc.Size",
  4802. "width": 277,
  4803. "height": 28
  4804. },
  4805. "_anchorPoint": {
  4806. "__type__": "cc.Vec2",
  4807. "x": 0.5,
  4808. "y": 0.5
  4809. },
  4810. "_trs": {
  4811. "__type__": "TypedArray",
  4812. "ctor": "Float64Array",
  4813. "array": [
  4814. 0,
  4815. 0,
  4816. 0,
  4817. 0,
  4818. 0,
  4819. 0,
  4820. 1,
  4821. 1,
  4822. 1,
  4823. 1
  4824. ]
  4825. },
  4826. "_eulerAngles": {
  4827. "__type__": "cc.Vec3",
  4828. "x": 0,
  4829. "y": 0,
  4830. "z": 0
  4831. },
  4832. "_skewX": 0,
  4833. "_skewY": 0,
  4834. "_is3DNode": false,
  4835. "_groupIndex": 0,
  4836. "groupIndex": 0,
  4837. "_id": ""
  4838. },
  4839. {
  4840. "__type__": "cc.Sprite",
  4841. "_name": "",
  4842. "_objFlags": 0,
  4843. "node": {
  4844. "__id__": 132
  4845. },
  4846. "_enabled": true,
  4847. "_materials": [
  4848. {
  4849. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4850. }
  4851. ],
  4852. "_srcBlendFactor": 770,
  4853. "_dstBlendFactor": 771,
  4854. "_spriteFrame": {
  4855. "__uuid__": "4b2dcae5-d439-45fc-9eb4-73daec915ba5"
  4856. },
  4857. "_type": 3,
  4858. "_sizeMode": 1,
  4859. "_fillType": 0,
  4860. "_fillCenter": {
  4861. "__type__": "cc.Vec2",
  4862. "x": 0,
  4863. "y": 0
  4864. },
  4865. "_fillStart": 0,
  4866. "_fillRange": 0,
  4867. "_isTrimmedMode": true,
  4868. "_atlas": null,
  4869. "_id": ""
  4870. },
  4871. {
  4872. "__type__": "cc.PrefabInfo",
  4873. "root": {
  4874. "__id__": 1
  4875. },
  4876. "asset": {
  4877. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  4878. },
  4879. "fileId": "42zCeX9UlOab3FtXCo41JA",
  4880. "sync": false
  4881. },
  4882. {
  4883. "__type__": "cc.Sprite",
  4884. "_name": "",
  4885. "_objFlags": 0,
  4886. "node": {
  4887. "__id__": 131
  4888. },
  4889. "_enabled": true,
  4890. "_materials": [
  4891. {
  4892. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4893. }
  4894. ],
  4895. "_srcBlendFactor": 770,
  4896. "_dstBlendFactor": 771,
  4897. "_spriteFrame": {
  4898. "__uuid__": "9c8b5486-32c6-4eb8-adf0-5c02c7b21470"
  4899. },
  4900. "_type": 0,
  4901. "_sizeMode": 1,
  4902. "_fillType": 0,
  4903. "_fillCenter": {
  4904. "__type__": "cc.Vec2",
  4905. "x": 0,
  4906. "y": 0
  4907. },
  4908. "_fillStart": 0,
  4909. "_fillRange": 0,
  4910. "_isTrimmedMode": true,
  4911. "_atlas": null,
  4912. "_id": ""
  4913. },
  4914. {
  4915. "__type__": "cc.PrefabInfo",
  4916. "root": {
  4917. "__id__": 1
  4918. },
  4919. "asset": {
  4920. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  4921. },
  4922. "fileId": "a04mX8hshAP4+A5rdY1A5L",
  4923. "sync": false
  4924. },
  4925. {
  4926. "__type__": "cc.Node",
  4927. "_name": "TxtSlider",
  4928. "_objFlags": 0,
  4929. "_parent": {
  4930. "__id__": 109
  4931. },
  4932. "_children": [],
  4933. "_active": true,
  4934. "_components": [
  4935. {
  4936. "__id__": 138
  4937. },
  4938. {
  4939. "__id__": 139
  4940. }
  4941. ],
  4942. "_prefab": {
  4943. "__id__": 140
  4944. },
  4945. "_opacity": 255,
  4946. "_color": {
  4947. "__type__": "cc.Color",
  4948. "r": 255,
  4949. "g": 255,
  4950. "b": 255,
  4951. "a": 255
  4952. },
  4953. "_contentSize": {
  4954. "__type__": "cc.Size",
  4955. "width": 76.61,
  4956. "height": 40.28
  4957. },
  4958. "_anchorPoint": {
  4959. "__type__": "cc.Vec2",
  4960. "x": 0.5,
  4961. "y": 0.5
  4962. },
  4963. "_trs": {
  4964. "__type__": "TypedArray",
  4965. "ctor": "Float64Array",
  4966. "array": [
  4967. -20.498,
  4968. -27.108,
  4969. 0,
  4970. 0,
  4971. 0,
  4972. 0,
  4973. 1,
  4974. 1,
  4975. 1,
  4976. 1
  4977. ]
  4978. },
  4979. "_eulerAngles": {
  4980. "__type__": "cc.Vec3",
  4981. "x": 0,
  4982. "y": 0,
  4983. "z": 0
  4984. },
  4985. "_skewX": 0,
  4986. "_skewY": 0,
  4987. "_is3DNode": false,
  4988. "_groupIndex": 0,
  4989. "groupIndex": 0,
  4990. "_id": ""
  4991. },
  4992. {
  4993. "__type__": "cc.Label",
  4994. "_name": "",
  4995. "_objFlags": 0,
  4996. "node": {
  4997. "__id__": 137
  4998. },
  4999. "_enabled": true,
  5000. "_materials": [
  5001. {
  5002. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5003. }
  5004. ],
  5005. "_useOriginalSize": false,
  5006. "_string": "100%",
  5007. "_N$string": "100%",
  5008. "_fontSize": 28,
  5009. "_lineHeight": 28,
  5010. "_enableWrapText": true,
  5011. "_N$file": null,
  5012. "_isSystemFontUsed": true,
  5013. "_spacingX": 0,
  5014. "_batchAsBitmap": false,
  5015. "_styleFlags": 1,
  5016. "_underlineHeight": 0,
  5017. "_N$horizontalAlign": 1,
  5018. "_N$verticalAlign": 1,
  5019. "_N$fontFamily": "Arial",
  5020. "_N$overflow": 0,
  5021. "_N$cacheMode": 0,
  5022. "_id": ""
  5023. },
  5024. {
  5025. "__type__": "cc.LabelOutline",
  5026. "_name": "",
  5027. "_objFlags": 0,
  5028. "node": {
  5029. "__id__": 137
  5030. },
  5031. "_enabled": true,
  5032. "_color": {
  5033. "__type__": "cc.Color",
  5034. "r": 0,
  5035. "g": 0,
  5036. "b": 0,
  5037. "a": 255
  5038. },
  5039. "_width": 2.5,
  5040. "_id": ""
  5041. },
  5042. {
  5043. "__type__": "cc.PrefabInfo",
  5044. "root": {
  5045. "__id__": 1
  5046. },
  5047. "asset": {
  5048. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  5049. },
  5050. "fileId": "f81EmQJexC1atxvBaLLi1U",
  5051. "sync": false
  5052. },
  5053. {
  5054. "__type__": "cc.Node",
  5055. "_name": "BtnNoFinish",
  5056. "_objFlags": 0,
  5057. "_parent": {
  5058. "__id__": 109
  5059. },
  5060. "_children": [
  5061. {
  5062. "__id__": 142
  5063. }
  5064. ],
  5065. "_active": true,
  5066. "_components": [
  5067. {
  5068. "__id__": 145
  5069. },
  5070. {
  5071. "__id__": 146
  5072. }
  5073. ],
  5074. "_prefab": {
  5075. "__id__": 148
  5076. },
  5077. "_opacity": 255,
  5078. "_color": {
  5079. "__type__": "cc.Color",
  5080. "r": 255,
  5081. "g": 255,
  5082. "b": 255,
  5083. "a": 255
  5084. },
  5085. "_contentSize": {
  5086. "__type__": "cc.Size",
  5087. "width": 171,
  5088. "height": 74
  5089. },
  5090. "_anchorPoint": {
  5091. "__type__": "cc.Vec2",
  5092. "x": 0.5,
  5093. "y": 0.5
  5094. },
  5095. "_trs": {
  5096. "__type__": "TypedArray",
  5097. "ctor": "Float64Array",
  5098. "array": [
  5099. 223,
  5100. 0,
  5101. 0,
  5102. 0,
  5103. 0,
  5104. 0,
  5105. 1,
  5106. 1,
  5107. 1,
  5108. 1
  5109. ]
  5110. },
  5111. "_eulerAngles": {
  5112. "__type__": "cc.Vec3",
  5113. "x": 0,
  5114. "y": 0,
  5115. "z": 0
  5116. },
  5117. "_skewX": 0,
  5118. "_skewY": 0,
  5119. "_is3DNode": false,
  5120. "_groupIndex": 0,
  5121. "groupIndex": 0,
  5122. "_id": ""
  5123. },
  5124. {
  5125. "__type__": "cc.Node",
  5126. "_name": "New Label",
  5127. "_objFlags": 0,
  5128. "_parent": {
  5129. "__id__": 141
  5130. },
  5131. "_children": [],
  5132. "_active": true,
  5133. "_components": [
  5134. {
  5135. "__id__": 143
  5136. }
  5137. ],
  5138. "_prefab": {
  5139. "__id__": 144
  5140. },
  5141. "_opacity": 255,
  5142. "_color": {
  5143. "__type__": "cc.Color",
  5144. "r": 68,
  5145. "g": 68,
  5146. "b": 68,
  5147. "a": 255
  5148. },
  5149. "_contentSize": {
  5150. "__type__": "cc.Size",
  5151. "width": 90,
  5152. "height": 37.8
  5153. },
  5154. "_anchorPoint": {
  5155. "__type__": "cc.Vec2",
  5156. "x": 0.5,
  5157. "y": 0.5
  5158. },
  5159. "_trs": {
  5160. "__type__": "TypedArray",
  5161. "ctor": "Float64Array",
  5162. "array": [
  5163. 0,
  5164. 4.317,
  5165. 0,
  5166. 0,
  5167. 0,
  5168. 0,
  5169. 1,
  5170. 1,
  5171. 1,
  5172. 1
  5173. ]
  5174. },
  5175. "_eulerAngles": {
  5176. "__type__": "cc.Vec3",
  5177. "x": 0,
  5178. "y": 0,
  5179. "z": 0
  5180. },
  5181. "_skewX": 0,
  5182. "_skewY": 0,
  5183. "_is3DNode": false,
  5184. "_groupIndex": 0,
  5185. "groupIndex": 0,
  5186. "_id": ""
  5187. },
  5188. {
  5189. "__type__": "cc.Label",
  5190. "_name": "",
  5191. "_objFlags": 0,
  5192. "node": {
  5193. "__id__": 142
  5194. },
  5195. "_enabled": true,
  5196. "_materials": [
  5197. {
  5198. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5199. }
  5200. ],
  5201. "_useOriginalSize": false,
  5202. "_string": "未完成",
  5203. "_N$string": "未完成",
  5204. "_fontSize": 30,
  5205. "_lineHeight": 30,
  5206. "_enableWrapText": true,
  5207. "_N$file": null,
  5208. "_isSystemFontUsed": true,
  5209. "_spacingX": 0,
  5210. "_batchAsBitmap": false,
  5211. "_styleFlags": 1,
  5212. "_underlineHeight": 0,
  5213. "_N$horizontalAlign": 1,
  5214. "_N$verticalAlign": 1,
  5215. "_N$fontFamily": "Arial",
  5216. "_N$overflow": 0,
  5217. "_N$cacheMode": 1,
  5218. "_id": ""
  5219. },
  5220. {
  5221. "__type__": "cc.PrefabInfo",
  5222. "root": {
  5223. "__id__": 1
  5224. },
  5225. "asset": {
  5226. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  5227. },
  5228. "fileId": "602ZRw/4hEraUp0zgRrw6J",
  5229. "sync": false
  5230. },
  5231. {
  5232. "__type__": "cc.Sprite",
  5233. "_name": "",
  5234. "_objFlags": 0,
  5235. "node": {
  5236. "__id__": 141
  5237. },
  5238. "_enabled": true,
  5239. "_materials": [
  5240. {
  5241. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5242. }
  5243. ],
  5244. "_srcBlendFactor": 770,
  5245. "_dstBlendFactor": 771,
  5246. "_spriteFrame": {
  5247. "__uuid__": "0d2fcd49-54d1-4164-bbde-6ea66227e976"
  5248. },
  5249. "_type": 0,
  5250. "_sizeMode": 1,
  5251. "_fillType": 0,
  5252. "_fillCenter": {
  5253. "__type__": "cc.Vec2",
  5254. "x": 0,
  5255. "y": 0
  5256. },
  5257. "_fillStart": 0,
  5258. "_fillRange": 0,
  5259. "_isTrimmedMode": true,
  5260. "_atlas": null,
  5261. "_id": ""
  5262. },
  5263. {
  5264. "__type__": "cc.Button",
  5265. "_name": "",
  5266. "_objFlags": 0,
  5267. "node": {
  5268. "__id__": 141
  5269. },
  5270. "_enabled": true,
  5271. "_normalMaterial": null,
  5272. "_grayMaterial": null,
  5273. "duration": 0.1,
  5274. "zoomScale": 1.2,
  5275. "clickEvents": [
  5276. {
  5277. "__id__": 147
  5278. }
  5279. ],
  5280. "_N$interactable": true,
  5281. "_N$enableAutoGrayEffect": false,
  5282. "_N$transition": 0,
  5283. "transition": 0,
  5284. "_N$normalColor": {
  5285. "__type__": "cc.Color",
  5286. "r": 255,
  5287. "g": 255,
  5288. "b": 255,
  5289. "a": 255
  5290. },
  5291. "_N$pressedColor": {
  5292. "__type__": "cc.Color",
  5293. "r": 211,
  5294. "g": 211,
  5295. "b": 211,
  5296. "a": 255
  5297. },
  5298. "pressedColor": {
  5299. "__type__": "cc.Color",
  5300. "r": 211,
  5301. "g": 211,
  5302. "b": 211,
  5303. "a": 255
  5304. },
  5305. "_N$hoverColor": {
  5306. "__type__": "cc.Color",
  5307. "r": 255,
  5308. "g": 255,
  5309. "b": 255,
  5310. "a": 255
  5311. },
  5312. "hoverColor": {
  5313. "__type__": "cc.Color",
  5314. "r": 255,
  5315. "g": 255,
  5316. "b": 255,
  5317. "a": 255
  5318. },
  5319. "_N$disabledColor": {
  5320. "__type__": "cc.Color",
  5321. "r": 124,
  5322. "g": 124,
  5323. "b": 124,
  5324. "a": 255
  5325. },
  5326. "_N$normalSprite": null,
  5327. "_N$pressedSprite": null,
  5328. "pressedSprite": null,
  5329. "_N$hoverSprite": null,
  5330. "hoverSprite": null,
  5331. "_N$disabledSprite": null,
  5332. "_N$target": null,
  5333. "_id": ""
  5334. },
  5335. {
  5336. "__type__": "cc.ClickEvent",
  5337. "target": {
  5338. "__id__": 109
  5339. },
  5340. "component": "",
  5341. "_componentId": "b6615dqhWxFXJgvv1DTd49O",
  5342. "handler": "Click_NoFinishBtn",
  5343. "customEventData": ""
  5344. },
  5345. {
  5346. "__type__": "cc.PrefabInfo",
  5347. "root": {
  5348. "__id__": 1
  5349. },
  5350. "asset": {
  5351. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  5352. },
  5353. "fileId": "a1TgsRR9FEQKWKJSb1PfQf",
  5354. "sync": false
  5355. },
  5356. {
  5357. "__type__": "cc.Node",
  5358. "_name": "BtnCanCash",
  5359. "_objFlags": 0,
  5360. "_parent": {
  5361. "__id__": 109
  5362. },
  5363. "_children": [
  5364. {
  5365. "__id__": 150
  5366. }
  5367. ],
  5368. "_active": false,
  5369. "_components": [
  5370. {
  5371. "__id__": 153
  5372. },
  5373. {
  5374. "__id__": 154
  5375. }
  5376. ],
  5377. "_prefab": {
  5378. "__id__": 156
  5379. },
  5380. "_opacity": 255,
  5381. "_color": {
  5382. "__type__": "cc.Color",
  5383. "r": 255,
  5384. "g": 255,
  5385. "b": 255,
  5386. "a": 255
  5387. },
  5388. "_contentSize": {
  5389. "__type__": "cc.Size",
  5390. "width": 171,
  5391. "height": 74
  5392. },
  5393. "_anchorPoint": {
  5394. "__type__": "cc.Vec2",
  5395. "x": 0.5,
  5396. "y": 0.5
  5397. },
  5398. "_trs": {
  5399. "__type__": "TypedArray",
  5400. "ctor": "Float64Array",
  5401. "array": [
  5402. 223,
  5403. 0,
  5404. 0,
  5405. 0,
  5406. 0,
  5407. 0,
  5408. 1,
  5409. 1,
  5410. 1,
  5411. 1
  5412. ]
  5413. },
  5414. "_eulerAngles": {
  5415. "__type__": "cc.Vec3",
  5416. "x": 0,
  5417. "y": 0,
  5418. "z": 0
  5419. },
  5420. "_skewX": 0,
  5421. "_skewY": 0,
  5422. "_is3DNode": false,
  5423. "_groupIndex": 0,
  5424. "groupIndex": 0,
  5425. "_id": ""
  5426. },
  5427. {
  5428. "__type__": "cc.Node",
  5429. "_name": "New Label",
  5430. "_objFlags": 0,
  5431. "_parent": {
  5432. "__id__": 149
  5433. },
  5434. "_children": [],
  5435. "_active": true,
  5436. "_components": [
  5437. {
  5438. "__id__": 151
  5439. }
  5440. ],
  5441. "_prefab": {
  5442. "__id__": 152
  5443. },
  5444. "_opacity": 255,
  5445. "_color": {
  5446. "__type__": "cc.Color",
  5447. "r": 104,
  5448. "g": 49,
  5449. "b": 11,
  5450. "a": 255
  5451. },
  5452. "_contentSize": {
  5453. "__type__": "cc.Size",
  5454. "width": 90,
  5455. "height": 37.8
  5456. },
  5457. "_anchorPoint": {
  5458. "__type__": "cc.Vec2",
  5459. "x": 0.5,
  5460. "y": 0.5
  5461. },
  5462. "_trs": {
  5463. "__type__": "TypedArray",
  5464. "ctor": "Float64Array",
  5465. "array": [
  5466. 0,
  5467. 4.317,
  5468. 0,
  5469. 0,
  5470. 0,
  5471. 0,
  5472. 1,
  5473. 1,
  5474. 1,
  5475. 1
  5476. ]
  5477. },
  5478. "_eulerAngles": {
  5479. "__type__": "cc.Vec3",
  5480. "x": 0,
  5481. "y": 0,
  5482. "z": 0
  5483. },
  5484. "_skewX": 0,
  5485. "_skewY": 0,
  5486. "_is3DNode": false,
  5487. "_groupIndex": 0,
  5488. "groupIndex": 0,
  5489. "_id": ""
  5490. },
  5491. {
  5492. "__type__": "cc.Label",
  5493. "_name": "",
  5494. "_objFlags": 0,
  5495. "node": {
  5496. "__id__": 150
  5497. },
  5498. "_enabled": true,
  5499. "_materials": [
  5500. {
  5501. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5502. }
  5503. ],
  5504. "_useOriginalSize": false,
  5505. "_string": "可提现",
  5506. "_N$string": "可提现",
  5507. "_fontSize": 30,
  5508. "_lineHeight": 30,
  5509. "_enableWrapText": true,
  5510. "_N$file": null,
  5511. "_isSystemFontUsed": true,
  5512. "_spacingX": 0,
  5513. "_batchAsBitmap": false,
  5514. "_styleFlags": 1,
  5515. "_underlineHeight": 0,
  5516. "_N$horizontalAlign": 1,
  5517. "_N$verticalAlign": 1,
  5518. "_N$fontFamily": "Arial",
  5519. "_N$overflow": 0,
  5520. "_N$cacheMode": 1,
  5521. "_id": ""
  5522. },
  5523. {
  5524. "__type__": "cc.PrefabInfo",
  5525. "root": {
  5526. "__id__": 1
  5527. },
  5528. "asset": {
  5529. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  5530. },
  5531. "fileId": "8ay/551RVLLIiuS6rGtAsA",
  5532. "sync": false
  5533. },
  5534. {
  5535. "__type__": "cc.Sprite",
  5536. "_name": "",
  5537. "_objFlags": 0,
  5538. "node": {
  5539. "__id__": 149
  5540. },
  5541. "_enabled": true,
  5542. "_materials": [
  5543. {
  5544. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5545. }
  5546. ],
  5547. "_srcBlendFactor": 770,
  5548. "_dstBlendFactor": 771,
  5549. "_spriteFrame": {
  5550. "__uuid__": "16b8a42d-4146-40eb-b1f1-bbf074ff383c"
  5551. },
  5552. "_type": 0,
  5553. "_sizeMode": 1,
  5554. "_fillType": 0,
  5555. "_fillCenter": {
  5556. "__type__": "cc.Vec2",
  5557. "x": 0,
  5558. "y": 0
  5559. },
  5560. "_fillStart": 0,
  5561. "_fillRange": 0,
  5562. "_isTrimmedMode": true,
  5563. "_atlas": null,
  5564. "_id": ""
  5565. },
  5566. {
  5567. "__type__": "cc.Button",
  5568. "_name": "",
  5569. "_objFlags": 0,
  5570. "node": {
  5571. "__id__": 149
  5572. },
  5573. "_enabled": true,
  5574. "_normalMaterial": null,
  5575. "_grayMaterial": null,
  5576. "duration": 0.1,
  5577. "zoomScale": 1.2,
  5578. "clickEvents": [
  5579. {
  5580. "__id__": 155
  5581. }
  5582. ],
  5583. "_N$interactable": true,
  5584. "_N$enableAutoGrayEffect": false,
  5585. "_N$transition": 0,
  5586. "transition": 0,
  5587. "_N$normalColor": {
  5588. "__type__": "cc.Color",
  5589. "r": 255,
  5590. "g": 255,
  5591. "b": 255,
  5592. "a": 255
  5593. },
  5594. "_N$pressedColor": {
  5595. "__type__": "cc.Color",
  5596. "r": 211,
  5597. "g": 211,
  5598. "b": 211,
  5599. "a": 255
  5600. },
  5601. "pressedColor": {
  5602. "__type__": "cc.Color",
  5603. "r": 211,
  5604. "g": 211,
  5605. "b": 211,
  5606. "a": 255
  5607. },
  5608. "_N$hoverColor": {
  5609. "__type__": "cc.Color",
  5610. "r": 255,
  5611. "g": 255,
  5612. "b": 255,
  5613. "a": 255
  5614. },
  5615. "hoverColor": {
  5616. "__type__": "cc.Color",
  5617. "r": 255,
  5618. "g": 255,
  5619. "b": 255,
  5620. "a": 255
  5621. },
  5622. "_N$disabledColor": {
  5623. "__type__": "cc.Color",
  5624. "r": 124,
  5625. "g": 124,
  5626. "b": 124,
  5627. "a": 255
  5628. },
  5629. "_N$normalSprite": null,
  5630. "_N$pressedSprite": null,
  5631. "pressedSprite": null,
  5632. "_N$hoverSprite": null,
  5633. "hoverSprite": null,
  5634. "_N$disabledSprite": null,
  5635. "_N$target": null,
  5636. "_id": ""
  5637. },
  5638. {
  5639. "__type__": "cc.ClickEvent",
  5640. "target": {
  5641. "__id__": 109
  5642. },
  5643. "component": "",
  5644. "_componentId": "b6615dqhWxFXJgvv1DTd49O",
  5645. "handler": "Click_CanCashBtn",
  5646. "customEventData": ""
  5647. },
  5648. {
  5649. "__type__": "cc.PrefabInfo",
  5650. "root": {
  5651. "__id__": 1
  5652. },
  5653. "asset": {
  5654. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  5655. },
  5656. "fileId": "7dsoqr6R9EkY67+A8fcwYp",
  5657. "sync": false
  5658. },
  5659. {
  5660. "__type__": "cc.Node",
  5661. "_name": "BtnCashed",
  5662. "_objFlags": 0,
  5663. "_parent": {
  5664. "__id__": 109
  5665. },
  5666. "_children": [
  5667. {
  5668. "__id__": 158
  5669. }
  5670. ],
  5671. "_active": false,
  5672. "_components": [
  5673. {
  5674. "__id__": 161
  5675. },
  5676. {
  5677. "__id__": 162
  5678. }
  5679. ],
  5680. "_prefab": {
  5681. "__id__": 164
  5682. },
  5683. "_opacity": 255,
  5684. "_color": {
  5685. "__type__": "cc.Color",
  5686. "r": 255,
  5687. "g": 255,
  5688. "b": 255,
  5689. "a": 255
  5690. },
  5691. "_contentSize": {
  5692. "__type__": "cc.Size",
  5693. "width": 171,
  5694. "height": 70
  5695. },
  5696. "_anchorPoint": {
  5697. "__type__": "cc.Vec2",
  5698. "x": 0.5,
  5699. "y": 0.5
  5700. },
  5701. "_trs": {
  5702. "__type__": "TypedArray",
  5703. "ctor": "Float64Array",
  5704. "array": [
  5705. 223,
  5706. 0,
  5707. 0,
  5708. 0,
  5709. 0,
  5710. 0,
  5711. 1,
  5712. 1,
  5713. 1,
  5714. 1
  5715. ]
  5716. },
  5717. "_eulerAngles": {
  5718. "__type__": "cc.Vec3",
  5719. "x": 0,
  5720. "y": 0,
  5721. "z": 0
  5722. },
  5723. "_skewX": 0,
  5724. "_skewY": 0,
  5725. "_is3DNode": false,
  5726. "_groupIndex": 0,
  5727. "groupIndex": 0,
  5728. "_id": ""
  5729. },
  5730. {
  5731. "__type__": "cc.Node",
  5732. "_name": "New Label",
  5733. "_objFlags": 0,
  5734. "_parent": {
  5735. "__id__": 157
  5736. },
  5737. "_children": [],
  5738. "_active": true,
  5739. "_components": [
  5740. {
  5741. "__id__": 159
  5742. }
  5743. ],
  5744. "_prefab": {
  5745. "__id__": 160
  5746. },
  5747. "_opacity": 255,
  5748. "_color": {
  5749. "__type__": "cc.Color",
  5750. "r": 255,
  5751. "g": 255,
  5752. "b": 255,
  5753. "a": 255
  5754. },
  5755. "_contentSize": {
  5756. "__type__": "cc.Size",
  5757. "width": 90,
  5758. "height": 37.8
  5759. },
  5760. "_anchorPoint": {
  5761. "__type__": "cc.Vec2",
  5762. "x": 0.5,
  5763. "y": 0.5
  5764. },
  5765. "_trs": {
  5766. "__type__": "TypedArray",
  5767. "ctor": "Float64Array",
  5768. "array": [
  5769. 0,
  5770. 2.428,
  5771. 0,
  5772. 0,
  5773. 0,
  5774. 0,
  5775. 1,
  5776. 1,
  5777. 1,
  5778. 1
  5779. ]
  5780. },
  5781. "_eulerAngles": {
  5782. "__type__": "cc.Vec3",
  5783. "x": 0,
  5784. "y": 0,
  5785. "z": 0
  5786. },
  5787. "_skewX": 0,
  5788. "_skewY": 0,
  5789. "_is3DNode": false,
  5790. "_groupIndex": 0,
  5791. "groupIndex": 0,
  5792. "_id": ""
  5793. },
  5794. {
  5795. "__type__": "cc.Label",
  5796. "_name": "",
  5797. "_objFlags": 0,
  5798. "node": {
  5799. "__id__": 158
  5800. },
  5801. "_enabled": true,
  5802. "_materials": [
  5803. {
  5804. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5805. }
  5806. ],
  5807. "_useOriginalSize": false,
  5808. "_string": "已提现",
  5809. "_N$string": "已提现",
  5810. "_fontSize": 30,
  5811. "_lineHeight": 30,
  5812. "_enableWrapText": true,
  5813. "_N$file": null,
  5814. "_isSystemFontUsed": true,
  5815. "_spacingX": 0,
  5816. "_batchAsBitmap": false,
  5817. "_styleFlags": 1,
  5818. "_underlineHeight": 0,
  5819. "_N$horizontalAlign": 1,
  5820. "_N$verticalAlign": 1,
  5821. "_N$fontFamily": "Arial",
  5822. "_N$overflow": 0,
  5823. "_N$cacheMode": 0,
  5824. "_id": ""
  5825. },
  5826. {
  5827. "__type__": "cc.PrefabInfo",
  5828. "root": {
  5829. "__id__": 1
  5830. },
  5831. "asset": {
  5832. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  5833. },
  5834. "fileId": "9eVyW1Ef9DxoZi6hbhk/Pw",
  5835. "sync": false
  5836. },
  5837. {
  5838. "__type__": "cc.Sprite",
  5839. "_name": "",
  5840. "_objFlags": 0,
  5841. "node": {
  5842. "__id__": 157
  5843. },
  5844. "_enabled": true,
  5845. "_materials": [
  5846. {
  5847. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5848. }
  5849. ],
  5850. "_srcBlendFactor": 770,
  5851. "_dstBlendFactor": 771,
  5852. "_spriteFrame": {
  5853. "__uuid__": "a9988116-779a-4b5b-aa48-a8aefdbaac21"
  5854. },
  5855. "_type": 0,
  5856. "_sizeMode": 1,
  5857. "_fillType": 0,
  5858. "_fillCenter": {
  5859. "__type__": "cc.Vec2",
  5860. "x": 0,
  5861. "y": 0
  5862. },
  5863. "_fillStart": 0,
  5864. "_fillRange": 0,
  5865. "_isTrimmedMode": true,
  5866. "_atlas": null,
  5867. "_id": ""
  5868. },
  5869. {
  5870. "__type__": "cc.Button",
  5871. "_name": "",
  5872. "_objFlags": 0,
  5873. "node": {
  5874. "__id__": 157
  5875. },
  5876. "_enabled": true,
  5877. "_normalMaterial": null,
  5878. "_grayMaterial": null,
  5879. "duration": 0.1,
  5880. "zoomScale": 1.2,
  5881. "clickEvents": [
  5882. {
  5883. "__id__": 163
  5884. }
  5885. ],
  5886. "_N$interactable": true,
  5887. "_N$enableAutoGrayEffect": false,
  5888. "_N$transition": 0,
  5889. "transition": 0,
  5890. "_N$normalColor": {
  5891. "__type__": "cc.Color",
  5892. "r": 255,
  5893. "g": 255,
  5894. "b": 255,
  5895. "a": 255
  5896. },
  5897. "_N$pressedColor": {
  5898. "__type__": "cc.Color",
  5899. "r": 211,
  5900. "g": 211,
  5901. "b": 211,
  5902. "a": 255
  5903. },
  5904. "pressedColor": {
  5905. "__type__": "cc.Color",
  5906. "r": 211,
  5907. "g": 211,
  5908. "b": 211,
  5909. "a": 255
  5910. },
  5911. "_N$hoverColor": {
  5912. "__type__": "cc.Color",
  5913. "r": 255,
  5914. "g": 255,
  5915. "b": 255,
  5916. "a": 255
  5917. },
  5918. "hoverColor": {
  5919. "__type__": "cc.Color",
  5920. "r": 255,
  5921. "g": 255,
  5922. "b": 255,
  5923. "a": 255
  5924. },
  5925. "_N$disabledColor": {
  5926. "__type__": "cc.Color",
  5927. "r": 124,
  5928. "g": 124,
  5929. "b": 124,
  5930. "a": 255
  5931. },
  5932. "_N$normalSprite": null,
  5933. "_N$pressedSprite": null,
  5934. "pressedSprite": null,
  5935. "_N$hoverSprite": null,
  5936. "hoverSprite": null,
  5937. "_N$disabledSprite": null,
  5938. "_N$target": null,
  5939. "_id": ""
  5940. },
  5941. {
  5942. "__type__": "cc.ClickEvent",
  5943. "target": {
  5944. "__id__": 109
  5945. },
  5946. "component": "",
  5947. "_componentId": "b6615dqhWxFXJgvv1DTd49O",
  5948. "handler": "Click_CashedBtn",
  5949. "customEventData": ""
  5950. },
  5951. {
  5952. "__type__": "cc.PrefabInfo",
  5953. "root": {
  5954. "__id__": 1
  5955. },
  5956. "asset": {
  5957. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  5958. },
  5959. "fileId": "86N4SLUnNKu4s5vYbvGBnG",
  5960. "sync": false
  5961. },
  5962. {
  5963. "__type__": "cc.Sprite",
  5964. "_name": "",
  5965. "_objFlags": 0,
  5966. "node": {
  5967. "__id__": 109
  5968. },
  5969. "_enabled": true,
  5970. "_materials": [
  5971. {
  5972. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5973. }
  5974. ],
  5975. "_srcBlendFactor": 770,
  5976. "_dstBlendFactor": 771,
  5977. "_spriteFrame": {
  5978. "__uuid__": "e0ef2340-7ce4-43a7-883e-192d081a9d9e"
  5979. },
  5980. "_type": 0,
  5981. "_sizeMode": 1,
  5982. "_fillType": 0,
  5983. "_fillCenter": {
  5984. "__type__": "cc.Vec2",
  5985. "x": 0,
  5986. "y": 0
  5987. },
  5988. "_fillStart": 0,
  5989. "_fillRange": 0,
  5990. "_isTrimmedMode": true,
  5991. "_atlas": null,
  5992. "_id": ""
  5993. },
  5994. {
  5995. "__type__": "b6615dqhWxFXJgvv1DTd49O",
  5996. "_name": "",
  5997. "_objFlags": 0,
  5998. "node": {
  5999. "__id__": 109
  6000. },
  6001. "_enabled": true,
  6002. "txtNum": {
  6003. "__id__": 117
  6004. },
  6005. "txtTip": {
  6006. "__id__": 129
  6007. },
  6008. "txtSlider": {
  6009. "__id__": 138
  6010. },
  6011. "slider": {
  6012. "__id__": 133
  6013. },
  6014. "btnCashed": {
  6015. "__id__": 157
  6016. },
  6017. "btnCanCash": {
  6018. "__id__": 149
  6019. },
  6020. "btnNoFinish": {
  6021. "__id__": 141
  6022. },
  6023. "_id": ""
  6024. },
  6025. {
  6026. "__type__": "cc.PrefabInfo",
  6027. "root": {
  6028. "__id__": 1
  6029. },
  6030. "asset": {
  6031. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  6032. },
  6033. "fileId": "ddzwm3365JjZclDYiFqnGv",
  6034. "sync": false
  6035. },
  6036. {
  6037. "__type__": "cc.Node",
  6038. "_name": "Window",
  6039. "_objFlags": 0,
  6040. "_parent": {
  6041. "__id__": 9
  6042. },
  6043. "_children": [
  6044. {
  6045. "__id__": 169
  6046. },
  6047. {
  6048. "__id__": 176
  6049. }
  6050. ],
  6051. "_active": true,
  6052. "_components": [
  6053. {
  6054. "__id__": 179
  6055. }
  6056. ],
  6057. "_prefab": {
  6058. "__id__": 180
  6059. },
  6060. "_opacity": 255,
  6061. "_color": {
  6062. "__type__": "cc.Color",
  6063. "r": 255,
  6064. "g": 255,
  6065. "b": 255,
  6066. "a": 255
  6067. },
  6068. "_contentSize": {
  6069. "__type__": "cc.Size",
  6070. "width": 689,
  6071. "height": 645
  6072. },
  6073. "_anchorPoint": {
  6074. "__type__": "cc.Vec2",
  6075. "x": 0.5,
  6076. "y": 0.5
  6077. },
  6078. "_trs": {
  6079. "__type__": "TypedArray",
  6080. "ctor": "Float64Array",
  6081. "array": [
  6082. 0,
  6083. -178.2,
  6084. 0,
  6085. 0,
  6086. 0,
  6087. 0,
  6088. 1,
  6089. 1,
  6090. 1,
  6091. 1
  6092. ]
  6093. },
  6094. "_eulerAngles": {
  6095. "__type__": "cc.Vec3",
  6096. "x": 0,
  6097. "y": 0,
  6098. "z": 0
  6099. },
  6100. "_skewX": 0,
  6101. "_skewY": 0,
  6102. "_is3DNode": false,
  6103. "_groupIndex": 0,
  6104. "groupIndex": 0,
  6105. "_id": ""
  6106. },
  6107. {
  6108. "__type__": "cc.Node",
  6109. "_name": "Rect",
  6110. "_objFlags": 0,
  6111. "_parent": {
  6112. "__id__": 168
  6113. },
  6114. "_children": [
  6115. {
  6116. "__id__": 170
  6117. }
  6118. ],
  6119. "_active": true,
  6120. "_components": [
  6121. {
  6122. "__id__": 173
  6123. },
  6124. {
  6125. "__id__": 174
  6126. }
  6127. ],
  6128. "_prefab": {
  6129. "__id__": 175
  6130. },
  6131. "_opacity": 255,
  6132. "_color": {
  6133. "__type__": "cc.Color",
  6134. "r": 255,
  6135. "g": 255,
  6136. "b": 255,
  6137. "a": 255
  6138. },
  6139. "_contentSize": {
  6140. "__type__": "cc.Size",
  6141. "width": 651,
  6142. "height": 600
  6143. },
  6144. "_anchorPoint": {
  6145. "__type__": "cc.Vec2",
  6146. "x": 0.5,
  6147. "y": 0.5
  6148. },
  6149. "_trs": {
  6150. "__type__": "TypedArray",
  6151. "ctor": "Float64Array",
  6152. "array": [
  6153. 0,
  6154. -27.625,
  6155. 0,
  6156. 0,
  6157. 0,
  6158. 0,
  6159. 1,
  6160. 1,
  6161. 1,
  6162. 1
  6163. ]
  6164. },
  6165. "_eulerAngles": {
  6166. "__type__": "cc.Vec3",
  6167. "x": 0,
  6168. "y": 0,
  6169. "z": 0
  6170. },
  6171. "_skewX": 0,
  6172. "_skewY": 0,
  6173. "_is3DNode": false,
  6174. "_groupIndex": 0,
  6175. "groupIndex": 0,
  6176. "_id": ""
  6177. },
  6178. {
  6179. "__type__": "cc.Node",
  6180. "_name": "content",
  6181. "_objFlags": 0,
  6182. "_parent": {
  6183. "__id__": 169
  6184. },
  6185. "_children": [],
  6186. "_active": true,
  6187. "_components": [
  6188. {
  6189. "__id__": 171
  6190. }
  6191. ],
  6192. "_prefab": {
  6193. "__id__": 172
  6194. },
  6195. "_opacity": 255,
  6196. "_color": {
  6197. "__type__": "cc.Color",
  6198. "r": 255,
  6199. "g": 255,
  6200. "b": 255,
  6201. "a": 255
  6202. },
  6203. "_contentSize": {
  6204. "__type__": "cc.Size",
  6205. "width": 651,
  6206. "height": -10
  6207. },
  6208. "_anchorPoint": {
  6209. "__type__": "cc.Vec2",
  6210. "x": 0.5,
  6211. "y": 1
  6212. },
  6213. "_trs": {
  6214. "__type__": "TypedArray",
  6215. "ctor": "Float64Array",
  6216. "array": [
  6217. 0,
  6218. 300,
  6219. 0,
  6220. 0,
  6221. 0,
  6222. 0,
  6223. 1,
  6224. 1,
  6225. 1,
  6226. 1
  6227. ]
  6228. },
  6229. "_eulerAngles": {
  6230. "__type__": "cc.Vec3",
  6231. "x": 0,
  6232. "y": 0,
  6233. "z": 0
  6234. },
  6235. "_skewX": 0,
  6236. "_skewY": 0,
  6237. "_is3DNode": false,
  6238. "_groupIndex": 0,
  6239. "groupIndex": 0,
  6240. "_id": ""
  6241. },
  6242. {
  6243. "__type__": "cc.Layout",
  6244. "_name": "",
  6245. "_objFlags": 0,
  6246. "node": {
  6247. "__id__": 170
  6248. },
  6249. "_enabled": true,
  6250. "_layoutSize": {
  6251. "__type__": "cc.Size",
  6252. "width": 651,
  6253. "height": -10
  6254. },
  6255. "_resize": 1,
  6256. "_N$layoutType": 2,
  6257. "_N$cellSize": {
  6258. "__type__": "cc.Size",
  6259. "width": 40,
  6260. "height": 40
  6261. },
  6262. "_N$startAxis": 0,
  6263. "_N$paddingLeft": 0,
  6264. "_N$paddingRight": 0,
  6265. "_N$paddingTop": 0,
  6266. "_N$paddingBottom": 0,
  6267. "_N$spacingX": 0,
  6268. "_N$spacingY": 10,
  6269. "_N$verticalDirection": 1,
  6270. "_N$horizontalDirection": 0,
  6271. "_N$affectedByScale": false,
  6272. "_id": ""
  6273. },
  6274. {
  6275. "__type__": "cc.PrefabInfo",
  6276. "root": {
  6277. "__id__": 1
  6278. },
  6279. "asset": {
  6280. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  6281. },
  6282. "fileId": "53TKDwkUxNfKkRf1EdsTDj",
  6283. "sync": false
  6284. },
  6285. {
  6286. "__type__": "cc.Mask",
  6287. "_name": "",
  6288. "_objFlags": 0,
  6289. "node": {
  6290. "__id__": 169
  6291. },
  6292. "_enabled": true,
  6293. "_materials": [
  6294. {
  6295. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6296. }
  6297. ],
  6298. "_spriteFrame": null,
  6299. "_type": 0,
  6300. "_segments": 64,
  6301. "_N$alphaThreshold": 0.1,
  6302. "_N$inverted": false,
  6303. "_id": ""
  6304. },
  6305. {
  6306. "__type__": "cc.ScrollView",
  6307. "_name": "",
  6308. "_objFlags": 0,
  6309. "node": {
  6310. "__id__": 169
  6311. },
  6312. "_enabled": true,
  6313. "horizontal": false,
  6314. "vertical": true,
  6315. "inertia": true,
  6316. "brake": 0.5,
  6317. "elastic": true,
  6318. "bounceDuration": 1,
  6319. "scrollEvents": [],
  6320. "cancelInnerEvents": true,
  6321. "_N$content": {
  6322. "__id__": 170
  6323. },
  6324. "content": {
  6325. "__id__": 170
  6326. },
  6327. "_id": ""
  6328. },
  6329. {
  6330. "__type__": "cc.PrefabInfo",
  6331. "root": {
  6332. "__id__": 1
  6333. },
  6334. "asset": {
  6335. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  6336. },
  6337. "fileId": "1czacBe1tHoIpewzGD+pux",
  6338. "sync": false
  6339. },
  6340. {
  6341. "__type__": "cc.Node",
  6342. "_name": "title",
  6343. "_objFlags": 0,
  6344. "_parent": {
  6345. "__id__": 168
  6346. },
  6347. "_children": [],
  6348. "_active": true,
  6349. "_components": [
  6350. {
  6351. "__id__": 177
  6352. }
  6353. ],
  6354. "_prefab": {
  6355. "__id__": 178
  6356. },
  6357. "_opacity": 255,
  6358. "_color": {
  6359. "__type__": "cc.Color",
  6360. "r": 255,
  6361. "g": 255,
  6362. "b": 255,
  6363. "a": 255
  6364. },
  6365. "_contentSize": {
  6366. "__type__": "cc.Size",
  6367. "width": 304,
  6368. "height": 79
  6369. },
  6370. "_anchorPoint": {
  6371. "__type__": "cc.Vec2",
  6372. "x": 0.5,
  6373. "y": 0.5
  6374. },
  6375. "_trs": {
  6376. "__type__": "TypedArray",
  6377. "ctor": "Float64Array",
  6378. "array": [
  6379. 0,
  6380. 320.307,
  6381. 0,
  6382. 0,
  6383. 0,
  6384. 0,
  6385. 1,
  6386. 1,
  6387. 1,
  6388. 1
  6389. ]
  6390. },
  6391. "_eulerAngles": {
  6392. "__type__": "cc.Vec3",
  6393. "x": 0,
  6394. "y": 0,
  6395. "z": 0
  6396. },
  6397. "_skewX": 0,
  6398. "_skewY": 0,
  6399. "_is3DNode": false,
  6400. "_groupIndex": 0,
  6401. "groupIndex": 0,
  6402. "_id": ""
  6403. },
  6404. {
  6405. "__type__": "cc.Sprite",
  6406. "_name": "",
  6407. "_objFlags": 0,
  6408. "node": {
  6409. "__id__": 176
  6410. },
  6411. "_enabled": true,
  6412. "_materials": [
  6413. {
  6414. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6415. }
  6416. ],
  6417. "_srcBlendFactor": 770,
  6418. "_dstBlendFactor": 771,
  6419. "_spriteFrame": {
  6420. "__uuid__": "a2fb61e8-bcb4-4320-a7f3-a8c04d280165"
  6421. },
  6422. "_type": 0,
  6423. "_sizeMode": 1,
  6424. "_fillType": 0,
  6425. "_fillCenter": {
  6426. "__type__": "cc.Vec2",
  6427. "x": 0,
  6428. "y": 0
  6429. },
  6430. "_fillStart": 0,
  6431. "_fillRange": 0,
  6432. "_isTrimmedMode": true,
  6433. "_atlas": null,
  6434. "_id": ""
  6435. },
  6436. {
  6437. "__type__": "cc.PrefabInfo",
  6438. "root": {
  6439. "__id__": 1
  6440. },
  6441. "asset": {
  6442. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  6443. },
  6444. "fileId": "63gsEgH5BJao6faeHZCOGt",
  6445. "sync": false
  6446. },
  6447. {
  6448. "__type__": "cc.Sprite",
  6449. "_name": "",
  6450. "_objFlags": 0,
  6451. "node": {
  6452. "__id__": 168
  6453. },
  6454. "_enabled": true,
  6455. "_materials": [
  6456. {
  6457. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6458. }
  6459. ],
  6460. "_srcBlendFactor": 770,
  6461. "_dstBlendFactor": 771,
  6462. "_spriteFrame": {
  6463. "__uuid__": "40982b35-3d7d-4d2e-a985-d9ccd8f490df"
  6464. },
  6465. "_type": 0,
  6466. "_sizeMode": 0,
  6467. "_fillType": 0,
  6468. "_fillCenter": {
  6469. "__type__": "cc.Vec2",
  6470. "x": 0,
  6471. "y": 0
  6472. },
  6473. "_fillStart": 0,
  6474. "_fillRange": 0,
  6475. "_isTrimmedMode": true,
  6476. "_atlas": null,
  6477. "_id": ""
  6478. },
  6479. {
  6480. "__type__": "cc.PrefabInfo",
  6481. "root": {
  6482. "__id__": 1
  6483. },
  6484. "asset": {
  6485. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  6486. },
  6487. "fileId": "d1PMk8aExKcp/3DwnWZeAg",
  6488. "sync": false
  6489. },
  6490. {
  6491. "__type__": "cc.Node",
  6492. "_name": "btnAd",
  6493. "_objFlags": 0,
  6494. "_parent": {
  6495. "__id__": 9
  6496. },
  6497. "_children": [
  6498. {
  6499. "__id__": 182
  6500. }
  6501. ],
  6502. "_active": true,
  6503. "_components": [
  6504. {
  6505. "__id__": 191
  6506. },
  6507. {
  6508. "__id__": 192
  6509. }
  6510. ],
  6511. "_prefab": {
  6512. "__id__": 194
  6513. },
  6514. "_opacity": 255,
  6515. "_color": {
  6516. "__type__": "cc.Color",
  6517. "r": 255,
  6518. "g": 255,
  6519. "b": 255,
  6520. "a": 255
  6521. },
  6522. "_contentSize": {
  6523. "__type__": "cc.Size",
  6524. "width": 324,
  6525. "height": 110
  6526. },
  6527. "_anchorPoint": {
  6528. "__type__": "cc.Vec2",
  6529. "x": 0.5,
  6530. "y": 0.5
  6531. },
  6532. "_trs": {
  6533. "__type__": "TypedArray",
  6534. "ctor": "Float64Array",
  6535. "array": [
  6536. 0,
  6537. -567.276,
  6538. 0,
  6539. 0,
  6540. 0,
  6541. 0,
  6542. 1,
  6543. 1,
  6544. 1,
  6545. 1
  6546. ]
  6547. },
  6548. "_eulerAngles": {
  6549. "__type__": "cc.Vec3",
  6550. "x": 0,
  6551. "y": 0,
  6552. "z": 0
  6553. },
  6554. "_skewX": 0,
  6555. "_skewY": 0,
  6556. "_is3DNode": false,
  6557. "_groupIndex": 0,
  6558. "groupIndex": 0,
  6559. "_id": ""
  6560. },
  6561. {
  6562. "__type__": "cc.Node",
  6563. "_name": "layout",
  6564. "_objFlags": 0,
  6565. "_parent": {
  6566. "__id__": 181
  6567. },
  6568. "_children": [
  6569. {
  6570. "__id__": 183
  6571. },
  6572. {
  6573. "__id__": 186
  6574. }
  6575. ],
  6576. "_active": true,
  6577. "_components": [
  6578. {
  6579. "__id__": 189
  6580. }
  6581. ],
  6582. "_prefab": {
  6583. "__id__": 190
  6584. },
  6585. "_opacity": 255,
  6586. "_color": {
  6587. "__type__": "cc.Color",
  6588. "r": 255,
  6589. "g": 255,
  6590. "b": 255,
  6591. "a": 255
  6592. },
  6593. "_contentSize": {
  6594. "__type__": "cc.Size",
  6595. "width": 296,
  6596. "height": 100
  6597. },
  6598. "_anchorPoint": {
  6599. "__type__": "cc.Vec2",
  6600. "x": 0.5,
  6601. "y": 0.5
  6602. },
  6603. "_trs": {
  6604. "__type__": "TypedArray",
  6605. "ctor": "Float64Array",
  6606. "array": [
  6607. 0,
  6608. 0,
  6609. 0,
  6610. 0,
  6611. 0,
  6612. 0,
  6613. 1,
  6614. 1,
  6615. 1,
  6616. 1
  6617. ]
  6618. },
  6619. "_eulerAngles": {
  6620. "__type__": "cc.Vec3",
  6621. "x": 0,
  6622. "y": 0,
  6623. "z": 0
  6624. },
  6625. "_skewX": 0,
  6626. "_skewY": 0,
  6627. "_is3DNode": false,
  6628. "_groupIndex": 0,
  6629. "groupIndex": 0,
  6630. "_id": ""
  6631. },
  6632. {
  6633. "__type__": "cc.Node",
  6634. "_name": "adIcon",
  6635. "_objFlags": 0,
  6636. "_parent": {
  6637. "__id__": 182
  6638. },
  6639. "_children": [],
  6640. "_active": true,
  6641. "_components": [
  6642. {
  6643. "__id__": 184
  6644. }
  6645. ],
  6646. "_prefab": {
  6647. "__id__": 185
  6648. },
  6649. "_opacity": 255,
  6650. "_color": {
  6651. "__type__": "cc.Color",
  6652. "r": 255,
  6653. "g": 255,
  6654. "b": 255,
  6655. "a": 255
  6656. },
  6657. "_contentSize": {
  6658. "__type__": "cc.Size",
  6659. "width": 51,
  6660. "height": 55
  6661. },
  6662. "_anchorPoint": {
  6663. "__type__": "cc.Vec2",
  6664. "x": 0.5,
  6665. "y": 0.5
  6666. },
  6667. "_trs": {
  6668. "__type__": "TypedArray",
  6669. "ctor": "Float64Array",
  6670. "array": [
  6671. -122.5,
  6672. 0,
  6673. 0,
  6674. 0,
  6675. 0,
  6676. 0,
  6677. 1,
  6678. 1,
  6679. 1,
  6680. 1
  6681. ]
  6682. },
  6683. "_eulerAngles": {
  6684. "__type__": "cc.Vec3",
  6685. "x": 0,
  6686. "y": 0,
  6687. "z": 0
  6688. },
  6689. "_skewX": 0,
  6690. "_skewY": 0,
  6691. "_is3DNode": false,
  6692. "_groupIndex": 0,
  6693. "groupIndex": 0,
  6694. "_id": ""
  6695. },
  6696. {
  6697. "__type__": "cc.Sprite",
  6698. "_name": "",
  6699. "_objFlags": 0,
  6700. "node": {
  6701. "__id__": 183
  6702. },
  6703. "_enabled": true,
  6704. "_materials": [
  6705. {
  6706. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6707. }
  6708. ],
  6709. "_srcBlendFactor": 770,
  6710. "_dstBlendFactor": 771,
  6711. "_spriteFrame": {
  6712. "__uuid__": "895ec8ab-8a73-4933-8889-12421c4b3955"
  6713. },
  6714. "_type": 0,
  6715. "_sizeMode": 1,
  6716. "_fillType": 0,
  6717. "_fillCenter": {
  6718. "__type__": "cc.Vec2",
  6719. "x": 0,
  6720. "y": 0
  6721. },
  6722. "_fillStart": 0,
  6723. "_fillRange": 0,
  6724. "_isTrimmedMode": true,
  6725. "_atlas": null,
  6726. "_id": ""
  6727. },
  6728. {
  6729. "__type__": "cc.PrefabInfo",
  6730. "root": {
  6731. "__id__": 1
  6732. },
  6733. "asset": {
  6734. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  6735. },
  6736. "fileId": "be2vYQeWZABaSszkAUWQjg",
  6737. "sync": false
  6738. },
  6739. {
  6740. "__type__": "cc.Node",
  6741. "_name": "New Label",
  6742. "_objFlags": 0,
  6743. "_parent": {
  6744. "__id__": 182
  6745. },
  6746. "_children": [],
  6747. "_active": true,
  6748. "_components": [
  6749. {
  6750. "__id__": 187
  6751. }
  6752. ],
  6753. "_prefab": {
  6754. "__id__": 188
  6755. },
  6756. "_opacity": 255,
  6757. "_color": {
  6758. "__type__": "cc.Color",
  6759. "r": 104,
  6760. "g": 49,
  6761. "b": 11,
  6762. "a": 255
  6763. },
  6764. "_contentSize": {
  6765. "__type__": "cc.Size",
  6766. "width": 240,
  6767. "height": 50.4
  6768. },
  6769. "_anchorPoint": {
  6770. "__type__": "cc.Vec2",
  6771. "x": 0.5,
  6772. "y": 0.5
  6773. },
  6774. "_trs": {
  6775. "__type__": "TypedArray",
  6776. "ctor": "Float64Array",
  6777. "array": [
  6778. 28,
  6779. 0,
  6780. 0,
  6781. 0,
  6782. 0,
  6783. 0,
  6784. 1,
  6785. 1,
  6786. 1,
  6787. 1
  6788. ]
  6789. },
  6790. "_eulerAngles": {
  6791. "__type__": "cc.Vec3",
  6792. "x": 0,
  6793. "y": 0,
  6794. "z": 0
  6795. },
  6796. "_skewX": 0,
  6797. "_skewY": 0,
  6798. "_is3DNode": false,
  6799. "_groupIndex": 0,
  6800. "groupIndex": 0,
  6801. "_id": ""
  6802. },
  6803. {
  6804. "__type__": "cc.Label",
  6805. "_name": "",
  6806. "_objFlags": 0,
  6807. "node": {
  6808. "__id__": 186
  6809. },
  6810. "_enabled": true,
  6811. "_materials": [
  6812. {
  6813. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6814. }
  6815. ],
  6816. "_useOriginalSize": false,
  6817. "_string": "增加提现进度",
  6818. "_N$string": "增加提现进度",
  6819. "_fontSize": 40,
  6820. "_lineHeight": 40,
  6821. "_enableWrapText": true,
  6822. "_N$file": null,
  6823. "_isSystemFontUsed": true,
  6824. "_spacingX": 0,
  6825. "_batchAsBitmap": false,
  6826. "_styleFlags": 1,
  6827. "_underlineHeight": 0,
  6828. "_N$horizontalAlign": 1,
  6829. "_N$verticalAlign": 1,
  6830. "_N$fontFamily": "Arial",
  6831. "_N$overflow": 0,
  6832. "_N$cacheMode": 0,
  6833. "_id": ""
  6834. },
  6835. {
  6836. "__type__": "cc.PrefabInfo",
  6837. "root": {
  6838. "__id__": 1
  6839. },
  6840. "asset": {
  6841. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  6842. },
  6843. "fileId": "ee7jUwHq5Dj50d4Dn1fpMP",
  6844. "sync": false
  6845. },
  6846. {
  6847. "__type__": "cc.Layout",
  6848. "_name": "",
  6849. "_objFlags": 0,
  6850. "node": {
  6851. "__id__": 182
  6852. },
  6853. "_enabled": true,
  6854. "_layoutSize": {
  6855. "__type__": "cc.Size",
  6856. "width": 296,
  6857. "height": 100
  6858. },
  6859. "_resize": 1,
  6860. "_N$layoutType": 1,
  6861. "_N$cellSize": {
  6862. "__type__": "cc.Size",
  6863. "width": 40,
  6864. "height": 40
  6865. },
  6866. "_N$startAxis": 0,
  6867. "_N$paddingLeft": 0,
  6868. "_N$paddingRight": 0,
  6869. "_N$paddingTop": 0,
  6870. "_N$paddingBottom": 0,
  6871. "_N$spacingX": 5,
  6872. "_N$spacingY": 0,
  6873. "_N$verticalDirection": 1,
  6874. "_N$horizontalDirection": 0,
  6875. "_N$affectedByScale": false,
  6876. "_id": ""
  6877. },
  6878. {
  6879. "__type__": "cc.PrefabInfo",
  6880. "root": {
  6881. "__id__": 1
  6882. },
  6883. "asset": {
  6884. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  6885. },
  6886. "fileId": "74md+tNLlPKpK3XE2GirNh",
  6887. "sync": false
  6888. },
  6889. {
  6890. "__type__": "cc.Sprite",
  6891. "_name": "",
  6892. "_objFlags": 0,
  6893. "node": {
  6894. "__id__": 181
  6895. },
  6896. "_enabled": true,
  6897. "_materials": [
  6898. {
  6899. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6900. }
  6901. ],
  6902. "_srcBlendFactor": 770,
  6903. "_dstBlendFactor": 771,
  6904. "_spriteFrame": {
  6905. "__uuid__": "ad4a3dbd-988e-4542-ad67-f8a8cba864ec"
  6906. },
  6907. "_type": 0,
  6908. "_sizeMode": 1,
  6909. "_fillType": 0,
  6910. "_fillCenter": {
  6911. "__type__": "cc.Vec2",
  6912. "x": 0,
  6913. "y": 0
  6914. },
  6915. "_fillStart": 0,
  6916. "_fillRange": 0,
  6917. "_isTrimmedMode": true,
  6918. "_atlas": null,
  6919. "_id": ""
  6920. },
  6921. {
  6922. "__type__": "cc.Button",
  6923. "_name": "",
  6924. "_objFlags": 0,
  6925. "node": {
  6926. "__id__": 181
  6927. },
  6928. "_enabled": true,
  6929. "_normalMaterial": null,
  6930. "_grayMaterial": null,
  6931. "duration": 0.1,
  6932. "zoomScale": 1.2,
  6933. "clickEvents": [
  6934. {
  6935. "__id__": 193
  6936. }
  6937. ],
  6938. "_N$interactable": true,
  6939. "_N$enableAutoGrayEffect": false,
  6940. "_N$transition": 0,
  6941. "transition": 0,
  6942. "_N$normalColor": {
  6943. "__type__": "cc.Color",
  6944. "r": 255,
  6945. "g": 255,
  6946. "b": 255,
  6947. "a": 255
  6948. },
  6949. "_N$pressedColor": {
  6950. "__type__": "cc.Color",
  6951. "r": 211,
  6952. "g": 211,
  6953. "b": 211,
  6954. "a": 255
  6955. },
  6956. "pressedColor": {
  6957. "__type__": "cc.Color",
  6958. "r": 211,
  6959. "g": 211,
  6960. "b": 211,
  6961. "a": 255
  6962. },
  6963. "_N$hoverColor": {
  6964. "__type__": "cc.Color",
  6965. "r": 255,
  6966. "g": 255,
  6967. "b": 255,
  6968. "a": 255
  6969. },
  6970. "hoverColor": {
  6971. "__type__": "cc.Color",
  6972. "r": 255,
  6973. "g": 255,
  6974. "b": 255,
  6975. "a": 255
  6976. },
  6977. "_N$disabledColor": {
  6978. "__type__": "cc.Color",
  6979. "r": 124,
  6980. "g": 124,
  6981. "b": 124,
  6982. "a": 255
  6983. },
  6984. "_N$normalSprite": null,
  6985. "_N$pressedSprite": null,
  6986. "pressedSprite": null,
  6987. "_N$hoverSprite": null,
  6988. "hoverSprite": null,
  6989. "_N$disabledSprite": null,
  6990. "_N$target": null,
  6991. "_id": ""
  6992. },
  6993. {
  6994. "__type__": "cc.ClickEvent",
  6995. "target": {
  6996. "__id__": 1
  6997. },
  6998. "component": "",
  6999. "_componentId": "bb002IlT3tILa3522JfGQ79",
  7000. "handler": "Click_AdProgressBtn",
  7001. "customEventData": ""
  7002. },
  7003. {
  7004. "__type__": "cc.PrefabInfo",
  7005. "root": {
  7006. "__id__": 1
  7007. },
  7008. "asset": {
  7009. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  7010. },
  7011. "fileId": "71w+khDwhO7o74RpBglxut",
  7012. "sync": false
  7013. },
  7014. {
  7015. "__type__": "cc.Node",
  7016. "_name": "txtRemaindAd",
  7017. "_objFlags": 0,
  7018. "_parent": {
  7019. "__id__": 9
  7020. },
  7021. "_children": [
  7022. {
  7023. "__id__": 196
  7024. },
  7025. {
  7026. "__id__": 199
  7027. }
  7028. ],
  7029. "_active": true,
  7030. "_components": [
  7031. {
  7032. "__id__": 202
  7033. }
  7034. ],
  7035. "_prefab": {
  7036. "__id__": 203
  7037. },
  7038. "_opacity": 255,
  7039. "_color": {
  7040. "__type__": "cc.Color",
  7041. "r": 0,
  7042. "g": 0,
  7043. "b": 0,
  7044. "a": 255
  7045. },
  7046. "_contentSize": {
  7047. "__type__": "cc.Size",
  7048. "width": 202.81,
  7049. "height": 31.5
  7050. },
  7051. "_anchorPoint": {
  7052. "__type__": "cc.Vec2",
  7053. "x": 0.5,
  7054. "y": 0.5
  7055. },
  7056. "_trs": {
  7057. "__type__": "TypedArray",
  7058. "ctor": "Float64Array",
  7059. "array": [
  7060. 0,
  7061. -638.936,
  7062. 0,
  7063. 0,
  7064. 0,
  7065. 0,
  7066. 1,
  7067. 1,
  7068. 1,
  7069. 1
  7070. ]
  7071. },
  7072. "_eulerAngles": {
  7073. "__type__": "cc.Vec3",
  7074. "x": 0,
  7075. "y": 0,
  7076. "z": 0
  7077. },
  7078. "_skewX": 0,
  7079. "_skewY": 0,
  7080. "_is3DNode": false,
  7081. "_groupIndex": 0,
  7082. "groupIndex": 0,
  7083. "_id": ""
  7084. },
  7085. {
  7086. "__type__": "cc.PrivateNode",
  7087. "_name": "RICHTEXT_CHILD",
  7088. "_objFlags": 1024,
  7089. "_parent": {
  7090. "__id__": 195
  7091. },
  7092. "_children": [],
  7093. "_active": true,
  7094. "_components": [
  7095. {
  7096. "__id__": 197
  7097. }
  7098. ],
  7099. "_prefab": {
  7100. "__id__": 198
  7101. },
  7102. "_opacity": 255,
  7103. "_color": {
  7104. "__type__": "cc.Color",
  7105. "r": 0,
  7106. "g": 0,
  7107. "b": 0,
  7108. "a": 255
  7109. },
  7110. "_contentSize": {
  7111. "__type__": "cc.Size",
  7112. "width": 175,
  7113. "height": 31.5
  7114. },
  7115. "_anchorPoint": {
  7116. "__type__": "cc.Vec2",
  7117. "x": 0,
  7118. "y": 0
  7119. },
  7120. "_trs": {
  7121. "__type__": "TypedArray",
  7122. "ctor": "Float64Array",
  7123. "array": [
  7124. -101.405,
  7125. -15.75,
  7126. 0,
  7127. 0,
  7128. 0,
  7129. 0,
  7130. 1,
  7131. 1,
  7132. 1,
  7133. 1
  7134. ]
  7135. },
  7136. "_eulerAngles": {
  7137. "__type__": "cc.Vec3",
  7138. "x": 0,
  7139. "y": 0,
  7140. "z": 0
  7141. },
  7142. "_skewX": 0,
  7143. "_skewY": 0,
  7144. "_zIndex": -32768,
  7145. "_is3DNode": false,
  7146. "_groupIndex": 0,
  7147. "groupIndex": 0,
  7148. "showInEditor": false,
  7149. "_id": ""
  7150. },
  7151. {
  7152. "__type__": "cc.Label",
  7153. "_name": "",
  7154. "_objFlags": 0,
  7155. "node": {
  7156. "__id__": 196
  7157. },
  7158. "_enabled": true,
  7159. "_materials": [
  7160. {
  7161. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7162. }
  7163. ],
  7164. "_useOriginalSize": true,
  7165. "_string": "今日剩余次数:",
  7166. "_N$string": "今日剩余次数:",
  7167. "_fontSize": 25,
  7168. "_lineHeight": 25,
  7169. "_enableWrapText": true,
  7170. "_N$file": null,
  7171. "_isSystemFontUsed": true,
  7172. "_spacingX": 0,
  7173. "_batchAsBitmap": false,
  7174. "_styleFlags": 1,
  7175. "_underlineHeight": 0,
  7176. "_N$horizontalAlign": 0,
  7177. "_N$verticalAlign": 1,
  7178. "_N$fontFamily": "Arial",
  7179. "_N$overflow": 0,
  7180. "_N$cacheMode": 0,
  7181. "_id": ""
  7182. },
  7183. {
  7184. "__type__": "cc.PrefabInfo",
  7185. "root": {
  7186. "__id__": 1
  7187. },
  7188. "asset": {
  7189. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  7190. },
  7191. "fileId": "b1wgLFNKdB9JybouO0z7Ph",
  7192. "sync": false
  7193. },
  7194. {
  7195. "__type__": "cc.PrivateNode",
  7196. "_name": "RICHTEXT_CHILD",
  7197. "_objFlags": 1024,
  7198. "_parent": {
  7199. "__id__": 195
  7200. },
  7201. "_children": [],
  7202. "_active": true,
  7203. "_components": [
  7204. {
  7205. "__id__": 200
  7206. }
  7207. ],
  7208. "_prefab": {
  7209. "__id__": 201
  7210. },
  7211. "_opacity": 255,
  7212. "_color": {
  7213. "__type__": "cc.Color",
  7214. "r": 176,
  7215. "g": 45,
  7216. "b": 41,
  7217. "a": 255
  7218. },
  7219. "_contentSize": {
  7220. "__type__": "cc.Size",
  7221. "width": 27.81,
  7222. "height": 31.5
  7223. },
  7224. "_anchorPoint": {
  7225. "__type__": "cc.Vec2",
  7226. "x": 0,
  7227. "y": 0
  7228. },
  7229. "_trs": {
  7230. "__type__": "TypedArray",
  7231. "ctor": "Float64Array",
  7232. "array": [
  7233. 73.595,
  7234. -15.75,
  7235. 0,
  7236. 0,
  7237. 0,
  7238. 0,
  7239. 1,
  7240. 1,
  7241. 1,
  7242. 1
  7243. ]
  7244. },
  7245. "_eulerAngles": {
  7246. "__type__": "cc.Vec3",
  7247. "x": 0,
  7248. "y": 0,
  7249. "z": 0
  7250. },
  7251. "_skewX": 0,
  7252. "_skewY": 0,
  7253. "_zIndex": -32768,
  7254. "_is3DNode": false,
  7255. "_groupIndex": 0,
  7256. "groupIndex": 0,
  7257. "showInEditor": false,
  7258. "_id": ""
  7259. },
  7260. {
  7261. "__type__": "cc.Label",
  7262. "_name": "",
  7263. "_objFlags": 0,
  7264. "node": {
  7265. "__id__": 199
  7266. },
  7267. "_enabled": true,
  7268. "_materials": [
  7269. {
  7270. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7271. }
  7272. ],
  7273. "_useOriginalSize": true,
  7274. "_string": "20",
  7275. "_N$string": "20",
  7276. "_fontSize": 25,
  7277. "_lineHeight": 25,
  7278. "_enableWrapText": true,
  7279. "_N$file": null,
  7280. "_isSystemFontUsed": true,
  7281. "_spacingX": 0,
  7282. "_batchAsBitmap": false,
  7283. "_styleFlags": 1,
  7284. "_underlineHeight": 0,
  7285. "_N$horizontalAlign": 0,
  7286. "_N$verticalAlign": 1,
  7287. "_N$fontFamily": "Arial",
  7288. "_N$overflow": 0,
  7289. "_N$cacheMode": 0,
  7290. "_id": ""
  7291. },
  7292. {
  7293. "__type__": "cc.PrefabInfo",
  7294. "root": {
  7295. "__id__": 1
  7296. },
  7297. "asset": {
  7298. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  7299. },
  7300. "fileId": "692iRT7WtOUZXj6hwiq8tU",
  7301. "sync": false
  7302. },
  7303. {
  7304. "__type__": "cc.RichText",
  7305. "_name": "",
  7306. "_objFlags": 0,
  7307. "node": {
  7308. "__id__": 195
  7309. },
  7310. "_enabled": true,
  7311. "_fontFamily": "Arial",
  7312. "_isSystemFontUsed": true,
  7313. "_N$string": "<b>今日剩余次数:<color=#B02D29>20</color></b>",
  7314. "_N$horizontalAlign": 0,
  7315. "_N$fontSize": 25,
  7316. "_N$font": null,
  7317. "_N$cacheMode": 0,
  7318. "_N$maxWidth": 0,
  7319. "_N$lineHeight": 25,
  7320. "_N$imageAtlas": null,
  7321. "_N$handleTouchEvent": true,
  7322. "_id": ""
  7323. },
  7324. {
  7325. "__type__": "cc.PrefabInfo",
  7326. "root": {
  7327. "__id__": 1
  7328. },
  7329. "asset": {
  7330. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  7331. },
  7332. "fileId": "4fnBpt95VHKZIRswGKEuGe",
  7333. "sync": false
  7334. },
  7335. {
  7336. "__type__": "cc.Node",
  7337. "_name": "btnRbCode",
  7338. "_objFlags": 0,
  7339. "_parent": {
  7340. "__id__": 9
  7341. },
  7342. "_children": [],
  7343. "_active": true,
  7344. "_components": [
  7345. {
  7346. "__id__": 205
  7347. },
  7348. {
  7349. "__id__": 206
  7350. }
  7351. ],
  7352. "_prefab": {
  7353. "__id__": 208
  7354. },
  7355. "_opacity": 255,
  7356. "_color": {
  7357. "__type__": "cc.Color",
  7358. "r": 255,
  7359. "g": 255,
  7360. "b": 143,
  7361. "a": 255
  7362. },
  7363. "_contentSize": {
  7364. "__type__": "cc.Size",
  7365. "width": 102,
  7366. "height": 42.84
  7367. },
  7368. "_anchorPoint": {
  7369. "__type__": "cc.Vec2",
  7370. "x": 0.5,
  7371. "y": 0.5
  7372. },
  7373. "_trs": {
  7374. "__type__": "TypedArray",
  7375. "ctor": "Float64Array",
  7376. "array": [
  7377. 260.555,
  7378. 508.214,
  7379. 0,
  7380. 0,
  7381. 0,
  7382. 0,
  7383. 1,
  7384. 1,
  7385. 1,
  7386. 1
  7387. ]
  7388. },
  7389. "_eulerAngles": {
  7390. "__type__": "cc.Vec3",
  7391. "x": 0,
  7392. "y": 0,
  7393. "z": 0
  7394. },
  7395. "_skewX": 0,
  7396. "_skewY": 0,
  7397. "_is3DNode": false,
  7398. "_groupIndex": 0,
  7399. "groupIndex": 0,
  7400. "_id": ""
  7401. },
  7402. {
  7403. "__type__": "cc.Label",
  7404. "_name": "",
  7405. "_objFlags": 0,
  7406. "node": {
  7407. "__id__": 204
  7408. },
  7409. "_enabled": true,
  7410. "_materials": [
  7411. {
  7412. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7413. }
  7414. ],
  7415. "_useOriginalSize": false,
  7416. "_string": "红包码",
  7417. "_N$string": "红包码",
  7418. "_fontSize": 34,
  7419. "_lineHeight": 34,
  7420. "_enableWrapText": true,
  7421. "_N$file": null,
  7422. "_isSystemFontUsed": true,
  7423. "_spacingX": 0,
  7424. "_batchAsBitmap": false,
  7425. "_styleFlags": 5,
  7426. "_underlineHeight": 0,
  7427. "_N$horizontalAlign": 1,
  7428. "_N$verticalAlign": 1,
  7429. "_N$fontFamily": "Arial",
  7430. "_N$overflow": 0,
  7431. "_N$cacheMode": 1,
  7432. "_id": ""
  7433. },
  7434. {
  7435. "__type__": "cc.Button",
  7436. "_name": "",
  7437. "_objFlags": 0,
  7438. "node": {
  7439. "__id__": 204
  7440. },
  7441. "_enabled": true,
  7442. "_normalMaterial": null,
  7443. "_grayMaterial": null,
  7444. "duration": 0.1,
  7445. "zoomScale": 1.2,
  7446. "clickEvents": [
  7447. {
  7448. "__id__": 207
  7449. }
  7450. ],
  7451. "_N$interactable": true,
  7452. "_N$enableAutoGrayEffect": false,
  7453. "_N$transition": 3,
  7454. "transition": 3,
  7455. "_N$normalColor": {
  7456. "__type__": "cc.Color",
  7457. "r": 255,
  7458. "g": 255,
  7459. "b": 255,
  7460. "a": 255
  7461. },
  7462. "_N$pressedColor": {
  7463. "__type__": "cc.Color",
  7464. "r": 211,
  7465. "g": 211,
  7466. "b": 211,
  7467. "a": 255
  7468. },
  7469. "pressedColor": {
  7470. "__type__": "cc.Color",
  7471. "r": 211,
  7472. "g": 211,
  7473. "b": 211,
  7474. "a": 255
  7475. },
  7476. "_N$hoverColor": {
  7477. "__type__": "cc.Color",
  7478. "r": 255,
  7479. "g": 255,
  7480. "b": 255,
  7481. "a": 255
  7482. },
  7483. "hoverColor": {
  7484. "__type__": "cc.Color",
  7485. "r": 255,
  7486. "g": 255,
  7487. "b": 255,
  7488. "a": 255
  7489. },
  7490. "_N$disabledColor": {
  7491. "__type__": "cc.Color",
  7492. "r": 124,
  7493. "g": 124,
  7494. "b": 124,
  7495. "a": 255
  7496. },
  7497. "_N$normalSprite": null,
  7498. "_N$pressedSprite": null,
  7499. "pressedSprite": null,
  7500. "_N$hoverSprite": null,
  7501. "hoverSprite": null,
  7502. "_N$disabledSprite": null,
  7503. "_N$target": null,
  7504. "_id": ""
  7505. },
  7506. {
  7507. "__type__": "cc.ClickEvent",
  7508. "target": {
  7509. "__id__": 1
  7510. },
  7511. "component": "",
  7512. "_componentId": "bb002IlT3tILa3522JfGQ79",
  7513. "handler": "Click_RedCodeBtn",
  7514. "customEventData": ""
  7515. },
  7516. {
  7517. "__type__": "cc.PrefabInfo",
  7518. "root": {
  7519. "__id__": 1
  7520. },
  7521. "asset": {
  7522. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  7523. },
  7524. "fileId": "84kSEGEKZLgZsdd6kNCfm9",
  7525. "sync": false
  7526. },
  7527. {
  7528. "__type__": "cc.Node",
  7529. "_name": "TestNode",
  7530. "_objFlags": 0,
  7531. "_parent": {
  7532. "__id__": 9
  7533. },
  7534. "_children": [
  7535. {
  7536. "__id__": 210
  7537. },
  7538. {
  7539. "__id__": 221
  7540. },
  7541. {
  7542. "__id__": 236
  7543. }
  7544. ],
  7545. "_active": true,
  7546. "_components": [],
  7547. "_prefab": {
  7548. "__id__": 247
  7549. },
  7550. "_opacity": 255,
  7551. "_color": {
  7552. "__type__": "cc.Color",
  7553. "r": 255,
  7554. "g": 255,
  7555. "b": 255,
  7556. "a": 255
  7557. },
  7558. "_contentSize": {
  7559. "__type__": "cc.Size",
  7560. "width": 0,
  7561. "height": 0
  7562. },
  7563. "_anchorPoint": {
  7564. "__type__": "cc.Vec2",
  7565. "x": 0.5,
  7566. "y": 0.5
  7567. },
  7568. "_trs": {
  7569. "__type__": "TypedArray",
  7570. "ctor": "Float64Array",
  7571. "array": [
  7572. 0,
  7573. 0,
  7574. 0,
  7575. 0,
  7576. 0,
  7577. 0,
  7578. 1,
  7579. 1,
  7580. 1,
  7581. 1
  7582. ]
  7583. },
  7584. "_eulerAngles": {
  7585. "__type__": "cc.Vec3",
  7586. "x": 0,
  7587. "y": 0,
  7588. "z": 0
  7589. },
  7590. "_skewX": 0,
  7591. "_skewY": 0,
  7592. "_is3DNode": false,
  7593. "_groupIndex": 0,
  7594. "groupIndex": 0,
  7595. "_id": ""
  7596. },
  7597. {
  7598. "__type__": "cc.Node",
  7599. "_name": "New Button",
  7600. "_objFlags": 0,
  7601. "_parent": {
  7602. "__id__": 209
  7603. },
  7604. "_children": [
  7605. {
  7606. "__id__": 211
  7607. }
  7608. ],
  7609. "_active": true,
  7610. "_components": [
  7611. {
  7612. "__id__": 218
  7613. }
  7614. ],
  7615. "_prefab": {
  7616. "__id__": 220
  7617. },
  7618. "_opacity": 255,
  7619. "_color": {
  7620. "__type__": "cc.Color",
  7621. "r": 255,
  7622. "g": 255,
  7623. "b": 255,
  7624. "a": 255
  7625. },
  7626. "_contentSize": {
  7627. "__type__": "cc.Size",
  7628. "width": 100,
  7629. "height": 40
  7630. },
  7631. "_anchorPoint": {
  7632. "__type__": "cc.Vec2",
  7633. "x": 0.5,
  7634. "y": 0.5
  7635. },
  7636. "_trs": {
  7637. "__type__": "TypedArray",
  7638. "ctor": "Float64Array",
  7639. "array": [
  7640. -268.541,
  7641. 444.199,
  7642. 0,
  7643. 0,
  7644. 0,
  7645. 0,
  7646. 1,
  7647. 1.084,
  7648. 1.084,
  7649. 1.084
  7650. ]
  7651. },
  7652. "_eulerAngles": {
  7653. "__type__": "cc.Vec3",
  7654. "x": 0,
  7655. "y": 0,
  7656. "z": 0
  7657. },
  7658. "_skewX": 0,
  7659. "_skewY": 0,
  7660. "_is3DNode": false,
  7661. "_groupIndex": 0,
  7662. "groupIndex": 0,
  7663. "_id": ""
  7664. },
  7665. {
  7666. "__type__": "cc.Node",
  7667. "_name": "Background",
  7668. "_objFlags": 512,
  7669. "_parent": {
  7670. "__id__": 210
  7671. },
  7672. "_children": [
  7673. {
  7674. "__id__": 212
  7675. }
  7676. ],
  7677. "_active": true,
  7678. "_components": [
  7679. {
  7680. "__id__": 215
  7681. },
  7682. {
  7683. "__id__": 216
  7684. }
  7685. ],
  7686. "_prefab": {
  7687. "__id__": 217
  7688. },
  7689. "_opacity": 255,
  7690. "_color": {
  7691. "__type__": "cc.Color",
  7692. "r": 255,
  7693. "g": 255,
  7694. "b": 255,
  7695. "a": 255
  7696. },
  7697. "_contentSize": {
  7698. "__type__": "cc.Size",
  7699. "width": 100,
  7700. "height": 40
  7701. },
  7702. "_anchorPoint": {
  7703. "__type__": "cc.Vec2",
  7704. "x": 0.5,
  7705. "y": 0.5
  7706. },
  7707. "_trs": {
  7708. "__type__": "TypedArray",
  7709. "ctor": "Float64Array",
  7710. "array": [
  7711. 0,
  7712. 0,
  7713. 0,
  7714. 0,
  7715. 0,
  7716. 0,
  7717. 1,
  7718. 1,
  7719. 1,
  7720. 1
  7721. ]
  7722. },
  7723. "_eulerAngles": {
  7724. "__type__": "cc.Vec3",
  7725. "x": 0,
  7726. "y": 0,
  7727. "z": 0
  7728. },
  7729. "_skewX": 0,
  7730. "_skewY": 0,
  7731. "_is3DNode": false,
  7732. "_groupIndex": 0,
  7733. "groupIndex": 0,
  7734. "_id": ""
  7735. },
  7736. {
  7737. "__type__": "cc.Node",
  7738. "_name": "Label",
  7739. "_objFlags": 512,
  7740. "_parent": {
  7741. "__id__": 211
  7742. },
  7743. "_children": [],
  7744. "_active": true,
  7745. "_components": [
  7746. {
  7747. "__id__": 213
  7748. }
  7749. ],
  7750. "_prefab": {
  7751. "__id__": 214
  7752. },
  7753. "_opacity": 255,
  7754. "_color": {
  7755. "__type__": "cc.Color",
  7756. "r": 0,
  7757. "g": 0,
  7758. "b": 0,
  7759. "a": 255
  7760. },
  7761. "_contentSize": {
  7762. "__type__": "cc.Size",
  7763. "width": 100,
  7764. "height": 40
  7765. },
  7766. "_anchorPoint": {
  7767. "__type__": "cc.Vec2",
  7768. "x": 0.5,
  7769. "y": 0.5
  7770. },
  7771. "_trs": {
  7772. "__type__": "TypedArray",
  7773. "ctor": "Float64Array",
  7774. "array": [
  7775. 0,
  7776. 0,
  7777. 0,
  7778. 0,
  7779. 0,
  7780. 0,
  7781. 1,
  7782. 1,
  7783. 1,
  7784. 1
  7785. ]
  7786. },
  7787. "_eulerAngles": {
  7788. "__type__": "cc.Vec3",
  7789. "x": 0,
  7790. "y": 0,
  7791. "z": 0
  7792. },
  7793. "_skewX": 0,
  7794. "_skewY": 0,
  7795. "_is3DNode": false,
  7796. "_groupIndex": 0,
  7797. "groupIndex": 0,
  7798. "_id": ""
  7799. },
  7800. {
  7801. "__type__": "cc.Label",
  7802. "_name": "",
  7803. "_objFlags": 0,
  7804. "node": {
  7805. "__id__": 212
  7806. },
  7807. "_enabled": true,
  7808. "_materials": [
  7809. {
  7810. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7811. }
  7812. ],
  7813. "_useOriginalSize": false,
  7814. "_string": "初始化数据",
  7815. "_N$string": "初始化数据",
  7816. "_fontSize": 20,
  7817. "_lineHeight": 40,
  7818. "_enableWrapText": false,
  7819. "_N$file": null,
  7820. "_isSystemFontUsed": true,
  7821. "_spacingX": 0,
  7822. "_batchAsBitmap": false,
  7823. "_styleFlags": 0,
  7824. "_underlineHeight": 0,
  7825. "_N$horizontalAlign": 1,
  7826. "_N$verticalAlign": 1,
  7827. "_N$fontFamily": "Arial",
  7828. "_N$overflow": 1,
  7829. "_N$cacheMode": 1,
  7830. "_id": ""
  7831. },
  7832. {
  7833. "__type__": "cc.PrefabInfo",
  7834. "root": {
  7835. "__id__": 1
  7836. },
  7837. "asset": {
  7838. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  7839. },
  7840. "fileId": "b3LdMTccRN0KDeclvmvdxT",
  7841. "sync": false
  7842. },
  7843. {
  7844. "__type__": "cc.Sprite",
  7845. "_name": "",
  7846. "_objFlags": 0,
  7847. "node": {
  7848. "__id__": 211
  7849. },
  7850. "_enabled": true,
  7851. "_materials": [
  7852. {
  7853. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7854. }
  7855. ],
  7856. "_srcBlendFactor": 770,
  7857. "_dstBlendFactor": 771,
  7858. "_spriteFrame": {
  7859. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7860. },
  7861. "_type": 1,
  7862. "_sizeMode": 0,
  7863. "_fillType": 0,
  7864. "_fillCenter": {
  7865. "__type__": "cc.Vec2",
  7866. "x": 0,
  7867. "y": 0
  7868. },
  7869. "_fillStart": 0,
  7870. "_fillRange": 0,
  7871. "_isTrimmedMode": true,
  7872. "_atlas": null,
  7873. "_id": ""
  7874. },
  7875. {
  7876. "__type__": "cc.Widget",
  7877. "_name": "",
  7878. "_objFlags": 0,
  7879. "node": {
  7880. "__id__": 211
  7881. },
  7882. "_enabled": true,
  7883. "alignMode": 0,
  7884. "_target": null,
  7885. "_alignFlags": 45,
  7886. "_left": 0,
  7887. "_right": 0,
  7888. "_top": 0,
  7889. "_bottom": 0,
  7890. "_verticalCenter": 0,
  7891. "_horizontalCenter": 0,
  7892. "_isAbsLeft": true,
  7893. "_isAbsRight": true,
  7894. "_isAbsTop": true,
  7895. "_isAbsBottom": true,
  7896. "_isAbsHorizontalCenter": true,
  7897. "_isAbsVerticalCenter": true,
  7898. "_originalWidth": 100,
  7899. "_originalHeight": 40,
  7900. "_id": ""
  7901. },
  7902. {
  7903. "__type__": "cc.PrefabInfo",
  7904. "root": {
  7905. "__id__": 1
  7906. },
  7907. "asset": {
  7908. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  7909. },
  7910. "fileId": "d8OuiXUItMurk/PtNdr9yN",
  7911. "sync": false
  7912. },
  7913. {
  7914. "__type__": "cc.Button",
  7915. "_name": "",
  7916. "_objFlags": 0,
  7917. "node": {
  7918. "__id__": 210
  7919. },
  7920. "_enabled": true,
  7921. "_normalMaterial": null,
  7922. "_grayMaterial": null,
  7923. "duration": 0.1,
  7924. "zoomScale": 1.2,
  7925. "clickEvents": [
  7926. {
  7927. "__id__": 219
  7928. }
  7929. ],
  7930. "_N$interactable": true,
  7931. "_N$enableAutoGrayEffect": false,
  7932. "_N$transition": 2,
  7933. "transition": 2,
  7934. "_N$normalColor": {
  7935. "__type__": "cc.Color",
  7936. "r": 230,
  7937. "g": 230,
  7938. "b": 230,
  7939. "a": 255
  7940. },
  7941. "_N$pressedColor": {
  7942. "__type__": "cc.Color",
  7943. "r": 200,
  7944. "g": 200,
  7945. "b": 200,
  7946. "a": 255
  7947. },
  7948. "pressedColor": {
  7949. "__type__": "cc.Color",
  7950. "r": 200,
  7951. "g": 200,
  7952. "b": 200,
  7953. "a": 255
  7954. },
  7955. "_N$hoverColor": {
  7956. "__type__": "cc.Color",
  7957. "r": 255,
  7958. "g": 255,
  7959. "b": 255,
  7960. "a": 255
  7961. },
  7962. "hoverColor": {
  7963. "__type__": "cc.Color",
  7964. "r": 255,
  7965. "g": 255,
  7966. "b": 255,
  7967. "a": 255
  7968. },
  7969. "_N$disabledColor": {
  7970. "__type__": "cc.Color",
  7971. "r": 120,
  7972. "g": 120,
  7973. "b": 120,
  7974. "a": 200
  7975. },
  7976. "_N$normalSprite": {
  7977. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7978. },
  7979. "_N$pressedSprite": {
  7980. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7981. },
  7982. "pressedSprite": {
  7983. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7984. },
  7985. "_N$hoverSprite": {
  7986. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7987. },
  7988. "hoverSprite": {
  7989. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7990. },
  7991. "_N$disabledSprite": {
  7992. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  7993. },
  7994. "_N$target": {
  7995. "__id__": 211
  7996. },
  7997. "_id": ""
  7998. },
  7999. {
  8000. "__type__": "cc.ClickEvent",
  8001. "target": {
  8002. "__id__": 1
  8003. },
  8004. "component": "",
  8005. "_componentId": "bb002IlT3tILa3522JfGQ79",
  8006. "handler": "Click_InitData",
  8007. "customEventData": ""
  8008. },
  8009. {
  8010. "__type__": "cc.PrefabInfo",
  8011. "root": {
  8012. "__id__": 1
  8013. },
  8014. "asset": {
  8015. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  8016. },
  8017. "fileId": "d82dWwa/1BXaSL30p1OCeq",
  8018. "sync": false
  8019. },
  8020. {
  8021. "__type__": "cc.Node",
  8022. "_name": "New EditBox",
  8023. "_objFlags": 0,
  8024. "_parent": {
  8025. "__id__": 209
  8026. },
  8027. "_children": [
  8028. {
  8029. "__id__": 222
  8030. },
  8031. {
  8032. "__id__": 226
  8033. },
  8034. {
  8035. "__id__": 230
  8036. }
  8037. ],
  8038. "_active": true,
  8039. "_components": [
  8040. {
  8041. "__id__": 234
  8042. }
  8043. ],
  8044. "_prefab": {
  8045. "__id__": 235
  8046. },
  8047. "_opacity": 255,
  8048. "_color": {
  8049. "__type__": "cc.Color",
  8050. "r": 255,
  8051. "g": 255,
  8052. "b": 255,
  8053. "a": 255
  8054. },
  8055. "_contentSize": {
  8056. "__type__": "cc.Size",
  8057. "width": 160,
  8058. "height": 40
  8059. },
  8060. "_anchorPoint": {
  8061. "__type__": "cc.Vec2",
  8062. "x": 0.5,
  8063. "y": 0.5
  8064. },
  8065. "_trs": {
  8066. "__type__": "TypedArray",
  8067. "ctor": "Float64Array",
  8068. "array": [
  8069. -244.788,
  8070. 389.698,
  8071. 0,
  8072. 0,
  8073. 0,
  8074. 0,
  8075. 1,
  8076. 1,
  8077. 1,
  8078. 1
  8079. ]
  8080. },
  8081. "_eulerAngles": {
  8082. "__type__": "cc.Vec3",
  8083. "x": 0,
  8084. "y": 0,
  8085. "z": 0
  8086. },
  8087. "_skewX": 0,
  8088. "_skewY": 0,
  8089. "_is3DNode": false,
  8090. "_groupIndex": 0,
  8091. "groupIndex": 0,
  8092. "_id": ""
  8093. },
  8094. {
  8095. "__type__": "cc.Node",
  8096. "_name": "BACKGROUND_SPRITE",
  8097. "_objFlags": 512,
  8098. "_parent": {
  8099. "__id__": 221
  8100. },
  8101. "_children": [],
  8102. "_active": true,
  8103. "_components": [
  8104. {
  8105. "__id__": 223
  8106. },
  8107. {
  8108. "__id__": 224
  8109. }
  8110. ],
  8111. "_prefab": {
  8112. "__id__": 225
  8113. },
  8114. "_opacity": 255,
  8115. "_color": {
  8116. "__type__": "cc.Color",
  8117. "r": 255,
  8118. "g": 255,
  8119. "b": 255,
  8120. "a": 255
  8121. },
  8122. "_contentSize": {
  8123. "__type__": "cc.Size",
  8124. "width": 160,
  8125. "height": 40
  8126. },
  8127. "_anchorPoint": {
  8128. "__type__": "cc.Vec2",
  8129. "x": 0.5,
  8130. "y": 0.5
  8131. },
  8132. "_trs": {
  8133. "__type__": "TypedArray",
  8134. "ctor": "Float64Array",
  8135. "array": [
  8136. 0,
  8137. 0,
  8138. 0,
  8139. 0,
  8140. 0,
  8141. 0,
  8142. 1,
  8143. 1,
  8144. 1,
  8145. 1
  8146. ]
  8147. },
  8148. "_eulerAngles": {
  8149. "__type__": "cc.Vec3",
  8150. "x": 0,
  8151. "y": 0,
  8152. "z": 0
  8153. },
  8154. "_skewX": 0,
  8155. "_skewY": 0,
  8156. "_is3DNode": false,
  8157. "_groupIndex": 0,
  8158. "groupIndex": 0,
  8159. "_id": ""
  8160. },
  8161. {
  8162. "__type__": "cc.Sprite",
  8163. "_name": "",
  8164. "_objFlags": 0,
  8165. "node": {
  8166. "__id__": 222
  8167. },
  8168. "_enabled": true,
  8169. "_materials": [
  8170. {
  8171. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8172. }
  8173. ],
  8174. "_srcBlendFactor": 770,
  8175. "_dstBlendFactor": 771,
  8176. "_spriteFrame": {
  8177. "__uuid__": "ff0e91c7-55c6-4086-a39f-cb6e457b8c3b"
  8178. },
  8179. "_type": 1,
  8180. "_sizeMode": 0,
  8181. "_fillType": 0,
  8182. "_fillCenter": {
  8183. "__type__": "cc.Vec2",
  8184. "x": 0,
  8185. "y": 0
  8186. },
  8187. "_fillStart": 0,
  8188. "_fillRange": 0,
  8189. "_isTrimmedMode": true,
  8190. "_atlas": null,
  8191. "_id": ""
  8192. },
  8193. {
  8194. "__type__": "cc.Widget",
  8195. "_name": "",
  8196. "_objFlags": 0,
  8197. "node": {
  8198. "__id__": 222
  8199. },
  8200. "_enabled": true,
  8201. "alignMode": 0,
  8202. "_target": null,
  8203. "_alignFlags": 45,
  8204. "_left": 0,
  8205. "_right": 0,
  8206. "_top": 0,
  8207. "_bottom": 0,
  8208. "_verticalCenter": 0,
  8209. "_horizontalCenter": 0,
  8210. "_isAbsLeft": true,
  8211. "_isAbsRight": true,
  8212. "_isAbsTop": true,
  8213. "_isAbsBottom": true,
  8214. "_isAbsHorizontalCenter": true,
  8215. "_isAbsVerticalCenter": true,
  8216. "_originalWidth": 160,
  8217. "_originalHeight": 40,
  8218. "_id": ""
  8219. },
  8220. {
  8221. "__type__": "cc.PrefabInfo",
  8222. "root": {
  8223. "__id__": 1
  8224. },
  8225. "asset": {
  8226. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  8227. },
  8228. "fileId": "79MRbHmXFLQ53f30wwOrf6",
  8229. "sync": false
  8230. },
  8231. {
  8232. "__type__": "cc.Node",
  8233. "_name": "TEXT_LABEL",
  8234. "_objFlags": 512,
  8235. "_parent": {
  8236. "__id__": 221
  8237. },
  8238. "_children": [],
  8239. "_active": false,
  8240. "_components": [
  8241. {
  8242. "__id__": 227
  8243. },
  8244. {
  8245. "__id__": 228
  8246. }
  8247. ],
  8248. "_prefab": {
  8249. "__id__": 229
  8250. },
  8251. "_opacity": 255,
  8252. "_color": {
  8253. "__type__": "cc.Color",
  8254. "r": 255,
  8255. "g": 255,
  8256. "b": 255,
  8257. "a": 255
  8258. },
  8259. "_contentSize": {
  8260. "__type__": "cc.Size",
  8261. "width": 158,
  8262. "height": 40
  8263. },
  8264. "_anchorPoint": {
  8265. "__type__": "cc.Vec2",
  8266. "x": 0,
  8267. "y": 1
  8268. },
  8269. "_trs": {
  8270. "__type__": "TypedArray",
  8271. "ctor": "Float64Array",
  8272. "array": [
  8273. -78,
  8274. 20,
  8275. 0,
  8276. 0,
  8277. 0,
  8278. 0,
  8279. 1,
  8280. 1,
  8281. 1,
  8282. 1
  8283. ]
  8284. },
  8285. "_eulerAngles": {
  8286. "__type__": "cc.Vec3",
  8287. "x": 0,
  8288. "y": 0,
  8289. "z": 0
  8290. },
  8291. "_skewX": 0,
  8292. "_skewY": 0,
  8293. "_is3DNode": false,
  8294. "_groupIndex": 0,
  8295. "groupIndex": 0,
  8296. "_id": ""
  8297. },
  8298. {
  8299. "__type__": "cc.Label",
  8300. "_name": "",
  8301. "_objFlags": 0,
  8302. "node": {
  8303. "__id__": 226
  8304. },
  8305. "_enabled": true,
  8306. "_materials": [],
  8307. "_useOriginalSize": true,
  8308. "_string": "",
  8309. "_N$string": "",
  8310. "_fontSize": 20,
  8311. "_lineHeight": 25,
  8312. "_enableWrapText": false,
  8313. "_N$file": null,
  8314. "_isSystemFontUsed": true,
  8315. "_spacingX": 0,
  8316. "_batchAsBitmap": false,
  8317. "_styleFlags": 0,
  8318. "_underlineHeight": 0,
  8319. "_N$horizontalAlign": 0,
  8320. "_N$verticalAlign": 1,
  8321. "_N$fontFamily": "Arial",
  8322. "_N$overflow": 1,
  8323. "_N$cacheMode": 0,
  8324. "_id": ""
  8325. },
  8326. {
  8327. "__type__": "cc.Widget",
  8328. "_name": "",
  8329. "_objFlags": 0,
  8330. "node": {
  8331. "__id__": 226
  8332. },
  8333. "_enabled": true,
  8334. "alignMode": 0,
  8335. "_target": null,
  8336. "_alignFlags": 45,
  8337. "_left": 2,
  8338. "_right": 0,
  8339. "_top": 0,
  8340. "_bottom": 0,
  8341. "_verticalCenter": 0,
  8342. "_horizontalCenter": 0,
  8343. "_isAbsLeft": true,
  8344. "_isAbsRight": true,
  8345. "_isAbsTop": true,
  8346. "_isAbsBottom": true,
  8347. "_isAbsHorizontalCenter": true,
  8348. "_isAbsVerticalCenter": true,
  8349. "_originalWidth": 158,
  8350. "_originalHeight": 40,
  8351. "_id": ""
  8352. },
  8353. {
  8354. "__type__": "cc.PrefabInfo",
  8355. "root": {
  8356. "__id__": 1
  8357. },
  8358. "asset": {
  8359. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  8360. },
  8361. "fileId": "012YzrDqdGH7N/+LnM27Mh",
  8362. "sync": false
  8363. },
  8364. {
  8365. "__type__": "cc.Node",
  8366. "_name": "PLACEHOLDER_LABEL",
  8367. "_objFlags": 512,
  8368. "_parent": {
  8369. "__id__": 221
  8370. },
  8371. "_children": [],
  8372. "_active": true,
  8373. "_components": [
  8374. {
  8375. "__id__": 231
  8376. },
  8377. {
  8378. "__id__": 232
  8379. }
  8380. ],
  8381. "_prefab": {
  8382. "__id__": 233
  8383. },
  8384. "_opacity": 255,
  8385. "_color": {
  8386. "__type__": "cc.Color",
  8387. "r": 187,
  8388. "g": 187,
  8389. "b": 187,
  8390. "a": 255
  8391. },
  8392. "_contentSize": {
  8393. "__type__": "cc.Size",
  8394. "width": 158,
  8395. "height": 40
  8396. },
  8397. "_anchorPoint": {
  8398. "__type__": "cc.Vec2",
  8399. "x": 0,
  8400. "y": 1
  8401. },
  8402. "_trs": {
  8403. "__type__": "TypedArray",
  8404. "ctor": "Float64Array",
  8405. "array": [
  8406. -78,
  8407. 20,
  8408. 0,
  8409. 0,
  8410. 0,
  8411. 0,
  8412. 1,
  8413. 1,
  8414. 1,
  8415. 1
  8416. ]
  8417. },
  8418. "_eulerAngles": {
  8419. "__type__": "cc.Vec3",
  8420. "x": 0,
  8421. "y": 0,
  8422. "z": 0
  8423. },
  8424. "_skewX": 0,
  8425. "_skewY": 0,
  8426. "_is3DNode": false,
  8427. "_groupIndex": 0,
  8428. "groupIndex": 0,
  8429. "_id": ""
  8430. },
  8431. {
  8432. "__type__": "cc.Label",
  8433. "_name": "",
  8434. "_objFlags": 0,
  8435. "node": {
  8436. "__id__": 230
  8437. },
  8438. "_enabled": true,
  8439. "_materials": [
  8440. {
  8441. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8442. }
  8443. ],
  8444. "_useOriginalSize": true,
  8445. "_string": "Enter text here...",
  8446. "_N$string": "Enter text here...",
  8447. "_fontSize": 20,
  8448. "_lineHeight": 25,
  8449. "_enableWrapText": false,
  8450. "_N$file": null,
  8451. "_isSystemFontUsed": true,
  8452. "_spacingX": 0,
  8453. "_batchAsBitmap": false,
  8454. "_styleFlags": 0,
  8455. "_underlineHeight": 0,
  8456. "_N$horizontalAlign": 0,
  8457. "_N$verticalAlign": 1,
  8458. "_N$fontFamily": "Arial",
  8459. "_N$overflow": 1,
  8460. "_N$cacheMode": 0,
  8461. "_id": ""
  8462. },
  8463. {
  8464. "__type__": "cc.Widget",
  8465. "_name": "",
  8466. "_objFlags": 0,
  8467. "node": {
  8468. "__id__": 230
  8469. },
  8470. "_enabled": true,
  8471. "alignMode": 0,
  8472. "_target": null,
  8473. "_alignFlags": 45,
  8474. "_left": 2,
  8475. "_right": 0,
  8476. "_top": 0,
  8477. "_bottom": 0,
  8478. "_verticalCenter": 0,
  8479. "_horizontalCenter": 0,
  8480. "_isAbsLeft": true,
  8481. "_isAbsRight": true,
  8482. "_isAbsTop": true,
  8483. "_isAbsBottom": true,
  8484. "_isAbsHorizontalCenter": true,
  8485. "_isAbsVerticalCenter": true,
  8486. "_originalWidth": 158,
  8487. "_originalHeight": 40,
  8488. "_id": ""
  8489. },
  8490. {
  8491. "__type__": "cc.PrefabInfo",
  8492. "root": {
  8493. "__id__": 1
  8494. },
  8495. "asset": {
  8496. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  8497. },
  8498. "fileId": "f4rvL4dXtKKZqQRb5NkuSn",
  8499. "sync": false
  8500. },
  8501. {
  8502. "__type__": "cc.EditBox",
  8503. "_name": "",
  8504. "_objFlags": 0,
  8505. "node": {
  8506. "__id__": 221
  8507. },
  8508. "_enabled": true,
  8509. "_useOriginalSize": false,
  8510. "_string": "",
  8511. "returnType": 0,
  8512. "maxLength": 8,
  8513. "_tabIndex": 0,
  8514. "editingDidBegan": [],
  8515. "textChanged": [],
  8516. "editingDidEnded": [],
  8517. "editingReturn": [],
  8518. "_N$textLabel": {
  8519. "__id__": 227
  8520. },
  8521. "_N$placeholderLabel": {
  8522. "__id__": 231
  8523. },
  8524. "_N$background": {
  8525. "__id__": 223
  8526. },
  8527. "_N$inputFlag": 5,
  8528. "_N$inputMode": 2,
  8529. "_N$stayOnTop": false,
  8530. "_id": ""
  8531. },
  8532. {
  8533. "__type__": "cc.PrefabInfo",
  8534. "root": {
  8535. "__id__": 1
  8536. },
  8537. "asset": {
  8538. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  8539. },
  8540. "fileId": "95SheUJApOQaTiMLit1en5",
  8541. "sync": false
  8542. },
  8543. {
  8544. "__type__": "cc.Node",
  8545. "_name": "New Button EditBtn",
  8546. "_objFlags": 0,
  8547. "_parent": {
  8548. "__id__": 209
  8549. },
  8550. "_children": [
  8551. {
  8552. "__id__": 237
  8553. }
  8554. ],
  8555. "_active": true,
  8556. "_components": [
  8557. {
  8558. "__id__": 244
  8559. }
  8560. ],
  8561. "_prefab": {
  8562. "__id__": 246
  8563. },
  8564. "_opacity": 255,
  8565. "_color": {
  8566. "__type__": "cc.Color",
  8567. "r": 255,
  8568. "g": 255,
  8569. "b": 255,
  8570. "a": 255
  8571. },
  8572. "_contentSize": {
  8573. "__type__": "cc.Size",
  8574. "width": 72.6,
  8575. "height": 40
  8576. },
  8577. "_anchorPoint": {
  8578. "__type__": "cc.Vec2",
  8579. "x": 0.5,
  8580. "y": 0.5
  8581. },
  8582. "_trs": {
  8583. "__type__": "TypedArray",
  8584. "ctor": "Float64Array",
  8585. "array": [
  8586. -116.9,
  8587. 391.7,
  8588. 0,
  8589. 0,
  8590. 0,
  8591. 0,
  8592. 1,
  8593. 1.084,
  8594. 1.084,
  8595. 1.084
  8596. ]
  8597. },
  8598. "_eulerAngles": {
  8599. "__type__": "cc.Vec3",
  8600. "x": 0,
  8601. "y": 0,
  8602. "z": 0
  8603. },
  8604. "_skewX": 0,
  8605. "_skewY": 0,
  8606. "_is3DNode": false,
  8607. "_groupIndex": 0,
  8608. "groupIndex": 0,
  8609. "_id": ""
  8610. },
  8611. {
  8612. "__type__": "cc.Node",
  8613. "_name": "Background",
  8614. "_objFlags": 512,
  8615. "_parent": {
  8616. "__id__": 236
  8617. },
  8618. "_children": [
  8619. {
  8620. "__id__": 238
  8621. }
  8622. ],
  8623. "_active": true,
  8624. "_components": [
  8625. {
  8626. "__id__": 241
  8627. },
  8628. {
  8629. "__id__": 242
  8630. }
  8631. ],
  8632. "_prefab": {
  8633. "__id__": 243
  8634. },
  8635. "_opacity": 255,
  8636. "_color": {
  8637. "__type__": "cc.Color",
  8638. "r": 255,
  8639. "g": 255,
  8640. "b": 255,
  8641. "a": 255
  8642. },
  8643. "_contentSize": {
  8644. "__type__": "cc.Size",
  8645. "width": 72.6,
  8646. "height": 40
  8647. },
  8648. "_anchorPoint": {
  8649. "__type__": "cc.Vec2",
  8650. "x": 0.5,
  8651. "y": 0.5
  8652. },
  8653. "_trs": {
  8654. "__type__": "TypedArray",
  8655. "ctor": "Float64Array",
  8656. "array": [
  8657. 0,
  8658. 0,
  8659. 0,
  8660. 0,
  8661. 0,
  8662. 0,
  8663. 1,
  8664. 1,
  8665. 1,
  8666. 1
  8667. ]
  8668. },
  8669. "_eulerAngles": {
  8670. "__type__": "cc.Vec3",
  8671. "x": 0,
  8672. "y": 0,
  8673. "z": 0
  8674. },
  8675. "_skewX": 0,
  8676. "_skewY": 0,
  8677. "_is3DNode": false,
  8678. "_groupIndex": 0,
  8679. "groupIndex": 0,
  8680. "_id": ""
  8681. },
  8682. {
  8683. "__type__": "cc.Node",
  8684. "_name": "Label",
  8685. "_objFlags": 512,
  8686. "_parent": {
  8687. "__id__": 237
  8688. },
  8689. "_children": [],
  8690. "_active": true,
  8691. "_components": [
  8692. {
  8693. "__id__": 239
  8694. }
  8695. ],
  8696. "_prefab": {
  8697. "__id__": 240
  8698. },
  8699. "_opacity": 255,
  8700. "_color": {
  8701. "__type__": "cc.Color",
  8702. "r": 0,
  8703. "g": 0,
  8704. "b": 0,
  8705. "a": 255
  8706. },
  8707. "_contentSize": {
  8708. "__type__": "cc.Size",
  8709. "width": 100,
  8710. "height": 40
  8711. },
  8712. "_anchorPoint": {
  8713. "__type__": "cc.Vec2",
  8714. "x": 0.5,
  8715. "y": 0.5
  8716. },
  8717. "_trs": {
  8718. "__type__": "TypedArray",
  8719. "ctor": "Float64Array",
  8720. "array": [
  8721. 0,
  8722. 0,
  8723. 0,
  8724. 0,
  8725. 0,
  8726. 0,
  8727. 1,
  8728. 1,
  8729. 1,
  8730. 1
  8731. ]
  8732. },
  8733. "_eulerAngles": {
  8734. "__type__": "cc.Vec3",
  8735. "x": 0,
  8736. "y": 0,
  8737. "z": 0
  8738. },
  8739. "_skewX": 0,
  8740. "_skewY": 0,
  8741. "_is3DNode": false,
  8742. "_groupIndex": 0,
  8743. "groupIndex": 0,
  8744. "_id": ""
  8745. },
  8746. {
  8747. "__type__": "cc.Label",
  8748. "_name": "",
  8749. "_objFlags": 0,
  8750. "node": {
  8751. "__id__": 238
  8752. },
  8753. "_enabled": true,
  8754. "_materials": [
  8755. {
  8756. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8757. }
  8758. ],
  8759. "_useOriginalSize": false,
  8760. "_string": "确定",
  8761. "_N$string": "确定",
  8762. "_fontSize": 20,
  8763. "_lineHeight": 40,
  8764. "_enableWrapText": false,
  8765. "_N$file": null,
  8766. "_isSystemFontUsed": true,
  8767. "_spacingX": 0,
  8768. "_batchAsBitmap": false,
  8769. "_styleFlags": 0,
  8770. "_underlineHeight": 0,
  8771. "_N$horizontalAlign": 1,
  8772. "_N$verticalAlign": 1,
  8773. "_N$fontFamily": "Arial",
  8774. "_N$overflow": 1,
  8775. "_N$cacheMode": 1,
  8776. "_id": ""
  8777. },
  8778. {
  8779. "__type__": "cc.PrefabInfo",
  8780. "root": {
  8781. "__id__": 1
  8782. },
  8783. "asset": {
  8784. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  8785. },
  8786. "fileId": "c0dv56XDRMi60uBLtUkUsG",
  8787. "sync": false
  8788. },
  8789. {
  8790. "__type__": "cc.Sprite",
  8791. "_name": "",
  8792. "_objFlags": 0,
  8793. "node": {
  8794. "__id__": 237
  8795. },
  8796. "_enabled": true,
  8797. "_materials": [
  8798. {
  8799. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8800. }
  8801. ],
  8802. "_srcBlendFactor": 770,
  8803. "_dstBlendFactor": 771,
  8804. "_spriteFrame": {
  8805. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8806. },
  8807. "_type": 1,
  8808. "_sizeMode": 0,
  8809. "_fillType": 0,
  8810. "_fillCenter": {
  8811. "__type__": "cc.Vec2",
  8812. "x": 0,
  8813. "y": 0
  8814. },
  8815. "_fillStart": 0,
  8816. "_fillRange": 0,
  8817. "_isTrimmedMode": true,
  8818. "_atlas": null,
  8819. "_id": ""
  8820. },
  8821. {
  8822. "__type__": "cc.Widget",
  8823. "_name": "",
  8824. "_objFlags": 0,
  8825. "node": {
  8826. "__id__": 237
  8827. },
  8828. "_enabled": true,
  8829. "alignMode": 0,
  8830. "_target": null,
  8831. "_alignFlags": 45,
  8832. "_left": 0,
  8833. "_right": 0,
  8834. "_top": 0,
  8835. "_bottom": 0,
  8836. "_verticalCenter": 0,
  8837. "_horizontalCenter": 0,
  8838. "_isAbsLeft": true,
  8839. "_isAbsRight": true,
  8840. "_isAbsTop": true,
  8841. "_isAbsBottom": true,
  8842. "_isAbsHorizontalCenter": true,
  8843. "_isAbsVerticalCenter": true,
  8844. "_originalWidth": 100,
  8845. "_originalHeight": 40,
  8846. "_id": ""
  8847. },
  8848. {
  8849. "__type__": "cc.PrefabInfo",
  8850. "root": {
  8851. "__id__": 1
  8852. },
  8853. "asset": {
  8854. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  8855. },
  8856. "fileId": "62GuXUw25C2qQogYlhQPJE",
  8857. "sync": false
  8858. },
  8859. {
  8860. "__type__": "cc.Button",
  8861. "_name": "",
  8862. "_objFlags": 0,
  8863. "node": {
  8864. "__id__": 236
  8865. },
  8866. "_enabled": true,
  8867. "_normalMaterial": null,
  8868. "_grayMaterial": null,
  8869. "duration": 0.1,
  8870. "zoomScale": 1.2,
  8871. "clickEvents": [
  8872. {
  8873. "__id__": 245
  8874. }
  8875. ],
  8876. "_N$interactable": true,
  8877. "_N$enableAutoGrayEffect": false,
  8878. "_N$transition": 2,
  8879. "transition": 2,
  8880. "_N$normalColor": {
  8881. "__type__": "cc.Color",
  8882. "r": 230,
  8883. "g": 230,
  8884. "b": 230,
  8885. "a": 255
  8886. },
  8887. "_N$pressedColor": {
  8888. "__type__": "cc.Color",
  8889. "r": 200,
  8890. "g": 200,
  8891. "b": 200,
  8892. "a": 255
  8893. },
  8894. "pressedColor": {
  8895. "__type__": "cc.Color",
  8896. "r": 200,
  8897. "g": 200,
  8898. "b": 200,
  8899. "a": 255
  8900. },
  8901. "_N$hoverColor": {
  8902. "__type__": "cc.Color",
  8903. "r": 255,
  8904. "g": 255,
  8905. "b": 255,
  8906. "a": 255
  8907. },
  8908. "hoverColor": {
  8909. "__type__": "cc.Color",
  8910. "r": 255,
  8911. "g": 255,
  8912. "b": 255,
  8913. "a": 255
  8914. },
  8915. "_N$disabledColor": {
  8916. "__type__": "cc.Color",
  8917. "r": 120,
  8918. "g": 120,
  8919. "b": 120,
  8920. "a": 200
  8921. },
  8922. "_N$normalSprite": {
  8923. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8924. },
  8925. "_N$pressedSprite": {
  8926. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  8927. },
  8928. "pressedSprite": {
  8929. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  8930. },
  8931. "_N$hoverSprite": {
  8932. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8933. },
  8934. "hoverSprite": {
  8935. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8936. },
  8937. "_N$disabledSprite": {
  8938. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  8939. },
  8940. "_N$target": {
  8941. "__id__": 237
  8942. },
  8943. "_id": ""
  8944. },
  8945. {
  8946. "__type__": "cc.ClickEvent",
  8947. "target": {
  8948. "__id__": 1
  8949. },
  8950. "component": "",
  8951. "_componentId": "bb002IlT3tILa3522JfGQ79",
  8952. "handler": "EditBox_End",
  8953. "customEventData": ""
  8954. },
  8955. {
  8956. "__type__": "cc.PrefabInfo",
  8957. "root": {
  8958. "__id__": 1
  8959. },
  8960. "asset": {
  8961. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  8962. },
  8963. "fileId": "23zFbHZl5F9ZCa9JoRR1lL",
  8964. "sync": false
  8965. },
  8966. {
  8967. "__type__": "cc.PrefabInfo",
  8968. "root": {
  8969. "__id__": 1
  8970. },
  8971. "asset": {
  8972. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  8973. },
  8974. "fileId": "6e9emP6f1Eb6ee1CFSo/lt",
  8975. "sync": false
  8976. },
  8977. {
  8978. "__type__": "cc.Node",
  8979. "_name": "guideRect",
  8980. "_objFlags": 0,
  8981. "_parent": {
  8982. "__id__": 9
  8983. },
  8984. "_children": [],
  8985. "_active": true,
  8986. "_components": [],
  8987. "_prefab": {
  8988. "__id__": 249
  8989. },
  8990. "_opacity": 255,
  8991. "_color": {
  8992. "__type__": "cc.Color",
  8993. "r": 255,
  8994. "g": 255,
  8995. "b": 255,
  8996. "a": 255
  8997. },
  8998. "_contentSize": {
  8999. "__type__": "cc.Size",
  9000. "width": 706,
  9001. "height": 702
  9002. },
  9003. "_anchorPoint": {
  9004. "__type__": "cc.Vec2",
  9005. "x": 0.5,
  9006. "y": 0.5
  9007. },
  9008. "_trs": {
  9009. "__type__": "TypedArray",
  9010. "ctor": "Float64Array",
  9011. "array": [
  9012. 0,
  9013. -161,
  9014. 0,
  9015. 0,
  9016. 0,
  9017. 0,
  9018. 1,
  9019. 1,
  9020. 1,
  9021. 1
  9022. ]
  9023. },
  9024. "_eulerAngles": {
  9025. "__type__": "cc.Vec3",
  9026. "x": 0,
  9027. "y": 0,
  9028. "z": 0
  9029. },
  9030. "_skewX": 0,
  9031. "_skewY": 0,
  9032. "_is3DNode": false,
  9033. "_groupIndex": 0,
  9034. "groupIndex": 0,
  9035. "_id": ""
  9036. },
  9037. {
  9038. "__type__": "cc.PrefabInfo",
  9039. "root": {
  9040. "__id__": 1
  9041. },
  9042. "asset": {
  9043. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  9044. },
  9045. "fileId": "3eFwdhZLZJkINJva6moWHK",
  9046. "sync": false
  9047. },
  9048. {
  9049. "__type__": "cc.Node",
  9050. "_name": "guideRect2",
  9051. "_objFlags": 0,
  9052. "_parent": {
  9053. "__id__": 9
  9054. },
  9055. "_children": [],
  9056. "_active": true,
  9057. "_components": [],
  9058. "_prefab": {
  9059. "__id__": 251
  9060. },
  9061. "_opacity": 255,
  9062. "_color": {
  9063. "__type__": "cc.Color",
  9064. "r": 255,
  9065. "g": 255,
  9066. "b": 255,
  9067. "a": 255
  9068. },
  9069. "_contentSize": {
  9070. "__type__": "cc.Size",
  9071. "width": 706,
  9072. "height": 153
  9073. },
  9074. "_anchorPoint": {
  9075. "__type__": "cc.Vec2",
  9076. "x": 0.5,
  9077. "y": 0.5
  9078. },
  9079. "_trs": {
  9080. "__type__": "TypedArray",
  9081. "ctor": "Float64Array",
  9082. "array": [
  9083. 0,
  9084. -580,
  9085. 0,
  9086. 0,
  9087. 0,
  9088. 0,
  9089. 1,
  9090. 1,
  9091. 1,
  9092. 1
  9093. ]
  9094. },
  9095. "_eulerAngles": {
  9096. "__type__": "cc.Vec3",
  9097. "x": 0,
  9098. "y": 0,
  9099. "z": 0
  9100. },
  9101. "_skewX": 0,
  9102. "_skewY": 0,
  9103. "_is3DNode": false,
  9104. "_groupIndex": 0,
  9105. "groupIndex": 0,
  9106. "_id": ""
  9107. },
  9108. {
  9109. "__type__": "cc.PrefabInfo",
  9110. "root": {
  9111. "__id__": 1
  9112. },
  9113. "asset": {
  9114. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  9115. },
  9116. "fileId": "8cFtLrQ0ZIJKvh20LjSPto",
  9117. "sync": false
  9118. },
  9119. {
  9120. "__type__": "cc.Node",
  9121. "_name": "guideRect3",
  9122. "_objFlags": 0,
  9123. "_parent": {
  9124. "__id__": 9
  9125. },
  9126. "_children": [],
  9127. "_active": true,
  9128. "_components": [],
  9129. "_prefab": {
  9130. "__id__": 253
  9131. },
  9132. "_opacity": 255,
  9133. "_color": {
  9134. "__type__": "cc.Color",
  9135. "r": 255,
  9136. "g": 255,
  9137. "b": 255,
  9138. "a": 255
  9139. },
  9140. "_contentSize": {
  9141. "__type__": "cc.Size",
  9142. "width": 749,
  9143. "height": 351
  9144. },
  9145. "_anchorPoint": {
  9146. "__type__": "cc.Vec2",
  9147. "x": 0.5,
  9148. "y": 0.5
  9149. },
  9150. "_trs": {
  9151. "__type__": "TypedArray",
  9152. "ctor": "Float64Array",
  9153. "array": [
  9154. 0,
  9155. 368,
  9156. 0,
  9157. 0,
  9158. 0,
  9159. 0,
  9160. 1,
  9161. 1,
  9162. 1,
  9163. 1
  9164. ]
  9165. },
  9166. "_eulerAngles": {
  9167. "__type__": "cc.Vec3",
  9168. "x": 0,
  9169. "y": 0,
  9170. "z": 0
  9171. },
  9172. "_skewX": 0,
  9173. "_skewY": 0,
  9174. "_is3DNode": false,
  9175. "_groupIndex": 0,
  9176. "groupIndex": 0,
  9177. "_id": ""
  9178. },
  9179. {
  9180. "__type__": "cc.PrefabInfo",
  9181. "root": {
  9182. "__id__": 1
  9183. },
  9184. "asset": {
  9185. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  9186. },
  9187. "fileId": "7dJBPMQJ5PYI3QCYSbbrvA",
  9188. "sync": false
  9189. },
  9190. {
  9191. "__type__": "cc.Widget",
  9192. "_name": "",
  9193. "_objFlags": 0,
  9194. "node": {
  9195. "__id__": 9
  9196. },
  9197. "_enabled": true,
  9198. "alignMode": 1,
  9199. "_target": null,
  9200. "_alignFlags": 45,
  9201. "_left": 0,
  9202. "_right": 0,
  9203. "_top": 0,
  9204. "_bottom": 0,
  9205. "_verticalCenter": 0,
  9206. "_horizontalCenter": 0,
  9207. "_isAbsLeft": true,
  9208. "_isAbsRight": true,
  9209. "_isAbsTop": true,
  9210. "_isAbsBottom": true,
  9211. "_isAbsHorizontalCenter": true,
  9212. "_isAbsVerticalCenter": true,
  9213. "_originalWidth": 0,
  9214. "_originalHeight": 0,
  9215. "_id": ""
  9216. },
  9217. {
  9218. "__type__": "cc.PrefabInfo",
  9219. "root": {
  9220. "__id__": 1
  9221. },
  9222. "asset": {
  9223. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  9224. },
  9225. "fileId": "82xjjKbbtCZY18qWLTyT3s",
  9226. "sync": false
  9227. },
  9228. {
  9229. "__type__": "cc.Node",
  9230. "_name": "Rb",
  9231. "_objFlags": 0,
  9232. "_parent": {
  9233. "__id__": 1
  9234. },
  9235. "_children": [
  9236. {
  9237. "__id__": 257
  9238. },
  9239. {
  9240. "__id__": 260
  9241. }
  9242. ],
  9243. "_active": false,
  9244. "_components": [
  9245. {
  9246. "__id__": 282
  9247. }
  9248. ],
  9249. "_prefab": {
  9250. "__id__": 283
  9251. },
  9252. "_opacity": 255,
  9253. "_color": {
  9254. "__type__": "cc.Color",
  9255. "r": 255,
  9256. "g": 255,
  9257. "b": 255,
  9258. "a": 255
  9259. },
  9260. "_contentSize": {
  9261. "__type__": "cc.Size",
  9262. "width": 750,
  9263. "height": 1334
  9264. },
  9265. "_anchorPoint": {
  9266. "__type__": "cc.Vec2",
  9267. "x": 0.5,
  9268. "y": 0.5
  9269. },
  9270. "_trs": {
  9271. "__type__": "TypedArray",
  9272. "ctor": "Float64Array",
  9273. "array": [
  9274. 0,
  9275. 0,
  9276. 0,
  9277. 0,
  9278. 0,
  9279. 0,
  9280. 1,
  9281. 1,
  9282. 1,
  9283. 1
  9284. ]
  9285. },
  9286. "_eulerAngles": {
  9287. "__type__": "cc.Vec3",
  9288. "x": 0,
  9289. "y": 0,
  9290. "z": 0
  9291. },
  9292. "_skewX": 0,
  9293. "_skewY": 0,
  9294. "_is3DNode": false,
  9295. "_groupIndex": 0,
  9296. "groupIndex": 0,
  9297. "_id": ""
  9298. },
  9299. {
  9300. "__type__": "cc.Node",
  9301. "_name": "bg",
  9302. "_objFlags": 0,
  9303. "_parent": {
  9304. "__id__": 256
  9305. },
  9306. "_children": [],
  9307. "_active": true,
  9308. "_components": [
  9309. {
  9310. "__id__": 258
  9311. }
  9312. ],
  9313. "_prefab": {
  9314. "__id__": 259
  9315. },
  9316. "_opacity": 180,
  9317. "_color": {
  9318. "__type__": "cc.Color",
  9319. "r": 0,
  9320. "g": 0,
  9321. "b": 0,
  9322. "a": 255
  9323. },
  9324. "_contentSize": {
  9325. "__type__": "cc.Size",
  9326. "width": 750,
  9327. "height": 2000
  9328. },
  9329. "_anchorPoint": {
  9330. "__type__": "cc.Vec2",
  9331. "x": 0.5,
  9332. "y": 0.5
  9333. },
  9334. "_trs": {
  9335. "__type__": "TypedArray",
  9336. "ctor": "Float64Array",
  9337. "array": [
  9338. 0,
  9339. 0,
  9340. 0,
  9341. 0,
  9342. 0,
  9343. 0,
  9344. 1,
  9345. 1,
  9346. 1,
  9347. 1
  9348. ]
  9349. },
  9350. "_eulerAngles": {
  9351. "__type__": "cc.Vec3",
  9352. "x": 0,
  9353. "y": 0,
  9354. "z": 0
  9355. },
  9356. "_skewX": 0,
  9357. "_skewY": 0,
  9358. "_is3DNode": false,
  9359. "_groupIndex": 0,
  9360. "groupIndex": 0,
  9361. "_id": ""
  9362. },
  9363. {
  9364. "__type__": "cc.Sprite",
  9365. "_name": "",
  9366. "_objFlags": 0,
  9367. "node": {
  9368. "__id__": 257
  9369. },
  9370. "_enabled": true,
  9371. "_materials": [
  9372. {
  9373. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9374. }
  9375. ],
  9376. "_srcBlendFactor": 770,
  9377. "_dstBlendFactor": 771,
  9378. "_spriteFrame": {
  9379. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  9380. },
  9381. "_type": 0,
  9382. "_sizeMode": 0,
  9383. "_fillType": 0,
  9384. "_fillCenter": {
  9385. "__type__": "cc.Vec2",
  9386. "x": 0,
  9387. "y": 0
  9388. },
  9389. "_fillStart": 0,
  9390. "_fillRange": 0,
  9391. "_isTrimmedMode": true,
  9392. "_atlas": null,
  9393. "_id": ""
  9394. },
  9395. {
  9396. "__type__": "cc.PrefabInfo",
  9397. "root": {
  9398. "__id__": 1
  9399. },
  9400. "asset": {
  9401. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  9402. },
  9403. "fileId": "1djkrme7FJnbxYzRVN7roL",
  9404. "sync": false
  9405. },
  9406. {
  9407. "__type__": "cc.Node",
  9408. "_name": "Panel",
  9409. "_objFlags": 0,
  9410. "_parent": {
  9411. "__id__": 256
  9412. },
  9413. "_children": [
  9414. {
  9415. "__id__": 261
  9416. },
  9417. {
  9418. "__id__": 264
  9419. },
  9420. {
  9421. "__id__": 267
  9422. },
  9423. {
  9424. "__id__": 271
  9425. },
  9426. {
  9427. "__id__": 276
  9428. }
  9429. ],
  9430. "_active": true,
  9431. "_components": [
  9432. {
  9433. "__id__": 280
  9434. }
  9435. ],
  9436. "_prefab": {
  9437. "__id__": 281
  9438. },
  9439. "_opacity": 255,
  9440. "_color": {
  9441. "__type__": "cc.Color",
  9442. "r": 255,
  9443. "g": 255,
  9444. "b": 255,
  9445. "a": 255
  9446. },
  9447. "_contentSize": {
  9448. "__type__": "cc.Size",
  9449. "width": 750,
  9450. "height": 1334
  9451. },
  9452. "_anchorPoint": {
  9453. "__type__": "cc.Vec2",
  9454. "x": 0.5,
  9455. "y": 0.5
  9456. },
  9457. "_trs": {
  9458. "__type__": "TypedArray",
  9459. "ctor": "Float64Array",
  9460. "array": [
  9461. 0,
  9462. 0,
  9463. 0,
  9464. 0,
  9465. 0,
  9466. 0,
  9467. 1,
  9468. 1,
  9469. 1,
  9470. 1
  9471. ]
  9472. },
  9473. "_eulerAngles": {
  9474. "__type__": "cc.Vec3",
  9475. "x": 0,
  9476. "y": 0,
  9477. "z": 0
  9478. },
  9479. "_skewX": 0,
  9480. "_skewY": 0,
  9481. "_is3DNode": false,
  9482. "_groupIndex": 0,
  9483. "groupIndex": 0,
  9484. "_id": ""
  9485. },
  9486. {
  9487. "__type__": "cc.Node",
  9488. "_name": "New Sprite(Splash)",
  9489. "_objFlags": 0,
  9490. "_parent": {
  9491. "__id__": 260
  9492. },
  9493. "_children": [],
  9494. "_active": true,
  9495. "_components": [
  9496. {
  9497. "__id__": 262
  9498. }
  9499. ],
  9500. "_prefab": {
  9501. "__id__": 263
  9502. },
  9503. "_opacity": 255,
  9504. "_color": {
  9505. "__type__": "cc.Color",
  9506. "r": 255,
  9507. "g": 255,
  9508. "b": 255,
  9509. "a": 255
  9510. },
  9511. "_contentSize": {
  9512. "__type__": "cc.Size",
  9513. "width": 600,
  9514. "height": 790
  9515. },
  9516. "_anchorPoint": {
  9517. "__type__": "cc.Vec2",
  9518. "x": 0.5,
  9519. "y": 0.5
  9520. },
  9521. "_trs": {
  9522. "__type__": "TypedArray",
  9523. "ctor": "Float64Array",
  9524. "array": [
  9525. 0,
  9526. 0,
  9527. 0,
  9528. 0,
  9529. 0,
  9530. 0,
  9531. 1,
  9532. 1,
  9533. 1,
  9534. 1
  9535. ]
  9536. },
  9537. "_eulerAngles": {
  9538. "__type__": "cc.Vec3",
  9539. "x": 0,
  9540. "y": 0,
  9541. "z": 0
  9542. },
  9543. "_skewX": 0,
  9544. "_skewY": 0,
  9545. "_is3DNode": false,
  9546. "_groupIndex": 0,
  9547. "groupIndex": 0,
  9548. "_id": ""
  9549. },
  9550. {
  9551. "__type__": "cc.Sprite",
  9552. "_name": "",
  9553. "_objFlags": 0,
  9554. "node": {
  9555. "__id__": 261
  9556. },
  9557. "_enabled": true,
  9558. "_materials": [
  9559. {
  9560. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9561. }
  9562. ],
  9563. "_srcBlendFactor": 770,
  9564. "_dstBlendFactor": 771,
  9565. "_spriteFrame": {
  9566. "__uuid__": "045ef3f6-5ec1-4d15-8950-1167699aab98"
  9567. },
  9568. "_type": 0,
  9569. "_sizeMode": 1,
  9570. "_fillType": 0,
  9571. "_fillCenter": {
  9572. "__type__": "cc.Vec2",
  9573. "x": 0,
  9574. "y": 0
  9575. },
  9576. "_fillStart": 0,
  9577. "_fillRange": 0,
  9578. "_isTrimmedMode": true,
  9579. "_atlas": null,
  9580. "_id": ""
  9581. },
  9582. {
  9583. "__type__": "cc.PrefabInfo",
  9584. "root": {
  9585. "__id__": 1
  9586. },
  9587. "asset": {
  9588. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  9589. },
  9590. "fileId": "aa25TE3UNBGYuYqA7otnFs",
  9591. "sync": false
  9592. },
  9593. {
  9594. "__type__": "cc.Node",
  9595. "_name": "New Label",
  9596. "_objFlags": 0,
  9597. "_parent": {
  9598. "__id__": 260
  9599. },
  9600. "_children": [],
  9601. "_active": true,
  9602. "_components": [
  9603. {
  9604. "__id__": 265
  9605. }
  9606. ],
  9607. "_prefab": {
  9608. "__id__": 266
  9609. },
  9610. "_opacity": 255,
  9611. "_color": {
  9612. "__type__": "cc.Color",
  9613. "r": 255,
  9614. "g": 224,
  9615. "b": 12,
  9616. "a": 255
  9617. },
  9618. "_contentSize": {
  9619. "__type__": "cc.Size",
  9620. "width": 315,
  9621. "height": 44.1
  9622. },
  9623. "_anchorPoint": {
  9624. "__type__": "cc.Vec2",
  9625. "x": 0.5,
  9626. "y": 0.5
  9627. },
  9628. "_trs": {
  9629. "__type__": "TypedArray",
  9630. "ctor": "Float64Array",
  9631. "array": [
  9632. 0,
  9633. -253.476,
  9634. 0,
  9635. 0,
  9636. 0,
  9637. 0,
  9638. 1,
  9639. 1,
  9640. 1,
  9641. 1
  9642. ]
  9643. },
  9644. "_eulerAngles": {
  9645. "__type__": "cc.Vec3",
  9646. "x": 0,
  9647. "y": 0,
  9648. "z": 0
  9649. },
  9650. "_skewX": 0,
  9651. "_skewY": 0,
  9652. "_is3DNode": false,
  9653. "_groupIndex": 0,
  9654. "groupIndex": 0,
  9655. "_id": ""
  9656. },
  9657. {
  9658. "__type__": "cc.Label",
  9659. "_name": "",
  9660. "_objFlags": 0,
  9661. "node": {
  9662. "__id__": 264
  9663. },
  9664. "_enabled": true,
  9665. "_materials": [
  9666. {
  9667. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9668. }
  9669. ],
  9670. "_useOriginalSize": false,
  9671. "_string": "恭喜发财,大吉大利",
  9672. "_N$string": "恭喜发财,大吉大利",
  9673. "_fontSize": 35,
  9674. "_lineHeight": 35,
  9675. "_enableWrapText": true,
  9676. "_N$file": null,
  9677. "_isSystemFontUsed": true,
  9678. "_spacingX": 0,
  9679. "_batchAsBitmap": false,
  9680. "_styleFlags": 1,
  9681. "_underlineHeight": 0,
  9682. "_N$horizontalAlign": 1,
  9683. "_N$verticalAlign": 1,
  9684. "_N$fontFamily": "Arial",
  9685. "_N$overflow": 0,
  9686. "_N$cacheMode": 1,
  9687. "_id": ""
  9688. },
  9689. {
  9690. "__type__": "cc.PrefabInfo",
  9691. "root": {
  9692. "__id__": 1
  9693. },
  9694. "asset": {
  9695. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  9696. },
  9697. "fileId": "070iRlYxRKCab5GnUEG1kV",
  9698. "sync": false
  9699. },
  9700. {
  9701. "__type__": "cc.Node",
  9702. "_name": "txtNum",
  9703. "_objFlags": 0,
  9704. "_parent": {
  9705. "__id__": 260
  9706. },
  9707. "_children": [],
  9708. "_active": true,
  9709. "_components": [
  9710. {
  9711. "__id__": 268
  9712. },
  9713. {
  9714. "__id__": 269
  9715. }
  9716. ],
  9717. "_prefab": {
  9718. "__id__": 270
  9719. },
  9720. "_opacity": 255,
  9721. "_color": {
  9722. "__type__": "cc.Color",
  9723. "r": 250,
  9724. "g": 226,
  9725. "b": 129,
  9726. "a": 255
  9727. },
  9728. "_contentSize": {
  9729. "__type__": "cc.Size",
  9730. "width": 308.77,
  9731. "height": 167.5
  9732. },
  9733. "_anchorPoint": {
  9734. "__type__": "cc.Vec2",
  9735. "x": 0.5,
  9736. "y": 0.5
  9737. },
  9738. "_trs": {
  9739. "__type__": "TypedArray",
  9740. "ctor": "Float64Array",
  9741. "array": [
  9742. 0,
  9743. -70.367,
  9744. 0,
  9745. 0,
  9746. 0,
  9747. 0,
  9748. 1,
  9749. 1,
  9750. 1,
  9751. 1
  9752. ]
  9753. },
  9754. "_eulerAngles": {
  9755. "__type__": "cc.Vec3",
  9756. "x": 0,
  9757. "y": 0,
  9758. "z": 0
  9759. },
  9760. "_skewX": 0,
  9761. "_skewY": 0,
  9762. "_is3DNode": false,
  9763. "_groupIndex": 0,
  9764. "groupIndex": 0,
  9765. "_id": ""
  9766. },
  9767. {
  9768. "__type__": "cc.Label",
  9769. "_name": "",
  9770. "_objFlags": 0,
  9771. "node": {
  9772. "__id__": 267
  9773. },
  9774. "_enabled": true,
  9775. "_materials": [
  9776. {
  9777. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9778. }
  9779. ],
  9780. "_useOriginalSize": false,
  9781. "_string": "0.3元",
  9782. "_N$string": "0.3元",
  9783. "_fontSize": 125,
  9784. "_lineHeight": 125,
  9785. "_enableWrapText": true,
  9786. "_N$file": null,
  9787. "_isSystemFontUsed": true,
  9788. "_spacingX": 0,
  9789. "_batchAsBitmap": false,
  9790. "_styleFlags": 1,
  9791. "_underlineHeight": 0,
  9792. "_N$horizontalAlign": 1,
  9793. "_N$verticalAlign": 1,
  9794. "_N$fontFamily": "Arial",
  9795. "_N$overflow": 0,
  9796. "_N$cacheMode": 0,
  9797. "_id": ""
  9798. },
  9799. {
  9800. "__type__": "cc.LabelOutline",
  9801. "_name": "",
  9802. "_objFlags": 0,
  9803. "node": {
  9804. "__id__": 267
  9805. },
  9806. "_enabled": true,
  9807. "_color": {
  9808. "__type__": "cc.Color",
  9809. "r": 202,
  9810. "g": 23,
  9811. "b": 29,
  9812. "a": 255
  9813. },
  9814. "_width": 5,
  9815. "_id": ""
  9816. },
  9817. {
  9818. "__type__": "cc.PrefabInfo",
  9819. "root": {
  9820. "__id__": 1
  9821. },
  9822. "asset": {
  9823. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  9824. },
  9825. "fileId": "0ciShQu1hMVKewCAVXnOjI",
  9826. "sync": false
  9827. },
  9828. {
  9829. "__type__": "cc.Node",
  9830. "_name": "btnOpen",
  9831. "_objFlags": 0,
  9832. "_parent": {
  9833. "__id__": 260
  9834. },
  9835. "_children": [],
  9836. "_active": true,
  9837. "_components": [
  9838. {
  9839. "__id__": 272
  9840. },
  9841. {
  9842. "__id__": 273
  9843. }
  9844. ],
  9845. "_prefab": {
  9846. "__id__": 275
  9847. },
  9848. "_opacity": 255,
  9849. "_color": {
  9850. "__type__": "cc.Color",
  9851. "r": 255,
  9852. "g": 255,
  9853. "b": 255,
  9854. "a": 255
  9855. },
  9856. "_contentSize": {
  9857. "__type__": "cc.Size",
  9858. "width": 185,
  9859. "height": 189
  9860. },
  9861. "_anchorPoint": {
  9862. "__type__": "cc.Vec2",
  9863. "x": 0.5,
  9864. "y": 0.5
  9865. },
  9866. "_trs": {
  9867. "__type__": "TypedArray",
  9868. "ctor": "Float64Array",
  9869. "array": [
  9870. 0,
  9871. 159.541,
  9872. 0,
  9873. 0,
  9874. 0,
  9875. 0,
  9876. 1,
  9877. 1,
  9878. 1,
  9879. 1
  9880. ]
  9881. },
  9882. "_eulerAngles": {
  9883. "__type__": "cc.Vec3",
  9884. "x": 0,
  9885. "y": 0,
  9886. "z": 0
  9887. },
  9888. "_skewX": 0,
  9889. "_skewY": 0,
  9890. "_is3DNode": false,
  9891. "_groupIndex": 0,
  9892. "groupIndex": 0,
  9893. "_id": ""
  9894. },
  9895. {
  9896. "__type__": "cc.Sprite",
  9897. "_name": "",
  9898. "_objFlags": 0,
  9899. "node": {
  9900. "__id__": 271
  9901. },
  9902. "_enabled": true,
  9903. "_materials": [
  9904. {
  9905. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9906. }
  9907. ],
  9908. "_srcBlendFactor": 770,
  9909. "_dstBlendFactor": 771,
  9910. "_spriteFrame": {
  9911. "__uuid__": "8439ef46-b1cb-4a56-bacd-4d36acc82e85"
  9912. },
  9913. "_type": 0,
  9914. "_sizeMode": 1,
  9915. "_fillType": 0,
  9916. "_fillCenter": {
  9917. "__type__": "cc.Vec2",
  9918. "x": 0,
  9919. "y": 0
  9920. },
  9921. "_fillStart": 0,
  9922. "_fillRange": 0,
  9923. "_isTrimmedMode": true,
  9924. "_atlas": null,
  9925. "_id": ""
  9926. },
  9927. {
  9928. "__type__": "cc.Button",
  9929. "_name": "",
  9930. "_objFlags": 0,
  9931. "node": {
  9932. "__id__": 271
  9933. },
  9934. "_enabled": true,
  9935. "_normalMaterial": null,
  9936. "_grayMaterial": null,
  9937. "duration": 0.1,
  9938. "zoomScale": 1.2,
  9939. "clickEvents": [
  9940. {
  9941. "__id__": 274
  9942. }
  9943. ],
  9944. "_N$interactable": true,
  9945. "_N$enableAutoGrayEffect": false,
  9946. "_N$transition": 0,
  9947. "transition": 0,
  9948. "_N$normalColor": {
  9949. "__type__": "cc.Color",
  9950. "r": 255,
  9951. "g": 255,
  9952. "b": 255,
  9953. "a": 255
  9954. },
  9955. "_N$pressedColor": {
  9956. "__type__": "cc.Color",
  9957. "r": 211,
  9958. "g": 211,
  9959. "b": 211,
  9960. "a": 255
  9961. },
  9962. "pressedColor": {
  9963. "__type__": "cc.Color",
  9964. "r": 211,
  9965. "g": 211,
  9966. "b": 211,
  9967. "a": 255
  9968. },
  9969. "_N$hoverColor": {
  9970. "__type__": "cc.Color",
  9971. "r": 255,
  9972. "g": 255,
  9973. "b": 255,
  9974. "a": 255
  9975. },
  9976. "hoverColor": {
  9977. "__type__": "cc.Color",
  9978. "r": 255,
  9979. "g": 255,
  9980. "b": 255,
  9981. "a": 255
  9982. },
  9983. "_N$disabledColor": {
  9984. "__type__": "cc.Color",
  9985. "r": 124,
  9986. "g": 124,
  9987. "b": 124,
  9988. "a": 255
  9989. },
  9990. "_N$normalSprite": null,
  9991. "_N$pressedSprite": null,
  9992. "pressedSprite": null,
  9993. "_N$hoverSprite": null,
  9994. "hoverSprite": null,
  9995. "_N$disabledSprite": null,
  9996. "_N$target": null,
  9997. "_id": ""
  9998. },
  9999. {
  10000. "__type__": "cc.ClickEvent",
  10001. "target": {
  10002. "__id__": 1
  10003. },
  10004. "component": "",
  10005. "_componentId": "bb002IlT3tILa3522JfGQ79",
  10006. "handler": "Click_CashOpenBtn",
  10007. "customEventData": ""
  10008. },
  10009. {
  10010. "__type__": "cc.PrefabInfo",
  10011. "root": {
  10012. "__id__": 1
  10013. },
  10014. "asset": {
  10015. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  10016. },
  10017. "fileId": "f9pgFanKdOwqScczcAFIEf",
  10018. "sync": false
  10019. },
  10020. {
  10021. "__type__": "cc.Node",
  10022. "_name": "btnOpenAni",
  10023. "_objFlags": 0,
  10024. "_parent": {
  10025. "__id__": 260
  10026. },
  10027. "_children": [],
  10028. "_active": false,
  10029. "_components": [
  10030. {
  10031. "__id__": 277
  10032. },
  10033. {
  10034. "__id__": 278
  10035. }
  10036. ],
  10037. "_prefab": {
  10038. "__id__": 279
  10039. },
  10040. "_opacity": 255,
  10041. "_color": {
  10042. "__type__": "cc.Color",
  10043. "r": 255,
  10044. "g": 255,
  10045. "b": 255,
  10046. "a": 255
  10047. },
  10048. "_contentSize": {
  10049. "__type__": "cc.Size",
  10050. "width": 205,
  10051. "height": 205
  10052. },
  10053. "_anchorPoint": {
  10054. "__type__": "cc.Vec2",
  10055. "x": 0.5,
  10056. "y": 0.5
  10057. },
  10058. "_trs": {
  10059. "__type__": "TypedArray",
  10060. "ctor": "Float64Array",
  10061. "array": [
  10062. 0,
  10063. 165.929,
  10064. 0,
  10065. 0,
  10066. 0,
  10067. 0,
  10068. 1,
  10069. 1.008,
  10070. 1.008,
  10071. 1.008
  10072. ]
  10073. },
  10074. "_eulerAngles": {
  10075. "__type__": "cc.Vec3",
  10076. "x": 0,
  10077. "y": 0,
  10078. "z": 0
  10079. },
  10080. "_skewX": 0,
  10081. "_skewY": 0,
  10082. "_is3DNode": false,
  10083. "_groupIndex": 0,
  10084. "groupIndex": 0,
  10085. "_id": ""
  10086. },
  10087. {
  10088. "__type__": "cc.Sprite",
  10089. "_name": "",
  10090. "_objFlags": 0,
  10091. "node": {
  10092. "__id__": 276
  10093. },
  10094. "_enabled": true,
  10095. "_materials": [
  10096. {
  10097. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10098. }
  10099. ],
  10100. "_srcBlendFactor": 770,
  10101. "_dstBlendFactor": 771,
  10102. "_spriteFrame": {
  10103. "__uuid__": "dacba312-236e-4777-86d1-7676306e9aa2"
  10104. },
  10105. "_type": 0,
  10106. "_sizeMode": 1,
  10107. "_fillType": 0,
  10108. "_fillCenter": {
  10109. "__type__": "cc.Vec2",
  10110. "x": 0,
  10111. "y": 0
  10112. },
  10113. "_fillStart": 0,
  10114. "_fillRange": 0,
  10115. "_isTrimmedMode": true,
  10116. "_atlas": null,
  10117. "_id": ""
  10118. },
  10119. {
  10120. "__type__": "cc.Animation",
  10121. "_name": "",
  10122. "_objFlags": 0,
  10123. "node": {
  10124. "__id__": 276
  10125. },
  10126. "_enabled": true,
  10127. "_defaultClip": {
  10128. "__uuid__": "355f4df3-1105-4b36-a59f-15c5f49da9b5"
  10129. },
  10130. "_clips": [
  10131. {
  10132. "__uuid__": "355f4df3-1105-4b36-a59f-15c5f49da9b5"
  10133. }
  10134. ],
  10135. "playOnLoad": false,
  10136. "_id": ""
  10137. },
  10138. {
  10139. "__type__": "cc.PrefabInfo",
  10140. "root": {
  10141. "__id__": 1
  10142. },
  10143. "asset": {
  10144. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  10145. },
  10146. "fileId": "70TxwgnpNFw6QWlbPY/mno",
  10147. "sync": false
  10148. },
  10149. {
  10150. "__type__": "cc.Widget",
  10151. "_name": "",
  10152. "_objFlags": 0,
  10153. "node": {
  10154. "__id__": 260
  10155. },
  10156. "_enabled": true,
  10157. "alignMode": 1,
  10158. "_target": null,
  10159. "_alignFlags": 45,
  10160. "_left": 0,
  10161. "_right": 0,
  10162. "_top": 0,
  10163. "_bottom": 0,
  10164. "_verticalCenter": 0,
  10165. "_horizontalCenter": 0,
  10166. "_isAbsLeft": true,
  10167. "_isAbsRight": true,
  10168. "_isAbsTop": true,
  10169. "_isAbsBottom": true,
  10170. "_isAbsHorizontalCenter": true,
  10171. "_isAbsVerticalCenter": true,
  10172. "_originalWidth": 0,
  10173. "_originalHeight": 0,
  10174. "_id": ""
  10175. },
  10176. {
  10177. "__type__": "cc.PrefabInfo",
  10178. "root": {
  10179. "__id__": 1
  10180. },
  10181. "asset": {
  10182. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  10183. },
  10184. "fileId": "15+4UsfMdCdoRbzvW4wSlE",
  10185. "sync": false
  10186. },
  10187. {
  10188. "__type__": "cc.Widget",
  10189. "_name": "",
  10190. "_objFlags": 0,
  10191. "node": {
  10192. "__id__": 256
  10193. },
  10194. "_enabled": true,
  10195. "alignMode": 1,
  10196. "_target": null,
  10197. "_alignFlags": 45,
  10198. "_left": 0,
  10199. "_right": 0,
  10200. "_top": 0,
  10201. "_bottom": 0,
  10202. "_verticalCenter": 0,
  10203. "_horizontalCenter": 0,
  10204. "_isAbsLeft": true,
  10205. "_isAbsRight": true,
  10206. "_isAbsTop": true,
  10207. "_isAbsBottom": true,
  10208. "_isAbsHorizontalCenter": true,
  10209. "_isAbsVerticalCenter": true,
  10210. "_originalWidth": 0,
  10211. "_originalHeight": 0,
  10212. "_id": ""
  10213. },
  10214. {
  10215. "__type__": "cc.PrefabInfo",
  10216. "root": {
  10217. "__id__": 1
  10218. },
  10219. "asset": {
  10220. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  10221. },
  10222. "fileId": "f35lyVqXJPiq8U7VuxKBwR",
  10223. "sync": false
  10224. },
  10225. {
  10226. "__type__": "cc.Node",
  10227. "_name": "CashSurePanel",
  10228. "_objFlags": 0,
  10229. "_parent": {
  10230. "__id__": 1
  10231. },
  10232. "_children": [
  10233. {
  10234. "__id__": 285
  10235. },
  10236. {
  10237. "__id__": 289
  10238. },
  10239. {
  10240. "__id__": 341
  10241. }
  10242. ],
  10243. "_active": false,
  10244. "_components": [
  10245. {
  10246. "__id__": 344
  10247. }
  10248. ],
  10249. "_prefab": {
  10250. "__id__": 345
  10251. },
  10252. "_opacity": 255,
  10253. "_color": {
  10254. "__type__": "cc.Color",
  10255. "r": 255,
  10256. "g": 255,
  10257. "b": 255,
  10258. "a": 255
  10259. },
  10260. "_contentSize": {
  10261. "__type__": "cc.Size",
  10262. "width": 750,
  10263. "height": 1334
  10264. },
  10265. "_anchorPoint": {
  10266. "__type__": "cc.Vec2",
  10267. "x": 0.5,
  10268. "y": 0.5
  10269. },
  10270. "_trs": {
  10271. "__type__": "TypedArray",
  10272. "ctor": "Float64Array",
  10273. "array": [
  10274. 0,
  10275. 0,
  10276. 0,
  10277. 0,
  10278. 0,
  10279. 0,
  10280. 1,
  10281. 1,
  10282. 1,
  10283. 1
  10284. ]
  10285. },
  10286. "_eulerAngles": {
  10287. "__type__": "cc.Vec3",
  10288. "x": 0,
  10289. "y": 0,
  10290. "z": 0
  10291. },
  10292. "_skewX": 0,
  10293. "_skewY": 0,
  10294. "_is3DNode": false,
  10295. "_groupIndex": 0,
  10296. "groupIndex": 0,
  10297. "_id": ""
  10298. },
  10299. {
  10300. "__type__": "cc.Node",
  10301. "_name": "bg",
  10302. "_objFlags": 0,
  10303. "_parent": {
  10304. "__id__": 284
  10305. },
  10306. "_children": [],
  10307. "_active": true,
  10308. "_components": [
  10309. {
  10310. "__id__": 286
  10311. },
  10312. {
  10313. "__id__": 287
  10314. }
  10315. ],
  10316. "_prefab": {
  10317. "__id__": 288
  10318. },
  10319. "_opacity": 255,
  10320. "_color": {
  10321. "__type__": "cc.Color",
  10322. "r": 255,
  10323. "g": 255,
  10324. "b": 255,
  10325. "a": 255
  10326. },
  10327. "_contentSize": {
  10328. "__type__": "cc.Size",
  10329. "width": 750,
  10330. "height": 2000
  10331. },
  10332. "_anchorPoint": {
  10333. "__type__": "cc.Vec2",
  10334. "x": 0.5,
  10335. "y": 0.5
  10336. },
  10337. "_trs": {
  10338. "__type__": "TypedArray",
  10339. "ctor": "Float64Array",
  10340. "array": [
  10341. 0,
  10342. 0,
  10343. 0,
  10344. 0,
  10345. 0,
  10346. 0,
  10347. 1,
  10348. 1,
  10349. 1,
  10350. 1
  10351. ]
  10352. },
  10353. "_eulerAngles": {
  10354. "__type__": "cc.Vec3",
  10355. "x": 0,
  10356. "y": 0,
  10357. "z": 0
  10358. },
  10359. "_skewX": 0,
  10360. "_skewY": 0,
  10361. "_is3DNode": false,
  10362. "_groupIndex": 0,
  10363. "groupIndex": 0,
  10364. "_id": ""
  10365. },
  10366. {
  10367. "__type__": "cc.Sprite",
  10368. "_name": "",
  10369. "_objFlags": 0,
  10370. "node": {
  10371. "__id__": 285
  10372. },
  10373. "_enabled": true,
  10374. "_materials": [
  10375. {
  10376. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10377. }
  10378. ],
  10379. "_srcBlendFactor": 770,
  10380. "_dstBlendFactor": 771,
  10381. "_spriteFrame": {
  10382. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  10383. },
  10384. "_type": 0,
  10385. "_sizeMode": 0,
  10386. "_fillType": 0,
  10387. "_fillCenter": {
  10388. "__type__": "cc.Vec2",
  10389. "x": 0,
  10390. "y": 0
  10391. },
  10392. "_fillStart": 0,
  10393. "_fillRange": 0,
  10394. "_isTrimmedMode": true,
  10395. "_atlas": null,
  10396. "_id": ""
  10397. },
  10398. {
  10399. "__type__": "cc.BlockInputEvents",
  10400. "_name": "",
  10401. "_objFlags": 0,
  10402. "node": {
  10403. "__id__": 285
  10404. },
  10405. "_enabled": true,
  10406. "_id": ""
  10407. },
  10408. {
  10409. "__type__": "cc.PrefabInfo",
  10410. "root": {
  10411. "__id__": 1
  10412. },
  10413. "asset": {
  10414. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  10415. },
  10416. "fileId": "10kw39vRVK+6u5YhJSKD/R",
  10417. "sync": false
  10418. },
  10419. {
  10420. "__type__": "cc.Node",
  10421. "_name": "Panel",
  10422. "_objFlags": 0,
  10423. "_parent": {
  10424. "__id__": 284
  10425. },
  10426. "_children": [
  10427. {
  10428. "__id__": 290
  10429. },
  10430. {
  10431. "__id__": 331
  10432. }
  10433. ],
  10434. "_active": true,
  10435. "_components": [
  10436. {
  10437. "__id__": 339
  10438. }
  10439. ],
  10440. "_prefab": {
  10441. "__id__": 340
  10442. },
  10443. "_opacity": 255,
  10444. "_color": {
  10445. "__type__": "cc.Color",
  10446. "r": 255,
  10447. "g": 255,
  10448. "b": 255,
  10449. "a": 255
  10450. },
  10451. "_contentSize": {
  10452. "__type__": "cc.Size",
  10453. "width": 750,
  10454. "height": 1334
  10455. },
  10456. "_anchorPoint": {
  10457. "__type__": "cc.Vec2",
  10458. "x": 0.5,
  10459. "y": 0.5
  10460. },
  10461. "_trs": {
  10462. "__type__": "TypedArray",
  10463. "ctor": "Float64Array",
  10464. "array": [
  10465. 0,
  10466. 0,
  10467. 0,
  10468. 0,
  10469. 0,
  10470. 0,
  10471. 1,
  10472. 1,
  10473. 1,
  10474. 1
  10475. ]
  10476. },
  10477. "_eulerAngles": {
  10478. "__type__": "cc.Vec3",
  10479. "x": 0,
  10480. "y": 0,
  10481. "z": 0
  10482. },
  10483. "_skewX": 0,
  10484. "_skewY": 0,
  10485. "_is3DNode": false,
  10486. "_groupIndex": 0,
  10487. "groupIndex": 0,
  10488. "_id": ""
  10489. },
  10490. {
  10491. "__type__": "cc.Node",
  10492. "_name": "backNode",
  10493. "_objFlags": 0,
  10494. "_parent": {
  10495. "__id__": 289
  10496. },
  10497. "_children": [
  10498. {
  10499. "__id__": 291
  10500. },
  10501. {
  10502. "__id__": 294
  10503. }
  10504. ],
  10505. "_active": true,
  10506. "_components": [],
  10507. "_prefab": {
  10508. "__id__": 330
  10509. },
  10510. "_opacity": 255,
  10511. "_color": {
  10512. "__type__": "cc.Color",
  10513. "r": 255,
  10514. "g": 255,
  10515. "b": 255,
  10516. "a": 255
  10517. },
  10518. "_contentSize": {
  10519. "__type__": "cc.Size",
  10520. "width": 0,
  10521. "height": 0
  10522. },
  10523. "_anchorPoint": {
  10524. "__type__": "cc.Vec2",
  10525. "x": 0.5,
  10526. "y": 0.5
  10527. },
  10528. "_trs": {
  10529. "__type__": "TypedArray",
  10530. "ctor": "Float64Array",
  10531. "array": [
  10532. 0,
  10533. 0,
  10534. 0,
  10535. 0,
  10536. 0,
  10537. 0,
  10538. 1,
  10539. 1,
  10540. 1,
  10541. 1
  10542. ]
  10543. },
  10544. "_eulerAngles": {
  10545. "__type__": "cc.Vec3",
  10546. "x": 0,
  10547. "y": 0,
  10548. "z": 0
  10549. },
  10550. "_skewX": 0,
  10551. "_skewY": 0,
  10552. "_is3DNode": false,
  10553. "_groupIndex": 0,
  10554. "groupIndex": 0,
  10555. "_id": ""
  10556. },
  10557. {
  10558. "__type__": "cc.Node",
  10559. "_name": "labTitle0",
  10560. "_objFlags": 0,
  10561. "_parent": {
  10562. "__id__": 290
  10563. },
  10564. "_children": [],
  10565. "_active": true,
  10566. "_components": [
  10567. {
  10568. "__id__": 292
  10569. }
  10570. ],
  10571. "_prefab": {
  10572. "__id__": 293
  10573. },
  10574. "_opacity": 255,
  10575. "_color": {
  10576. "__type__": "cc.Color",
  10577. "r": 29,
  10578. "g": 29,
  10579. "b": 29,
  10580. "a": 255
  10581. },
  10582. "_contentSize": {
  10583. "__type__": "cc.Size",
  10584. "width": 414,
  10585. "height": 50.4
  10586. },
  10587. "_anchorPoint": {
  10588. "__type__": "cc.Vec2",
  10589. "x": 0.5,
  10590. "y": 0.5
  10591. },
  10592. "_trs": {
  10593. "__type__": "TypedArray",
  10594. "ctor": "Float64Array",
  10595. "array": [
  10596. 0,
  10597. 408,
  10598. 0,
  10599. 0,
  10600. 0,
  10601. 0,
  10602. 1,
  10603. 1,
  10604. 1,
  10605. 1
  10606. ]
  10607. },
  10608. "_eulerAngles": {
  10609. "__type__": "cc.Vec3",
  10610. "x": 0,
  10611. "y": 0,
  10612. "z": 0
  10613. },
  10614. "_skewX": 0,
  10615. "_skewY": 0,
  10616. "_is3DNode": false,
  10617. "_groupIndex": 0,
  10618. "groupIndex": 0,
  10619. "_id": ""
  10620. },
  10621. {
  10622. "__type__": "cc.Label",
  10623. "_name": "",
  10624. "_objFlags": 0,
  10625. "node": {
  10626. "__id__": 291
  10627. },
  10628. "_enabled": true,
  10629. "_materials": [
  10630. {
  10631. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10632. }
  10633. ],
  10634. "_useOriginalSize": false,
  10635. "_string": "恭喜发财,大吉大利",
  10636. "_N$string": "恭喜发财,大吉大利",
  10637. "_fontSize": 46,
  10638. "_lineHeight": 40,
  10639. "_enableWrapText": true,
  10640. "_N$file": null,
  10641. "_isSystemFontUsed": true,
  10642. "_spacingX": 0,
  10643. "_batchAsBitmap": false,
  10644. "_styleFlags": 1,
  10645. "_underlineHeight": 0,
  10646. "_N$horizontalAlign": 1,
  10647. "_N$verticalAlign": 1,
  10648. "_N$fontFamily": "Arial",
  10649. "_N$overflow": 0,
  10650. "_N$cacheMode": 0,
  10651. "_id": ""
  10652. },
  10653. {
  10654. "__type__": "cc.PrefabInfo",
  10655. "root": {
  10656. "__id__": 1
  10657. },
  10658. "asset": {
  10659. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  10660. },
  10661. "fileId": "2aEfLeH05ApLrBH3FbhAnQ",
  10662. "sync": false
  10663. },
  10664. {
  10665. "__type__": "cc.Node",
  10666. "_name": "moneyPart",
  10667. "_objFlags": 0,
  10668. "_parent": {
  10669. "__id__": 290
  10670. },
  10671. "_children": [
  10672. {
  10673. "__id__": 295
  10674. },
  10675. {
  10676. "__id__": 299
  10677. },
  10678. {
  10679. "__id__": 303
  10680. },
  10681. {
  10682. "__id__": 316
  10683. }
  10684. ],
  10685. "_active": true,
  10686. "_components": [],
  10687. "_prefab": {
  10688. "__id__": 329
  10689. },
  10690. "_opacity": 255,
  10691. "_color": {
  10692. "__type__": "cc.Color",
  10693. "r": 255,
  10694. "g": 255,
  10695. "b": 255,
  10696. "a": 255
  10697. },
  10698. "_contentSize": {
  10699. "__type__": "cc.Size",
  10700. "width": 0,
  10701. "height": 0
  10702. },
  10703. "_anchorPoint": {
  10704. "__type__": "cc.Vec2",
  10705. "x": 0.5,
  10706. "y": 0.5
  10707. },
  10708. "_trs": {
  10709. "__type__": "TypedArray",
  10710. "ctor": "Float64Array",
  10711. "array": [
  10712. 0,
  10713. 0,
  10714. 0,
  10715. 0,
  10716. 0,
  10717. 0,
  10718. 1,
  10719. 1,
  10720. 1,
  10721. 1
  10722. ]
  10723. },
  10724. "_eulerAngles": {
  10725. "__type__": "cc.Vec3",
  10726. "x": 0,
  10727. "y": 0,
  10728. "z": 0
  10729. },
  10730. "_skewX": 0,
  10731. "_skewY": 0,
  10732. "_is3DNode": false,
  10733. "_groupIndex": 0,
  10734. "groupIndex": 0,
  10735. "_id": ""
  10736. },
  10737. {
  10738. "__type__": "cc.Node",
  10739. "_name": "labRedMoneyF",
  10740. "_objFlags": 0,
  10741. "_parent": {
  10742. "__id__": 294
  10743. },
  10744. "_children": [],
  10745. "_active": true,
  10746. "_components": [
  10747. {
  10748. "__id__": 296
  10749. },
  10750. {
  10751. "__id__": 297
  10752. }
  10753. ],
  10754. "_prefab": {
  10755. "__id__": 298
  10756. },
  10757. "_opacity": 255,
  10758. "_color": {
  10759. "__type__": "cc.Color",
  10760. "r": 174,
  10761. "g": 152,
  10762. "b": 114,
  10763. "a": 255
  10764. },
  10765. "_contentSize": {
  10766. "__type__": "cc.Size",
  10767. "width": 245.43,
  10768. "height": 141.6
  10769. },
  10770. "_anchorPoint": {
  10771. "__type__": "cc.Vec2",
  10772. "x": 0.5,
  10773. "y": 0.5
  10774. },
  10775. "_trs": {
  10776. "__type__": "TypedArray",
  10777. "ctor": "Float64Array",
  10778. "array": [
  10779. 0,
  10780. 280.905,
  10781. 0,
  10782. 0,
  10783. 0,
  10784. 0,
  10785. 1,
  10786. 1,
  10787. 1,
  10788. 1
  10789. ]
  10790. },
  10791. "_eulerAngles": {
  10792. "__type__": "cc.Vec3",
  10793. "x": 0,
  10794. "y": 0,
  10795. "z": 0
  10796. },
  10797. "_skewX": 0,
  10798. "_skewY": 0,
  10799. "_is3DNode": false,
  10800. "_groupIndex": 0,
  10801. "groupIndex": 0,
  10802. "_id": ""
  10803. },
  10804. {
  10805. "__type__": "cc.Label",
  10806. "_name": "",
  10807. "_objFlags": 0,
  10808. "node": {
  10809. "__id__": 295
  10810. },
  10811. "_enabled": true,
  10812. "_materials": [
  10813. {
  10814. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10815. }
  10816. ],
  10817. "_useOriginalSize": false,
  10818. "_string": "¥ 0.3",
  10819. "_N$string": "¥ 0.3",
  10820. "_fontSize": 109,
  10821. "_lineHeight": 110,
  10822. "_enableWrapText": true,
  10823. "_N$file": null,
  10824. "_isSystemFontUsed": true,
  10825. "_spacingX": 0,
  10826. "_batchAsBitmap": false,
  10827. "_styleFlags": 0,
  10828. "_underlineHeight": 0,
  10829. "_N$horizontalAlign": 1,
  10830. "_N$verticalAlign": 1,
  10831. "_N$fontFamily": "Arial",
  10832. "_N$overflow": 0,
  10833. "_N$cacheMode": 0,
  10834. "_id": ""
  10835. },
  10836. {
  10837. "__type__": "cc.LabelOutline",
  10838. "_name": "",
  10839. "_objFlags": 0,
  10840. "node": {
  10841. "__id__": 295
  10842. },
  10843. "_enabled": true,
  10844. "_color": {
  10845. "__type__": "cc.Color",
  10846. "r": 174,
  10847. "g": 152,
  10848. "b": 114,
  10849. "a": 255
  10850. },
  10851. "_width": 1.5,
  10852. "_id": ""
  10853. },
  10854. {
  10855. "__type__": "cc.PrefabInfo",
  10856. "root": {
  10857. "__id__": 1
  10858. },
  10859. "asset": {
  10860. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  10861. },
  10862. "fileId": "ecUKbuBx5Oe4TDZN52SrXJ",
  10863. "sync": false
  10864. },
  10865. {
  10866. "__type__": "cc.Node",
  10867. "_name": "labDes",
  10868. "_objFlags": 0,
  10869. "_parent": {
  10870. "__id__": 294
  10871. },
  10872. "_children": [],
  10873. "_active": true,
  10874. "_components": [
  10875. {
  10876. "__id__": 300
  10877. },
  10878. {
  10879. "__id__": 301
  10880. }
  10881. ],
  10882. "_prefab": {
  10883. "__id__": 302
  10884. },
  10885. "_opacity": 255,
  10886. "_color": {
  10887. "__type__": "cc.Color",
  10888. "r": 187,
  10889. "g": 157,
  10890. "b": 104,
  10891. "a": 255
  10892. },
  10893. "_contentSize": {
  10894. "__type__": "cc.Size",
  10895. "width": 408,
  10896. "height": 50.4
  10897. },
  10898. "_anchorPoint": {
  10899. "__type__": "cc.Vec2",
  10900. "x": 0.5,
  10901. "y": 0.5
  10902. },
  10903. "_trs": {
  10904. "__type__": "TypedArray",
  10905. "ctor": "Float64Array",
  10906. "array": [
  10907. 0,
  10908. 150.58100000000002,
  10909. 0,
  10910. 0,
  10911. 0,
  10912. 0,
  10913. 1,
  10914. 1,
  10915. 1,
  10916. 1
  10917. ]
  10918. },
  10919. "_eulerAngles": {
  10920. "__type__": "cc.Vec3",
  10921. "x": 0,
  10922. "y": 0,
  10923. "z": 0
  10924. },
  10925. "_skewX": 0,
  10926. "_skewY": 0,
  10927. "_is3DNode": false,
  10928. "_groupIndex": 0,
  10929. "groupIndex": 0,
  10930. "_id": ""
  10931. },
  10932. {
  10933. "__type__": "cc.Label",
  10934. "_name": "",
  10935. "_objFlags": 0,
  10936. "node": {
  10937. "__id__": 299
  10938. },
  10939. "_enabled": true,
  10940. "_materials": [
  10941. {
  10942. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10943. }
  10944. ],
  10945. "_useOriginalSize": false,
  10946. "_string": "明日最多可得百元现金红包",
  10947. "_N$string": "明日最多可得百元现金红包",
  10948. "_fontSize": 34,
  10949. "_lineHeight": 40,
  10950. "_enableWrapText": true,
  10951. "_N$file": null,
  10952. "_isSystemFontUsed": true,
  10953. "_spacingX": 0,
  10954. "_batchAsBitmap": false,
  10955. "_styleFlags": 0,
  10956. "_underlineHeight": 0,
  10957. "_N$horizontalAlign": 1,
  10958. "_N$verticalAlign": 1,
  10959. "_N$fontFamily": "Arial",
  10960. "_N$overflow": 0,
  10961. "_N$cacheMode": 0,
  10962. "_id": ""
  10963. },
  10964. {
  10965. "__type__": "cc.Button",
  10966. "_name": "",
  10967. "_objFlags": 0,
  10968. "node": {
  10969. "__id__": 299
  10970. },
  10971. "_enabled": true,
  10972. "_normalMaterial": null,
  10973. "_grayMaterial": null,
  10974. "duration": 0.1,
  10975. "zoomScale": 0.8,
  10976. "clickEvents": [
  10977. null
  10978. ],
  10979. "_N$interactable": true,
  10980. "_N$enableAutoGrayEffect": false,
  10981. "_N$transition": 3,
  10982. "transition": 3,
  10983. "_N$normalColor": {
  10984. "__type__": "cc.Color",
  10985. "r": 255,
  10986. "g": 255,
  10987. "b": 255,
  10988. "a": 255
  10989. },
  10990. "_N$pressedColor": {
  10991. "__type__": "cc.Color",
  10992. "r": 211,
  10993. "g": 211,
  10994. "b": 211,
  10995. "a": 255
  10996. },
  10997. "pressedColor": {
  10998. "__type__": "cc.Color",
  10999. "r": 211,
  11000. "g": 211,
  11001. "b": 211,
  11002. "a": 255
  11003. },
  11004. "_N$hoverColor": {
  11005. "__type__": "cc.Color",
  11006. "r": 255,
  11007. "g": 255,
  11008. "b": 255,
  11009. "a": 255
  11010. },
  11011. "hoverColor": {
  11012. "__type__": "cc.Color",
  11013. "r": 255,
  11014. "g": 255,
  11015. "b": 255,
  11016. "a": 255
  11017. },
  11018. "_N$disabledColor": {
  11019. "__type__": "cc.Color",
  11020. "r": 124,
  11021. "g": 124,
  11022. "b": 124,
  11023. "a": 255
  11024. },
  11025. "_N$normalSprite": null,
  11026. "_N$pressedSprite": null,
  11027. "pressedSprite": null,
  11028. "_N$hoverSprite": null,
  11029. "hoverSprite": null,
  11030. "_N$disabledSprite": null,
  11031. "_N$target": {
  11032. "__id__": 299
  11033. },
  11034. "_id": ""
  11035. },
  11036. {
  11037. "__type__": "cc.PrefabInfo",
  11038. "root": {
  11039. "__id__": 1
  11040. },
  11041. "asset": {
  11042. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  11043. },
  11044. "fileId": "17ec+HD9xDB7KBv1gMim1/",
  11045. "sync": false
  11046. },
  11047. {
  11048. "__type__": "cc.Node",
  11049. "_name": "tixian_btn_1",
  11050. "_objFlags": 0,
  11051. "_parent": {
  11052. "__id__": 294
  11053. },
  11054. "_children": [
  11055. {
  11056. "__id__": 304
  11057. }
  11058. ],
  11059. "_active": true,
  11060. "_components": [
  11061. {
  11062. "__id__": 311
  11063. },
  11064. {
  11065. "__id__": 312
  11066. },
  11067. {
  11068. "__id__": 314
  11069. }
  11070. ],
  11071. "_prefab": {
  11072. "__id__": 315
  11073. },
  11074. "_opacity": 255,
  11075. "_color": {
  11076. "__type__": "cc.Color",
  11077. "r": 255,
  11078. "g": 255,
  11079. "b": 255,
  11080. "a": 255
  11081. },
  11082. "_contentSize": {
  11083. "__type__": "cc.Size",
  11084. "width": 400,
  11085. "height": 82
  11086. },
  11087. "_anchorPoint": {
  11088. "__type__": "cc.Vec2",
  11089. "x": 0.5,
  11090. "y": 0.5
  11091. },
  11092. "_trs": {
  11093. "__type__": "TypedArray",
  11094. "ctor": "Float64Array",
  11095. "array": [
  11096. 0,
  11097. -256.347,
  11098. 0,
  11099. 0,
  11100. 0,
  11101. 0,
  11102. 1,
  11103. 1,
  11104. 1,
  11105. 1
  11106. ]
  11107. },
  11108. "_eulerAngles": {
  11109. "__type__": "cc.Vec3",
  11110. "x": 0,
  11111. "y": 0,
  11112. "z": 0
  11113. },
  11114. "_skewX": 0,
  11115. "_skewY": 0,
  11116. "_is3DNode": false,
  11117. "_groupIndex": 0,
  11118. "groupIndex": 0,
  11119. "_id": ""
  11120. },
  11121. {
  11122. "__type__": "cc.Node",
  11123. "_name": "New Layout",
  11124. "_objFlags": 0,
  11125. "_parent": {
  11126. "__id__": 303
  11127. },
  11128. "_children": [
  11129. {
  11130. "__id__": 305
  11131. }
  11132. ],
  11133. "_active": true,
  11134. "_components": [
  11135. {
  11136. "__id__": 308
  11137. },
  11138. {
  11139. "__id__": 309
  11140. }
  11141. ],
  11142. "_prefab": {
  11143. "__id__": 310
  11144. },
  11145. "_opacity": 255,
  11146. "_color": {
  11147. "__type__": "cc.Color",
  11148. "r": 255,
  11149. "g": 255,
  11150. "b": 255,
  11151. "a": 255
  11152. },
  11153. "_contentSize": {
  11154. "__type__": "cc.Size",
  11155. "width": 76,
  11156. "height": 150
  11157. },
  11158. "_anchorPoint": {
  11159. "__type__": "cc.Vec2",
  11160. "x": 0.5,
  11161. "y": 0.5
  11162. },
  11163. "_trs": {
  11164. "__type__": "TypedArray",
  11165. "ctor": "Float64Array",
  11166. "array": [
  11167. 0,
  11168. 0,
  11169. 0,
  11170. 0,
  11171. 0,
  11172. 0,
  11173. 1,
  11174. 1,
  11175. 1,
  11176. 1
  11177. ]
  11178. },
  11179. "_eulerAngles": {
  11180. "__type__": "cc.Vec3",
  11181. "x": 0,
  11182. "y": 0,
  11183. "z": 0
  11184. },
  11185. "_skewX": 0,
  11186. "_skewY": 0,
  11187. "_is3DNode": false,
  11188. "_groupIndex": 0,
  11189. "groupIndex": 0,
  11190. "_id": ""
  11191. },
  11192. {
  11193. "__type__": "cc.Node",
  11194. "_name": "labGet",
  11195. "_objFlags": 0,
  11196. "_parent": {
  11197. "__id__": 304
  11198. },
  11199. "_children": [],
  11200. "_active": true,
  11201. "_components": [
  11202. {
  11203. "__id__": 306
  11204. }
  11205. ],
  11206. "_prefab": {
  11207. "__id__": 307
  11208. },
  11209. "_opacity": 255,
  11210. "_color": {
  11211. "__type__": "cc.Color",
  11212. "r": 255,
  11213. "g": 255,
  11214. "b": 255,
  11215. "a": 255
  11216. },
  11217. "_contentSize": {
  11218. "__type__": "cc.Size",
  11219. "width": 76,
  11220. "height": 50.4
  11221. },
  11222. "_anchorPoint": {
  11223. "__type__": "cc.Vec2",
  11224. "x": 0.5,
  11225. "y": 0.5
  11226. },
  11227. "_trs": {
  11228. "__type__": "TypedArray",
  11229. "ctor": "Float64Array",
  11230. "array": [
  11231. 0,
  11232. 0,
  11233. 0,
  11234. 0,
  11235. 0,
  11236. 0,
  11237. 1,
  11238. 1,
  11239. 1,
  11240. 1
  11241. ]
  11242. },
  11243. "_eulerAngles": {
  11244. "__type__": "cc.Vec3",
  11245. "x": 0,
  11246. "y": 0,
  11247. "z": 0
  11248. },
  11249. "_skewX": 0,
  11250. "_skewY": 0,
  11251. "_is3DNode": false,
  11252. "_groupIndex": 0,
  11253. "groupIndex": 0,
  11254. "_id": ""
  11255. },
  11256. {
  11257. "__type__": "cc.Label",
  11258. "_name": "",
  11259. "_objFlags": 0,
  11260. "node": {
  11261. "__id__": 305
  11262. },
  11263. "_enabled": true,
  11264. "_materials": [
  11265. {
  11266. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11267. }
  11268. ],
  11269. "_useOriginalSize": false,
  11270. "_string": "提现",
  11271. "_N$string": "提现",
  11272. "_fontSize": 38,
  11273. "_lineHeight": 40,
  11274. "_enableWrapText": true,
  11275. "_N$file": null,
  11276. "_isSystemFontUsed": true,
  11277. "_spacingX": 0,
  11278. "_batchAsBitmap": false,
  11279. "_styleFlags": 0,
  11280. "_underlineHeight": 0,
  11281. "_N$horizontalAlign": 1,
  11282. "_N$verticalAlign": 1,
  11283. "_N$fontFamily": "Arial",
  11284. "_N$overflow": 0,
  11285. "_N$cacheMode": 0,
  11286. "_id": ""
  11287. },
  11288. {
  11289. "__type__": "cc.PrefabInfo",
  11290. "root": {
  11291. "__id__": 1
  11292. },
  11293. "asset": {
  11294. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  11295. },
  11296. "fileId": "5aFph1d5FFK5VBVWKpATmd",
  11297. "sync": false
  11298. },
  11299. {
  11300. "__type__": "cc.Sprite",
  11301. "_name": "",
  11302. "_objFlags": 0,
  11303. "node": {
  11304. "__id__": 304
  11305. },
  11306. "_enabled": true,
  11307. "_materials": [
  11308. {
  11309. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11310. }
  11311. ],
  11312. "_srcBlendFactor": 770,
  11313. "_dstBlendFactor": 771,
  11314. "_spriteFrame": null,
  11315. "_type": 1,
  11316. "_sizeMode": 0,
  11317. "_fillType": 0,
  11318. "_fillCenter": {
  11319. "__type__": "cc.Vec2",
  11320. "x": 0,
  11321. "y": 0
  11322. },
  11323. "_fillStart": 0,
  11324. "_fillRange": 0,
  11325. "_isTrimmedMode": true,
  11326. "_atlas": null,
  11327. "_id": ""
  11328. },
  11329. {
  11330. "__type__": "cc.Layout",
  11331. "_name": "",
  11332. "_objFlags": 0,
  11333. "node": {
  11334. "__id__": 304
  11335. },
  11336. "_enabled": true,
  11337. "_layoutSize": {
  11338. "__type__": "cc.Size",
  11339. "width": 76,
  11340. "height": 150
  11341. },
  11342. "_resize": 1,
  11343. "_N$layoutType": 1,
  11344. "_N$cellSize": {
  11345. "__type__": "cc.Size",
  11346. "width": 40,
  11347. "height": 40
  11348. },
  11349. "_N$startAxis": 0,
  11350. "_N$paddingLeft": 0,
  11351. "_N$paddingRight": 0,
  11352. "_N$paddingTop": 0,
  11353. "_N$paddingBottom": 0,
  11354. "_N$spacingX": 10,
  11355. "_N$spacingY": 0,
  11356. "_N$verticalDirection": 1,
  11357. "_N$horizontalDirection": 0,
  11358. "_N$affectedByScale": false,
  11359. "_id": ""
  11360. },
  11361. {
  11362. "__type__": "cc.PrefabInfo",
  11363. "root": {
  11364. "__id__": 1
  11365. },
  11366. "asset": {
  11367. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  11368. },
  11369. "fileId": "e7EXXgOxdIFqMEEZ+mbyVu",
  11370. "sync": false
  11371. },
  11372. {
  11373. "__type__": "cc.Sprite",
  11374. "_name": "",
  11375. "_objFlags": 0,
  11376. "node": {
  11377. "__id__": 303
  11378. },
  11379. "_enabled": true,
  11380. "_materials": [
  11381. {
  11382. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11383. }
  11384. ],
  11385. "_srcBlendFactor": 770,
  11386. "_dstBlendFactor": 771,
  11387. "_spriteFrame": {
  11388. "__uuid__": "88aea606-855e-41c3-817f-d4b5ae74eeba"
  11389. },
  11390. "_type": 0,
  11391. "_sizeMode": 0,
  11392. "_fillType": 0,
  11393. "_fillCenter": {
  11394. "__type__": "cc.Vec2",
  11395. "x": 0,
  11396. "y": 0
  11397. },
  11398. "_fillStart": 0,
  11399. "_fillRange": 0,
  11400. "_isTrimmedMode": true,
  11401. "_atlas": null,
  11402. "_id": ""
  11403. },
  11404. {
  11405. "__type__": "cc.Button",
  11406. "_name": "",
  11407. "_objFlags": 0,
  11408. "node": {
  11409. "__id__": 303
  11410. },
  11411. "_enabled": true,
  11412. "_normalMaterial": null,
  11413. "_grayMaterial": null,
  11414. "duration": 0.1,
  11415. "zoomScale": 0.8,
  11416. "clickEvents": [
  11417. {
  11418. "__id__": 313
  11419. }
  11420. ],
  11421. "_N$interactable": true,
  11422. "_N$enableAutoGrayEffect": false,
  11423. "_N$transition": 3,
  11424. "transition": 3,
  11425. "_N$normalColor": {
  11426. "__type__": "cc.Color",
  11427. "r": 255,
  11428. "g": 255,
  11429. "b": 255,
  11430. "a": 255
  11431. },
  11432. "_N$pressedColor": {
  11433. "__type__": "cc.Color",
  11434. "r": 211,
  11435. "g": 211,
  11436. "b": 211,
  11437. "a": 255
  11438. },
  11439. "pressedColor": {
  11440. "__type__": "cc.Color",
  11441. "r": 211,
  11442. "g": 211,
  11443. "b": 211,
  11444. "a": 255
  11445. },
  11446. "_N$hoverColor": {
  11447. "__type__": "cc.Color",
  11448. "r": 255,
  11449. "g": 255,
  11450. "b": 255,
  11451. "a": 255
  11452. },
  11453. "hoverColor": {
  11454. "__type__": "cc.Color",
  11455. "r": 255,
  11456. "g": 255,
  11457. "b": 255,
  11458. "a": 255
  11459. },
  11460. "_N$disabledColor": {
  11461. "__type__": "cc.Color",
  11462. "r": 124,
  11463. "g": 124,
  11464. "b": 124,
  11465. "a": 255
  11466. },
  11467. "_N$normalSprite": null,
  11468. "_N$pressedSprite": null,
  11469. "pressedSprite": null,
  11470. "_N$hoverSprite": null,
  11471. "hoverSprite": null,
  11472. "_N$disabledSprite": null,
  11473. "_N$target": {
  11474. "__id__": 303
  11475. },
  11476. "_id": ""
  11477. },
  11478. {
  11479. "__type__": "cc.ClickEvent",
  11480. "target": {
  11481. "__id__": 1
  11482. },
  11483. "component": "",
  11484. "_componentId": "bb002IlT3tILa3522JfGQ79",
  11485. "handler": "Click_CashSureBtn",
  11486. "customEventData": ""
  11487. },
  11488. {
  11489. "__type__": "cc.Animation",
  11490. "_name": "",
  11491. "_objFlags": 0,
  11492. "node": {
  11493. "__id__": 303
  11494. },
  11495. "_enabled": true,
  11496. "_defaultClip": {
  11497. "__uuid__": "0ceb1db4-ebc3-4753-896e-4f5bc29e89f4"
  11498. },
  11499. "_clips": [
  11500. {
  11501. "__uuid__": "0ceb1db4-ebc3-4753-896e-4f5bc29e89f4"
  11502. }
  11503. ],
  11504. "playOnLoad": true,
  11505. "_id": ""
  11506. },
  11507. {
  11508. "__type__": "cc.PrefabInfo",
  11509. "root": {
  11510. "__id__": 1
  11511. },
  11512. "asset": {
  11513. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  11514. },
  11515. "fileId": "8fj+rsO59HObRtxf3EbT3y",
  11516. "sync": false
  11517. },
  11518. {
  11519. "__type__": "cc.Node",
  11520. "_name": "authBtn",
  11521. "_objFlags": 0,
  11522. "_parent": {
  11523. "__id__": 294
  11524. },
  11525. "_children": [
  11526. {
  11527. "__id__": 317
  11528. }
  11529. ],
  11530. "_active": false,
  11531. "_components": [
  11532. {
  11533. "__id__": 324
  11534. },
  11535. {
  11536. "__id__": 325
  11537. },
  11538. {
  11539. "__id__": 327
  11540. }
  11541. ],
  11542. "_prefab": {
  11543. "__id__": 328
  11544. },
  11545. "_opacity": 255,
  11546. "_color": {
  11547. "__type__": "cc.Color",
  11548. "r": 255,
  11549. "g": 255,
  11550. "b": 255,
  11551. "a": 255
  11552. },
  11553. "_contentSize": {
  11554. "__type__": "cc.Size",
  11555. "width": 400,
  11556. "height": 82
  11557. },
  11558. "_anchorPoint": {
  11559. "__type__": "cc.Vec2",
  11560. "x": 0.5,
  11561. "y": 0.5
  11562. },
  11563. "_trs": {
  11564. "__type__": "TypedArray",
  11565. "ctor": "Float64Array",
  11566. "array": [
  11567. 0,
  11568. -256.347,
  11569. 0,
  11570. 0,
  11571. 0,
  11572. 0,
  11573. 1,
  11574. 1,
  11575. 1,
  11576. 1
  11577. ]
  11578. },
  11579. "_eulerAngles": {
  11580. "__type__": "cc.Vec3",
  11581. "x": 0,
  11582. "y": 0,
  11583. "z": 0
  11584. },
  11585. "_skewX": 0,
  11586. "_skewY": 0,
  11587. "_is3DNode": false,
  11588. "_groupIndex": 0,
  11589. "groupIndex": 0,
  11590. "_id": ""
  11591. },
  11592. {
  11593. "__type__": "cc.Node",
  11594. "_name": "New Layout",
  11595. "_objFlags": 0,
  11596. "_parent": {
  11597. "__id__": 316
  11598. },
  11599. "_children": [
  11600. {
  11601. "__id__": 318
  11602. }
  11603. ],
  11604. "_active": true,
  11605. "_components": [
  11606. {
  11607. "__id__": 321
  11608. },
  11609. {
  11610. "__id__": 322
  11611. }
  11612. ],
  11613. "_prefab": {
  11614. "__id__": 323
  11615. },
  11616. "_opacity": 255,
  11617. "_color": {
  11618. "__type__": "cc.Color",
  11619. "r": 255,
  11620. "g": 255,
  11621. "b": 255,
  11622. "a": 255
  11623. },
  11624. "_contentSize": {
  11625. "__type__": "cc.Size",
  11626. "width": 228,
  11627. "height": 150
  11628. },
  11629. "_anchorPoint": {
  11630. "__type__": "cc.Vec2",
  11631. "x": 0.5,
  11632. "y": 0.5
  11633. },
  11634. "_trs": {
  11635. "__type__": "TypedArray",
  11636. "ctor": "Float64Array",
  11637. "array": [
  11638. 0,
  11639. 0,
  11640. 0,
  11641. 0,
  11642. 0,
  11643. 0,
  11644. 1,
  11645. 1,
  11646. 1,
  11647. 1
  11648. ]
  11649. },
  11650. "_eulerAngles": {
  11651. "__type__": "cc.Vec3",
  11652. "x": 0,
  11653. "y": 0,
  11654. "z": 0
  11655. },
  11656. "_skewX": 0,
  11657. "_skewY": 0,
  11658. "_is3DNode": false,
  11659. "_groupIndex": 0,
  11660. "groupIndex": 0,
  11661. "_id": ""
  11662. },
  11663. {
  11664. "__type__": "cc.Node",
  11665. "_name": "labGet",
  11666. "_objFlags": 0,
  11667. "_parent": {
  11668. "__id__": 317
  11669. },
  11670. "_children": [],
  11671. "_active": true,
  11672. "_components": [
  11673. {
  11674. "__id__": 319
  11675. }
  11676. ],
  11677. "_prefab": {
  11678. "__id__": 320
  11679. },
  11680. "_opacity": 255,
  11681. "_color": {
  11682. "__type__": "cc.Color",
  11683. "r": 255,
  11684. "g": 255,
  11685. "b": 255,
  11686. "a": 255
  11687. },
  11688. "_contentSize": {
  11689. "__type__": "cc.Size",
  11690. "width": 228,
  11691. "height": 50.4
  11692. },
  11693. "_anchorPoint": {
  11694. "__type__": "cc.Vec2",
  11695. "x": 0.5,
  11696. "y": 0.5
  11697. },
  11698. "_trs": {
  11699. "__type__": "TypedArray",
  11700. "ctor": "Float64Array",
  11701. "array": [
  11702. 0,
  11703. 0,
  11704. 0,
  11705. 0,
  11706. 0,
  11707. 0,
  11708. 1,
  11709. 1,
  11710. 1,
  11711. 1
  11712. ]
  11713. },
  11714. "_eulerAngles": {
  11715. "__type__": "cc.Vec3",
  11716. "x": 0,
  11717. "y": 0,
  11718. "z": 0
  11719. },
  11720. "_skewX": 0,
  11721. "_skewY": 0,
  11722. "_is3DNode": false,
  11723. "_groupIndex": 0,
  11724. "groupIndex": 0,
  11725. "_id": ""
  11726. },
  11727. {
  11728. "__type__": "cc.Label",
  11729. "_name": "",
  11730. "_objFlags": 0,
  11731. "node": {
  11732. "__id__": 318
  11733. },
  11734. "_enabled": true,
  11735. "_materials": [
  11736. {
  11737. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11738. }
  11739. ],
  11740. "_useOriginalSize": false,
  11741. "_string": "微信登录提现",
  11742. "_N$string": "微信登录提现",
  11743. "_fontSize": 38,
  11744. "_lineHeight": 40,
  11745. "_enableWrapText": true,
  11746. "_N$file": null,
  11747. "_isSystemFontUsed": true,
  11748. "_spacingX": 0,
  11749. "_batchAsBitmap": false,
  11750. "_styleFlags": 0,
  11751. "_underlineHeight": 0,
  11752. "_N$horizontalAlign": 1,
  11753. "_N$verticalAlign": 1,
  11754. "_N$fontFamily": "Arial",
  11755. "_N$overflow": 0,
  11756. "_N$cacheMode": 0,
  11757. "_id": ""
  11758. },
  11759. {
  11760. "__type__": "cc.PrefabInfo",
  11761. "root": {
  11762. "__id__": 1
  11763. },
  11764. "asset": {
  11765. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  11766. },
  11767. "fileId": "28LDeAPe9IppJmgMXS0ufz",
  11768. "sync": false
  11769. },
  11770. {
  11771. "__type__": "cc.Sprite",
  11772. "_name": "",
  11773. "_objFlags": 0,
  11774. "node": {
  11775. "__id__": 317
  11776. },
  11777. "_enabled": true,
  11778. "_materials": [
  11779. {
  11780. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11781. }
  11782. ],
  11783. "_srcBlendFactor": 770,
  11784. "_dstBlendFactor": 771,
  11785. "_spriteFrame": null,
  11786. "_type": 1,
  11787. "_sizeMode": 0,
  11788. "_fillType": 0,
  11789. "_fillCenter": {
  11790. "__type__": "cc.Vec2",
  11791. "x": 0,
  11792. "y": 0
  11793. },
  11794. "_fillStart": 0,
  11795. "_fillRange": 0,
  11796. "_isTrimmedMode": true,
  11797. "_atlas": null,
  11798. "_id": ""
  11799. },
  11800. {
  11801. "__type__": "cc.Layout",
  11802. "_name": "",
  11803. "_objFlags": 0,
  11804. "node": {
  11805. "__id__": 317
  11806. },
  11807. "_enabled": true,
  11808. "_layoutSize": {
  11809. "__type__": "cc.Size",
  11810. "width": 228,
  11811. "height": 150
  11812. },
  11813. "_resize": 1,
  11814. "_N$layoutType": 1,
  11815. "_N$cellSize": {
  11816. "__type__": "cc.Size",
  11817. "width": 40,
  11818. "height": 40
  11819. },
  11820. "_N$startAxis": 0,
  11821. "_N$paddingLeft": 0,
  11822. "_N$paddingRight": 0,
  11823. "_N$paddingTop": 0,
  11824. "_N$paddingBottom": 0,
  11825. "_N$spacingX": 10,
  11826. "_N$spacingY": 0,
  11827. "_N$verticalDirection": 1,
  11828. "_N$horizontalDirection": 0,
  11829. "_N$affectedByScale": false,
  11830. "_id": ""
  11831. },
  11832. {
  11833. "__type__": "cc.PrefabInfo",
  11834. "root": {
  11835. "__id__": 1
  11836. },
  11837. "asset": {
  11838. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  11839. },
  11840. "fileId": "cersoLhPlF+KZMQ+kAsUTD",
  11841. "sync": false
  11842. },
  11843. {
  11844. "__type__": "cc.Sprite",
  11845. "_name": "",
  11846. "_objFlags": 0,
  11847. "node": {
  11848. "__id__": 316
  11849. },
  11850. "_enabled": true,
  11851. "_materials": [
  11852. {
  11853. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11854. }
  11855. ],
  11856. "_srcBlendFactor": 770,
  11857. "_dstBlendFactor": 771,
  11858. "_spriteFrame": {
  11859. "__uuid__": "88aea606-855e-41c3-817f-d4b5ae74eeba"
  11860. },
  11861. "_type": 0,
  11862. "_sizeMode": 0,
  11863. "_fillType": 0,
  11864. "_fillCenter": {
  11865. "__type__": "cc.Vec2",
  11866. "x": 0,
  11867. "y": 0
  11868. },
  11869. "_fillStart": 0,
  11870. "_fillRange": 0,
  11871. "_isTrimmedMode": true,
  11872. "_atlas": null,
  11873. "_id": ""
  11874. },
  11875. {
  11876. "__type__": "cc.Button",
  11877. "_name": "",
  11878. "_objFlags": 0,
  11879. "node": {
  11880. "__id__": 316
  11881. },
  11882. "_enabled": true,
  11883. "_normalMaterial": null,
  11884. "_grayMaterial": null,
  11885. "duration": 0.1,
  11886. "zoomScale": 0.8,
  11887. "clickEvents": [
  11888. {
  11889. "__id__": 326
  11890. }
  11891. ],
  11892. "_N$interactable": true,
  11893. "_N$enableAutoGrayEffect": false,
  11894. "_N$transition": 3,
  11895. "transition": 3,
  11896. "_N$normalColor": {
  11897. "__type__": "cc.Color",
  11898. "r": 255,
  11899. "g": 255,
  11900. "b": 255,
  11901. "a": 255
  11902. },
  11903. "_N$pressedColor": {
  11904. "__type__": "cc.Color",
  11905. "r": 211,
  11906. "g": 211,
  11907. "b": 211,
  11908. "a": 255
  11909. },
  11910. "pressedColor": {
  11911. "__type__": "cc.Color",
  11912. "r": 211,
  11913. "g": 211,
  11914. "b": 211,
  11915. "a": 255
  11916. },
  11917. "_N$hoverColor": {
  11918. "__type__": "cc.Color",
  11919. "r": 255,
  11920. "g": 255,
  11921. "b": 255,
  11922. "a": 255
  11923. },
  11924. "hoverColor": {
  11925. "__type__": "cc.Color",
  11926. "r": 255,
  11927. "g": 255,
  11928. "b": 255,
  11929. "a": 255
  11930. },
  11931. "_N$disabledColor": {
  11932. "__type__": "cc.Color",
  11933. "r": 124,
  11934. "g": 124,
  11935. "b": 124,
  11936. "a": 255
  11937. },
  11938. "_N$normalSprite": null,
  11939. "_N$pressedSprite": null,
  11940. "pressedSprite": null,
  11941. "_N$hoverSprite": null,
  11942. "hoverSprite": null,
  11943. "_N$disabledSprite": null,
  11944. "_N$target": {
  11945. "__id__": 316
  11946. },
  11947. "_id": ""
  11948. },
  11949. {
  11950. "__type__": "cc.ClickEvent",
  11951. "target": null,
  11952. "component": "",
  11953. "_componentId": "",
  11954. "handler": "",
  11955. "customEventData": ""
  11956. },
  11957. {
  11958. "__type__": "cc.Animation",
  11959. "_name": "",
  11960. "_objFlags": 0,
  11961. "node": {
  11962. "__id__": 316
  11963. },
  11964. "_enabled": true,
  11965. "_defaultClip": {
  11966. "__uuid__": "0ceb1db4-ebc3-4753-896e-4f5bc29e89f4"
  11967. },
  11968. "_clips": [
  11969. {
  11970. "__uuid__": "0ceb1db4-ebc3-4753-896e-4f5bc29e89f4"
  11971. }
  11972. ],
  11973. "playOnLoad": true,
  11974. "_id": ""
  11975. },
  11976. {
  11977. "__type__": "cc.PrefabInfo",
  11978. "root": {
  11979. "__id__": 1
  11980. },
  11981. "asset": {
  11982. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  11983. },
  11984. "fileId": "8aU+PUiK5DybJBKs+PHoqG",
  11985. "sync": false
  11986. },
  11987. {
  11988. "__type__": "cc.PrefabInfo",
  11989. "root": {
  11990. "__id__": 1
  11991. },
  11992. "asset": {
  11993. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  11994. },
  11995. "fileId": "c02QeEmLtAoLJU9QE+Qvg5",
  11996. "sync": false
  11997. },
  11998. {
  11999. "__type__": "cc.PrefabInfo",
  12000. "root": {
  12001. "__id__": 1
  12002. },
  12003. "asset": {
  12004. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  12005. },
  12006. "fileId": "faIVq1n7JFYKY0Pe5HwHQp",
  12007. "sync": false
  12008. },
  12009. {
  12010. "__type__": "cc.Node",
  12011. "_name": "btnFinish",
  12012. "_objFlags": 0,
  12013. "_parent": {
  12014. "__id__": 289
  12015. },
  12016. "_children": [
  12017. {
  12018. "__id__": 332
  12019. }
  12020. ],
  12021. "_active": false,
  12022. "_components": [
  12023. {
  12024. "__id__": 335
  12025. },
  12026. {
  12027. "__id__": 336
  12028. }
  12029. ],
  12030. "_prefab": {
  12031. "__id__": 338
  12032. },
  12033. "_opacity": 255,
  12034. "_color": {
  12035. "__type__": "cc.Color",
  12036. "r": 255,
  12037. "g": 255,
  12038. "b": 255,
  12039. "a": 255
  12040. },
  12041. "_contentSize": {
  12042. "__type__": "cc.Size",
  12043. "width": 330,
  12044. "height": 70
  12045. },
  12046. "_anchorPoint": {
  12047. "__type__": "cc.Vec2",
  12048. "x": 0.5,
  12049. "y": 0.5
  12050. },
  12051. "_trs": {
  12052. "__type__": "TypedArray",
  12053. "ctor": "Float64Array",
  12054. "array": [
  12055. 0,
  12056. -462.014,
  12057. 0,
  12058. 0,
  12059. 0,
  12060. 0,
  12061. 1,
  12062. 1,
  12063. 1,
  12064. 1
  12065. ]
  12066. },
  12067. "_eulerAngles": {
  12068. "__type__": "cc.Vec3",
  12069. "x": 0,
  12070. "y": 0,
  12071. "z": 0
  12072. },
  12073. "_skewX": 0,
  12074. "_skewY": 0,
  12075. "_is3DNode": false,
  12076. "_groupIndex": 0,
  12077. "groupIndex": 0,
  12078. "_id": ""
  12079. },
  12080. {
  12081. "__type__": "cc.Node",
  12082. "_name": "New Label",
  12083. "_objFlags": 0,
  12084. "_parent": {
  12085. "__id__": 331
  12086. },
  12087. "_children": [],
  12088. "_active": true,
  12089. "_components": [
  12090. {
  12091. "__id__": 333
  12092. }
  12093. ],
  12094. "_prefab": {
  12095. "__id__": 334
  12096. },
  12097. "_opacity": 255,
  12098. "_color": {
  12099. "__type__": "cc.Color",
  12100. "r": 2,
  12101. "g": 196,
  12102. "b": 92,
  12103. "a": 255
  12104. },
  12105. "_contentSize": {
  12106. "__type__": "cc.Size",
  12107. "width": 64,
  12108. "height": 50.4
  12109. },
  12110. "_anchorPoint": {
  12111. "__type__": "cc.Vec2",
  12112. "x": 0.5,
  12113. "y": 0.5
  12114. },
  12115. "_trs": {
  12116. "__type__": "TypedArray",
  12117. "ctor": "Float64Array",
  12118. "array": [
  12119. 0,
  12120. 0,
  12121. 0,
  12122. 0,
  12123. 0,
  12124. 0,
  12125. 1,
  12126. 1,
  12127. 1,
  12128. 1
  12129. ]
  12130. },
  12131. "_eulerAngles": {
  12132. "__type__": "cc.Vec3",
  12133. "x": 0,
  12134. "y": 0,
  12135. "z": 0
  12136. },
  12137. "_skewX": 0,
  12138. "_skewY": 0,
  12139. "_is3DNode": false,
  12140. "_groupIndex": 0,
  12141. "groupIndex": 0,
  12142. "_id": ""
  12143. },
  12144. {
  12145. "__type__": "cc.Label",
  12146. "_name": "",
  12147. "_objFlags": 0,
  12148. "node": {
  12149. "__id__": 332
  12150. },
  12151. "_enabled": true,
  12152. "_materials": [
  12153. {
  12154. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12155. }
  12156. ],
  12157. "_useOriginalSize": false,
  12158. "_string": "完成",
  12159. "_N$string": "完成",
  12160. "_fontSize": 32,
  12161. "_lineHeight": 40,
  12162. "_enableWrapText": true,
  12163. "_N$file": null,
  12164. "_isSystemFontUsed": true,
  12165. "_spacingX": 0,
  12166. "_batchAsBitmap": false,
  12167. "_styleFlags": 0,
  12168. "_underlineHeight": 0,
  12169. "_N$horizontalAlign": 1,
  12170. "_N$verticalAlign": 1,
  12171. "_N$fontFamily": "Arial",
  12172. "_N$overflow": 0,
  12173. "_N$cacheMode": 1,
  12174. "_id": ""
  12175. },
  12176. {
  12177. "__type__": "cc.PrefabInfo",
  12178. "root": {
  12179. "__id__": 1
  12180. },
  12181. "asset": {
  12182. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  12183. },
  12184. "fileId": "b11OP9joZF1aRtck1WmJDz",
  12185. "sync": false
  12186. },
  12187. {
  12188. "__type__": "cc.Sprite",
  12189. "_name": "",
  12190. "_objFlags": 0,
  12191. "node": {
  12192. "__id__": 331
  12193. },
  12194. "_enabled": true,
  12195. "_materials": [
  12196. {
  12197. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12198. }
  12199. ],
  12200. "_srcBlendFactor": 770,
  12201. "_dstBlendFactor": 771,
  12202. "_spriteFrame": {
  12203. "__uuid__": "e22f795f-ebd2-42d2-aac7-ae05de03d348"
  12204. },
  12205. "_type": 0,
  12206. "_sizeMode": 1,
  12207. "_fillType": 0,
  12208. "_fillCenter": {
  12209. "__type__": "cc.Vec2",
  12210. "x": 0,
  12211. "y": 0
  12212. },
  12213. "_fillStart": 0,
  12214. "_fillRange": 0,
  12215. "_isTrimmedMode": true,
  12216. "_atlas": null,
  12217. "_id": ""
  12218. },
  12219. {
  12220. "__type__": "cc.Button",
  12221. "_name": "",
  12222. "_objFlags": 0,
  12223. "node": {
  12224. "__id__": 331
  12225. },
  12226. "_enabled": true,
  12227. "_normalMaterial": {
  12228. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12229. },
  12230. "_grayMaterial": null,
  12231. "duration": 0.1,
  12232. "zoomScale": 0.8,
  12233. "clickEvents": [
  12234. {
  12235. "__id__": 337
  12236. }
  12237. ],
  12238. "_N$interactable": true,
  12239. "_N$enableAutoGrayEffect": false,
  12240. "_N$transition": 3,
  12241. "transition": 3,
  12242. "_N$normalColor": {
  12243. "__type__": "cc.Color",
  12244. "r": 255,
  12245. "g": 255,
  12246. "b": 255,
  12247. "a": 255
  12248. },
  12249. "_N$pressedColor": {
  12250. "__type__": "cc.Color",
  12251. "r": 211,
  12252. "g": 211,
  12253. "b": 211,
  12254. "a": 255
  12255. },
  12256. "pressedColor": {
  12257. "__type__": "cc.Color",
  12258. "r": 211,
  12259. "g": 211,
  12260. "b": 211,
  12261. "a": 255
  12262. },
  12263. "_N$hoverColor": {
  12264. "__type__": "cc.Color",
  12265. "r": 255,
  12266. "g": 255,
  12267. "b": 255,
  12268. "a": 255
  12269. },
  12270. "hoverColor": {
  12271. "__type__": "cc.Color",
  12272. "r": 255,
  12273. "g": 255,
  12274. "b": 255,
  12275. "a": 255
  12276. },
  12277. "_N$disabledColor": {
  12278. "__type__": "cc.Color",
  12279. "r": 124,
  12280. "g": 124,
  12281. "b": 124,
  12282. "a": 255
  12283. },
  12284. "_N$normalSprite": null,
  12285. "_N$pressedSprite": null,
  12286. "pressedSprite": null,
  12287. "_N$hoverSprite": null,
  12288. "hoverSprite": null,
  12289. "_N$disabledSprite": null,
  12290. "_N$target": {
  12291. "__id__": 331
  12292. },
  12293. "_id": ""
  12294. },
  12295. {
  12296. "__type__": "cc.ClickEvent",
  12297. "target": {
  12298. "__id__": 284
  12299. },
  12300. "component": "",
  12301. "_componentId": "e76f8flzHpP1KUHYcEHswwY",
  12302. "handler": "Click_BackBtn",
  12303. "customEventData": ""
  12304. },
  12305. {
  12306. "__type__": "cc.PrefabInfo",
  12307. "root": {
  12308. "__id__": 1
  12309. },
  12310. "asset": {
  12311. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  12312. },
  12313. "fileId": "48N1EFpMdO1IrIrBd25tYK",
  12314. "sync": false
  12315. },
  12316. {
  12317. "__type__": "cc.Widget",
  12318. "_name": "",
  12319. "_objFlags": 0,
  12320. "node": {
  12321. "__id__": 289
  12322. },
  12323. "_enabled": true,
  12324. "alignMode": 1,
  12325. "_target": null,
  12326. "_alignFlags": 45,
  12327. "_left": 0,
  12328. "_right": 0,
  12329. "_top": 0,
  12330. "_bottom": 0,
  12331. "_verticalCenter": 0,
  12332. "_horizontalCenter": 0,
  12333. "_isAbsLeft": true,
  12334. "_isAbsRight": true,
  12335. "_isAbsTop": true,
  12336. "_isAbsBottom": true,
  12337. "_isAbsHorizontalCenter": true,
  12338. "_isAbsVerticalCenter": true,
  12339. "_originalWidth": 0,
  12340. "_originalHeight": 0,
  12341. "_id": ""
  12342. },
  12343. {
  12344. "__type__": "cc.PrefabInfo",
  12345. "root": {
  12346. "__id__": 1
  12347. },
  12348. "asset": {
  12349. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  12350. },
  12351. "fileId": "3bcB4JQSlFGan+4p/l0P4u",
  12352. "sync": false
  12353. },
  12354. {
  12355. "__type__": "cc.Node",
  12356. "_name": "skeleton",
  12357. "_objFlags": 0,
  12358. "_parent": {
  12359. "__id__": 284
  12360. },
  12361. "_children": [],
  12362. "_active": true,
  12363. "_components": [
  12364. {
  12365. "__id__": 342
  12366. }
  12367. ],
  12368. "_prefab": {
  12369. "__id__": 343
  12370. },
  12371. "_opacity": 255,
  12372. "_color": {
  12373. "__type__": "cc.Color",
  12374. "r": 255,
  12375. "g": 255,
  12376. "b": 255,
  12377. "a": 255
  12378. },
  12379. "_contentSize": {
  12380. "__type__": "cc.Size",
  12381. "width": 749.45,
  12382. "height": 1621.13
  12383. },
  12384. "_anchorPoint": {
  12385. "__type__": "cc.Vec2",
  12386. "x": 0.5,
  12387. "y": 0.5
  12388. },
  12389. "_trs": {
  12390. "__type__": "TypedArray",
  12391. "ctor": "Float64Array",
  12392. "array": [
  12393. 0,
  12394. 0,
  12395. 0,
  12396. 0,
  12397. 0,
  12398. 0,
  12399. 1,
  12400. 1,
  12401. 1,
  12402. 1
  12403. ]
  12404. },
  12405. "_eulerAngles": {
  12406. "__type__": "cc.Vec3",
  12407. "x": 0,
  12408. "y": 0,
  12409. "z": 0
  12410. },
  12411. "_skewX": 0,
  12412. "_skewY": 0,
  12413. "_is3DNode": false,
  12414. "_groupIndex": 0,
  12415. "groupIndex": 0,
  12416. "_id": ""
  12417. },
  12418. {
  12419. "__type__": "sp.Skeleton",
  12420. "_name": "",
  12421. "_objFlags": 0,
  12422. "node": {
  12423. "__id__": 341
  12424. },
  12425. "_enabled": true,
  12426. "_materials": [
  12427. {
  12428. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  12429. }
  12430. ],
  12431. "paused": false,
  12432. "defaultSkin": "default",
  12433. "defaultAnimation": "animation",
  12434. "_preCacheMode": 0,
  12435. "_cacheMode": 0,
  12436. "loop": true,
  12437. "premultipliedAlpha": true,
  12438. "timeScale": 1,
  12439. "_accTime": 0,
  12440. "_playCount": 0,
  12441. "_frameCache": null,
  12442. "_curFrame": null,
  12443. "_skeletonCache": null,
  12444. "_animationName": "animation",
  12445. "_animationQueue": [],
  12446. "_headAniInfo": null,
  12447. "_playTimes": 0,
  12448. "_isAniComplete": true,
  12449. "_N$skeletonData": {
  12450. "__uuid__": "9221bfa6-48ee-44cb-ba6c-f37e5847e165"
  12451. },
  12452. "_N$_defaultCacheMode": 0,
  12453. "_N$debugSlots": false,
  12454. "_N$debugBones": false,
  12455. "_N$debugMesh": false,
  12456. "_N$useTint": false,
  12457. "_N$enableBatch": false,
  12458. "_id": ""
  12459. },
  12460. {
  12461. "__type__": "cc.PrefabInfo",
  12462. "root": {
  12463. "__id__": 1
  12464. },
  12465. "asset": {
  12466. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  12467. },
  12468. "fileId": "e9alke1ChAYIfouDD2m6EG",
  12469. "sync": false
  12470. },
  12471. {
  12472. "__type__": "cc.BlockInputEvents",
  12473. "_name": "",
  12474. "_objFlags": 0,
  12475. "node": {
  12476. "__id__": 284
  12477. },
  12478. "_enabled": true,
  12479. "_id": ""
  12480. },
  12481. {
  12482. "__type__": "cc.PrefabInfo",
  12483. "root": {
  12484. "__id__": 1
  12485. },
  12486. "asset": {
  12487. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  12488. },
  12489. "fileId": "1cbwVY3/1BgJz0mmcTfTpp",
  12490. "sync": false
  12491. },
  12492. {
  12493. "__type__": "cc.Node",
  12494. "_name": "Help",
  12495. "_objFlags": 0,
  12496. "_parent": {
  12497. "__id__": 1
  12498. },
  12499. "_children": [
  12500. {
  12501. "__id__": 347
  12502. },
  12503. {
  12504. "__id__": 351
  12505. }
  12506. ],
  12507. "_active": false,
  12508. "_components": [
  12509. {
  12510. "__id__": 371
  12511. },
  12512. {
  12513. "__id__": 372
  12514. }
  12515. ],
  12516. "_prefab": {
  12517. "__id__": 373
  12518. },
  12519. "_opacity": 255,
  12520. "_color": {
  12521. "__type__": "cc.Color",
  12522. "r": 255,
  12523. "g": 255,
  12524. "b": 255,
  12525. "a": 255
  12526. },
  12527. "_contentSize": {
  12528. "__type__": "cc.Size",
  12529. "width": 750,
  12530. "height": 1334
  12531. },
  12532. "_anchorPoint": {
  12533. "__type__": "cc.Vec2",
  12534. "x": 0.5,
  12535. "y": 0.5
  12536. },
  12537. "_trs": {
  12538. "__type__": "TypedArray",
  12539. "ctor": "Float64Array",
  12540. "array": [
  12541. 0,
  12542. 0,
  12543. 0,
  12544. 0,
  12545. 0,
  12546. 0,
  12547. 1,
  12548. 1,
  12549. 1,
  12550. 1
  12551. ]
  12552. },
  12553. "_eulerAngles": {
  12554. "__type__": "cc.Vec3",
  12555. "x": 0,
  12556. "y": 0,
  12557. "z": 0
  12558. },
  12559. "_skewX": 0,
  12560. "_skewY": 0,
  12561. "_is3DNode": false,
  12562. "_groupIndex": 0,
  12563. "groupIndex": 0,
  12564. "_id": ""
  12565. },
  12566. {
  12567. "__type__": "cc.Node",
  12568. "_name": "bg",
  12569. "_objFlags": 0,
  12570. "_parent": {
  12571. "__id__": 346
  12572. },
  12573. "_children": [],
  12574. "_active": true,
  12575. "_components": [
  12576. {
  12577. "__id__": 348
  12578. },
  12579. {
  12580. "__id__": 349
  12581. }
  12582. ],
  12583. "_prefab": {
  12584. "__id__": 350
  12585. },
  12586. "_opacity": 179,
  12587. "_color": {
  12588. "__type__": "cc.Color",
  12589. "r": 0,
  12590. "g": 0,
  12591. "b": 0,
  12592. "a": 255
  12593. },
  12594. "_contentSize": {
  12595. "__type__": "cc.Size",
  12596. "width": 750,
  12597. "height": 1334
  12598. },
  12599. "_anchorPoint": {
  12600. "__type__": "cc.Vec2",
  12601. "x": 0.5,
  12602. "y": 0.5
  12603. },
  12604. "_trs": {
  12605. "__type__": "TypedArray",
  12606. "ctor": "Float64Array",
  12607. "array": [
  12608. 0,
  12609. 0,
  12610. 0,
  12611. 0,
  12612. 0,
  12613. 0,
  12614. 1,
  12615. 1,
  12616. 1,
  12617. 1
  12618. ]
  12619. },
  12620. "_eulerAngles": {
  12621. "__type__": "cc.Vec3",
  12622. "x": 0,
  12623. "y": 0,
  12624. "z": 0
  12625. },
  12626. "_skewX": 0,
  12627. "_skewY": 0,
  12628. "_is3DNode": false,
  12629. "_groupIndex": 0,
  12630. "groupIndex": 0,
  12631. "_id": ""
  12632. },
  12633. {
  12634. "__type__": "cc.Sprite",
  12635. "_name": "",
  12636. "_objFlags": 0,
  12637. "node": {
  12638. "__id__": 347
  12639. },
  12640. "_enabled": true,
  12641. "_materials": [
  12642. {
  12643. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12644. }
  12645. ],
  12646. "_srcBlendFactor": 770,
  12647. "_dstBlendFactor": 771,
  12648. "_spriteFrame": {
  12649. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  12650. },
  12651. "_type": 0,
  12652. "_sizeMode": 0,
  12653. "_fillType": 0,
  12654. "_fillCenter": {
  12655. "__type__": "cc.Vec2",
  12656. "x": 0,
  12657. "y": 0
  12658. },
  12659. "_fillStart": 0,
  12660. "_fillRange": 0,
  12661. "_isTrimmedMode": true,
  12662. "_atlas": null,
  12663. "_id": ""
  12664. },
  12665. {
  12666. "__type__": "cc.Widget",
  12667. "_name": "",
  12668. "_objFlags": 0,
  12669. "node": {
  12670. "__id__": 347
  12671. },
  12672. "_enabled": true,
  12673. "alignMode": 1,
  12674. "_target": null,
  12675. "_alignFlags": 45,
  12676. "_left": 0,
  12677. "_right": 0,
  12678. "_top": 0,
  12679. "_bottom": 0,
  12680. "_verticalCenter": 0,
  12681. "_horizontalCenter": 0,
  12682. "_isAbsLeft": true,
  12683. "_isAbsRight": true,
  12684. "_isAbsTop": true,
  12685. "_isAbsBottom": true,
  12686. "_isAbsHorizontalCenter": true,
  12687. "_isAbsVerticalCenter": true,
  12688. "_originalWidth": 100,
  12689. "_originalHeight": 100,
  12690. "_id": ""
  12691. },
  12692. {
  12693. "__type__": "cc.PrefabInfo",
  12694. "root": {
  12695. "__id__": 1
  12696. },
  12697. "asset": {
  12698. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  12699. },
  12700. "fileId": "ffBHL3DClGsYpkXXhdWyMI",
  12701. "sync": false
  12702. },
  12703. {
  12704. "__type__": "cc.Node",
  12705. "_name": "Panel",
  12706. "_objFlags": 0,
  12707. "_parent": {
  12708. "__id__": 346
  12709. },
  12710. "_children": [
  12711. {
  12712. "__id__": 352
  12713. },
  12714. {
  12715. "__id__": 355
  12716. },
  12717. {
  12718. "__id__": 358
  12719. },
  12720. {
  12721. "__id__": 361
  12722. },
  12723. {
  12724. "__id__": 364
  12725. }
  12726. ],
  12727. "_active": true,
  12728. "_components": [],
  12729. "_prefab": {
  12730. "__id__": 370
  12731. },
  12732. "_opacity": 255,
  12733. "_color": {
  12734. "__type__": "cc.Color",
  12735. "r": 255,
  12736. "g": 255,
  12737. "b": 255,
  12738. "a": 255
  12739. },
  12740. "_contentSize": {
  12741. "__type__": "cc.Size",
  12742. "width": 0,
  12743. "height": 0
  12744. },
  12745. "_anchorPoint": {
  12746. "__type__": "cc.Vec2",
  12747. "x": 0.5,
  12748. "y": 0.5
  12749. },
  12750. "_trs": {
  12751. "__type__": "TypedArray",
  12752. "ctor": "Float64Array",
  12753. "array": [
  12754. 0,
  12755. 0,
  12756. 0,
  12757. 0,
  12758. 0,
  12759. 0,
  12760. 1,
  12761. 1,
  12762. 1,
  12763. 1
  12764. ]
  12765. },
  12766. "_eulerAngles": {
  12767. "__type__": "cc.Vec3",
  12768. "x": 0,
  12769. "y": 0,
  12770. "z": 0
  12771. },
  12772. "_skewX": 0,
  12773. "_skewY": 0,
  12774. "_is3DNode": false,
  12775. "_groupIndex": 0,
  12776. "groupIndex": 0,
  12777. "_id": ""
  12778. },
  12779. {
  12780. "__type__": "cc.Node",
  12781. "_name": "Img",
  12782. "_objFlags": 0,
  12783. "_parent": {
  12784. "__id__": 351
  12785. },
  12786. "_children": [],
  12787. "_active": true,
  12788. "_components": [
  12789. {
  12790. "__id__": 353
  12791. }
  12792. ],
  12793. "_prefab": {
  12794. "__id__": 354
  12795. },
  12796. "_opacity": 255,
  12797. "_color": {
  12798. "__type__": "cc.Color",
  12799. "r": 255,
  12800. "g": 255,
  12801. "b": 255,
  12802. "a": 255
  12803. },
  12804. "_contentSize": {
  12805. "__type__": "cc.Size",
  12806. "width": 698,
  12807. "height": 929
  12808. },
  12809. "_anchorPoint": {
  12810. "__type__": "cc.Vec2",
  12811. "x": 0.5,
  12812. "y": 0.5
  12813. },
  12814. "_trs": {
  12815. "__type__": "TypedArray",
  12816. "ctor": "Float64Array",
  12817. "array": [
  12818. 0,
  12819. 0,
  12820. 0,
  12821. 0,
  12822. 0,
  12823. 0,
  12824. 1,
  12825. 1,
  12826. 1,
  12827. 1
  12828. ]
  12829. },
  12830. "_eulerAngles": {
  12831. "__type__": "cc.Vec3",
  12832. "x": 0,
  12833. "y": 0,
  12834. "z": 0
  12835. },
  12836. "_skewX": 0,
  12837. "_skewY": 0,
  12838. "_is3DNode": false,
  12839. "_groupIndex": 0,
  12840. "groupIndex": 0,
  12841. "_id": ""
  12842. },
  12843. {
  12844. "__type__": "cc.Sprite",
  12845. "_name": "",
  12846. "_objFlags": 0,
  12847. "node": {
  12848. "__id__": 352
  12849. },
  12850. "_enabled": true,
  12851. "_materials": [
  12852. {
  12853. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12854. }
  12855. ],
  12856. "_srcBlendFactor": 770,
  12857. "_dstBlendFactor": 771,
  12858. "_spriteFrame": {
  12859. "__uuid__": "c3764b6f-ea22-4c3a-a9b1-fb0c25494170"
  12860. },
  12861. "_type": 0,
  12862. "_sizeMode": 1,
  12863. "_fillType": 0,
  12864. "_fillCenter": {
  12865. "__type__": "cc.Vec2",
  12866. "x": 0,
  12867. "y": 0
  12868. },
  12869. "_fillStart": 0,
  12870. "_fillRange": 0,
  12871. "_isTrimmedMode": true,
  12872. "_atlas": null,
  12873. "_id": ""
  12874. },
  12875. {
  12876. "__type__": "cc.PrefabInfo",
  12877. "root": {
  12878. "__id__": 1
  12879. },
  12880. "asset": {
  12881. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  12882. },
  12883. "fileId": "8fBQWpyK1BTrBkquoLgI4A",
  12884. "sync": false
  12885. },
  12886. {
  12887. "__type__": "cc.Node",
  12888. "_name": "titlebg",
  12889. "_objFlags": 0,
  12890. "_parent": {
  12891. "__id__": 351
  12892. },
  12893. "_children": [],
  12894. "_active": true,
  12895. "_components": [
  12896. {
  12897. "__id__": 356
  12898. }
  12899. ],
  12900. "_prefab": {
  12901. "__id__": 357
  12902. },
  12903. "_opacity": 255,
  12904. "_color": {
  12905. "__type__": "cc.Color",
  12906. "r": 255,
  12907. "g": 255,
  12908. "b": 255,
  12909. "a": 255
  12910. },
  12911. "_contentSize": {
  12912. "__type__": "cc.Size",
  12913. "width": 315,
  12914. "height": 72
  12915. },
  12916. "_anchorPoint": {
  12917. "__type__": "cc.Vec2",
  12918. "x": 0.5,
  12919. "y": 0.5
  12920. },
  12921. "_trs": {
  12922. "__type__": "TypedArray",
  12923. "ctor": "Float64Array",
  12924. "array": [
  12925. 0,
  12926. 377.129,
  12927. 0,
  12928. 0,
  12929. 0,
  12930. 0,
  12931. 1,
  12932. 1,
  12933. 1,
  12934. 1
  12935. ]
  12936. },
  12937. "_eulerAngles": {
  12938. "__type__": "cc.Vec3",
  12939. "x": 0,
  12940. "y": 0,
  12941. "z": 0
  12942. },
  12943. "_skewX": 0,
  12944. "_skewY": 0,
  12945. "_is3DNode": false,
  12946. "_groupIndex": 0,
  12947. "groupIndex": 0,
  12948. "_id": ""
  12949. },
  12950. {
  12951. "__type__": "cc.Sprite",
  12952. "_name": "",
  12953. "_objFlags": 0,
  12954. "node": {
  12955. "__id__": 355
  12956. },
  12957. "_enabled": true,
  12958. "_materials": [
  12959. {
  12960. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12961. }
  12962. ],
  12963. "_srcBlendFactor": 770,
  12964. "_dstBlendFactor": 771,
  12965. "_spriteFrame": {
  12966. "__uuid__": "e46a42a2-f5da-49fc-9e21-5fb28cb7c9f6"
  12967. },
  12968. "_type": 0,
  12969. "_sizeMode": 1,
  12970. "_fillType": 0,
  12971. "_fillCenter": {
  12972. "__type__": "cc.Vec2",
  12973. "x": 0,
  12974. "y": 0
  12975. },
  12976. "_fillStart": 0,
  12977. "_fillRange": 0,
  12978. "_isTrimmedMode": true,
  12979. "_atlas": null,
  12980. "_id": ""
  12981. },
  12982. {
  12983. "__type__": "cc.PrefabInfo",
  12984. "root": {
  12985. "__id__": 1
  12986. },
  12987. "asset": {
  12988. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  12989. },
  12990. "fileId": "f5CYBuTnVM07af2sq/Fs88",
  12991. "sync": false
  12992. },
  12993. {
  12994. "__type__": "cc.Node",
  12995. "_name": "title",
  12996. "_objFlags": 0,
  12997. "_parent": {
  12998. "__id__": 351
  12999. },
  13000. "_children": [],
  13001. "_active": true,
  13002. "_components": [
  13003. {
  13004. "__id__": 359
  13005. }
  13006. ],
  13007. "_prefab": {
  13008. "__id__": 360
  13009. },
  13010. "_opacity": 255,
  13011. "_color": {
  13012. "__type__": "cc.Color",
  13013. "r": 255,
  13014. "g": 255,
  13015. "b": 255,
  13016. "a": 255
  13017. },
  13018. "_contentSize": {
  13019. "__type__": "cc.Size",
  13020. "width": 147,
  13021. "height": 34
  13022. },
  13023. "_anchorPoint": {
  13024. "__type__": "cc.Vec2",
  13025. "x": 0.5,
  13026. "y": 0.5
  13027. },
  13028. "_trs": {
  13029. "__type__": "TypedArray",
  13030. "ctor": "Float64Array",
  13031. "array": [
  13032. 0,
  13033. 379.928,
  13034. 0,
  13035. 0,
  13036. 0,
  13037. 0,
  13038. 1,
  13039. 1,
  13040. 1,
  13041. 1
  13042. ]
  13043. },
  13044. "_eulerAngles": {
  13045. "__type__": "cc.Vec3",
  13046. "x": 0,
  13047. "y": 0,
  13048. "z": 0
  13049. },
  13050. "_skewX": 0,
  13051. "_skewY": 0,
  13052. "_is3DNode": false,
  13053. "_groupIndex": 0,
  13054. "groupIndex": 0,
  13055. "_id": ""
  13056. },
  13057. {
  13058. "__type__": "cc.Sprite",
  13059. "_name": "",
  13060. "_objFlags": 0,
  13061. "node": {
  13062. "__id__": 358
  13063. },
  13064. "_enabled": true,
  13065. "_materials": [
  13066. {
  13067. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13068. }
  13069. ],
  13070. "_srcBlendFactor": 770,
  13071. "_dstBlendFactor": 771,
  13072. "_spriteFrame": {
  13073. "__uuid__": "cdec3ccb-5ef5-427b-ac62-ddfd08857202"
  13074. },
  13075. "_type": 0,
  13076. "_sizeMode": 1,
  13077. "_fillType": 0,
  13078. "_fillCenter": {
  13079. "__type__": "cc.Vec2",
  13080. "x": 0,
  13081. "y": 0
  13082. },
  13083. "_fillStart": 0,
  13084. "_fillRange": 0,
  13085. "_isTrimmedMode": true,
  13086. "_atlas": null,
  13087. "_id": ""
  13088. },
  13089. {
  13090. "__type__": "cc.PrefabInfo",
  13091. "root": {
  13092. "__id__": 1
  13093. },
  13094. "asset": {
  13095. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  13096. },
  13097. "fileId": "255u1cwI9CsqSyi9XgRp6J",
  13098. "sync": false
  13099. },
  13100. {
  13101. "__type__": "cc.Node",
  13102. "_name": "txt",
  13103. "_objFlags": 0,
  13104. "_parent": {
  13105. "__id__": 351
  13106. },
  13107. "_children": [],
  13108. "_active": true,
  13109. "_components": [
  13110. {
  13111. "__id__": 362
  13112. }
  13113. ],
  13114. "_prefab": {
  13115. "__id__": 363
  13116. },
  13117. "_opacity": 255,
  13118. "_color": {
  13119. "__type__": "cc.Color",
  13120. "r": 146,
  13121. "g": 96,
  13122. "b": 72,
  13123. "a": 255
  13124. },
  13125. "_contentSize": {
  13126. "__type__": "cc.Size",
  13127. "width": 527,
  13128. "height": 470
  13129. },
  13130. "_anchorPoint": {
  13131. "__type__": "cc.Vec2",
  13132. "x": 0.5,
  13133. "y": 0.5
  13134. },
  13135. "_trs": {
  13136. "__type__": "TypedArray",
  13137. "ctor": "Float64Array",
  13138. "array": [
  13139. 0,
  13140. 11.276,
  13141. 0,
  13142. 0,
  13143. 0,
  13144. 0,
  13145. 1,
  13146. 1,
  13147. 1,
  13148. 1
  13149. ]
  13150. },
  13151. "_eulerAngles": {
  13152. "__type__": "cc.Vec3",
  13153. "x": 0,
  13154. "y": 0,
  13155. "z": 0
  13156. },
  13157. "_skewX": 0,
  13158. "_skewY": 0,
  13159. "_is3DNode": false,
  13160. "_groupIndex": 0,
  13161. "groupIndex": 0,
  13162. "_id": ""
  13163. },
  13164. {
  13165. "__type__": "cc.Label",
  13166. "_name": "",
  13167. "_objFlags": 0,
  13168. "node": {
  13169. "__id__": 361
  13170. },
  13171. "_enabled": true,
  13172. "_materials": [
  13173. {
  13174. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13175. }
  13176. ],
  13177. "_useOriginalSize": true,
  13178. "_string": "1、观看大量视频可以快速增加提现进度。\n\n2、提现进度到100%,可以提现对应档位的红包。\n\n3、余额累计满一定金额,可以申请大额提现。",
  13179. "_N$string": "1、观看大量视频可以快速增加提现进度。\n\n2、提现进度到100%,可以提现对应档位的红包。\n\n3、余额累计满一定金额,可以申请大额提现。",
  13180. "_fontSize": 35,
  13181. "_lineHeight": 47,
  13182. "_enableWrapText": true,
  13183. "_N$file": null,
  13184. "_isSystemFontUsed": true,
  13185. "_spacingX": 0,
  13186. "_batchAsBitmap": false,
  13187. "_styleFlags": 1,
  13188. "_underlineHeight": 0,
  13189. "_N$horizontalAlign": 0,
  13190. "_N$verticalAlign": 0,
  13191. "_N$fontFamily": "Arial",
  13192. "_N$overflow": 2,
  13193. "_N$cacheMode": 1,
  13194. "_id": ""
  13195. },
  13196. {
  13197. "__type__": "cc.PrefabInfo",
  13198. "root": {
  13199. "__id__": 1
  13200. },
  13201. "asset": {
  13202. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  13203. },
  13204. "fileId": "fd7dFfLaxJB5TgZYIDispF",
  13205. "sync": false
  13206. },
  13207. {
  13208. "__type__": "cc.Node",
  13209. "_name": "btnClose",
  13210. "_objFlags": 0,
  13211. "_parent": {
  13212. "__id__": 351
  13213. },
  13214. "_children": [],
  13215. "_active": true,
  13216. "_components": [
  13217. {
  13218. "__id__": 365
  13219. },
  13220. {
  13221. "__id__": 366
  13222. },
  13223. {
  13224. "__id__": 367
  13225. }
  13226. ],
  13227. "_prefab": {
  13228. "__id__": 369
  13229. },
  13230. "_opacity": 255,
  13231. "_color": {
  13232. "__type__": "cc.Color",
  13233. "r": 255,
  13234. "g": 255,
  13235. "b": 255,
  13236. "a": 255
  13237. },
  13238. "_contentSize": {
  13239. "__type__": "cc.Size",
  13240. "width": 83,
  13241. "height": 85
  13242. },
  13243. "_anchorPoint": {
  13244. "__type__": "cc.Vec2",
  13245. "x": 0.5,
  13246. "y": 0.5
  13247. },
  13248. "_trs": {
  13249. "__type__": "TypedArray",
  13250. "ctor": "Float64Array",
  13251. "array": [
  13252. 292.28,
  13253. 424.665,
  13254. 0,
  13255. 0,
  13256. 0,
  13257. 0,
  13258. 1,
  13259. 1,
  13260. 1,
  13261. 1
  13262. ]
  13263. },
  13264. "_eulerAngles": {
  13265. "__type__": "cc.Vec3",
  13266. "x": 0,
  13267. "y": 0,
  13268. "z": 0
  13269. },
  13270. "_skewX": 0,
  13271. "_skewY": 0,
  13272. "_is3DNode": false,
  13273. "_groupIndex": 0,
  13274. "groupIndex": 0,
  13275. "_id": ""
  13276. },
  13277. {
  13278. "__type__": "cc.Sprite",
  13279. "_name": "",
  13280. "_objFlags": 0,
  13281. "node": {
  13282. "__id__": 364
  13283. },
  13284. "_enabled": true,
  13285. "_materials": [
  13286. {
  13287. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13288. }
  13289. ],
  13290. "_srcBlendFactor": 770,
  13291. "_dstBlendFactor": 771,
  13292. "_spriteFrame": {
  13293. "__uuid__": "603da3f4-4b72-4b37-9bc0-18b82301d5b8"
  13294. },
  13295. "_type": 0,
  13296. "_sizeMode": 1,
  13297. "_fillType": 0,
  13298. "_fillCenter": {
  13299. "__type__": "cc.Vec2",
  13300. "x": 0,
  13301. "y": 0
  13302. },
  13303. "_fillStart": 0,
  13304. "_fillRange": 0,
  13305. "_isTrimmedMode": true,
  13306. "_atlas": null,
  13307. "_id": ""
  13308. },
  13309. {
  13310. "__type__": "cc.Widget",
  13311. "_name": "",
  13312. "_objFlags": 0,
  13313. "node": {
  13314. "__id__": 364
  13315. },
  13316. "_enabled": true,
  13317. "alignMode": 1,
  13318. "_target": null,
  13319. "_alignFlags": 1,
  13320. "_left": 0,
  13321. "_right": 0,
  13322. "_top": -467.165,
  13323. "_bottom": 0,
  13324. "_verticalCenter": 0,
  13325. "_horizontalCenter": 0,
  13326. "_isAbsLeft": true,
  13327. "_isAbsRight": true,
  13328. "_isAbsTop": true,
  13329. "_isAbsBottom": true,
  13330. "_isAbsHorizontalCenter": true,
  13331. "_isAbsVerticalCenter": true,
  13332. "_originalWidth": 0,
  13333. "_originalHeight": 0,
  13334. "_id": ""
  13335. },
  13336. {
  13337. "__type__": "cc.Button",
  13338. "_name": "",
  13339. "_objFlags": 0,
  13340. "node": {
  13341. "__id__": 364
  13342. },
  13343. "_enabled": true,
  13344. "_normalMaterial": {
  13345. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13346. },
  13347. "_grayMaterial": null,
  13348. "duration": 0.1,
  13349. "zoomScale": 1.2,
  13350. "clickEvents": [
  13351. {
  13352. "__id__": 368
  13353. }
  13354. ],
  13355. "_N$interactable": true,
  13356. "_N$enableAutoGrayEffect": false,
  13357. "_N$transition": 3,
  13358. "transition": 3,
  13359. "_N$normalColor": {
  13360. "__type__": "cc.Color",
  13361. "r": 255,
  13362. "g": 255,
  13363. "b": 255,
  13364. "a": 255
  13365. },
  13366. "_N$pressedColor": {
  13367. "__type__": "cc.Color",
  13368. "r": 211,
  13369. "g": 211,
  13370. "b": 211,
  13371. "a": 255
  13372. },
  13373. "pressedColor": {
  13374. "__type__": "cc.Color",
  13375. "r": 211,
  13376. "g": 211,
  13377. "b": 211,
  13378. "a": 255
  13379. },
  13380. "_N$hoverColor": {
  13381. "__type__": "cc.Color",
  13382. "r": 255,
  13383. "g": 255,
  13384. "b": 255,
  13385. "a": 255
  13386. },
  13387. "hoverColor": {
  13388. "__type__": "cc.Color",
  13389. "r": 255,
  13390. "g": 255,
  13391. "b": 255,
  13392. "a": 255
  13393. },
  13394. "_N$disabledColor": {
  13395. "__type__": "cc.Color",
  13396. "r": 124,
  13397. "g": 124,
  13398. "b": 124,
  13399. "a": 255
  13400. },
  13401. "_N$normalSprite": null,
  13402. "_N$pressedSprite": null,
  13403. "pressedSprite": null,
  13404. "_N$hoverSprite": null,
  13405. "hoverSprite": null,
  13406. "_N$disabledSprite": null,
  13407. "_N$target": null,
  13408. "_id": ""
  13409. },
  13410. {
  13411. "__type__": "cc.ClickEvent",
  13412. "target": {
  13413. "__id__": 1
  13414. },
  13415. "component": "",
  13416. "_componentId": "bb002IlT3tILa3522JfGQ79",
  13417. "handler": "Click_CloseHelpBtn",
  13418. "customEventData": ""
  13419. },
  13420. {
  13421. "__type__": "cc.PrefabInfo",
  13422. "root": {
  13423. "__id__": 1
  13424. },
  13425. "asset": {
  13426. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  13427. },
  13428. "fileId": "b0dwi5TuZN/4afOghPUerc",
  13429. "sync": false
  13430. },
  13431. {
  13432. "__type__": "cc.PrefabInfo",
  13433. "root": {
  13434. "__id__": 1
  13435. },
  13436. "asset": {
  13437. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  13438. },
  13439. "fileId": "6bKjJ3AZtGkbe7qWbf1sLi",
  13440. "sync": false
  13441. },
  13442. {
  13443. "__type__": "cc.Widget",
  13444. "_name": "",
  13445. "_objFlags": 0,
  13446. "node": {
  13447. "__id__": 346
  13448. },
  13449. "_enabled": true,
  13450. "alignMode": 1,
  13451. "_target": null,
  13452. "_alignFlags": 45,
  13453. "_left": 0,
  13454. "_right": 0,
  13455. "_top": 0,
  13456. "_bottom": 0,
  13457. "_verticalCenter": 0,
  13458. "_horizontalCenter": 0,
  13459. "_isAbsLeft": true,
  13460. "_isAbsRight": true,
  13461. "_isAbsTop": true,
  13462. "_isAbsBottom": true,
  13463. "_isAbsHorizontalCenter": true,
  13464. "_isAbsVerticalCenter": true,
  13465. "_originalWidth": 100,
  13466. "_originalHeight": 100,
  13467. "_id": ""
  13468. },
  13469. {
  13470. "__type__": "cc.BlockInputEvents",
  13471. "_name": "",
  13472. "_objFlags": 0,
  13473. "node": {
  13474. "__id__": 346
  13475. },
  13476. "_enabled": true,
  13477. "_id": ""
  13478. },
  13479. {
  13480. "__type__": "cc.PrefabInfo",
  13481. "root": {
  13482. "__id__": 1
  13483. },
  13484. "asset": {
  13485. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  13486. },
  13487. "fileId": "cfoBRZYalIxpy0Ilr3hPF5",
  13488. "sync": false
  13489. },
  13490. {
  13491. "__type__": "cc.Widget",
  13492. "_name": "",
  13493. "_objFlags": 0,
  13494. "node": {
  13495. "__id__": 1
  13496. },
  13497. "_enabled": true,
  13498. "alignMode": 1,
  13499. "_target": null,
  13500. "_alignFlags": 45,
  13501. "_left": 0,
  13502. "_right": 0,
  13503. "_top": 0,
  13504. "_bottom": 0,
  13505. "_verticalCenter": 0,
  13506. "_horizontalCenter": 0,
  13507. "_isAbsLeft": true,
  13508. "_isAbsRight": true,
  13509. "_isAbsTop": true,
  13510. "_isAbsBottom": true,
  13511. "_isAbsHorizontalCenter": true,
  13512. "_isAbsVerticalCenter": true,
  13513. "_originalWidth": 0,
  13514. "_originalHeight": 0,
  13515. "_id": ""
  13516. },
  13517. {
  13518. "__type__": "cc.BlockInputEvents",
  13519. "_name": "",
  13520. "_objFlags": 0,
  13521. "node": {
  13522. "__id__": 1
  13523. },
  13524. "_enabled": true,
  13525. "_id": ""
  13526. },
  13527. {
  13528. "__type__": "bb002IlT3tILa3522JfGQ79",
  13529. "_name": "",
  13530. "_objFlags": 0,
  13531. "node": {
  13532. "__id__": 1
  13533. },
  13534. "_enabled": true,
  13535. "txtBigNum": {
  13536. "__id__": 40
  13537. },
  13538. "txtAddEft": {
  13539. "__id__": 64
  13540. },
  13541. "txtTipAd": {
  13542. "__id__": 37
  13543. },
  13544. "txtBigDelta": {
  13545. "__id__": 76
  13546. },
  13547. "txtBigTask": {
  13548. "__id__": 107
  13549. },
  13550. "txtRemaindAdNum": {
  13551. "__id__": 202
  13552. },
  13553. "adRbItem": {
  13554. "__id__": 166
  13555. },
  13556. "itemContent": {
  13557. "__id__": 170
  13558. },
  13559. "btnCash": {
  13560. "__id__": 43
  13561. },
  13562. "btnAd": {
  13563. "__id__": 181
  13564. },
  13565. "aniBigAdBtn": {
  13566. "__id__": 61
  13567. },
  13568. "adIcon": {
  13569. "__id__": 183
  13570. },
  13571. "aniBtnAd": {
  13572. "__id__": 278
  13573. },
  13574. "rbOpenBtn": {
  13575. "__id__": 271
  13576. },
  13577. "nodeRb": {
  13578. "__id__": 256
  13579. },
  13580. "txtRbNum": {
  13581. "__id__": 268
  13582. },
  13583. "nodeHelp": {
  13584. "__id__": 346
  13585. },
  13586. "testNode": {
  13587. "__id__": 209
  13588. },
  13589. "inputBox": {
  13590. "__id__": 234
  13591. },
  13592. "cashSurePanel": {
  13593. "__id__": 284
  13594. },
  13595. "cashSureTxtNum": {
  13596. "__id__": 296
  13597. },
  13598. "_id": ""
  13599. },
  13600. {
  13601. "__type__": "cc.PrefabInfo",
  13602. "root": {
  13603. "__id__": 1
  13604. },
  13605. "asset": {
  13606. "__uuid__": "db9f9406-9a6d-4310-bcd5-6607a75b0b20"
  13607. },
  13608. "fileId": "73Hf9nHMBBe74RQxuce47s",
  13609. "sync": false
  13610. }
  13611. ]