main.scene 279 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060150611506215063150641506515066150671506815069150701507115072150731507415075150761507715078150791508015081150821508315084150851508615087150881508915090150911509215093150941509515096150971509815099151001510115102151031510415105151061510715108151091511015111151121511315114151151511615117151181511915120151211512215123151241512515126151271512815129
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "main",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "main",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [],
  25. "_prefab": {
  26. "__id__": 385
  27. },
  28. "_lpos": {
  29. "__type__": "cc.Vec3",
  30. "x": 0,
  31. "y": 0,
  32. "z": 0
  33. },
  34. "_lrot": {
  35. "__type__": "cc.Quat",
  36. "x": 0,
  37. "y": 0,
  38. "z": 0,
  39. "w": 1
  40. },
  41. "_lscale": {
  42. "__type__": "cc.Vec3",
  43. "x": 1,
  44. "y": 1,
  45. "z": 1
  46. },
  47. "_mobility": 0,
  48. "_layer": 1073741824,
  49. "_euler": {
  50. "__type__": "cc.Vec3",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0
  54. },
  55. "autoReleaseAssets": false,
  56. "_globals": {
  57. "__id__": 386
  58. },
  59. "_id": "1c9182fc-c6a7-4fca-a293-02b3051d1594"
  60. },
  61. {
  62. "__type__": "cc.Node",
  63. "_name": "Canvas",
  64. "_objFlags": 0,
  65. "__editorExtras__": {},
  66. "_parent": {
  67. "__id__": 1
  68. },
  69. "_children": [
  70. {
  71. "__id__": 3
  72. },
  73. {
  74. "__id__": 5
  75. },
  76. {
  77. "__id__": 235
  78. },
  79. {
  80. "__id__": 145
  81. },
  82. {
  83. "__id__": 117
  84. }
  85. ],
  86. "_active": true,
  87. "_components": [
  88. {
  89. "__id__": 382
  90. },
  91. {
  92. "__id__": 383
  93. },
  94. {
  95. "__id__": 384
  96. }
  97. ],
  98. "_prefab": null,
  99. "_lpos": {
  100. "__type__": "cc.Vec3",
  101. "x": 959.9999999999999,
  102. "y": 540,
  103. "z": 0
  104. },
  105. "_lrot": {
  106. "__type__": "cc.Quat",
  107. "x": 0,
  108. "y": 0,
  109. "z": 0,
  110. "w": 1
  111. },
  112. "_lscale": {
  113. "__type__": "cc.Vec3",
  114. "x": 1,
  115. "y": 1,
  116. "z": 1
  117. },
  118. "_mobility": 0,
  119. "_layer": 33554432,
  120. "_euler": {
  121. "__type__": "cc.Vec3",
  122. "x": 0,
  123. "y": 0,
  124. "z": 0
  125. },
  126. "_id": "beI88Z2HpFELqR4T5EMHpg"
  127. },
  128. {
  129. "__type__": "cc.Node",
  130. "_name": "Camera",
  131. "_objFlags": 0,
  132. "__editorExtras__": {},
  133. "_parent": {
  134. "__id__": 2
  135. },
  136. "_children": [],
  137. "_active": true,
  138. "_components": [
  139. {
  140. "__id__": 4
  141. }
  142. ],
  143. "_prefab": null,
  144. "_lpos": {
  145. "__type__": "cc.Vec3",
  146. "x": 0,
  147. "y": 0,
  148. "z": 1000
  149. },
  150. "_lrot": {
  151. "__type__": "cc.Quat",
  152. "x": 0,
  153. "y": 0,
  154. "z": 0,
  155. "w": 1
  156. },
  157. "_lscale": {
  158. "__type__": "cc.Vec3",
  159. "x": 1,
  160. "y": 1,
  161. "z": 1
  162. },
  163. "_mobility": 0,
  164. "_layer": 33554432,
  165. "_euler": {
  166. "__type__": "cc.Vec3",
  167. "x": 0,
  168. "y": 0,
  169. "z": 0
  170. },
  171. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  172. },
  173. {
  174. "__type__": "cc.Camera",
  175. "_name": "",
  176. "_objFlags": 0,
  177. "__editorExtras__": {},
  178. "node": {
  179. "__id__": 3
  180. },
  181. "_enabled": true,
  182. "__prefab": null,
  183. "_projection": 0,
  184. "_priority": 0,
  185. "_fov": 45,
  186. "_fovAxis": 0,
  187. "_orthoHeight": 540,
  188. "_near": 0,
  189. "_far": 1000,
  190. "_color": {
  191. "__type__": "cc.Color",
  192. "r": 0,
  193. "g": 0,
  194. "b": 0,
  195. "a": 255
  196. },
  197. "_depth": 1,
  198. "_stencil": 0,
  199. "_clearFlags": 7,
  200. "_rect": {
  201. "__type__": "cc.Rect",
  202. "x": 0,
  203. "y": 0,
  204. "width": 1,
  205. "height": 1
  206. },
  207. "_aperture": 19,
  208. "_shutter": 7,
  209. "_iso": 0,
  210. "_screenScale": 1,
  211. "_visibility": 1108344832,
  212. "_targetTexture": null,
  213. "_postProcess": null,
  214. "_usePostProcess": false,
  215. "_cameraType": -1,
  216. "_trackingType": 0,
  217. "_id": "63WIch3o5BEYRlXzTT0oWc"
  218. },
  219. {
  220. "__type__": "cc.Node",
  221. "_name": "game_1",
  222. "_objFlags": 0,
  223. "__editorExtras__": {},
  224. "_parent": {
  225. "__id__": 2
  226. },
  227. "_children": [
  228. {
  229. "__id__": 6
  230. },
  231. {
  232. "__id__": 13
  233. },
  234. {
  235. "__id__": 20
  236. },
  237. {
  238. "__id__": 23
  239. },
  240. {
  241. "__id__": 41
  242. },
  243. {
  244. "__id__": 44
  245. },
  246. {
  247. "__id__": 50
  248. },
  249. {
  250. "__id__": 57
  251. }
  252. ],
  253. "_active": false,
  254. "_components": [
  255. {
  256. "__id__": 115
  257. },
  258. {
  259. "__id__": 116
  260. },
  261. {
  262. "__id__": 381
  263. }
  264. ],
  265. "_prefab": null,
  266. "_lpos": {
  267. "__type__": "cc.Vec3",
  268. "x": -960,
  269. "y": -540,
  270. "z": 0
  271. },
  272. "_lrot": {
  273. "__type__": "cc.Quat",
  274. "x": 0,
  275. "y": 0,
  276. "z": 0,
  277. "w": 1
  278. },
  279. "_lscale": {
  280. "__type__": "cc.Vec3",
  281. "x": 1,
  282. "y": 1,
  283. "z": 1
  284. },
  285. "_mobility": 0,
  286. "_layer": 33554432,
  287. "_euler": {
  288. "__type__": "cc.Vec3",
  289. "x": 0,
  290. "y": 0,
  291. "z": 0
  292. },
  293. "_id": "72bg/tuTxOvryVl50bhTEP"
  294. },
  295. {
  296. "__type__": "cc.Node",
  297. "_name": "btn_back",
  298. "_objFlags": 0,
  299. "__editorExtras__": {},
  300. "_parent": {
  301. "__id__": 5
  302. },
  303. "_children": [
  304. {
  305. "__id__": 7
  306. }
  307. ],
  308. "_active": true,
  309. "_components": [
  310. {
  311. "__id__": 10
  312. },
  313. {
  314. "__id__": 11
  315. },
  316. {
  317. "__id__": 12
  318. }
  319. ],
  320. "_prefab": null,
  321. "_lpos": {
  322. "__type__": "cc.Vec3",
  323. "x": 1173.925,
  324. "y": 320,
  325. "z": 0
  326. },
  327. "_lrot": {
  328. "__type__": "cc.Quat",
  329. "x": 0,
  330. "y": 0,
  331. "z": 0,
  332. "w": 1
  333. },
  334. "_lscale": {
  335. "__type__": "cc.Vec3",
  336. "x": 1,
  337. "y": 1,
  338. "z": 1
  339. },
  340. "_mobility": 0,
  341. "_layer": 33554432,
  342. "_euler": {
  343. "__type__": "cc.Vec3",
  344. "x": 0,
  345. "y": 0,
  346. "z": 0
  347. },
  348. "_id": "75llW/hx9NLbQlUa4LWOqX"
  349. },
  350. {
  351. "__type__": "cc.Node",
  352. "_name": "Label",
  353. "_objFlags": 0,
  354. "__editorExtras__": {},
  355. "_parent": {
  356. "__id__": 6
  357. },
  358. "_children": [],
  359. "_active": true,
  360. "_components": [
  361. {
  362. "__id__": 8
  363. },
  364. {
  365. "__id__": 9
  366. }
  367. ],
  368. "_prefab": null,
  369. "_lpos": {
  370. "__type__": "cc.Vec3",
  371. "x": 0,
  372. "y": 0,
  373. "z": 0
  374. },
  375. "_lrot": {
  376. "__type__": "cc.Quat",
  377. "x": 0,
  378. "y": 0,
  379. "z": 0,
  380. "w": 1
  381. },
  382. "_lscale": {
  383. "__type__": "cc.Vec3",
  384. "x": 1,
  385. "y": 1,
  386. "z": 1
  387. },
  388. "_mobility": 0,
  389. "_layer": 33554432,
  390. "_euler": {
  391. "__type__": "cc.Vec3",
  392. "x": 0,
  393. "y": 0,
  394. "z": 0
  395. },
  396. "_id": "7cLNPtVAhA8LMG6lzp9rRY"
  397. },
  398. {
  399. "__type__": "cc.UITransform",
  400. "_name": "",
  401. "_objFlags": 0,
  402. "__editorExtras__": {},
  403. "node": {
  404. "__id__": 7
  405. },
  406. "_enabled": true,
  407. "__prefab": null,
  408. "_contentSize": {
  409. "__type__": "cc.Size",
  410. "width": 100,
  411. "height": 40
  412. },
  413. "_anchorPoint": {
  414. "__type__": "cc.Vec2",
  415. "x": 0.5,
  416. "y": 0.5
  417. },
  418. "_id": "3etK4dgO5ONJq8LNRDMw5W"
  419. },
  420. {
  421. "__type__": "cc.Label",
  422. "_name": "",
  423. "_objFlags": 0,
  424. "__editorExtras__": {},
  425. "node": {
  426. "__id__": 7
  427. },
  428. "_enabled": true,
  429. "__prefab": null,
  430. "_customMaterial": null,
  431. "_srcBlendFactor": 2,
  432. "_dstBlendFactor": 4,
  433. "_color": {
  434. "__type__": "cc.Color",
  435. "r": 0,
  436. "g": 0,
  437. "b": 0,
  438. "a": 255
  439. },
  440. "_string": "返回",
  441. "_horizontalAlign": 1,
  442. "_verticalAlign": 1,
  443. "_actualFontSize": 20,
  444. "_fontSize": 20,
  445. "_fontFamily": "Arial",
  446. "_lineHeight": 40,
  447. "_overflow": 1,
  448. "_enableWrapText": false,
  449. "_font": null,
  450. "_isSystemFontUsed": true,
  451. "_spacingX": 0,
  452. "_isItalic": false,
  453. "_isBold": false,
  454. "_isUnderline": false,
  455. "_underlineHeight": 2,
  456. "_cacheMode": 0,
  457. "_id": "b0GGLCr/BNL5cotkQ6FM7r"
  458. },
  459. {
  460. "__type__": "cc.UITransform",
  461. "_name": "",
  462. "_objFlags": 0,
  463. "__editorExtras__": {},
  464. "node": {
  465. "__id__": 6
  466. },
  467. "_enabled": true,
  468. "__prefab": null,
  469. "_contentSize": {
  470. "__type__": "cc.Size",
  471. "width": 200,
  472. "height": 100
  473. },
  474. "_anchorPoint": {
  475. "__type__": "cc.Vec2",
  476. "x": 0.5,
  477. "y": 0.5
  478. },
  479. "_id": "f9ns4uewpENo6VghVeU6QC"
  480. },
  481. {
  482. "__type__": "cc.Sprite",
  483. "_name": "",
  484. "_objFlags": 0,
  485. "__editorExtras__": {},
  486. "node": {
  487. "__id__": 6
  488. },
  489. "_enabled": true,
  490. "__prefab": null,
  491. "_customMaterial": null,
  492. "_srcBlendFactor": 2,
  493. "_dstBlendFactor": 4,
  494. "_color": {
  495. "__type__": "cc.Color",
  496. "r": 255,
  497. "g": 255,
  498. "b": 255,
  499. "a": 255
  500. },
  501. "_spriteFrame": {
  502. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  503. "__expectedType__": "cc.SpriteFrame"
  504. },
  505. "_type": 1,
  506. "_fillType": 0,
  507. "_sizeMode": 0,
  508. "_fillCenter": {
  509. "__type__": "cc.Vec2",
  510. "x": 0,
  511. "y": 0
  512. },
  513. "_fillStart": 0,
  514. "_fillRange": 0,
  515. "_isTrimmedMode": true,
  516. "_useGrayscale": false,
  517. "_atlas": null,
  518. "_id": "e9en8YyAVCbpXJRAuPf2IN"
  519. },
  520. {
  521. "__type__": "cc.Button",
  522. "_name": "",
  523. "_objFlags": 0,
  524. "__editorExtras__": {},
  525. "node": {
  526. "__id__": 6
  527. },
  528. "_enabled": true,
  529. "__prefab": null,
  530. "clickEvents": [],
  531. "_interactable": true,
  532. "_transition": 2,
  533. "_normalColor": {
  534. "__type__": "cc.Color",
  535. "r": 214,
  536. "g": 214,
  537. "b": 214,
  538. "a": 255
  539. },
  540. "_hoverColor": {
  541. "__type__": "cc.Color",
  542. "r": 211,
  543. "g": 211,
  544. "b": 211,
  545. "a": 255
  546. },
  547. "_pressedColor": {
  548. "__type__": "cc.Color",
  549. "r": 255,
  550. "g": 255,
  551. "b": 255,
  552. "a": 255
  553. },
  554. "_disabledColor": {
  555. "__type__": "cc.Color",
  556. "r": 124,
  557. "g": 124,
  558. "b": 124,
  559. "a": 255
  560. },
  561. "_normalSprite": {
  562. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  563. "__expectedType__": "cc.SpriteFrame"
  564. },
  565. "_hoverSprite": {
  566. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  567. "__expectedType__": "cc.SpriteFrame"
  568. },
  569. "_pressedSprite": {
  570. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  571. "__expectedType__": "cc.SpriteFrame"
  572. },
  573. "_disabledSprite": {
  574. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  575. "__expectedType__": "cc.SpriteFrame"
  576. },
  577. "_duration": 0.1,
  578. "_zoomScale": 1.2,
  579. "_target": {
  580. "__id__": 6
  581. },
  582. "_id": "1cukhcxdZDLrioCsC9XcMo"
  583. },
  584. {
  585. "__type__": "cc.Node",
  586. "_name": "btn_select_level",
  587. "_objFlags": 0,
  588. "__editorExtras__": {},
  589. "_parent": {
  590. "__id__": 5
  591. },
  592. "_children": [
  593. {
  594. "__id__": 14
  595. }
  596. ],
  597. "_active": true,
  598. "_components": [
  599. {
  600. "__id__": 17
  601. },
  602. {
  603. "__id__": 18
  604. },
  605. {
  606. "__id__": 19
  607. }
  608. ],
  609. "_prefab": null,
  610. "_lpos": {
  611. "__type__": "cc.Vec3",
  612. "x": 963.925,
  613. "y": 320,
  614. "z": 0
  615. },
  616. "_lrot": {
  617. "__type__": "cc.Quat",
  618. "x": 0,
  619. "y": 0,
  620. "z": 0,
  621. "w": 1
  622. },
  623. "_lscale": {
  624. "__type__": "cc.Vec3",
  625. "x": 1,
  626. "y": 1,
  627. "z": 1
  628. },
  629. "_mobility": 0,
  630. "_layer": 33554432,
  631. "_euler": {
  632. "__type__": "cc.Vec3",
  633. "x": 0,
  634. "y": 0,
  635. "z": 0
  636. },
  637. "_id": "6aj2uqnVxKuLi1dV2j7EGo"
  638. },
  639. {
  640. "__type__": "cc.Node",
  641. "_name": "Label",
  642. "_objFlags": 0,
  643. "__editorExtras__": {},
  644. "_parent": {
  645. "__id__": 13
  646. },
  647. "_children": [],
  648. "_active": true,
  649. "_components": [
  650. {
  651. "__id__": 15
  652. },
  653. {
  654. "__id__": 16
  655. }
  656. ],
  657. "_prefab": null,
  658. "_lpos": {
  659. "__type__": "cc.Vec3",
  660. "x": 0,
  661. "y": 0,
  662. "z": 0
  663. },
  664. "_lrot": {
  665. "__type__": "cc.Quat",
  666. "x": 0,
  667. "y": 0,
  668. "z": 0,
  669. "w": 1
  670. },
  671. "_lscale": {
  672. "__type__": "cc.Vec3",
  673. "x": 1,
  674. "y": 1,
  675. "z": 1
  676. },
  677. "_mobility": 0,
  678. "_layer": 33554432,
  679. "_euler": {
  680. "__type__": "cc.Vec3",
  681. "x": 0,
  682. "y": 0,
  683. "z": 0
  684. },
  685. "_id": "54PvvYS/dCVJCjBpGRQEU7"
  686. },
  687. {
  688. "__type__": "cc.UITransform",
  689. "_name": "",
  690. "_objFlags": 0,
  691. "__editorExtras__": {},
  692. "node": {
  693. "__id__": 14
  694. },
  695. "_enabled": true,
  696. "__prefab": null,
  697. "_contentSize": {
  698. "__type__": "cc.Size",
  699. "width": 100,
  700. "height": 40
  701. },
  702. "_anchorPoint": {
  703. "__type__": "cc.Vec2",
  704. "x": 0.5,
  705. "y": 0.5
  706. },
  707. "_id": "13RhTvTolI+5uXOU7JtOMz"
  708. },
  709. {
  710. "__type__": "cc.Label",
  711. "_name": "",
  712. "_objFlags": 0,
  713. "__editorExtras__": {},
  714. "node": {
  715. "__id__": 14
  716. },
  717. "_enabled": true,
  718. "__prefab": null,
  719. "_customMaterial": null,
  720. "_srcBlendFactor": 2,
  721. "_dstBlendFactor": 4,
  722. "_color": {
  723. "__type__": "cc.Color",
  724. "r": 0,
  725. "g": 0,
  726. "b": 0,
  727. "a": 255
  728. },
  729. "_string": "关卡选择",
  730. "_horizontalAlign": 1,
  731. "_verticalAlign": 1,
  732. "_actualFontSize": 20,
  733. "_fontSize": 20,
  734. "_fontFamily": "Arial",
  735. "_lineHeight": 40,
  736. "_overflow": 1,
  737. "_enableWrapText": false,
  738. "_font": null,
  739. "_isSystemFontUsed": true,
  740. "_spacingX": 0,
  741. "_isItalic": false,
  742. "_isBold": false,
  743. "_isUnderline": false,
  744. "_underlineHeight": 2,
  745. "_cacheMode": 0,
  746. "_id": "03XZiOvQpEnLYzh4ICE53O"
  747. },
  748. {
  749. "__type__": "cc.UITransform",
  750. "_name": "",
  751. "_objFlags": 0,
  752. "__editorExtras__": {},
  753. "node": {
  754. "__id__": 13
  755. },
  756. "_enabled": true,
  757. "__prefab": null,
  758. "_contentSize": {
  759. "__type__": "cc.Size",
  760. "width": 200,
  761. "height": 100
  762. },
  763. "_anchorPoint": {
  764. "__type__": "cc.Vec2",
  765. "x": 0.5,
  766. "y": 0.5
  767. },
  768. "_id": "c2NmmZr15BNr3EGUzzu73K"
  769. },
  770. {
  771. "__type__": "cc.Sprite",
  772. "_name": "",
  773. "_objFlags": 0,
  774. "__editorExtras__": {},
  775. "node": {
  776. "__id__": 13
  777. },
  778. "_enabled": true,
  779. "__prefab": null,
  780. "_customMaterial": null,
  781. "_srcBlendFactor": 2,
  782. "_dstBlendFactor": 4,
  783. "_color": {
  784. "__type__": "cc.Color",
  785. "r": 255,
  786. "g": 255,
  787. "b": 255,
  788. "a": 255
  789. },
  790. "_spriteFrame": {
  791. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  792. "__expectedType__": "cc.SpriteFrame"
  793. },
  794. "_type": 1,
  795. "_fillType": 0,
  796. "_sizeMode": 0,
  797. "_fillCenter": {
  798. "__type__": "cc.Vec2",
  799. "x": 0,
  800. "y": 0
  801. },
  802. "_fillStart": 0,
  803. "_fillRange": 0,
  804. "_isTrimmedMode": true,
  805. "_useGrayscale": false,
  806. "_atlas": null,
  807. "_id": "67wbJXvspLrppcmh8dOXLx"
  808. },
  809. {
  810. "__type__": "cc.Button",
  811. "_name": "",
  812. "_objFlags": 0,
  813. "__editorExtras__": {},
  814. "node": {
  815. "__id__": 13
  816. },
  817. "_enabled": true,
  818. "__prefab": null,
  819. "clickEvents": [],
  820. "_interactable": true,
  821. "_transition": 2,
  822. "_normalColor": {
  823. "__type__": "cc.Color",
  824. "r": 214,
  825. "g": 214,
  826. "b": 214,
  827. "a": 255
  828. },
  829. "_hoverColor": {
  830. "__type__": "cc.Color",
  831. "r": 211,
  832. "g": 211,
  833. "b": 211,
  834. "a": 255
  835. },
  836. "_pressedColor": {
  837. "__type__": "cc.Color",
  838. "r": 255,
  839. "g": 255,
  840. "b": 255,
  841. "a": 255
  842. },
  843. "_disabledColor": {
  844. "__type__": "cc.Color",
  845. "r": 124,
  846. "g": 124,
  847. "b": 124,
  848. "a": 255
  849. },
  850. "_normalSprite": {
  851. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  852. "__expectedType__": "cc.SpriteFrame"
  853. },
  854. "_hoverSprite": {
  855. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  856. "__expectedType__": "cc.SpriteFrame"
  857. },
  858. "_pressedSprite": {
  859. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  860. "__expectedType__": "cc.SpriteFrame"
  861. },
  862. "_disabledSprite": {
  863. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  864. "__expectedType__": "cc.SpriteFrame"
  865. },
  866. "_duration": 0.1,
  867. "_zoomScale": 1.2,
  868. "_target": {
  869. "__id__": 13
  870. },
  871. "_id": "4fpDQsEwFFb7UI1szfQguH"
  872. },
  873. {
  874. "__type__": "cc.Node",
  875. "_name": "Label",
  876. "_objFlags": 0,
  877. "__editorExtras__": {},
  878. "_parent": {
  879. "__id__": 5
  880. },
  881. "_children": [],
  882. "_active": true,
  883. "_components": [
  884. {
  885. "__id__": 21
  886. },
  887. {
  888. "__id__": 22
  889. }
  890. ],
  891. "_prefab": null,
  892. "_lpos": {
  893. "__type__": "cc.Vec3",
  894. "x": 84.002,
  895. "y": 340,
  896. "z": 0
  897. },
  898. "_lrot": {
  899. "__type__": "cc.Quat",
  900. "x": 0,
  901. "y": 0,
  902. "z": 0,
  903. "w": 1
  904. },
  905. "_lscale": {
  906. "__type__": "cc.Vec3",
  907. "x": 1,
  908. "y": 1,
  909. "z": 1
  910. },
  911. "_mobility": 0,
  912. "_layer": 33554432,
  913. "_euler": {
  914. "__type__": "cc.Vec3",
  915. "x": 0,
  916. "y": 0,
  917. "z": 0
  918. },
  919. "_id": "ee0+kPEkJPTbny41xkvtOr"
  920. },
  921. {
  922. "__type__": "cc.UITransform",
  923. "_name": "",
  924. "_objFlags": 0,
  925. "__editorExtras__": {},
  926. "node": {
  927. "__id__": 20
  928. },
  929. "_enabled": true,
  930. "__prefab": null,
  931. "_contentSize": {
  932. "__type__": "cc.Size",
  933. "width": 134.3671875,
  934. "height": 50.4
  935. },
  936. "_anchorPoint": {
  937. "__type__": "cc.Vec2",
  938. "x": 0.5,
  939. "y": 0.5
  940. },
  941. "_id": "a2plkq5m1DOpwDrxE28C48"
  942. },
  943. {
  944. "__type__": "cc.Label",
  945. "_name": "",
  946. "_objFlags": 0,
  947. "__editorExtras__": {},
  948. "node": {
  949. "__id__": 20
  950. },
  951. "_enabled": true,
  952. "__prefab": null,
  953. "_customMaterial": null,
  954. "_srcBlendFactor": 2,
  955. "_dstBlendFactor": 4,
  956. "_color": {
  957. "__type__": "cc.Color",
  958. "r": 255,
  959. "g": 255,
  960. "b": 255,
  961. "a": 255
  962. },
  963. "_string": "<关卡名称>",
  964. "_horizontalAlign": 1,
  965. "_verticalAlign": 1,
  966. "_actualFontSize": 26,
  967. "_fontSize": 26,
  968. "_fontFamily": "Arial",
  969. "_lineHeight": 40,
  970. "_overflow": 0,
  971. "_enableWrapText": false,
  972. "_font": null,
  973. "_isSystemFontUsed": true,
  974. "_spacingX": 0,
  975. "_isItalic": false,
  976. "_isBold": false,
  977. "_isUnderline": false,
  978. "_underlineHeight": 2,
  979. "_cacheMode": 0,
  980. "_id": "79yKab6vZECJUQTqzFLryc"
  981. },
  982. {
  983. "__type__": "cc.Node",
  984. "_name": "circle",
  985. "_objFlags": 0,
  986. "__editorExtras__": {},
  987. "_parent": {
  988. "__id__": 5
  989. },
  990. "_children": [
  991. {
  992. "__id__": 24
  993. },
  994. {
  995. "__id__": 31
  996. }
  997. ],
  998. "_active": true,
  999. "_components": [
  1000. {
  1001. "__id__": 38
  1002. },
  1003. {
  1004. "__id__": 39
  1005. },
  1006. {
  1007. "__id__": 40
  1008. }
  1009. ],
  1010. "_prefab": null,
  1011. "_lpos": {
  1012. "__type__": "cc.Vec3",
  1013. "x": 1500,
  1014. "y": 320,
  1015. "z": 0
  1016. },
  1017. "_lrot": {
  1018. "__type__": "cc.Quat",
  1019. "x": 0,
  1020. "y": 0,
  1021. "z": 0,
  1022. "w": 1
  1023. },
  1024. "_lscale": {
  1025. "__type__": "cc.Vec3",
  1026. "x": 1,
  1027. "y": 1,
  1028. "z": 1
  1029. },
  1030. "_mobility": 0,
  1031. "_layer": 33554432,
  1032. "_euler": {
  1033. "__type__": "cc.Vec3",
  1034. "x": 0,
  1035. "y": 0,
  1036. "z": 0
  1037. },
  1038. "_id": "cdK3VvMYlESY1iDoS6hBEM"
  1039. },
  1040. {
  1041. "__type__": "cc.Node",
  1042. "_name": "btn_cancel",
  1043. "_objFlags": 0,
  1044. "__editorExtras__": {},
  1045. "_parent": {
  1046. "__id__": 23
  1047. },
  1048. "_children": [
  1049. {
  1050. "__id__": 25
  1051. }
  1052. ],
  1053. "_active": true,
  1054. "_components": [
  1055. {
  1056. "__id__": 28
  1057. },
  1058. {
  1059. "__id__": 29
  1060. },
  1061. {
  1062. "__id__": 30
  1063. }
  1064. ],
  1065. "_prefab": null,
  1066. "_lpos": {
  1067. "__type__": "cc.Vec3",
  1068. "x": -52.444,
  1069. "y": 0,
  1070. "z": 0
  1071. },
  1072. "_lrot": {
  1073. "__type__": "cc.Quat",
  1074. "x": 0,
  1075. "y": 0,
  1076. "z": 0,
  1077. "w": 1
  1078. },
  1079. "_lscale": {
  1080. "__type__": "cc.Vec3",
  1081. "x": 0.5,
  1082. "y": 0.5,
  1083. "z": 1
  1084. },
  1085. "_mobility": 0,
  1086. "_layer": 33554432,
  1087. "_euler": {
  1088. "__type__": "cc.Vec3",
  1089. "x": 0,
  1090. "y": 0,
  1091. "z": 0
  1092. },
  1093. "_id": "11ktKsQmZG3ZCZV+2tLJvw"
  1094. },
  1095. {
  1096. "__type__": "cc.Node",
  1097. "_name": "Label",
  1098. "_objFlags": 0,
  1099. "__editorExtras__": {},
  1100. "_parent": {
  1101. "__id__": 24
  1102. },
  1103. "_children": [],
  1104. "_active": true,
  1105. "_components": [
  1106. {
  1107. "__id__": 26
  1108. },
  1109. {
  1110. "__id__": 27
  1111. }
  1112. ],
  1113. "_prefab": null,
  1114. "_lpos": {
  1115. "__type__": "cc.Vec3",
  1116. "x": 0,
  1117. "y": 0,
  1118. "z": 0
  1119. },
  1120. "_lrot": {
  1121. "__type__": "cc.Quat",
  1122. "x": 0,
  1123. "y": 0,
  1124. "z": 0,
  1125. "w": 1
  1126. },
  1127. "_lscale": {
  1128. "__type__": "cc.Vec3",
  1129. "x": 1,
  1130. "y": 1,
  1131. "z": 1
  1132. },
  1133. "_mobility": 0,
  1134. "_layer": 33554432,
  1135. "_euler": {
  1136. "__type__": "cc.Vec3",
  1137. "x": 0,
  1138. "y": 0,
  1139. "z": 0
  1140. },
  1141. "_id": "91hWgjdmFDs5nZZFjRJBTA"
  1142. },
  1143. {
  1144. "__type__": "cc.UITransform",
  1145. "_name": "",
  1146. "_objFlags": 0,
  1147. "__editorExtras__": {},
  1148. "node": {
  1149. "__id__": 25
  1150. },
  1151. "_enabled": true,
  1152. "__prefab": null,
  1153. "_contentSize": {
  1154. "__type__": "cc.Size",
  1155. "width": 100,
  1156. "height": 40
  1157. },
  1158. "_anchorPoint": {
  1159. "__type__": "cc.Vec2",
  1160. "x": 0.5,
  1161. "y": 0.5
  1162. },
  1163. "_id": "6ah6eYW55Itr17IyGS6Gob"
  1164. },
  1165. {
  1166. "__type__": "cc.Label",
  1167. "_name": "",
  1168. "_objFlags": 0,
  1169. "__editorExtras__": {},
  1170. "node": {
  1171. "__id__": 25
  1172. },
  1173. "_enabled": true,
  1174. "__prefab": null,
  1175. "_customMaterial": null,
  1176. "_srcBlendFactor": 2,
  1177. "_dstBlendFactor": 4,
  1178. "_color": {
  1179. "__type__": "cc.Color",
  1180. "r": 0,
  1181. "g": 0,
  1182. "b": 0,
  1183. "a": 255
  1184. },
  1185. "_string": "取消",
  1186. "_horizontalAlign": 1,
  1187. "_verticalAlign": 1,
  1188. "_actualFontSize": 20,
  1189. "_fontSize": 20,
  1190. "_fontFamily": "Arial",
  1191. "_lineHeight": 40,
  1192. "_overflow": 1,
  1193. "_enableWrapText": false,
  1194. "_font": null,
  1195. "_isSystemFontUsed": true,
  1196. "_spacingX": 0,
  1197. "_isItalic": false,
  1198. "_isBold": false,
  1199. "_isUnderline": false,
  1200. "_underlineHeight": 2,
  1201. "_cacheMode": 0,
  1202. "_id": "5bGsuZWkJG65nblbpYzLqn"
  1203. },
  1204. {
  1205. "__type__": "cc.UITransform",
  1206. "_name": "",
  1207. "_objFlags": 0,
  1208. "__editorExtras__": {},
  1209. "node": {
  1210. "__id__": 24
  1211. },
  1212. "_enabled": true,
  1213. "__prefab": null,
  1214. "_contentSize": {
  1215. "__type__": "cc.Size",
  1216. "width": 100,
  1217. "height": 40
  1218. },
  1219. "_anchorPoint": {
  1220. "__type__": "cc.Vec2",
  1221. "x": 0.5,
  1222. "y": 0.5
  1223. },
  1224. "_id": "d7ifFmiVxGRL30/6JOSYnz"
  1225. },
  1226. {
  1227. "__type__": "cc.Sprite",
  1228. "_name": "",
  1229. "_objFlags": 0,
  1230. "__editorExtras__": {},
  1231. "node": {
  1232. "__id__": 24
  1233. },
  1234. "_enabled": true,
  1235. "__prefab": null,
  1236. "_customMaterial": null,
  1237. "_srcBlendFactor": 2,
  1238. "_dstBlendFactor": 4,
  1239. "_color": {
  1240. "__type__": "cc.Color",
  1241. "r": 255,
  1242. "g": 255,
  1243. "b": 255,
  1244. "a": 255
  1245. },
  1246. "_spriteFrame": {
  1247. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  1248. "__expectedType__": "cc.SpriteFrame"
  1249. },
  1250. "_type": 1,
  1251. "_fillType": 0,
  1252. "_sizeMode": 0,
  1253. "_fillCenter": {
  1254. "__type__": "cc.Vec2",
  1255. "x": 0,
  1256. "y": 0
  1257. },
  1258. "_fillStart": 0,
  1259. "_fillRange": 0,
  1260. "_isTrimmedMode": true,
  1261. "_useGrayscale": false,
  1262. "_atlas": null,
  1263. "_id": "11tjApefxL+JzYMma8RZWU"
  1264. },
  1265. {
  1266. "__type__": "cc.Button",
  1267. "_name": "",
  1268. "_objFlags": 0,
  1269. "__editorExtras__": {},
  1270. "node": {
  1271. "__id__": 24
  1272. },
  1273. "_enabled": true,
  1274. "__prefab": null,
  1275. "clickEvents": [],
  1276. "_interactable": true,
  1277. "_transition": 2,
  1278. "_normalColor": {
  1279. "__type__": "cc.Color",
  1280. "r": 214,
  1281. "g": 214,
  1282. "b": 214,
  1283. "a": 255
  1284. },
  1285. "_hoverColor": {
  1286. "__type__": "cc.Color",
  1287. "r": 211,
  1288. "g": 211,
  1289. "b": 211,
  1290. "a": 255
  1291. },
  1292. "_pressedColor": {
  1293. "__type__": "cc.Color",
  1294. "r": 255,
  1295. "g": 255,
  1296. "b": 255,
  1297. "a": 255
  1298. },
  1299. "_disabledColor": {
  1300. "__type__": "cc.Color",
  1301. "r": 124,
  1302. "g": 124,
  1303. "b": 124,
  1304. "a": 255
  1305. },
  1306. "_normalSprite": {
  1307. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  1308. "__expectedType__": "cc.SpriteFrame"
  1309. },
  1310. "_hoverSprite": {
  1311. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  1312. "__expectedType__": "cc.SpriteFrame"
  1313. },
  1314. "_pressedSprite": {
  1315. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  1316. "__expectedType__": "cc.SpriteFrame"
  1317. },
  1318. "_disabledSprite": {
  1319. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  1320. "__expectedType__": "cc.SpriteFrame"
  1321. },
  1322. "_duration": 0.1,
  1323. "_zoomScale": 1.2,
  1324. "_target": {
  1325. "__id__": 24
  1326. },
  1327. "_id": "22hfUBWAtIX5eQmXZYHim2"
  1328. },
  1329. {
  1330. "__type__": "cc.Node",
  1331. "_name": "btn_delete",
  1332. "_objFlags": 0,
  1333. "__editorExtras__": {},
  1334. "_parent": {
  1335. "__id__": 23
  1336. },
  1337. "_children": [
  1338. {
  1339. "__id__": 32
  1340. }
  1341. ],
  1342. "_active": true,
  1343. "_components": [
  1344. {
  1345. "__id__": 35
  1346. },
  1347. {
  1348. "__id__": 36
  1349. },
  1350. {
  1351. "__id__": 37
  1352. }
  1353. ],
  1354. "_prefab": null,
  1355. "_lpos": {
  1356. "__type__": "cc.Vec3",
  1357. "x": 53.858,
  1358. "y": 0,
  1359. "z": 0
  1360. },
  1361. "_lrot": {
  1362. "__type__": "cc.Quat",
  1363. "x": 0,
  1364. "y": 0,
  1365. "z": 0,
  1366. "w": 1
  1367. },
  1368. "_lscale": {
  1369. "__type__": "cc.Vec3",
  1370. "x": 0.5,
  1371. "y": 0.5,
  1372. "z": 1
  1373. },
  1374. "_mobility": 0,
  1375. "_layer": 33554432,
  1376. "_euler": {
  1377. "__type__": "cc.Vec3",
  1378. "x": 0,
  1379. "y": 0,
  1380. "z": 0
  1381. },
  1382. "_id": "e4vHldYw9E/bSU4Kice5Yc"
  1383. },
  1384. {
  1385. "__type__": "cc.Node",
  1386. "_name": "Label",
  1387. "_objFlags": 0,
  1388. "__editorExtras__": {},
  1389. "_parent": {
  1390. "__id__": 31
  1391. },
  1392. "_children": [],
  1393. "_active": true,
  1394. "_components": [
  1395. {
  1396. "__id__": 33
  1397. },
  1398. {
  1399. "__id__": 34
  1400. }
  1401. ],
  1402. "_prefab": null,
  1403. "_lpos": {
  1404. "__type__": "cc.Vec3",
  1405. "x": 0,
  1406. "y": 0,
  1407. "z": 0
  1408. },
  1409. "_lrot": {
  1410. "__type__": "cc.Quat",
  1411. "x": 0,
  1412. "y": 0,
  1413. "z": 0,
  1414. "w": 1
  1415. },
  1416. "_lscale": {
  1417. "__type__": "cc.Vec3",
  1418. "x": 1,
  1419. "y": 1,
  1420. "z": 1
  1421. },
  1422. "_mobility": 0,
  1423. "_layer": 33554432,
  1424. "_euler": {
  1425. "__type__": "cc.Vec3",
  1426. "x": 0,
  1427. "y": 0,
  1428. "z": 0
  1429. },
  1430. "_id": "59W5t2MVlKjpAS6bWrupNL"
  1431. },
  1432. {
  1433. "__type__": "cc.UITransform",
  1434. "_name": "",
  1435. "_objFlags": 0,
  1436. "__editorExtras__": {},
  1437. "node": {
  1438. "__id__": 32
  1439. },
  1440. "_enabled": true,
  1441. "__prefab": null,
  1442. "_contentSize": {
  1443. "__type__": "cc.Size",
  1444. "width": 100,
  1445. "height": 40
  1446. },
  1447. "_anchorPoint": {
  1448. "__type__": "cc.Vec2",
  1449. "x": 0.5,
  1450. "y": 0.5
  1451. },
  1452. "_id": "cfpzj6Ne9MZpFMWZLoxhLX"
  1453. },
  1454. {
  1455. "__type__": "cc.Label",
  1456. "_name": "",
  1457. "_objFlags": 0,
  1458. "__editorExtras__": {},
  1459. "node": {
  1460. "__id__": 32
  1461. },
  1462. "_enabled": true,
  1463. "__prefab": null,
  1464. "_customMaterial": null,
  1465. "_srcBlendFactor": 2,
  1466. "_dstBlendFactor": 4,
  1467. "_color": {
  1468. "__type__": "cc.Color",
  1469. "r": 0,
  1470. "g": 0,
  1471. "b": 0,
  1472. "a": 255
  1473. },
  1474. "_string": "删除",
  1475. "_horizontalAlign": 1,
  1476. "_verticalAlign": 1,
  1477. "_actualFontSize": 20,
  1478. "_fontSize": 20,
  1479. "_fontFamily": "Arial",
  1480. "_lineHeight": 40,
  1481. "_overflow": 1,
  1482. "_enableWrapText": false,
  1483. "_font": null,
  1484. "_isSystemFontUsed": true,
  1485. "_spacingX": 0,
  1486. "_isItalic": false,
  1487. "_isBold": false,
  1488. "_isUnderline": false,
  1489. "_underlineHeight": 2,
  1490. "_cacheMode": 0,
  1491. "_id": "9fJ/Rwbv1Aa48AiLZX+U38"
  1492. },
  1493. {
  1494. "__type__": "cc.UITransform",
  1495. "_name": "",
  1496. "_objFlags": 0,
  1497. "__editorExtras__": {},
  1498. "node": {
  1499. "__id__": 31
  1500. },
  1501. "_enabled": true,
  1502. "__prefab": null,
  1503. "_contentSize": {
  1504. "__type__": "cc.Size",
  1505. "width": 100,
  1506. "height": 40
  1507. },
  1508. "_anchorPoint": {
  1509. "__type__": "cc.Vec2",
  1510. "x": 0.5,
  1511. "y": 0.5
  1512. },
  1513. "_id": "57QGNGR7ZAHo9BZTiI2iel"
  1514. },
  1515. {
  1516. "__type__": "cc.Sprite",
  1517. "_name": "",
  1518. "_objFlags": 0,
  1519. "__editorExtras__": {},
  1520. "node": {
  1521. "__id__": 31
  1522. },
  1523. "_enabled": true,
  1524. "__prefab": null,
  1525. "_customMaterial": null,
  1526. "_srcBlendFactor": 2,
  1527. "_dstBlendFactor": 4,
  1528. "_color": {
  1529. "__type__": "cc.Color",
  1530. "r": 255,
  1531. "g": 255,
  1532. "b": 255,
  1533. "a": 255
  1534. },
  1535. "_spriteFrame": {
  1536. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  1537. "__expectedType__": "cc.SpriteFrame"
  1538. },
  1539. "_type": 1,
  1540. "_fillType": 0,
  1541. "_sizeMode": 0,
  1542. "_fillCenter": {
  1543. "__type__": "cc.Vec2",
  1544. "x": 0,
  1545. "y": 0
  1546. },
  1547. "_fillStart": 0,
  1548. "_fillRange": 0,
  1549. "_isTrimmedMode": true,
  1550. "_useGrayscale": false,
  1551. "_atlas": null,
  1552. "_id": "aekTY/sV5FVZJbVJnuDCYw"
  1553. },
  1554. {
  1555. "__type__": "cc.Button",
  1556. "_name": "",
  1557. "_objFlags": 0,
  1558. "__editorExtras__": {},
  1559. "node": {
  1560. "__id__": 31
  1561. },
  1562. "_enabled": true,
  1563. "__prefab": null,
  1564. "clickEvents": [],
  1565. "_interactable": true,
  1566. "_transition": 2,
  1567. "_normalColor": {
  1568. "__type__": "cc.Color",
  1569. "r": 214,
  1570. "g": 214,
  1571. "b": 214,
  1572. "a": 255
  1573. },
  1574. "_hoverColor": {
  1575. "__type__": "cc.Color",
  1576. "r": 211,
  1577. "g": 211,
  1578. "b": 211,
  1579. "a": 255
  1580. },
  1581. "_pressedColor": {
  1582. "__type__": "cc.Color",
  1583. "r": 255,
  1584. "g": 255,
  1585. "b": 255,
  1586. "a": 255
  1587. },
  1588. "_disabledColor": {
  1589. "__type__": "cc.Color",
  1590. "r": 124,
  1591. "g": 124,
  1592. "b": 124,
  1593. "a": 255
  1594. },
  1595. "_normalSprite": {
  1596. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  1597. "__expectedType__": "cc.SpriteFrame"
  1598. },
  1599. "_hoverSprite": {
  1600. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  1601. "__expectedType__": "cc.SpriteFrame"
  1602. },
  1603. "_pressedSprite": {
  1604. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  1605. "__expectedType__": "cc.SpriteFrame"
  1606. },
  1607. "_disabledSprite": {
  1608. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  1609. "__expectedType__": "cc.SpriteFrame"
  1610. },
  1611. "_duration": 0.1,
  1612. "_zoomScale": 1.2,
  1613. "_target": {
  1614. "__id__": 31
  1615. },
  1616. "_id": "63TYvaYoxDVaC5PPvmkWwn"
  1617. },
  1618. {
  1619. "__type__": "cc.UITransform",
  1620. "_name": "",
  1621. "_objFlags": 0,
  1622. "__editorExtras__": {},
  1623. "node": {
  1624. "__id__": 23
  1625. },
  1626. "_enabled": true,
  1627. "__prefab": null,
  1628. "_contentSize": {
  1629. "__type__": "cc.Size",
  1630. "width": 120,
  1631. "height": 120
  1632. },
  1633. "_anchorPoint": {
  1634. "__type__": "cc.Vec2",
  1635. "x": 0.5,
  1636. "y": 0.5
  1637. },
  1638. "_id": "3aOg2bVdVCvJLbeOquk+/L"
  1639. },
  1640. {
  1641. "__type__": "cc.Sprite",
  1642. "_name": "",
  1643. "_objFlags": 0,
  1644. "__editorExtras__": {},
  1645. "node": {
  1646. "__id__": 23
  1647. },
  1648. "_enabled": true,
  1649. "__prefab": null,
  1650. "_customMaterial": null,
  1651. "_srcBlendFactor": 2,
  1652. "_dstBlendFactor": 4,
  1653. "_color": {
  1654. "__type__": "cc.Color",
  1655. "r": 255,
  1656. "g": 255,
  1657. "b": 255,
  1658. "a": 255
  1659. },
  1660. "_spriteFrame": {
  1661. "__uuid__": "0135c9bc-71b8-484b-8c91-39e882267f7c@f9941",
  1662. "__expectedType__": "cc.SpriteFrame"
  1663. },
  1664. "_type": 0,
  1665. "_fillType": 0,
  1666. "_sizeMode": 0,
  1667. "_fillCenter": {
  1668. "__type__": "cc.Vec2",
  1669. "x": 0,
  1670. "y": 0
  1671. },
  1672. "_fillStart": 0,
  1673. "_fillRange": 0,
  1674. "_isTrimmedMode": true,
  1675. "_useGrayscale": false,
  1676. "_atlas": null,
  1677. "_id": "6aBTGs/FxIz6Wy71q5XDOj"
  1678. },
  1679. {
  1680. "__type__": "bfa3eNzx1NEsJHhkkLKx/dh",
  1681. "_name": "",
  1682. "_objFlags": 0,
  1683. "__editorExtras__": {},
  1684. "node": {
  1685. "__id__": 23
  1686. },
  1687. "_enabled": true,
  1688. "__prefab": null,
  1689. "btn_cancel": {
  1690. "__id__": 24
  1691. },
  1692. "btn_delete": {
  1693. "__id__": 31
  1694. },
  1695. "sf": null,
  1696. "_id": "8bpdBJCSJErKI4AdRBfGZ5"
  1697. },
  1698. {
  1699. "__type__": "cc.Node",
  1700. "_name": "1-deformPic-375_220",
  1701. "_objFlags": 0,
  1702. "__editorExtras__": {},
  1703. "_parent": {
  1704. "__id__": 5
  1705. },
  1706. "_children": [],
  1707. "_active": true,
  1708. "_components": [
  1709. {
  1710. "__id__": 42
  1711. },
  1712. {
  1713. "__id__": 43
  1714. }
  1715. ],
  1716. "_prefab": null,
  1717. "_lpos": {
  1718. "__type__": "cc.Vec3",
  1719. "x": 12.5,
  1720. "y": 391.995,
  1721. "z": 0
  1722. },
  1723. "_lrot": {
  1724. "__type__": "cc.Quat",
  1725. "x": 0,
  1726. "y": 0,
  1727. "z": 0,
  1728. "w": 1
  1729. },
  1730. "_lscale": {
  1731. "__type__": "cc.Vec3",
  1732. "x": 1,
  1733. "y": 1,
  1734. "z": 1
  1735. },
  1736. "_mobility": 0,
  1737. "_layer": 33554432,
  1738. "_euler": {
  1739. "__type__": "cc.Vec3",
  1740. "x": 0,
  1741. "y": 0,
  1742. "z": 0
  1743. },
  1744. "_id": "a5Gh2R2vBHTaoXr19bqaMz"
  1745. },
  1746. {
  1747. "__type__": "cc.UITransform",
  1748. "_name": "",
  1749. "_objFlags": 0,
  1750. "__editorExtras__": {},
  1751. "node": {
  1752. "__id__": 41
  1753. },
  1754. "_enabled": true,
  1755. "__prefab": null,
  1756. "_contentSize": {
  1757. "__type__": "cc.Size",
  1758. "width": 937.5,
  1759. "height": 550
  1760. },
  1761. "_anchorPoint": {
  1762. "__type__": "cc.Vec2",
  1763. "x": 0,
  1764. "y": 0
  1765. },
  1766. "_id": "27i4X49lhMG5lmcerMBTRJ"
  1767. },
  1768. {
  1769. "__type__": "cc.Sprite",
  1770. "_name": "",
  1771. "_objFlags": 0,
  1772. "__editorExtras__": {},
  1773. "node": {
  1774. "__id__": 41
  1775. },
  1776. "_enabled": true,
  1777. "__prefab": null,
  1778. "_customMaterial": null,
  1779. "_srcBlendFactor": 2,
  1780. "_dstBlendFactor": 4,
  1781. "_color": {
  1782. "__type__": "cc.Color",
  1783. "r": 255,
  1784. "g": 255,
  1785. "b": 255,
  1786. "a": 255
  1787. },
  1788. "_spriteFrame": {
  1789. "__uuid__": "a74c3d27-2c5f-4f40-83be-b57b52452236@f9941",
  1790. "__expectedType__": "cc.SpriteFrame"
  1791. },
  1792. "_type": 0,
  1793. "_fillType": 0,
  1794. "_sizeMode": 0,
  1795. "_fillCenter": {
  1796. "__type__": "cc.Vec2",
  1797. "x": 0,
  1798. "y": 0
  1799. },
  1800. "_fillStart": 0,
  1801. "_fillRange": 0,
  1802. "_isTrimmedMode": true,
  1803. "_useGrayscale": false,
  1804. "_atlas": null,
  1805. "_id": "f4bb7XJcNN5aolwOoxZV38"
  1806. },
  1807. {
  1808. "__type__": "cc.Node",
  1809. "_name": "1-originalPic-375_220",
  1810. "_objFlags": 0,
  1811. "__editorExtras__": {},
  1812. "_parent": {
  1813. "__id__": 5
  1814. },
  1815. "_children": [
  1816. {
  1817. "__id__": 45
  1818. }
  1819. ],
  1820. "_active": true,
  1821. "_components": [
  1822. {
  1823. "__id__": 48
  1824. },
  1825. {
  1826. "__id__": 49
  1827. }
  1828. ],
  1829. "_prefab": null,
  1830. "_lpos": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 970,
  1833. "y": 391.995,
  1834. "z": 0
  1835. },
  1836. "_lrot": {
  1837. "__type__": "cc.Quat",
  1838. "x": 0,
  1839. "y": 0,
  1840. "z": 0,
  1841. "w": 1
  1842. },
  1843. "_lscale": {
  1844. "__type__": "cc.Vec3",
  1845. "x": 2.5,
  1846. "y": 2.5,
  1847. "z": 1
  1848. },
  1849. "_mobility": 0,
  1850. "_layer": 33554432,
  1851. "_euler": {
  1852. "__type__": "cc.Vec3",
  1853. "x": 0,
  1854. "y": 0,
  1855. "z": 0
  1856. },
  1857. "_id": "7ey4kBhNZJqZ0JXhk8RT2P"
  1858. },
  1859. {
  1860. "__type__": "cc.Node",
  1861. "_name": "list_circle",
  1862. "_objFlags": 0,
  1863. "__editorExtras__": {},
  1864. "_parent": {
  1865. "__id__": 44
  1866. },
  1867. "_children": [],
  1868. "_active": true,
  1869. "_components": [
  1870. {
  1871. "__id__": 46
  1872. },
  1873. {
  1874. "__id__": 47
  1875. }
  1876. ],
  1877. "_prefab": null,
  1878. "_lpos": {
  1879. "__type__": "cc.Vec3",
  1880. "x": 0,
  1881. "y": 0,
  1882. "z": 0
  1883. },
  1884. "_lrot": {
  1885. "__type__": "cc.Quat",
  1886. "x": 0,
  1887. "y": 0,
  1888. "z": 0,
  1889. "w": 1
  1890. },
  1891. "_lscale": {
  1892. "__type__": "cc.Vec3",
  1893. "x": 1,
  1894. "y": 1,
  1895. "z": 1
  1896. },
  1897. "_mobility": 0,
  1898. "_layer": 33554432,
  1899. "_euler": {
  1900. "__type__": "cc.Vec3",
  1901. "x": 0,
  1902. "y": 0,
  1903. "z": 0
  1904. },
  1905. "_id": "aeXH+VeeNDKavrSRaiirz+"
  1906. },
  1907. {
  1908. "__type__": "cc.UITransform",
  1909. "_name": "",
  1910. "_objFlags": 0,
  1911. "__editorExtras__": {},
  1912. "node": {
  1913. "__id__": 45
  1914. },
  1915. "_enabled": true,
  1916. "__prefab": null,
  1917. "_contentSize": {
  1918. "__type__": "cc.Size",
  1919. "width": 375,
  1920. "height": 220
  1921. },
  1922. "_anchorPoint": {
  1923. "__type__": "cc.Vec2",
  1924. "x": 0,
  1925. "y": 0
  1926. },
  1927. "_id": "1dnfJOTWJOeLC1QkxcKN9h"
  1928. },
  1929. {
  1930. "__type__": "cc.Widget",
  1931. "_name": "",
  1932. "_objFlags": 0,
  1933. "__editorExtras__": {},
  1934. "node": {
  1935. "__id__": 45
  1936. },
  1937. "_enabled": true,
  1938. "__prefab": null,
  1939. "_alignFlags": 45,
  1940. "_target": null,
  1941. "_left": 0,
  1942. "_right": 0,
  1943. "_top": 0,
  1944. "_bottom": 0,
  1945. "_horizontalCenter": 0,
  1946. "_verticalCenter": 0,
  1947. "_isAbsLeft": true,
  1948. "_isAbsRight": true,
  1949. "_isAbsTop": true,
  1950. "_isAbsBottom": true,
  1951. "_isAbsHorizontalCenter": true,
  1952. "_isAbsVerticalCenter": true,
  1953. "_originalWidth": 100,
  1954. "_originalHeight": 100,
  1955. "_alignMode": 1,
  1956. "_lockFlags": 0,
  1957. "_id": "3aWXVM+3pDO4lzkSsEYH06"
  1958. },
  1959. {
  1960. "__type__": "cc.UITransform",
  1961. "_name": "",
  1962. "_objFlags": 0,
  1963. "__editorExtras__": {},
  1964. "node": {
  1965. "__id__": 44
  1966. },
  1967. "_enabled": true,
  1968. "__prefab": null,
  1969. "_contentSize": {
  1970. "__type__": "cc.Size",
  1971. "width": 375,
  1972. "height": 220
  1973. },
  1974. "_anchorPoint": {
  1975. "__type__": "cc.Vec2",
  1976. "x": 0,
  1977. "y": 0
  1978. },
  1979. "_id": "16msFAt2BFTY9yWXGrwsPc"
  1980. },
  1981. {
  1982. "__type__": "cc.Sprite",
  1983. "_name": "",
  1984. "_objFlags": 0,
  1985. "__editorExtras__": {},
  1986. "node": {
  1987. "__id__": 44
  1988. },
  1989. "_enabled": true,
  1990. "__prefab": null,
  1991. "_customMaterial": null,
  1992. "_srcBlendFactor": 2,
  1993. "_dstBlendFactor": 4,
  1994. "_color": {
  1995. "__type__": "cc.Color",
  1996. "r": 255,
  1997. "g": 255,
  1998. "b": 255,
  1999. "a": 255
  2000. },
  2001. "_spriteFrame": {
  2002. "__uuid__": "65b6c22e-ebdf-4d8e-9177-25f2115e8f12@f9941",
  2003. "__expectedType__": "cc.SpriteFrame"
  2004. },
  2005. "_type": 0,
  2006. "_fillType": 0,
  2007. "_sizeMode": 0,
  2008. "_fillCenter": {
  2009. "__type__": "cc.Vec2",
  2010. "x": 0,
  2011. "y": 0
  2012. },
  2013. "_fillStart": 0,
  2014. "_fillRange": 0,
  2015. "_isTrimmedMode": true,
  2016. "_useGrayscale": false,
  2017. "_atlas": null,
  2018. "_id": "81jYweojlMeLXe++g08jEv"
  2019. },
  2020. {
  2021. "__type__": "cc.Node",
  2022. "_name": "btn_save",
  2023. "_objFlags": 0,
  2024. "__editorExtras__": {},
  2025. "_parent": {
  2026. "__id__": 5
  2027. },
  2028. "_children": [
  2029. {
  2030. "__id__": 51
  2031. }
  2032. ],
  2033. "_active": true,
  2034. "_components": [
  2035. {
  2036. "__id__": 54
  2037. },
  2038. {
  2039. "__id__": 55
  2040. },
  2041. {
  2042. "__id__": 56
  2043. }
  2044. ],
  2045. "_prefab": null,
  2046. "_lpos": {
  2047. "__type__": "cc.Vec3",
  2048. "x": 753.925,
  2049. "y": 320,
  2050. "z": 0
  2051. },
  2052. "_lrot": {
  2053. "__type__": "cc.Quat",
  2054. "x": 0,
  2055. "y": 0,
  2056. "z": 0,
  2057. "w": 1
  2058. },
  2059. "_lscale": {
  2060. "__type__": "cc.Vec3",
  2061. "x": 1,
  2062. "y": 1,
  2063. "z": 1
  2064. },
  2065. "_mobility": 0,
  2066. "_layer": 33554432,
  2067. "_euler": {
  2068. "__type__": "cc.Vec3",
  2069. "x": 0,
  2070. "y": 0,
  2071. "z": 0
  2072. },
  2073. "_id": "39FSntj9ZF+6EmuwrQRZSH"
  2074. },
  2075. {
  2076. "__type__": "cc.Node",
  2077. "_name": "Label",
  2078. "_objFlags": 0,
  2079. "__editorExtras__": {},
  2080. "_parent": {
  2081. "__id__": 50
  2082. },
  2083. "_children": [],
  2084. "_active": true,
  2085. "_components": [
  2086. {
  2087. "__id__": 52
  2088. },
  2089. {
  2090. "__id__": 53
  2091. }
  2092. ],
  2093. "_prefab": null,
  2094. "_lpos": {
  2095. "__type__": "cc.Vec3",
  2096. "x": 0,
  2097. "y": 0,
  2098. "z": 0
  2099. },
  2100. "_lrot": {
  2101. "__type__": "cc.Quat",
  2102. "x": 0,
  2103. "y": 0,
  2104. "z": 0,
  2105. "w": 1
  2106. },
  2107. "_lscale": {
  2108. "__type__": "cc.Vec3",
  2109. "x": 1,
  2110. "y": 1,
  2111. "z": 1
  2112. },
  2113. "_mobility": 0,
  2114. "_layer": 33554432,
  2115. "_euler": {
  2116. "__type__": "cc.Vec3",
  2117. "x": 0,
  2118. "y": 0,
  2119. "z": 0
  2120. },
  2121. "_id": "04VbNKkXNEybhIqVTzvRTt"
  2122. },
  2123. {
  2124. "__type__": "cc.UITransform",
  2125. "_name": "",
  2126. "_objFlags": 0,
  2127. "__editorExtras__": {},
  2128. "node": {
  2129. "__id__": 51
  2130. },
  2131. "_enabled": true,
  2132. "__prefab": null,
  2133. "_contentSize": {
  2134. "__type__": "cc.Size",
  2135. "width": 100,
  2136. "height": 40
  2137. },
  2138. "_anchorPoint": {
  2139. "__type__": "cc.Vec2",
  2140. "x": 0.5,
  2141. "y": 0.5
  2142. },
  2143. "_id": "aesdY2UNFJPoNezItpsidp"
  2144. },
  2145. {
  2146. "__type__": "cc.Label",
  2147. "_name": "",
  2148. "_objFlags": 0,
  2149. "__editorExtras__": {},
  2150. "node": {
  2151. "__id__": 51
  2152. },
  2153. "_enabled": true,
  2154. "__prefab": null,
  2155. "_customMaterial": null,
  2156. "_srcBlendFactor": 2,
  2157. "_dstBlendFactor": 4,
  2158. "_color": {
  2159. "__type__": "cc.Color",
  2160. "r": 0,
  2161. "g": 0,
  2162. "b": 0,
  2163. "a": 255
  2164. },
  2165. "_string": "保存",
  2166. "_horizontalAlign": 1,
  2167. "_verticalAlign": 1,
  2168. "_actualFontSize": 20,
  2169. "_fontSize": 20,
  2170. "_fontFamily": "Arial",
  2171. "_lineHeight": 40,
  2172. "_overflow": 1,
  2173. "_enableWrapText": false,
  2174. "_font": null,
  2175. "_isSystemFontUsed": true,
  2176. "_spacingX": 0,
  2177. "_isItalic": false,
  2178. "_isBold": false,
  2179. "_isUnderline": false,
  2180. "_underlineHeight": 2,
  2181. "_cacheMode": 0,
  2182. "_id": "74e1bjDh1MRKfQWSimJOar"
  2183. },
  2184. {
  2185. "__type__": "cc.UITransform",
  2186. "_name": "",
  2187. "_objFlags": 0,
  2188. "__editorExtras__": {},
  2189. "node": {
  2190. "__id__": 50
  2191. },
  2192. "_enabled": true,
  2193. "__prefab": null,
  2194. "_contentSize": {
  2195. "__type__": "cc.Size",
  2196. "width": 200,
  2197. "height": 100
  2198. },
  2199. "_anchorPoint": {
  2200. "__type__": "cc.Vec2",
  2201. "x": 0.5,
  2202. "y": 0.5
  2203. },
  2204. "_id": "93kZ+b1oRORovPjstg8gfy"
  2205. },
  2206. {
  2207. "__type__": "cc.Sprite",
  2208. "_name": "",
  2209. "_objFlags": 0,
  2210. "__editorExtras__": {},
  2211. "node": {
  2212. "__id__": 50
  2213. },
  2214. "_enabled": true,
  2215. "__prefab": null,
  2216. "_customMaterial": null,
  2217. "_srcBlendFactor": 2,
  2218. "_dstBlendFactor": 4,
  2219. "_color": {
  2220. "__type__": "cc.Color",
  2221. "r": 255,
  2222. "g": 255,
  2223. "b": 255,
  2224. "a": 255
  2225. },
  2226. "_spriteFrame": {
  2227. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2228. "__expectedType__": "cc.SpriteFrame"
  2229. },
  2230. "_type": 1,
  2231. "_fillType": 0,
  2232. "_sizeMode": 0,
  2233. "_fillCenter": {
  2234. "__type__": "cc.Vec2",
  2235. "x": 0,
  2236. "y": 0
  2237. },
  2238. "_fillStart": 0,
  2239. "_fillRange": 0,
  2240. "_isTrimmedMode": true,
  2241. "_useGrayscale": false,
  2242. "_atlas": null,
  2243. "_id": "e1qwSYy0pCc5YaNzBH6Mte"
  2244. },
  2245. {
  2246. "__type__": "cc.Button",
  2247. "_name": "",
  2248. "_objFlags": 0,
  2249. "__editorExtras__": {},
  2250. "node": {
  2251. "__id__": 50
  2252. },
  2253. "_enabled": true,
  2254. "__prefab": null,
  2255. "clickEvents": [],
  2256. "_interactable": true,
  2257. "_transition": 2,
  2258. "_normalColor": {
  2259. "__type__": "cc.Color",
  2260. "r": 214,
  2261. "g": 214,
  2262. "b": 214,
  2263. "a": 255
  2264. },
  2265. "_hoverColor": {
  2266. "__type__": "cc.Color",
  2267. "r": 211,
  2268. "g": 211,
  2269. "b": 211,
  2270. "a": 255
  2271. },
  2272. "_pressedColor": {
  2273. "__type__": "cc.Color",
  2274. "r": 255,
  2275. "g": 255,
  2276. "b": 255,
  2277. "a": 255
  2278. },
  2279. "_disabledColor": {
  2280. "__type__": "cc.Color",
  2281. "r": 124,
  2282. "g": 124,
  2283. "b": 124,
  2284. "a": 255
  2285. },
  2286. "_normalSprite": {
  2287. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2288. "__expectedType__": "cc.SpriteFrame"
  2289. },
  2290. "_hoverSprite": {
  2291. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2292. "__expectedType__": "cc.SpriteFrame"
  2293. },
  2294. "_pressedSprite": {
  2295. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  2296. "__expectedType__": "cc.SpriteFrame"
  2297. },
  2298. "_disabledSprite": {
  2299. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  2300. "__expectedType__": "cc.SpriteFrame"
  2301. },
  2302. "_duration": 0.1,
  2303. "_zoomScale": 1.2,
  2304. "_target": {
  2305. "__id__": 50
  2306. },
  2307. "_id": "2aUHBXRbFG0qfCzi0Bxy5I"
  2308. },
  2309. {
  2310. "__type__": "cc.Node",
  2311. "_name": "level_list",
  2312. "_objFlags": 0,
  2313. "__editorExtras__": {},
  2314. "_parent": {
  2315. "__id__": 5
  2316. },
  2317. "_children": [
  2318. {
  2319. "__id__": 58
  2320. },
  2321. {
  2322. "__id__": 70
  2323. },
  2324. {
  2325. "__id__": 77
  2326. },
  2327. {
  2328. "__id__": 84
  2329. },
  2330. {
  2331. "__id__": 94
  2332. },
  2333. {
  2334. "__id__": 101
  2335. },
  2336. {
  2337. "__id__": 104
  2338. }
  2339. ],
  2340. "_active": true,
  2341. "_components": [
  2342. {
  2343. "__id__": 111
  2344. },
  2345. {
  2346. "__id__": 112
  2347. },
  2348. {
  2349. "__id__": 113
  2350. },
  2351. {
  2352. "__id__": 114
  2353. }
  2354. ],
  2355. "_prefab": null,
  2356. "_lpos": {
  2357. "__type__": "cc.Vec3",
  2358. "x": 960,
  2359. "y": 540,
  2360. "z": 0
  2361. },
  2362. "_lrot": {
  2363. "__type__": "cc.Quat",
  2364. "x": 0,
  2365. "y": 0,
  2366. "z": 0,
  2367. "w": 1
  2368. },
  2369. "_lscale": {
  2370. "__type__": "cc.Vec3",
  2371. "x": 1,
  2372. "y": 1,
  2373. "z": 1
  2374. },
  2375. "_mobility": 0,
  2376. "_layer": 33554432,
  2377. "_euler": {
  2378. "__type__": "cc.Vec3",
  2379. "x": 0,
  2380. "y": 0,
  2381. "z": 0
  2382. },
  2383. "_id": "e2Js/PfCRCoK/ZvwUwCNQt"
  2384. },
  2385. {
  2386. "__type__": "cc.Node",
  2387. "_name": "ScrollView",
  2388. "_objFlags": 0,
  2389. "__editorExtras__": {},
  2390. "_parent": {
  2391. "__id__": 57
  2392. },
  2393. "_children": [
  2394. {
  2395. "__id__": 59
  2396. }
  2397. ],
  2398. "_active": true,
  2399. "_components": [
  2400. {
  2401. "__id__": 67
  2402. },
  2403. {
  2404. "__id__": 68
  2405. },
  2406. {
  2407. "__id__": 69
  2408. }
  2409. ],
  2410. "_prefab": null,
  2411. "_lpos": {
  2412. "__type__": "cc.Vec3",
  2413. "x": 0,
  2414. "y": 0,
  2415. "z": 0
  2416. },
  2417. "_lrot": {
  2418. "__type__": "cc.Quat",
  2419. "x": 0,
  2420. "y": 0,
  2421. "z": 0,
  2422. "w": 1
  2423. },
  2424. "_lscale": {
  2425. "__type__": "cc.Vec3",
  2426. "x": 1,
  2427. "y": 1,
  2428. "z": 1
  2429. },
  2430. "_mobility": 0,
  2431. "_layer": 33554432,
  2432. "_euler": {
  2433. "__type__": "cc.Vec3",
  2434. "x": 0,
  2435. "y": 0,
  2436. "z": 0
  2437. },
  2438. "_id": "cf0B5dTeJI4JhclzwkE+G/"
  2439. },
  2440. {
  2441. "__type__": "cc.Node",
  2442. "_name": "view",
  2443. "_objFlags": 0,
  2444. "__editorExtras__": {},
  2445. "_parent": {
  2446. "__id__": 58
  2447. },
  2448. "_children": [
  2449. {
  2450. "__id__": 60
  2451. }
  2452. ],
  2453. "_active": true,
  2454. "_components": [
  2455. {
  2456. "__id__": 63
  2457. },
  2458. {
  2459. "__id__": 64
  2460. },
  2461. {
  2462. "__id__": 65
  2463. },
  2464. {
  2465. "__id__": 66
  2466. }
  2467. ],
  2468. "_prefab": null,
  2469. "_lpos": {
  2470. "__type__": "cc.Vec3",
  2471. "x": 0,
  2472. "y": 0,
  2473. "z": 0
  2474. },
  2475. "_lrot": {
  2476. "__type__": "cc.Quat",
  2477. "x": 0,
  2478. "y": 0,
  2479. "z": 0,
  2480. "w": 1
  2481. },
  2482. "_lscale": {
  2483. "__type__": "cc.Vec3",
  2484. "x": 1,
  2485. "y": 1,
  2486. "z": 1
  2487. },
  2488. "_mobility": 0,
  2489. "_layer": 33554432,
  2490. "_euler": {
  2491. "__type__": "cc.Vec3",
  2492. "x": 0,
  2493. "y": 0,
  2494. "z": 0
  2495. },
  2496. "_id": "a71nPBcbpPn4rjYKihoNNW"
  2497. },
  2498. {
  2499. "__type__": "cc.Node",
  2500. "_name": "content",
  2501. "_objFlags": 0,
  2502. "__editorExtras__": {},
  2503. "_parent": {
  2504. "__id__": 59
  2505. },
  2506. "_children": [],
  2507. "_active": true,
  2508. "_components": [
  2509. {
  2510. "__id__": 61
  2511. },
  2512. {
  2513. "__id__": 62
  2514. }
  2515. ],
  2516. "_prefab": null,
  2517. "_lpos": {
  2518. "__type__": "cc.Vec3",
  2519. "x": -10,
  2520. "y": 259.09,
  2521. "z": 0
  2522. },
  2523. "_lrot": {
  2524. "__type__": "cc.Quat",
  2525. "x": 0,
  2526. "y": 0,
  2527. "z": 0,
  2528. "w": 1
  2529. },
  2530. "_lscale": {
  2531. "__type__": "cc.Vec3",
  2532. "x": 1,
  2533. "y": 1,
  2534. "z": 1
  2535. },
  2536. "_mobility": 0,
  2537. "_layer": 33554432,
  2538. "_euler": {
  2539. "__type__": "cc.Vec3",
  2540. "x": 0,
  2541. "y": 0,
  2542. "z": 0
  2543. },
  2544. "_id": "3aPLlplIlOvI9TVPveSWgL"
  2545. },
  2546. {
  2547. "__type__": "cc.UITransform",
  2548. "_name": "",
  2549. "_objFlags": 0,
  2550. "__editorExtras__": {},
  2551. "node": {
  2552. "__id__": 60
  2553. },
  2554. "_enabled": true,
  2555. "__prefab": null,
  2556. "_contentSize": {
  2557. "__type__": "cc.Size",
  2558. "width": 220,
  2559. "height": -10
  2560. },
  2561. "_anchorPoint": {
  2562. "__type__": "cc.Vec2",
  2563. "x": 0.5,
  2564. "y": 1
  2565. },
  2566. "_id": "191xtUr5BNfbgrP31CthUP"
  2567. },
  2568. {
  2569. "__type__": "cc.Layout",
  2570. "_name": "",
  2571. "_objFlags": 0,
  2572. "__editorExtras__": {},
  2573. "node": {
  2574. "__id__": 60
  2575. },
  2576. "_enabled": true,
  2577. "__prefab": null,
  2578. "_resizeMode": 1,
  2579. "_layoutType": 2,
  2580. "_cellSize": {
  2581. "__type__": "cc.Size",
  2582. "width": 40,
  2583. "height": 40
  2584. },
  2585. "_startAxis": 0,
  2586. "_paddingLeft": 0,
  2587. "_paddingRight": 0,
  2588. "_paddingTop": 0,
  2589. "_paddingBottom": 0,
  2590. "_spacingX": 0,
  2591. "_spacingY": 10,
  2592. "_verticalDirection": 1,
  2593. "_horizontalDirection": 0,
  2594. "_constraint": 0,
  2595. "_constraintNum": 2,
  2596. "_affectedByScale": false,
  2597. "_isAlign": false,
  2598. "_id": "e9cz76W0xHvI0VAkYwoA1u"
  2599. },
  2600. {
  2601. "__type__": "cc.UITransform",
  2602. "_name": "",
  2603. "_objFlags": 0,
  2604. "__editorExtras__": {},
  2605. "node": {
  2606. "__id__": 59
  2607. },
  2608. "_enabled": true,
  2609. "__prefab": null,
  2610. "_contentSize": {
  2611. "__type__": "cc.Size",
  2612. "width": 375,
  2613. "height": 600
  2614. },
  2615. "_anchorPoint": {
  2616. "__type__": "cc.Vec2",
  2617. "x": 0.5,
  2618. "y": 0.5
  2619. },
  2620. "_id": "fcvBsbCA1KpaPqEQ1HgMBG"
  2621. },
  2622. {
  2623. "__type__": "cc.Mask",
  2624. "_name": "",
  2625. "_objFlags": 0,
  2626. "__editorExtras__": {},
  2627. "node": {
  2628. "__id__": 59
  2629. },
  2630. "_enabled": true,
  2631. "__prefab": null,
  2632. "_type": 0,
  2633. "_inverted": false,
  2634. "_segments": 64,
  2635. "_alphaThreshold": 0.1,
  2636. "_id": "00sJgpw3BO9LjkWsvYxW8i"
  2637. },
  2638. {
  2639. "__type__": "cc.Graphics",
  2640. "_name": "",
  2641. "_objFlags": 0,
  2642. "__editorExtras__": {},
  2643. "node": {
  2644. "__id__": 59
  2645. },
  2646. "_enabled": true,
  2647. "__prefab": null,
  2648. "_customMaterial": null,
  2649. "_srcBlendFactor": 2,
  2650. "_dstBlendFactor": 4,
  2651. "_color": {
  2652. "__type__": "cc.Color",
  2653. "r": 255,
  2654. "g": 255,
  2655. "b": 255,
  2656. "a": 255
  2657. },
  2658. "_lineWidth": 1,
  2659. "_strokeColor": {
  2660. "__type__": "cc.Color",
  2661. "r": 0,
  2662. "g": 0,
  2663. "b": 0,
  2664. "a": 255
  2665. },
  2666. "_lineJoin": 2,
  2667. "_lineCap": 0,
  2668. "_fillColor": {
  2669. "__type__": "cc.Color",
  2670. "r": 255,
  2671. "g": 255,
  2672. "b": 255,
  2673. "a": 0
  2674. },
  2675. "_miterLimit": 10,
  2676. "_id": "fbqqhmwI9I0rU6OTuU0RE8"
  2677. },
  2678. {
  2679. "__type__": "cc.Widget",
  2680. "_name": "",
  2681. "_objFlags": 0,
  2682. "__editorExtras__": {},
  2683. "node": {
  2684. "__id__": 59
  2685. },
  2686. "_enabled": true,
  2687. "__prefab": null,
  2688. "_alignFlags": 45,
  2689. "_target": null,
  2690. "_left": 0,
  2691. "_right": 0,
  2692. "_top": 0,
  2693. "_bottom": 0,
  2694. "_horizontalCenter": 0,
  2695. "_verticalCenter": 0,
  2696. "_isAbsLeft": true,
  2697. "_isAbsRight": true,
  2698. "_isAbsTop": true,
  2699. "_isAbsBottom": true,
  2700. "_isAbsHorizontalCenter": true,
  2701. "_isAbsVerticalCenter": true,
  2702. "_originalWidth": 240,
  2703. "_originalHeight": 250,
  2704. "_alignMode": 2,
  2705. "_lockFlags": 0,
  2706. "_id": "c3rUG2KOZEAZFIzwLq9XwT"
  2707. },
  2708. {
  2709. "__type__": "cc.UITransform",
  2710. "_name": "",
  2711. "_objFlags": 0,
  2712. "__editorExtras__": {},
  2713. "node": {
  2714. "__id__": 58
  2715. },
  2716. "_enabled": true,
  2717. "__prefab": null,
  2718. "_contentSize": {
  2719. "__type__": "cc.Size",
  2720. "width": 375,
  2721. "height": 600
  2722. },
  2723. "_anchorPoint": {
  2724. "__type__": "cc.Vec2",
  2725. "x": 0.5,
  2726. "y": 0.5
  2727. },
  2728. "_id": "73IbknIS5DerhBK/qWp9zK"
  2729. },
  2730. {
  2731. "__type__": "cc.Sprite",
  2732. "_name": "",
  2733. "_objFlags": 0,
  2734. "__editorExtras__": {},
  2735. "node": {
  2736. "__id__": 58
  2737. },
  2738. "_enabled": true,
  2739. "__prefab": null,
  2740. "_customMaterial": null,
  2741. "_srcBlendFactor": 2,
  2742. "_dstBlendFactor": 4,
  2743. "_color": {
  2744. "__type__": "cc.Color",
  2745. "r": 255,
  2746. "g": 255,
  2747. "b": 255,
  2748. "a": 255
  2749. },
  2750. "_spriteFrame": {
  2751. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  2752. "__expectedType__": "cc.SpriteFrame"
  2753. },
  2754. "_type": 1,
  2755. "_fillType": 0,
  2756. "_sizeMode": 0,
  2757. "_fillCenter": {
  2758. "__type__": "cc.Vec2",
  2759. "x": 0,
  2760. "y": 0
  2761. },
  2762. "_fillStart": 0,
  2763. "_fillRange": 0,
  2764. "_isTrimmedMode": true,
  2765. "_useGrayscale": false,
  2766. "_atlas": null,
  2767. "_id": "cesS4myvJP7q97L2yNRYSn"
  2768. },
  2769. {
  2770. "__type__": "cc.ScrollView",
  2771. "_name": "",
  2772. "_objFlags": 0,
  2773. "__editorExtras__": {},
  2774. "node": {
  2775. "__id__": 58
  2776. },
  2777. "_enabled": true,
  2778. "__prefab": null,
  2779. "bounceDuration": 0.23,
  2780. "brake": 0.75,
  2781. "elastic": true,
  2782. "inertia": true,
  2783. "horizontal": false,
  2784. "vertical": true,
  2785. "cancelInnerEvents": true,
  2786. "scrollEvents": [],
  2787. "_content": {
  2788. "__id__": 60
  2789. },
  2790. "_horizontalScrollBar": null,
  2791. "_verticalScrollBar": null,
  2792. "_id": "e5IwSCUUNH4ICAEk6aR465"
  2793. },
  2794. {
  2795. "__type__": "cc.Node",
  2796. "_name": "btn_superior",
  2797. "_objFlags": 0,
  2798. "__editorExtras__": {},
  2799. "_parent": {
  2800. "__id__": 57
  2801. },
  2802. "_children": [
  2803. {
  2804. "__id__": 71
  2805. }
  2806. ],
  2807. "_active": true,
  2808. "_components": [
  2809. {
  2810. "__id__": 74
  2811. },
  2812. {
  2813. "__id__": 75
  2814. },
  2815. {
  2816. "__id__": 76
  2817. }
  2818. ],
  2819. "_prefab": null,
  2820. "_lpos": {
  2821. "__type__": "cc.Vec3",
  2822. "x": -112.155,
  2823. "y": -372.419,
  2824. "z": 0
  2825. },
  2826. "_lrot": {
  2827. "__type__": "cc.Quat",
  2828. "x": 0,
  2829. "y": 0,
  2830. "z": 0,
  2831. "w": 1
  2832. },
  2833. "_lscale": {
  2834. "__type__": "cc.Vec3",
  2835. "x": 1,
  2836. "y": 1,
  2837. "z": 1
  2838. },
  2839. "_mobility": 0,
  2840. "_layer": 33554432,
  2841. "_euler": {
  2842. "__type__": "cc.Vec3",
  2843. "x": 0,
  2844. "y": 0,
  2845. "z": 0
  2846. },
  2847. "_id": "e2okrprktNAplReeTjUn4w"
  2848. },
  2849. {
  2850. "__type__": "cc.Node",
  2851. "_name": "Label",
  2852. "_objFlags": 0,
  2853. "__editorExtras__": {},
  2854. "_parent": {
  2855. "__id__": 70
  2856. },
  2857. "_children": [],
  2858. "_active": true,
  2859. "_components": [
  2860. {
  2861. "__id__": 72
  2862. },
  2863. {
  2864. "__id__": 73
  2865. }
  2866. ],
  2867. "_prefab": null,
  2868. "_lpos": {
  2869. "__type__": "cc.Vec3",
  2870. "x": 0,
  2871. "y": 0,
  2872. "z": 0
  2873. },
  2874. "_lrot": {
  2875. "__type__": "cc.Quat",
  2876. "x": 0,
  2877. "y": 0,
  2878. "z": 0,
  2879. "w": 1
  2880. },
  2881. "_lscale": {
  2882. "__type__": "cc.Vec3",
  2883. "x": 1,
  2884. "y": 1,
  2885. "z": 1
  2886. },
  2887. "_mobility": 0,
  2888. "_layer": 33554432,
  2889. "_euler": {
  2890. "__type__": "cc.Vec3",
  2891. "x": 0,
  2892. "y": 0,
  2893. "z": 0
  2894. },
  2895. "_id": "0aMjssvm9Mga0f9xz3Wdvw"
  2896. },
  2897. {
  2898. "__type__": "cc.UITransform",
  2899. "_name": "",
  2900. "_objFlags": 0,
  2901. "__editorExtras__": {},
  2902. "node": {
  2903. "__id__": 71
  2904. },
  2905. "_enabled": true,
  2906. "__prefab": null,
  2907. "_contentSize": {
  2908. "__type__": "cc.Size",
  2909. "width": 100,
  2910. "height": 40
  2911. },
  2912. "_anchorPoint": {
  2913. "__type__": "cc.Vec2",
  2914. "x": 0.5,
  2915. "y": 0.5
  2916. },
  2917. "_id": "b4KtsZgDJC66lTtlGPihSf"
  2918. },
  2919. {
  2920. "__type__": "cc.Label",
  2921. "_name": "",
  2922. "_objFlags": 0,
  2923. "__editorExtras__": {},
  2924. "node": {
  2925. "__id__": 71
  2926. },
  2927. "_enabled": true,
  2928. "__prefab": null,
  2929. "_customMaterial": null,
  2930. "_srcBlendFactor": 2,
  2931. "_dstBlendFactor": 4,
  2932. "_color": {
  2933. "__type__": "cc.Color",
  2934. "r": 0,
  2935. "g": 0,
  2936. "b": 0,
  2937. "a": 255
  2938. },
  2939. "_string": "上一页",
  2940. "_horizontalAlign": 1,
  2941. "_verticalAlign": 1,
  2942. "_actualFontSize": 20,
  2943. "_fontSize": 20,
  2944. "_fontFamily": "Arial",
  2945. "_lineHeight": 40,
  2946. "_overflow": 1,
  2947. "_enableWrapText": false,
  2948. "_font": null,
  2949. "_isSystemFontUsed": true,
  2950. "_spacingX": 0,
  2951. "_isItalic": false,
  2952. "_isBold": false,
  2953. "_isUnderline": false,
  2954. "_underlineHeight": 2,
  2955. "_cacheMode": 0,
  2956. "_id": "b2jkfaQJpMqKUb8Hk1hS7E"
  2957. },
  2958. {
  2959. "__type__": "cc.UITransform",
  2960. "_name": "",
  2961. "_objFlags": 0,
  2962. "__editorExtras__": {},
  2963. "node": {
  2964. "__id__": 70
  2965. },
  2966. "_enabled": true,
  2967. "__prefab": null,
  2968. "_contentSize": {
  2969. "__type__": "cc.Size",
  2970. "width": 100,
  2971. "height": 40
  2972. },
  2973. "_anchorPoint": {
  2974. "__type__": "cc.Vec2",
  2975. "x": 0.5,
  2976. "y": 0.5
  2977. },
  2978. "_id": "39ux0Yg6hDzKD+WbiMZCcj"
  2979. },
  2980. {
  2981. "__type__": "cc.Sprite",
  2982. "_name": "",
  2983. "_objFlags": 0,
  2984. "__editorExtras__": {},
  2985. "node": {
  2986. "__id__": 70
  2987. },
  2988. "_enabled": true,
  2989. "__prefab": null,
  2990. "_customMaterial": null,
  2991. "_srcBlendFactor": 2,
  2992. "_dstBlendFactor": 4,
  2993. "_color": {
  2994. "__type__": "cc.Color",
  2995. "r": 255,
  2996. "g": 255,
  2997. "b": 255,
  2998. "a": 255
  2999. },
  3000. "_spriteFrame": {
  3001. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3002. "__expectedType__": "cc.SpriteFrame"
  3003. },
  3004. "_type": 1,
  3005. "_fillType": 0,
  3006. "_sizeMode": 0,
  3007. "_fillCenter": {
  3008. "__type__": "cc.Vec2",
  3009. "x": 0,
  3010. "y": 0
  3011. },
  3012. "_fillStart": 0,
  3013. "_fillRange": 0,
  3014. "_isTrimmedMode": true,
  3015. "_useGrayscale": false,
  3016. "_atlas": null,
  3017. "_id": "c6OwhLPThEhLviFlIrVdee"
  3018. },
  3019. {
  3020. "__type__": "cc.Button",
  3021. "_name": "",
  3022. "_objFlags": 0,
  3023. "__editorExtras__": {},
  3024. "node": {
  3025. "__id__": 70
  3026. },
  3027. "_enabled": true,
  3028. "__prefab": null,
  3029. "clickEvents": [],
  3030. "_interactable": true,
  3031. "_transition": 2,
  3032. "_normalColor": {
  3033. "__type__": "cc.Color",
  3034. "r": 214,
  3035. "g": 214,
  3036. "b": 214,
  3037. "a": 255
  3038. },
  3039. "_hoverColor": {
  3040. "__type__": "cc.Color",
  3041. "r": 211,
  3042. "g": 211,
  3043. "b": 211,
  3044. "a": 255
  3045. },
  3046. "_pressedColor": {
  3047. "__type__": "cc.Color",
  3048. "r": 255,
  3049. "g": 255,
  3050. "b": 255,
  3051. "a": 255
  3052. },
  3053. "_disabledColor": {
  3054. "__type__": "cc.Color",
  3055. "r": 124,
  3056. "g": 124,
  3057. "b": 124,
  3058. "a": 255
  3059. },
  3060. "_normalSprite": {
  3061. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3062. "__expectedType__": "cc.SpriteFrame"
  3063. },
  3064. "_hoverSprite": {
  3065. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3066. "__expectedType__": "cc.SpriteFrame"
  3067. },
  3068. "_pressedSprite": {
  3069. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3070. "__expectedType__": "cc.SpriteFrame"
  3071. },
  3072. "_disabledSprite": {
  3073. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3074. "__expectedType__": "cc.SpriteFrame"
  3075. },
  3076. "_duration": 0.1,
  3077. "_zoomScale": 1.2,
  3078. "_target": {
  3079. "__id__": 70
  3080. },
  3081. "_id": "7f8QTjDIpBP4poE/fI+4Us"
  3082. },
  3083. {
  3084. "__type__": "cc.Node",
  3085. "_name": "btn_next",
  3086. "_objFlags": 0,
  3087. "__editorExtras__": {},
  3088. "_parent": {
  3089. "__id__": 57
  3090. },
  3091. "_children": [
  3092. {
  3093. "__id__": 78
  3094. }
  3095. ],
  3096. "_active": true,
  3097. "_components": [
  3098. {
  3099. "__id__": 81
  3100. },
  3101. {
  3102. "__id__": 82
  3103. },
  3104. {
  3105. "__id__": 83
  3106. }
  3107. ],
  3108. "_prefab": null,
  3109. "_lpos": {
  3110. "__type__": "cc.Vec3",
  3111. "x": 125.507,
  3112. "y": -372.419,
  3113. "z": 0
  3114. },
  3115. "_lrot": {
  3116. "__type__": "cc.Quat",
  3117. "x": 0,
  3118. "y": 0,
  3119. "z": 0,
  3120. "w": 1
  3121. },
  3122. "_lscale": {
  3123. "__type__": "cc.Vec3",
  3124. "x": 1,
  3125. "y": 1,
  3126. "z": 1
  3127. },
  3128. "_mobility": 0,
  3129. "_layer": 33554432,
  3130. "_euler": {
  3131. "__type__": "cc.Vec3",
  3132. "x": 0,
  3133. "y": 0,
  3134. "z": 0
  3135. },
  3136. "_id": "afo1Y9AUpDIbB0frJ8Uap8"
  3137. },
  3138. {
  3139. "__type__": "cc.Node",
  3140. "_name": "Label",
  3141. "_objFlags": 0,
  3142. "__editorExtras__": {},
  3143. "_parent": {
  3144. "__id__": 77
  3145. },
  3146. "_children": [],
  3147. "_active": true,
  3148. "_components": [
  3149. {
  3150. "__id__": 79
  3151. },
  3152. {
  3153. "__id__": 80
  3154. }
  3155. ],
  3156. "_prefab": null,
  3157. "_lpos": {
  3158. "__type__": "cc.Vec3",
  3159. "x": 0,
  3160. "y": 0,
  3161. "z": 0
  3162. },
  3163. "_lrot": {
  3164. "__type__": "cc.Quat",
  3165. "x": 0,
  3166. "y": 0,
  3167. "z": 0,
  3168. "w": 1
  3169. },
  3170. "_lscale": {
  3171. "__type__": "cc.Vec3",
  3172. "x": 1,
  3173. "y": 1,
  3174. "z": 1
  3175. },
  3176. "_mobility": 0,
  3177. "_layer": 33554432,
  3178. "_euler": {
  3179. "__type__": "cc.Vec3",
  3180. "x": 0,
  3181. "y": 0,
  3182. "z": 0
  3183. },
  3184. "_id": "96kHM7CJVJr48DmoxGo7cF"
  3185. },
  3186. {
  3187. "__type__": "cc.UITransform",
  3188. "_name": "",
  3189. "_objFlags": 0,
  3190. "__editorExtras__": {},
  3191. "node": {
  3192. "__id__": 78
  3193. },
  3194. "_enabled": true,
  3195. "__prefab": null,
  3196. "_contentSize": {
  3197. "__type__": "cc.Size",
  3198. "width": 100,
  3199. "height": 40
  3200. },
  3201. "_anchorPoint": {
  3202. "__type__": "cc.Vec2",
  3203. "x": 0.5,
  3204. "y": 0.5
  3205. },
  3206. "_id": "27Lpo/jsFN+I1HA4QP2bfU"
  3207. },
  3208. {
  3209. "__type__": "cc.Label",
  3210. "_name": "",
  3211. "_objFlags": 0,
  3212. "__editorExtras__": {},
  3213. "node": {
  3214. "__id__": 78
  3215. },
  3216. "_enabled": true,
  3217. "__prefab": null,
  3218. "_customMaterial": null,
  3219. "_srcBlendFactor": 2,
  3220. "_dstBlendFactor": 4,
  3221. "_color": {
  3222. "__type__": "cc.Color",
  3223. "r": 0,
  3224. "g": 0,
  3225. "b": 0,
  3226. "a": 255
  3227. },
  3228. "_string": "下一页",
  3229. "_horizontalAlign": 1,
  3230. "_verticalAlign": 1,
  3231. "_actualFontSize": 20,
  3232. "_fontSize": 20,
  3233. "_fontFamily": "Arial",
  3234. "_lineHeight": 40,
  3235. "_overflow": 1,
  3236. "_enableWrapText": false,
  3237. "_font": null,
  3238. "_isSystemFontUsed": true,
  3239. "_spacingX": 0,
  3240. "_isItalic": false,
  3241. "_isBold": false,
  3242. "_isUnderline": false,
  3243. "_underlineHeight": 2,
  3244. "_cacheMode": 0,
  3245. "_id": "02n/BZTZNM7Z8CQAtz8+lg"
  3246. },
  3247. {
  3248. "__type__": "cc.UITransform",
  3249. "_name": "",
  3250. "_objFlags": 0,
  3251. "__editorExtras__": {},
  3252. "node": {
  3253. "__id__": 77
  3254. },
  3255. "_enabled": true,
  3256. "__prefab": null,
  3257. "_contentSize": {
  3258. "__type__": "cc.Size",
  3259. "width": 100,
  3260. "height": 40
  3261. },
  3262. "_anchorPoint": {
  3263. "__type__": "cc.Vec2",
  3264. "x": 0.5,
  3265. "y": 0.5
  3266. },
  3267. "_id": "45byApvoROSIsdpKJJqHwi"
  3268. },
  3269. {
  3270. "__type__": "cc.Sprite",
  3271. "_name": "",
  3272. "_objFlags": 0,
  3273. "__editorExtras__": {},
  3274. "node": {
  3275. "__id__": 77
  3276. },
  3277. "_enabled": true,
  3278. "__prefab": null,
  3279. "_customMaterial": null,
  3280. "_srcBlendFactor": 2,
  3281. "_dstBlendFactor": 4,
  3282. "_color": {
  3283. "__type__": "cc.Color",
  3284. "r": 255,
  3285. "g": 255,
  3286. "b": 255,
  3287. "a": 255
  3288. },
  3289. "_spriteFrame": {
  3290. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3291. "__expectedType__": "cc.SpriteFrame"
  3292. },
  3293. "_type": 1,
  3294. "_fillType": 0,
  3295. "_sizeMode": 0,
  3296. "_fillCenter": {
  3297. "__type__": "cc.Vec2",
  3298. "x": 0,
  3299. "y": 0
  3300. },
  3301. "_fillStart": 0,
  3302. "_fillRange": 0,
  3303. "_isTrimmedMode": true,
  3304. "_useGrayscale": false,
  3305. "_atlas": null,
  3306. "_id": "e9tx6z0JdCVoAp6Ar8Rb7t"
  3307. },
  3308. {
  3309. "__type__": "cc.Button",
  3310. "_name": "",
  3311. "_objFlags": 0,
  3312. "__editorExtras__": {},
  3313. "node": {
  3314. "__id__": 77
  3315. },
  3316. "_enabled": true,
  3317. "__prefab": null,
  3318. "clickEvents": [],
  3319. "_interactable": true,
  3320. "_transition": 2,
  3321. "_normalColor": {
  3322. "__type__": "cc.Color",
  3323. "r": 214,
  3324. "g": 214,
  3325. "b": 214,
  3326. "a": 255
  3327. },
  3328. "_hoverColor": {
  3329. "__type__": "cc.Color",
  3330. "r": 211,
  3331. "g": 211,
  3332. "b": 211,
  3333. "a": 255
  3334. },
  3335. "_pressedColor": {
  3336. "__type__": "cc.Color",
  3337. "r": 255,
  3338. "g": 255,
  3339. "b": 255,
  3340. "a": 255
  3341. },
  3342. "_disabledColor": {
  3343. "__type__": "cc.Color",
  3344. "r": 124,
  3345. "g": 124,
  3346. "b": 124,
  3347. "a": 255
  3348. },
  3349. "_normalSprite": {
  3350. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3351. "__expectedType__": "cc.SpriteFrame"
  3352. },
  3353. "_hoverSprite": {
  3354. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3355. "__expectedType__": "cc.SpriteFrame"
  3356. },
  3357. "_pressedSprite": {
  3358. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3359. "__expectedType__": "cc.SpriteFrame"
  3360. },
  3361. "_disabledSprite": {
  3362. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3363. "__expectedType__": "cc.SpriteFrame"
  3364. },
  3365. "_duration": 0.1,
  3366. "_zoomScale": 1.2,
  3367. "_target": {
  3368. "__id__": 77
  3369. },
  3370. "_id": "c1HflSd7JLnoWGH4l+xnTK"
  3371. },
  3372. {
  3373. "__type__": "cc.Node",
  3374. "_name": "EditBox",
  3375. "_objFlags": 0,
  3376. "__editorExtras__": {},
  3377. "_parent": {
  3378. "__id__": 57
  3379. },
  3380. "_children": [
  3381. {
  3382. "__id__": 85
  3383. },
  3384. {
  3385. "__id__": 88
  3386. }
  3387. ],
  3388. "_active": true,
  3389. "_components": [
  3390. {
  3391. "__id__": 91
  3392. },
  3393. {
  3394. "__id__": 92
  3395. },
  3396. {
  3397. "__id__": 93
  3398. }
  3399. ],
  3400. "_prefab": null,
  3401. "_lpos": {
  3402. "__type__": "cc.Vec3",
  3403. "x": -12.241,
  3404. "y": 340.959,
  3405. "z": 0
  3406. },
  3407. "_lrot": {
  3408. "__type__": "cc.Quat",
  3409. "x": 0,
  3410. "y": 0,
  3411. "z": 0,
  3412. "w": 1
  3413. },
  3414. "_lscale": {
  3415. "__type__": "cc.Vec3",
  3416. "x": 1,
  3417. "y": 1,
  3418. "z": 1
  3419. },
  3420. "_mobility": 0,
  3421. "_layer": 33554432,
  3422. "_euler": {
  3423. "__type__": "cc.Vec3",
  3424. "x": 0,
  3425. "y": 0,
  3426. "z": 0
  3427. },
  3428. "_id": "10Zt15aZtC0Y8dzAjeWEpO"
  3429. },
  3430. {
  3431. "__type__": "cc.Node",
  3432. "_name": "TEXT_LABEL",
  3433. "_objFlags": 0,
  3434. "__editorExtras__": {},
  3435. "_parent": {
  3436. "__id__": 84
  3437. },
  3438. "_children": [],
  3439. "_active": false,
  3440. "_components": [
  3441. {
  3442. "__id__": 86
  3443. },
  3444. {
  3445. "__id__": 87
  3446. }
  3447. ],
  3448. "_prefab": null,
  3449. "_lpos": {
  3450. "__type__": "cc.Vec3",
  3451. "x": -48,
  3452. "y": 20,
  3453. "z": 0
  3454. },
  3455. "_lrot": {
  3456. "__type__": "cc.Quat",
  3457. "x": 0,
  3458. "y": 0,
  3459. "z": 0,
  3460. "w": 1
  3461. },
  3462. "_lscale": {
  3463. "__type__": "cc.Vec3",
  3464. "x": 1,
  3465. "y": 1,
  3466. "z": 1
  3467. },
  3468. "_mobility": 0,
  3469. "_layer": 33554432,
  3470. "_euler": {
  3471. "__type__": "cc.Vec3",
  3472. "x": 0,
  3473. "y": 0,
  3474. "z": 0
  3475. },
  3476. "_id": "37buedpSlOQqt9pRaBgkux"
  3477. },
  3478. {
  3479. "__type__": "cc.UITransform",
  3480. "_name": "",
  3481. "_objFlags": 0,
  3482. "__editorExtras__": {},
  3483. "node": {
  3484. "__id__": 85
  3485. },
  3486. "_enabled": true,
  3487. "__prefab": null,
  3488. "_contentSize": {
  3489. "__type__": "cc.Size",
  3490. "width": 98,
  3491. "height": 40
  3492. },
  3493. "_anchorPoint": {
  3494. "__type__": "cc.Vec2",
  3495. "x": 0,
  3496. "y": 1
  3497. },
  3498. "_id": "6aj8cC2uVNq7czv2FS4x9c"
  3499. },
  3500. {
  3501. "__type__": "cc.Label",
  3502. "_name": "",
  3503. "_objFlags": 0,
  3504. "__editorExtras__": {},
  3505. "node": {
  3506. "__id__": 85
  3507. },
  3508. "_enabled": true,
  3509. "__prefab": null,
  3510. "_customMaterial": null,
  3511. "_srcBlendFactor": 2,
  3512. "_dstBlendFactor": 4,
  3513. "_color": {
  3514. "__type__": "cc.Color",
  3515. "r": 255,
  3516. "g": 255,
  3517. "b": 255,
  3518. "a": 255
  3519. },
  3520. "_string": "",
  3521. "_horizontalAlign": 0,
  3522. "_verticalAlign": 1,
  3523. "_actualFontSize": 20,
  3524. "_fontSize": 20,
  3525. "_fontFamily": "Arial",
  3526. "_lineHeight": 40,
  3527. "_overflow": 1,
  3528. "_enableWrapText": false,
  3529. "_font": null,
  3530. "_isSystemFontUsed": true,
  3531. "_spacingX": 0,
  3532. "_isItalic": false,
  3533. "_isBold": false,
  3534. "_isUnderline": false,
  3535. "_underlineHeight": 2,
  3536. "_cacheMode": 0,
  3537. "_id": "c3ZAno315KPocIiaCAZ0Tv"
  3538. },
  3539. {
  3540. "__type__": "cc.Node",
  3541. "_name": "PLACEHOLDER_LABEL",
  3542. "_objFlags": 0,
  3543. "__editorExtras__": {},
  3544. "_parent": {
  3545. "__id__": 84
  3546. },
  3547. "_children": [],
  3548. "_active": true,
  3549. "_components": [
  3550. {
  3551. "__id__": 89
  3552. },
  3553. {
  3554. "__id__": 90
  3555. }
  3556. ],
  3557. "_prefab": null,
  3558. "_lpos": {
  3559. "__type__": "cc.Vec3",
  3560. "x": -48,
  3561. "y": 20,
  3562. "z": 0
  3563. },
  3564. "_lrot": {
  3565. "__type__": "cc.Quat",
  3566. "x": 0,
  3567. "y": 0,
  3568. "z": 0,
  3569. "w": 1
  3570. },
  3571. "_lscale": {
  3572. "__type__": "cc.Vec3",
  3573. "x": 1,
  3574. "y": 1,
  3575. "z": 1
  3576. },
  3577. "_mobility": 0,
  3578. "_layer": 33554432,
  3579. "_euler": {
  3580. "__type__": "cc.Vec3",
  3581. "x": 0,
  3582. "y": 0,
  3583. "z": 0
  3584. },
  3585. "_id": "9fttNQhltMyYfmt8YD4WG/"
  3586. },
  3587. {
  3588. "__type__": "cc.UITransform",
  3589. "_name": "",
  3590. "_objFlags": 0,
  3591. "__editorExtras__": {},
  3592. "node": {
  3593. "__id__": 88
  3594. },
  3595. "_enabled": true,
  3596. "__prefab": null,
  3597. "_contentSize": {
  3598. "__type__": "cc.Size",
  3599. "width": 98,
  3600. "height": 40
  3601. },
  3602. "_anchorPoint": {
  3603. "__type__": "cc.Vec2",
  3604. "x": 0,
  3605. "y": 1
  3606. },
  3607. "_id": "34Kp1zjzFJAoSp5cKRgoyZ"
  3608. },
  3609. {
  3610. "__type__": "cc.Label",
  3611. "_name": "",
  3612. "_objFlags": 0,
  3613. "__editorExtras__": {},
  3614. "node": {
  3615. "__id__": 88
  3616. },
  3617. "_enabled": true,
  3618. "__prefab": null,
  3619. "_customMaterial": null,
  3620. "_srcBlendFactor": 2,
  3621. "_dstBlendFactor": 4,
  3622. "_color": {
  3623. "__type__": "cc.Color",
  3624. "r": 0,
  3625. "g": 0,
  3626. "b": 0,
  3627. "a": 255
  3628. },
  3629. "_string": "输入页数",
  3630. "_horizontalAlign": 0,
  3631. "_verticalAlign": 1,
  3632. "_actualFontSize": 20,
  3633. "_fontSize": 20,
  3634. "_fontFamily": "Arial",
  3635. "_lineHeight": 40,
  3636. "_overflow": 1,
  3637. "_enableWrapText": false,
  3638. "_font": null,
  3639. "_isSystemFontUsed": true,
  3640. "_spacingX": 0,
  3641. "_isItalic": false,
  3642. "_isBold": false,
  3643. "_isUnderline": false,
  3644. "_underlineHeight": 2,
  3645. "_cacheMode": 0,
  3646. "_id": "08xpmid/pBB6rSFKoiSAm/"
  3647. },
  3648. {
  3649. "__type__": "cc.UITransform",
  3650. "_name": "",
  3651. "_objFlags": 0,
  3652. "__editorExtras__": {},
  3653. "node": {
  3654. "__id__": 84
  3655. },
  3656. "_enabled": true,
  3657. "__prefab": null,
  3658. "_contentSize": {
  3659. "__type__": "cc.Size",
  3660. "width": 100,
  3661. "height": 40
  3662. },
  3663. "_anchorPoint": {
  3664. "__type__": "cc.Vec2",
  3665. "x": 0.5,
  3666. "y": 0.5
  3667. },
  3668. "_id": "0bk/UcXF9EnoM457s5T/dW"
  3669. },
  3670. {
  3671. "__type__": "cc.Sprite",
  3672. "_name": "",
  3673. "_objFlags": 0,
  3674. "__editorExtras__": {},
  3675. "node": {
  3676. "__id__": 84
  3677. },
  3678. "_enabled": true,
  3679. "__prefab": null,
  3680. "_customMaterial": null,
  3681. "_srcBlendFactor": 2,
  3682. "_dstBlendFactor": 4,
  3683. "_color": {
  3684. "__type__": "cc.Color",
  3685. "r": 255,
  3686. "g": 255,
  3687. "b": 255,
  3688. "a": 255
  3689. },
  3690. "_spriteFrame": {
  3691. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  3692. "__expectedType__": "cc.SpriteFrame"
  3693. },
  3694. "_type": 1,
  3695. "_fillType": 0,
  3696. "_sizeMode": 0,
  3697. "_fillCenter": {
  3698. "__type__": "cc.Vec2",
  3699. "x": 0,
  3700. "y": 0
  3701. },
  3702. "_fillStart": 0,
  3703. "_fillRange": 0,
  3704. "_isTrimmedMode": true,
  3705. "_useGrayscale": false,
  3706. "_atlas": null,
  3707. "_id": "d20xNLeJxF3p/Yq7b9mley"
  3708. },
  3709. {
  3710. "__type__": "cc.EditBox",
  3711. "_name": "",
  3712. "_objFlags": 0,
  3713. "__editorExtras__": {},
  3714. "node": {
  3715. "__id__": 84
  3716. },
  3717. "_enabled": true,
  3718. "__prefab": null,
  3719. "editingDidBegan": [],
  3720. "textChanged": [],
  3721. "editingDidEnded": [],
  3722. "editingReturn": [],
  3723. "_textLabel": {
  3724. "__id__": 87
  3725. },
  3726. "_placeholderLabel": {
  3727. "__id__": 90
  3728. },
  3729. "_returnType": 0,
  3730. "_string": "",
  3731. "_tabIndex": 0,
  3732. "_backgroundImage": {
  3733. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  3734. "__expectedType__": "cc.SpriteFrame"
  3735. },
  3736. "_inputFlag": 5,
  3737. "_inputMode": 3,
  3738. "_maxLength": 8,
  3739. "_id": "3cipHzgahDGZgT0MnRBiYY"
  3740. },
  3741. {
  3742. "__type__": "cc.Node",
  3743. "_name": "btn_search",
  3744. "_objFlags": 0,
  3745. "__editorExtras__": {},
  3746. "_parent": {
  3747. "__id__": 57
  3748. },
  3749. "_children": [
  3750. {
  3751. "__id__": 95
  3752. }
  3753. ],
  3754. "_active": true,
  3755. "_components": [
  3756. {
  3757. "__id__": 98
  3758. },
  3759. {
  3760. "__id__": 99
  3761. },
  3762. {
  3763. "__id__": 100
  3764. }
  3765. ],
  3766. "_prefab": null,
  3767. "_lpos": {
  3768. "__type__": "cc.Vec3",
  3769. "x": 125.507,
  3770. "y": 340.958,
  3771. "z": 0
  3772. },
  3773. "_lrot": {
  3774. "__type__": "cc.Quat",
  3775. "x": 0,
  3776. "y": 0,
  3777. "z": 0,
  3778. "w": 1
  3779. },
  3780. "_lscale": {
  3781. "__type__": "cc.Vec3",
  3782. "x": 1,
  3783. "y": 1,
  3784. "z": 1
  3785. },
  3786. "_mobility": 0,
  3787. "_layer": 33554432,
  3788. "_euler": {
  3789. "__type__": "cc.Vec3",
  3790. "x": 0,
  3791. "y": 0,
  3792. "z": 0
  3793. },
  3794. "_id": "6bexVL5NRMqrpg8cyEL76f"
  3795. },
  3796. {
  3797. "__type__": "cc.Node",
  3798. "_name": "Label",
  3799. "_objFlags": 0,
  3800. "__editorExtras__": {},
  3801. "_parent": {
  3802. "__id__": 94
  3803. },
  3804. "_children": [],
  3805. "_active": true,
  3806. "_components": [
  3807. {
  3808. "__id__": 96
  3809. },
  3810. {
  3811. "__id__": 97
  3812. }
  3813. ],
  3814. "_prefab": null,
  3815. "_lpos": {
  3816. "__type__": "cc.Vec3",
  3817. "x": 0,
  3818. "y": 0,
  3819. "z": 0
  3820. },
  3821. "_lrot": {
  3822. "__type__": "cc.Quat",
  3823. "x": 0,
  3824. "y": 0,
  3825. "z": 0,
  3826. "w": 1
  3827. },
  3828. "_lscale": {
  3829. "__type__": "cc.Vec3",
  3830. "x": 1,
  3831. "y": 1,
  3832. "z": 1
  3833. },
  3834. "_mobility": 0,
  3835. "_layer": 33554432,
  3836. "_euler": {
  3837. "__type__": "cc.Vec3",
  3838. "x": 0,
  3839. "y": 0,
  3840. "z": 0
  3841. },
  3842. "_id": "ce5KHRkvVD7YZk66WXvbxy"
  3843. },
  3844. {
  3845. "__type__": "cc.UITransform",
  3846. "_name": "",
  3847. "_objFlags": 0,
  3848. "__editorExtras__": {},
  3849. "node": {
  3850. "__id__": 95
  3851. },
  3852. "_enabled": true,
  3853. "__prefab": null,
  3854. "_contentSize": {
  3855. "__type__": "cc.Size",
  3856. "width": 100,
  3857. "height": 40
  3858. },
  3859. "_anchorPoint": {
  3860. "__type__": "cc.Vec2",
  3861. "x": 0.5,
  3862. "y": 0.5
  3863. },
  3864. "_id": "afmjrmY2NGTbTeKCQQEdUE"
  3865. },
  3866. {
  3867. "__type__": "cc.Label",
  3868. "_name": "",
  3869. "_objFlags": 0,
  3870. "__editorExtras__": {},
  3871. "node": {
  3872. "__id__": 95
  3873. },
  3874. "_enabled": true,
  3875. "__prefab": null,
  3876. "_customMaterial": null,
  3877. "_srcBlendFactor": 2,
  3878. "_dstBlendFactor": 4,
  3879. "_color": {
  3880. "__type__": "cc.Color",
  3881. "r": 0,
  3882. "g": 0,
  3883. "b": 0,
  3884. "a": 255
  3885. },
  3886. "_string": "搜索",
  3887. "_horizontalAlign": 1,
  3888. "_verticalAlign": 1,
  3889. "_actualFontSize": 20,
  3890. "_fontSize": 20,
  3891. "_fontFamily": "Arial",
  3892. "_lineHeight": 40,
  3893. "_overflow": 1,
  3894. "_enableWrapText": false,
  3895. "_font": null,
  3896. "_isSystemFontUsed": true,
  3897. "_spacingX": 0,
  3898. "_isItalic": false,
  3899. "_isBold": false,
  3900. "_isUnderline": false,
  3901. "_underlineHeight": 2,
  3902. "_cacheMode": 0,
  3903. "_id": "4fSJNWp85PY6QwWYcdcTI9"
  3904. },
  3905. {
  3906. "__type__": "cc.UITransform",
  3907. "_name": "",
  3908. "_objFlags": 0,
  3909. "__editorExtras__": {},
  3910. "node": {
  3911. "__id__": 94
  3912. },
  3913. "_enabled": true,
  3914. "__prefab": null,
  3915. "_contentSize": {
  3916. "__type__": "cc.Size",
  3917. "width": 100,
  3918. "height": 40
  3919. },
  3920. "_anchorPoint": {
  3921. "__type__": "cc.Vec2",
  3922. "x": 0.5,
  3923. "y": 0.5
  3924. },
  3925. "_id": "f7Uv0Vpi9NVaKx+PX3aqyh"
  3926. },
  3927. {
  3928. "__type__": "cc.Sprite",
  3929. "_name": "",
  3930. "_objFlags": 0,
  3931. "__editorExtras__": {},
  3932. "node": {
  3933. "__id__": 94
  3934. },
  3935. "_enabled": true,
  3936. "__prefab": null,
  3937. "_customMaterial": null,
  3938. "_srcBlendFactor": 2,
  3939. "_dstBlendFactor": 4,
  3940. "_color": {
  3941. "__type__": "cc.Color",
  3942. "r": 255,
  3943. "g": 255,
  3944. "b": 255,
  3945. "a": 255
  3946. },
  3947. "_spriteFrame": {
  3948. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3949. "__expectedType__": "cc.SpriteFrame"
  3950. },
  3951. "_type": 1,
  3952. "_fillType": 0,
  3953. "_sizeMode": 0,
  3954. "_fillCenter": {
  3955. "__type__": "cc.Vec2",
  3956. "x": 0,
  3957. "y": 0
  3958. },
  3959. "_fillStart": 0,
  3960. "_fillRange": 0,
  3961. "_isTrimmedMode": true,
  3962. "_useGrayscale": false,
  3963. "_atlas": null,
  3964. "_id": "21DKieVUtACpvDUMp1EKNB"
  3965. },
  3966. {
  3967. "__type__": "cc.Button",
  3968. "_name": "",
  3969. "_objFlags": 0,
  3970. "__editorExtras__": {},
  3971. "node": {
  3972. "__id__": 94
  3973. },
  3974. "_enabled": true,
  3975. "__prefab": null,
  3976. "clickEvents": [],
  3977. "_interactable": true,
  3978. "_transition": 2,
  3979. "_normalColor": {
  3980. "__type__": "cc.Color",
  3981. "r": 214,
  3982. "g": 214,
  3983. "b": 214,
  3984. "a": 255
  3985. },
  3986. "_hoverColor": {
  3987. "__type__": "cc.Color",
  3988. "r": 211,
  3989. "g": 211,
  3990. "b": 211,
  3991. "a": 255
  3992. },
  3993. "_pressedColor": {
  3994. "__type__": "cc.Color",
  3995. "r": 255,
  3996. "g": 255,
  3997. "b": 255,
  3998. "a": 255
  3999. },
  4000. "_disabledColor": {
  4001. "__type__": "cc.Color",
  4002. "r": 124,
  4003. "g": 124,
  4004. "b": 124,
  4005. "a": 255
  4006. },
  4007. "_normalSprite": {
  4008. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4009. "__expectedType__": "cc.SpriteFrame"
  4010. },
  4011. "_hoverSprite": {
  4012. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4013. "__expectedType__": "cc.SpriteFrame"
  4014. },
  4015. "_pressedSprite": {
  4016. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  4017. "__expectedType__": "cc.SpriteFrame"
  4018. },
  4019. "_disabledSprite": {
  4020. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  4021. "__expectedType__": "cc.SpriteFrame"
  4022. },
  4023. "_duration": 0.1,
  4024. "_zoomScale": 1.2,
  4025. "_target": {
  4026. "__id__": 94
  4027. },
  4028. "_id": "685Ka2xaxKVpkDA25PFSOx"
  4029. },
  4030. {
  4031. "__type__": "cc.Node",
  4032. "_name": "Label",
  4033. "_objFlags": 0,
  4034. "__editorExtras__": {},
  4035. "_parent": {
  4036. "__id__": 57
  4037. },
  4038. "_children": [],
  4039. "_active": true,
  4040. "_components": [
  4041. {
  4042. "__id__": 102
  4043. },
  4044. {
  4045. "__id__": 103
  4046. }
  4047. ],
  4048. "_prefab": null,
  4049. "_lpos": {
  4050. "__type__": "cc.Vec3",
  4051. "x": 0,
  4052. "y": -332.556,
  4053. "z": 0
  4054. },
  4055. "_lrot": {
  4056. "__type__": "cc.Quat",
  4057. "x": 0,
  4058. "y": 0,
  4059. "z": 0,
  4060. "w": 1
  4061. },
  4062. "_lscale": {
  4063. "__type__": "cc.Vec3",
  4064. "x": 1,
  4065. "y": 1,
  4066. "z": 1
  4067. },
  4068. "_mobility": 0,
  4069. "_layer": 33554432,
  4070. "_euler": {
  4071. "__type__": "cc.Vec3",
  4072. "x": 0,
  4073. "y": 0,
  4074. "z": 0
  4075. },
  4076. "_id": "6fGu32+Q1J6q+eCT+wmIKN"
  4077. },
  4078. {
  4079. "__type__": "cc.UITransform",
  4080. "_name": "",
  4081. "_objFlags": 0,
  4082. "__editorExtras__": {},
  4083. "node": {
  4084. "__id__": 101
  4085. },
  4086. "_enabled": true,
  4087. "__prefab": null,
  4088. "_contentSize": {
  4089. "__type__": "cc.Size",
  4090. "width": 91.123046875,
  4091. "height": 50.4
  4092. },
  4093. "_anchorPoint": {
  4094. "__type__": "cc.Vec2",
  4095. "x": 0.5,
  4096. "y": 0.5
  4097. },
  4098. "_id": "925PlSCg9LSoVl4X+eAUMq"
  4099. },
  4100. {
  4101. "__type__": "cc.Label",
  4102. "_name": "",
  4103. "_objFlags": 0,
  4104. "__editorExtras__": {},
  4105. "node": {
  4106. "__id__": 101
  4107. },
  4108. "_enabled": true,
  4109. "__prefab": null,
  4110. "_customMaterial": null,
  4111. "_srcBlendFactor": 2,
  4112. "_dstBlendFactor": 4,
  4113. "_color": {
  4114. "__type__": "cc.Color",
  4115. "r": 0,
  4116. "g": 0,
  4117. "b": 0,
  4118. "a": 255
  4119. },
  4120. "_string": "当前第1页",
  4121. "_horizontalAlign": 1,
  4122. "_verticalAlign": 1,
  4123. "_actualFontSize": 20,
  4124. "_fontSize": 20,
  4125. "_fontFamily": "Arial",
  4126. "_lineHeight": 40,
  4127. "_overflow": 0,
  4128. "_enableWrapText": true,
  4129. "_font": null,
  4130. "_isSystemFontUsed": true,
  4131. "_spacingX": 0,
  4132. "_isItalic": false,
  4133. "_isBold": false,
  4134. "_isUnderline": false,
  4135. "_underlineHeight": 2,
  4136. "_cacheMode": 0,
  4137. "_id": "de20cNg1VFpozSHVg67DpU"
  4138. },
  4139. {
  4140. "__type__": "cc.Node",
  4141. "_name": "btn_back",
  4142. "_objFlags": 0,
  4143. "__editorExtras__": {},
  4144. "_parent": {
  4145. "__id__": 57
  4146. },
  4147. "_children": [
  4148. {
  4149. "__id__": 105
  4150. }
  4151. ],
  4152. "_active": true,
  4153. "_components": [
  4154. {
  4155. "__id__": 108
  4156. },
  4157. {
  4158. "__id__": 109
  4159. },
  4160. {
  4161. "__id__": 110
  4162. }
  4163. ],
  4164. "_prefab": null,
  4165. "_lpos": {
  4166. "__type__": "cc.Vec3",
  4167. "x": -135.813,
  4168. "y": 340.958,
  4169. "z": 0
  4170. },
  4171. "_lrot": {
  4172. "__type__": "cc.Quat",
  4173. "x": 0,
  4174. "y": 0,
  4175. "z": 0,
  4176. "w": 1
  4177. },
  4178. "_lscale": {
  4179. "__type__": "cc.Vec3",
  4180. "x": 1,
  4181. "y": 1,
  4182. "z": 1
  4183. },
  4184. "_mobility": 0,
  4185. "_layer": 33554432,
  4186. "_euler": {
  4187. "__type__": "cc.Vec3",
  4188. "x": 0,
  4189. "y": 0,
  4190. "z": 0
  4191. },
  4192. "_id": "453esiPptGN5im15uMGl5g"
  4193. },
  4194. {
  4195. "__type__": "cc.Node",
  4196. "_name": "Label",
  4197. "_objFlags": 0,
  4198. "__editorExtras__": {},
  4199. "_parent": {
  4200. "__id__": 104
  4201. },
  4202. "_children": [],
  4203. "_active": true,
  4204. "_components": [
  4205. {
  4206. "__id__": 106
  4207. },
  4208. {
  4209. "__id__": 107
  4210. }
  4211. ],
  4212. "_prefab": null,
  4213. "_lpos": {
  4214. "__type__": "cc.Vec3",
  4215. "x": 0,
  4216. "y": 0,
  4217. "z": 0
  4218. },
  4219. "_lrot": {
  4220. "__type__": "cc.Quat",
  4221. "x": 0,
  4222. "y": 0,
  4223. "z": 0,
  4224. "w": 1
  4225. },
  4226. "_lscale": {
  4227. "__type__": "cc.Vec3",
  4228. "x": 1,
  4229. "y": 1,
  4230. "z": 1
  4231. },
  4232. "_mobility": 0,
  4233. "_layer": 33554432,
  4234. "_euler": {
  4235. "__type__": "cc.Vec3",
  4236. "x": 0,
  4237. "y": 0,
  4238. "z": 0
  4239. },
  4240. "_id": "28z3rxuRBHGKAfoDaBNI2t"
  4241. },
  4242. {
  4243. "__type__": "cc.UITransform",
  4244. "_name": "",
  4245. "_objFlags": 0,
  4246. "__editorExtras__": {},
  4247. "node": {
  4248. "__id__": 105
  4249. },
  4250. "_enabled": true,
  4251. "__prefab": null,
  4252. "_contentSize": {
  4253. "__type__": "cc.Size",
  4254. "width": 100,
  4255. "height": 40
  4256. },
  4257. "_anchorPoint": {
  4258. "__type__": "cc.Vec2",
  4259. "x": 0.5,
  4260. "y": 0.5
  4261. },
  4262. "_id": "4coz+Wjt5KH4PjEL1cQiPZ"
  4263. },
  4264. {
  4265. "__type__": "cc.Label",
  4266. "_name": "",
  4267. "_objFlags": 0,
  4268. "__editorExtras__": {},
  4269. "node": {
  4270. "__id__": 105
  4271. },
  4272. "_enabled": true,
  4273. "__prefab": null,
  4274. "_customMaterial": null,
  4275. "_srcBlendFactor": 2,
  4276. "_dstBlendFactor": 4,
  4277. "_color": {
  4278. "__type__": "cc.Color",
  4279. "r": 0,
  4280. "g": 0,
  4281. "b": 0,
  4282. "a": 255
  4283. },
  4284. "_string": "返回",
  4285. "_horizontalAlign": 1,
  4286. "_verticalAlign": 1,
  4287. "_actualFontSize": 20,
  4288. "_fontSize": 20,
  4289. "_fontFamily": "Arial",
  4290. "_lineHeight": 40,
  4291. "_overflow": 1,
  4292. "_enableWrapText": false,
  4293. "_font": null,
  4294. "_isSystemFontUsed": true,
  4295. "_spacingX": 0,
  4296. "_isItalic": false,
  4297. "_isBold": false,
  4298. "_isUnderline": false,
  4299. "_underlineHeight": 2,
  4300. "_cacheMode": 0,
  4301. "_id": "ebTxzZp3hJP4+ifTggx02u"
  4302. },
  4303. {
  4304. "__type__": "cc.UITransform",
  4305. "_name": "",
  4306. "_objFlags": 0,
  4307. "__editorExtras__": {},
  4308. "node": {
  4309. "__id__": 104
  4310. },
  4311. "_enabled": true,
  4312. "__prefab": null,
  4313. "_contentSize": {
  4314. "__type__": "cc.Size",
  4315. "width": 100,
  4316. "height": 40
  4317. },
  4318. "_anchorPoint": {
  4319. "__type__": "cc.Vec2",
  4320. "x": 0.5,
  4321. "y": 0.5
  4322. },
  4323. "_id": "32OCdDh31IBL6glxRjMFgO"
  4324. },
  4325. {
  4326. "__type__": "cc.Sprite",
  4327. "_name": "",
  4328. "_objFlags": 0,
  4329. "__editorExtras__": {},
  4330. "node": {
  4331. "__id__": 104
  4332. },
  4333. "_enabled": true,
  4334. "__prefab": null,
  4335. "_customMaterial": null,
  4336. "_srcBlendFactor": 2,
  4337. "_dstBlendFactor": 4,
  4338. "_color": {
  4339. "__type__": "cc.Color",
  4340. "r": 255,
  4341. "g": 255,
  4342. "b": 255,
  4343. "a": 255
  4344. },
  4345. "_spriteFrame": {
  4346. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4347. "__expectedType__": "cc.SpriteFrame"
  4348. },
  4349. "_type": 1,
  4350. "_fillType": 0,
  4351. "_sizeMode": 0,
  4352. "_fillCenter": {
  4353. "__type__": "cc.Vec2",
  4354. "x": 0,
  4355. "y": 0
  4356. },
  4357. "_fillStart": 0,
  4358. "_fillRange": 0,
  4359. "_isTrimmedMode": true,
  4360. "_useGrayscale": false,
  4361. "_atlas": null,
  4362. "_id": "32nXiODV1FYKcxLAWhLCP4"
  4363. },
  4364. {
  4365. "__type__": "cc.Button",
  4366. "_name": "",
  4367. "_objFlags": 0,
  4368. "__editorExtras__": {},
  4369. "node": {
  4370. "__id__": 104
  4371. },
  4372. "_enabled": true,
  4373. "__prefab": null,
  4374. "clickEvents": [],
  4375. "_interactable": true,
  4376. "_transition": 2,
  4377. "_normalColor": {
  4378. "__type__": "cc.Color",
  4379. "r": 214,
  4380. "g": 214,
  4381. "b": 214,
  4382. "a": 255
  4383. },
  4384. "_hoverColor": {
  4385. "__type__": "cc.Color",
  4386. "r": 211,
  4387. "g": 211,
  4388. "b": 211,
  4389. "a": 255
  4390. },
  4391. "_pressedColor": {
  4392. "__type__": "cc.Color",
  4393. "r": 255,
  4394. "g": 255,
  4395. "b": 255,
  4396. "a": 255
  4397. },
  4398. "_disabledColor": {
  4399. "__type__": "cc.Color",
  4400. "r": 124,
  4401. "g": 124,
  4402. "b": 124,
  4403. "a": 255
  4404. },
  4405. "_normalSprite": {
  4406. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4407. "__expectedType__": "cc.SpriteFrame"
  4408. },
  4409. "_hoverSprite": {
  4410. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4411. "__expectedType__": "cc.SpriteFrame"
  4412. },
  4413. "_pressedSprite": {
  4414. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  4415. "__expectedType__": "cc.SpriteFrame"
  4416. },
  4417. "_disabledSprite": {
  4418. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  4419. "__expectedType__": "cc.SpriteFrame"
  4420. },
  4421. "_duration": 0.1,
  4422. "_zoomScale": 1.2,
  4423. "_target": {
  4424. "__id__": 104
  4425. },
  4426. "_id": "53M1Rs4OlLWp4pc7115C7K"
  4427. },
  4428. {
  4429. "__type__": "cc.UITransform",
  4430. "_name": "",
  4431. "_objFlags": 0,
  4432. "__editorExtras__": {},
  4433. "node": {
  4434. "__id__": 57
  4435. },
  4436. "_enabled": true,
  4437. "__prefab": null,
  4438. "_contentSize": {
  4439. "__type__": "cc.Size",
  4440. "width": 1920,
  4441. "height": 1080
  4442. },
  4443. "_anchorPoint": {
  4444. "__type__": "cc.Vec2",
  4445. "x": 0.5,
  4446. "y": 0.5
  4447. },
  4448. "_id": "71skM9kBBKirySE/hUGHPr"
  4449. },
  4450. {
  4451. "__type__": "cc.Widget",
  4452. "_name": "",
  4453. "_objFlags": 0,
  4454. "__editorExtras__": {},
  4455. "node": {
  4456. "__id__": 57
  4457. },
  4458. "_enabled": true,
  4459. "__prefab": null,
  4460. "_alignFlags": 45,
  4461. "_target": null,
  4462. "_left": 0,
  4463. "_right": 0,
  4464. "_top": 0,
  4465. "_bottom": 0,
  4466. "_horizontalCenter": 0,
  4467. "_verticalCenter": 0,
  4468. "_isAbsLeft": true,
  4469. "_isAbsRight": true,
  4470. "_isAbsTop": true,
  4471. "_isAbsBottom": true,
  4472. "_isAbsHorizontalCenter": true,
  4473. "_isAbsVerticalCenter": true,
  4474. "_originalWidth": 100,
  4475. "_originalHeight": 100,
  4476. "_alignMode": 2,
  4477. "_lockFlags": 0,
  4478. "_id": "c58Y40T/FHarVfLi14LJCo"
  4479. },
  4480. {
  4481. "__type__": "cc.Sprite",
  4482. "_name": "",
  4483. "_objFlags": 0,
  4484. "__editorExtras__": {},
  4485. "node": {
  4486. "__id__": 57
  4487. },
  4488. "_enabled": true,
  4489. "__prefab": null,
  4490. "_customMaterial": null,
  4491. "_srcBlendFactor": 2,
  4492. "_dstBlendFactor": 4,
  4493. "_color": {
  4494. "__type__": "cc.Color",
  4495. "r": 255,
  4496. "g": 255,
  4497. "b": 255,
  4498. "a": 255
  4499. },
  4500. "_spriteFrame": {
  4501. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  4502. "__expectedType__": "cc.SpriteFrame"
  4503. },
  4504. "_type": 0,
  4505. "_fillType": 0,
  4506. "_sizeMode": 0,
  4507. "_fillCenter": {
  4508. "__type__": "cc.Vec2",
  4509. "x": 0,
  4510. "y": 0
  4511. },
  4512. "_fillStart": 0,
  4513. "_fillRange": 0,
  4514. "_isTrimmedMode": true,
  4515. "_useGrayscale": false,
  4516. "_atlas": null,
  4517. "_id": "221kdqmoBMLasIfwhOk6C9"
  4518. },
  4519. {
  4520. "__type__": "e935e8XwndN97a+ycD+XuAh",
  4521. "_name": "",
  4522. "_objFlags": 0,
  4523. "__editorExtras__": {},
  4524. "node": {
  4525. "__id__": 57
  4526. },
  4527. "_enabled": true,
  4528. "__prefab": null,
  4529. "btn_cancel": {
  4530. "__id__": 104
  4531. },
  4532. "btn_search": {
  4533. "__id__": 94
  4534. },
  4535. "btn_p": {
  4536. "__id__": 70
  4537. },
  4538. "btn_n": {
  4539. "__id__": 77
  4540. },
  4541. "content": {
  4542. "__id__": 60
  4543. },
  4544. "item_prefab": {
  4545. "__uuid__": "e0903480-6086-4f89-be39-3ee3bd78c017",
  4546. "__expectedType__": "cc.Prefab"
  4547. },
  4548. "game_1": {
  4549. "__id__": 5
  4550. },
  4551. "lab_cur_page": {
  4552. "__id__": 101
  4553. },
  4554. "ed_lab": {
  4555. "__id__": 93
  4556. },
  4557. "_id": "51La5HJQFPJI0rcMyJHGn4"
  4558. },
  4559. {
  4560. "__type__": "cc.UITransform",
  4561. "_name": "",
  4562. "_objFlags": 0,
  4563. "__editorExtras__": {},
  4564. "node": {
  4565. "__id__": 5
  4566. },
  4567. "_enabled": true,
  4568. "__prefab": null,
  4569. "_contentSize": {
  4570. "__type__": "cc.Size",
  4571. "width": 1920,
  4572. "height": 1080
  4573. },
  4574. "_anchorPoint": {
  4575. "__type__": "cc.Vec2",
  4576. "x": 0,
  4577. "y": 0
  4578. },
  4579. "_id": "bcaeJWCzBATqz3wOgMjMzE"
  4580. },
  4581. {
  4582. "__type__": "7bc878sCPVGNbkT4i+nAMCS",
  4583. "_name": "",
  4584. "_objFlags": 0,
  4585. "__editorExtras__": {},
  4586. "node": {
  4587. "__id__": 5
  4588. },
  4589. "_enabled": true,
  4590. "__prefab": null,
  4591. "list_circle": {
  4592. "__id__": 45
  4593. },
  4594. "item_prefab": {
  4595. "__id__": 23
  4596. },
  4597. "lab_title": {
  4598. "__id__": 20
  4599. },
  4600. "rect_obj": {
  4601. "__id__": 44
  4602. },
  4603. "level_list": {
  4604. "__id__": 57
  4605. },
  4606. "btn_cancel": {
  4607. "__id__": 6
  4608. },
  4609. "btn_save": {
  4610. "__id__": 50
  4611. },
  4612. "btn_select_level": {
  4613. "__id__": 13
  4614. },
  4615. "game_edit_list": {
  4616. "__id__": 117
  4617. },
  4618. "img_1": {
  4619. "__id__": 44
  4620. },
  4621. "img_2": {
  4622. "__id__": 41
  4623. },
  4624. "_id": "05Ps5PEWhAbJhbUq/5ZYwV"
  4625. },
  4626. {
  4627. "__type__": "cc.Node",
  4628. "_name": "game_edit_list",
  4629. "_objFlags": 0,
  4630. "__editorExtras__": {},
  4631. "_parent": {
  4632. "__id__": 2
  4633. },
  4634. "_children": [
  4635. {
  4636. "__id__": 118
  4637. },
  4638. {
  4639. "__id__": 122
  4640. }
  4641. ],
  4642. "_active": true,
  4643. "_components": [
  4644. {
  4645. "__id__": 143
  4646. },
  4647. {
  4648. "__id__": 144
  4649. },
  4650. {
  4651. "__id__": 380
  4652. }
  4653. ],
  4654. "_prefab": null,
  4655. "_lpos": {
  4656. "__type__": "cc.Vec3",
  4657. "x": 0,
  4658. "y": 0,
  4659. "z": 0
  4660. },
  4661. "_lrot": {
  4662. "__type__": "cc.Quat",
  4663. "x": 0,
  4664. "y": 0,
  4665. "z": 0,
  4666. "w": 1
  4667. },
  4668. "_lscale": {
  4669. "__type__": "cc.Vec3",
  4670. "x": 1,
  4671. "y": 1,
  4672. "z": 1
  4673. },
  4674. "_mobility": 0,
  4675. "_layer": 33554432,
  4676. "_euler": {
  4677. "__type__": "cc.Vec3",
  4678. "x": 0,
  4679. "y": 0,
  4680. "z": 0
  4681. },
  4682. "_id": "58Dvv7cDRBML8YJG4ypxRa"
  4683. },
  4684. {
  4685. "__type__": "cc.Node",
  4686. "_name": "Sprite",
  4687. "_objFlags": 0,
  4688. "__editorExtras__": {},
  4689. "_parent": {
  4690. "__id__": 117
  4691. },
  4692. "_children": [],
  4693. "_active": true,
  4694. "_components": [
  4695. {
  4696. "__id__": 119
  4697. },
  4698. {
  4699. "__id__": 120
  4700. },
  4701. {
  4702. "__id__": 121
  4703. }
  4704. ],
  4705. "_prefab": null,
  4706. "_lpos": {
  4707. "__type__": "cc.Vec3",
  4708. "x": 0,
  4709. "y": 0,
  4710. "z": 0
  4711. },
  4712. "_lrot": {
  4713. "__type__": "cc.Quat",
  4714. "x": 0,
  4715. "y": 0,
  4716. "z": 0,
  4717. "w": 1
  4718. },
  4719. "_lscale": {
  4720. "__type__": "cc.Vec3",
  4721. "x": 1,
  4722. "y": 1,
  4723. "z": 1
  4724. },
  4725. "_mobility": 0,
  4726. "_layer": 33554432,
  4727. "_euler": {
  4728. "__type__": "cc.Vec3",
  4729. "x": 0,
  4730. "y": 0,
  4731. "z": 0
  4732. },
  4733. "_id": "bcChaDDpFFVIZfIoqtf6sn"
  4734. },
  4735. {
  4736. "__type__": "cc.UITransform",
  4737. "_name": "",
  4738. "_objFlags": 0,
  4739. "__editorExtras__": {},
  4740. "node": {
  4741. "__id__": 118
  4742. },
  4743. "_enabled": true,
  4744. "__prefab": null,
  4745. "_contentSize": {
  4746. "__type__": "cc.Size",
  4747. "width": 1920,
  4748. "height": 1080
  4749. },
  4750. "_anchorPoint": {
  4751. "__type__": "cc.Vec2",
  4752. "x": 0.5,
  4753. "y": 0.5
  4754. },
  4755. "_id": "90MDea/iVEeb44NjNab1q5"
  4756. },
  4757. {
  4758. "__type__": "cc.Sprite",
  4759. "_name": "",
  4760. "_objFlags": 0,
  4761. "__editorExtras__": {},
  4762. "node": {
  4763. "__id__": 118
  4764. },
  4765. "_enabled": true,
  4766. "__prefab": null,
  4767. "_customMaterial": null,
  4768. "_srcBlendFactor": 2,
  4769. "_dstBlendFactor": 4,
  4770. "_color": {
  4771. "__type__": "cc.Color",
  4772. "r": 63,
  4773. "g": 63,
  4774. "b": 63,
  4775. "a": 255
  4776. },
  4777. "_spriteFrame": {
  4778. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  4779. "__expectedType__": "cc.SpriteFrame"
  4780. },
  4781. "_type": 0,
  4782. "_fillType": 0,
  4783. "_sizeMode": 0,
  4784. "_fillCenter": {
  4785. "__type__": "cc.Vec2",
  4786. "x": 0,
  4787. "y": 0
  4788. },
  4789. "_fillStart": 0,
  4790. "_fillRange": 0,
  4791. "_isTrimmedMode": true,
  4792. "_useGrayscale": false,
  4793. "_atlas": null,
  4794. "_id": "abPGCyBhdIkY9IHfbIXneT"
  4795. },
  4796. {
  4797. "__type__": "cc.Widget",
  4798. "_name": "",
  4799. "_objFlags": 0,
  4800. "__editorExtras__": {},
  4801. "node": {
  4802. "__id__": 118
  4803. },
  4804. "_enabled": true,
  4805. "__prefab": null,
  4806. "_alignFlags": 45,
  4807. "_target": null,
  4808. "_left": 0,
  4809. "_right": 0,
  4810. "_top": 0,
  4811. "_bottom": 0,
  4812. "_horizontalCenter": 0,
  4813. "_verticalCenter": 0,
  4814. "_isAbsLeft": true,
  4815. "_isAbsRight": true,
  4816. "_isAbsTop": true,
  4817. "_isAbsBottom": true,
  4818. "_isAbsHorizontalCenter": true,
  4819. "_isAbsVerticalCenter": true,
  4820. "_originalWidth": 2,
  4821. "_originalHeight": 2,
  4822. "_alignMode": 2,
  4823. "_lockFlags": 0,
  4824. "_id": "79MJpZzNlICaKVrd3Ctg5J"
  4825. },
  4826. {
  4827. "__type__": "cc.Node",
  4828. "_name": "ScrollView",
  4829. "_objFlags": 0,
  4830. "__editorExtras__": {},
  4831. "_parent": {
  4832. "__id__": 117
  4833. },
  4834. "_children": [
  4835. {
  4836. "__id__": 123
  4837. },
  4838. {
  4839. "__id__": 133
  4840. }
  4841. ],
  4842. "_active": true,
  4843. "_components": [
  4844. {
  4845. "__id__": 140
  4846. },
  4847. {
  4848. "__id__": 141
  4849. },
  4850. {
  4851. "__id__": 131
  4852. },
  4853. {
  4854. "__id__": 142
  4855. }
  4856. ],
  4857. "_prefab": null,
  4858. "_lpos": {
  4859. "__type__": "cc.Vec3",
  4860. "x": 0,
  4861. "y": 0,
  4862. "z": 0
  4863. },
  4864. "_lrot": {
  4865. "__type__": "cc.Quat",
  4866. "x": 0,
  4867. "y": 0,
  4868. "z": 0,
  4869. "w": 1
  4870. },
  4871. "_lscale": {
  4872. "__type__": "cc.Vec3",
  4873. "x": 1,
  4874. "y": 1,
  4875. "z": 1
  4876. },
  4877. "_mobility": 0,
  4878. "_layer": 33554432,
  4879. "_euler": {
  4880. "__type__": "cc.Vec3",
  4881. "x": 0,
  4882. "y": 0,
  4883. "z": 0
  4884. },
  4885. "_id": "a4LCJgWEFBl4EzihiPT7OI"
  4886. },
  4887. {
  4888. "__type__": "cc.Node",
  4889. "_name": "scrollBar",
  4890. "_objFlags": 0,
  4891. "__editorExtras__": {},
  4892. "_parent": {
  4893. "__id__": 122
  4894. },
  4895. "_children": [
  4896. {
  4897. "__id__": 124
  4898. }
  4899. ],
  4900. "_active": true,
  4901. "_components": [
  4902. {
  4903. "__id__": 127
  4904. },
  4905. {
  4906. "__id__": 128
  4907. },
  4908. {
  4909. "__id__": 129
  4910. },
  4911. {
  4912. "__id__": 130
  4913. }
  4914. ],
  4915. "_prefab": null,
  4916. "_lpos": {
  4917. "__type__": "cc.Vec3",
  4918. "x": 960,
  4919. "y": 0,
  4920. "z": 0
  4921. },
  4922. "_lrot": {
  4923. "__type__": "cc.Quat",
  4924. "x": 0,
  4925. "y": 0,
  4926. "z": 0,
  4927. "w": 1
  4928. },
  4929. "_lscale": {
  4930. "__type__": "cc.Vec3",
  4931. "x": 1,
  4932. "y": 1,
  4933. "z": 1
  4934. },
  4935. "_mobility": 0,
  4936. "_layer": 33554432,
  4937. "_euler": {
  4938. "__type__": "cc.Vec3",
  4939. "x": 0,
  4940. "y": 0,
  4941. "z": 0
  4942. },
  4943. "_id": "d9nKhiQ2BEYLHqL4SoNv7W"
  4944. },
  4945. {
  4946. "__type__": "cc.Node",
  4947. "_name": "bar",
  4948. "_objFlags": 0,
  4949. "__editorExtras__": {},
  4950. "_parent": {
  4951. "__id__": 123
  4952. },
  4953. "_children": [],
  4954. "_active": true,
  4955. "_components": [
  4956. {
  4957. "__id__": 125
  4958. },
  4959. {
  4960. "__id__": 126
  4961. }
  4962. ],
  4963. "_prefab": null,
  4964. "_lpos": {
  4965. "__type__": "cc.Vec3",
  4966. "x": -11,
  4967. "y": -31.25,
  4968. "z": 0
  4969. },
  4970. "_lrot": {
  4971. "__type__": "cc.Quat",
  4972. "x": 0,
  4973. "y": 0,
  4974. "z": 0,
  4975. "w": 1
  4976. },
  4977. "_lscale": {
  4978. "__type__": "cc.Vec3",
  4979. "x": 1,
  4980. "y": 1,
  4981. "z": 1
  4982. },
  4983. "_mobility": 0,
  4984. "_layer": 33554432,
  4985. "_euler": {
  4986. "__type__": "cc.Vec3",
  4987. "x": 0,
  4988. "y": 0,
  4989. "z": 0
  4990. },
  4991. "_id": "84Tha1u5lMBIcfl8iiPvF4"
  4992. },
  4993. {
  4994. "__type__": "cc.UITransform",
  4995. "_name": "",
  4996. "_objFlags": 0,
  4997. "__editorExtras__": {},
  4998. "node": {
  4999. "__id__": 124
  5000. },
  5001. "_enabled": true,
  5002. "__prefab": null,
  5003. "_contentSize": {
  5004. "__type__": "cc.Size",
  5005. "width": 10,
  5006. "height": 156.25
  5007. },
  5008. "_anchorPoint": {
  5009. "__type__": "cc.Vec2",
  5010. "x": 0,
  5011. "y": 0
  5012. },
  5013. "_id": "f85k1xa2ZAwa+Z7ePTFZLL"
  5014. },
  5015. {
  5016. "__type__": "cc.Sprite",
  5017. "_name": "",
  5018. "_objFlags": 0,
  5019. "__editorExtras__": {},
  5020. "node": {
  5021. "__id__": 124
  5022. },
  5023. "_enabled": true,
  5024. "__prefab": null,
  5025. "_customMaterial": null,
  5026. "_srcBlendFactor": 2,
  5027. "_dstBlendFactor": 4,
  5028. "_color": {
  5029. "__type__": "cc.Color",
  5030. "r": 255,
  5031. "g": 255,
  5032. "b": 255,
  5033. "a": 255
  5034. },
  5035. "_spriteFrame": {
  5036. "__uuid__": "afc47931-f066-46b0-90be-9fe61f213428@f9941",
  5037. "__expectedType__": "cc.SpriteFrame"
  5038. },
  5039. "_type": 1,
  5040. "_fillType": 0,
  5041. "_sizeMode": 0,
  5042. "_fillCenter": {
  5043. "__type__": "cc.Vec2",
  5044. "x": 0,
  5045. "y": 0
  5046. },
  5047. "_fillStart": 0,
  5048. "_fillRange": 0,
  5049. "_isTrimmedMode": true,
  5050. "_useGrayscale": false,
  5051. "_atlas": null,
  5052. "_id": "56+2A9kN5Ja63gGrjpUbGy"
  5053. },
  5054. {
  5055. "__type__": "cc.UITransform",
  5056. "_name": "",
  5057. "_objFlags": 0,
  5058. "__editorExtras__": {},
  5059. "node": {
  5060. "__id__": 123
  5061. },
  5062. "_enabled": true,
  5063. "__prefab": null,
  5064. "_contentSize": {
  5065. "__type__": "cc.Size",
  5066. "width": 12,
  5067. "height": 1080
  5068. },
  5069. "_anchorPoint": {
  5070. "__type__": "cc.Vec2",
  5071. "x": 1,
  5072. "y": 0.5
  5073. },
  5074. "_id": "abvmEAbmNLvo1Jam5nQqyV"
  5075. },
  5076. {
  5077. "__type__": "cc.Sprite",
  5078. "_name": "",
  5079. "_objFlags": 0,
  5080. "__editorExtras__": {},
  5081. "node": {
  5082. "__id__": 123
  5083. },
  5084. "_enabled": true,
  5085. "__prefab": null,
  5086. "_customMaterial": null,
  5087. "_srcBlendFactor": 2,
  5088. "_dstBlendFactor": 4,
  5089. "_color": {
  5090. "__type__": "cc.Color",
  5091. "r": 255,
  5092. "g": 255,
  5093. "b": 255,
  5094. "a": 255
  5095. },
  5096. "_spriteFrame": {
  5097. "__uuid__": "ffb88a8f-af62-48f4-8f1d-3cb606443a43@f9941",
  5098. "__expectedType__": "cc.SpriteFrame"
  5099. },
  5100. "_type": 1,
  5101. "_fillType": 0,
  5102. "_sizeMode": 0,
  5103. "_fillCenter": {
  5104. "__type__": "cc.Vec2",
  5105. "x": 0,
  5106. "y": 0
  5107. },
  5108. "_fillStart": 0,
  5109. "_fillRange": 0,
  5110. "_isTrimmedMode": true,
  5111. "_useGrayscale": false,
  5112. "_atlas": null,
  5113. "_id": "26wx7iWG5Nd4sJ+LXL1/91"
  5114. },
  5115. {
  5116. "__type__": "cc.Widget",
  5117. "_name": "",
  5118. "_objFlags": 0,
  5119. "__editorExtras__": {},
  5120. "node": {
  5121. "__id__": 123
  5122. },
  5123. "_enabled": true,
  5124. "__prefab": null,
  5125. "_alignFlags": 37,
  5126. "_target": null,
  5127. "_left": 0,
  5128. "_right": 0,
  5129. "_top": 0,
  5130. "_bottom": 0,
  5131. "_horizontalCenter": 0,
  5132. "_verticalCenter": 0,
  5133. "_isAbsLeft": true,
  5134. "_isAbsRight": true,
  5135. "_isAbsTop": true,
  5136. "_isAbsBottom": true,
  5137. "_isAbsHorizontalCenter": true,
  5138. "_isAbsVerticalCenter": true,
  5139. "_originalWidth": 0,
  5140. "_originalHeight": 250,
  5141. "_alignMode": 1,
  5142. "_lockFlags": 0,
  5143. "_id": "1aXm9mZ0BLY745Inb8gmVm"
  5144. },
  5145. {
  5146. "__type__": "cc.ScrollBar",
  5147. "_name": "",
  5148. "_objFlags": 0,
  5149. "__editorExtras__": {},
  5150. "node": {
  5151. "__id__": 123
  5152. },
  5153. "_enabled": true,
  5154. "__prefab": null,
  5155. "_scrollView": {
  5156. "__id__": 131
  5157. },
  5158. "_handle": {
  5159. "__id__": 126
  5160. },
  5161. "_direction": 1,
  5162. "_enableAutoHide": false,
  5163. "_autoHideTime": 1,
  5164. "_id": "67menqWARFLoA92KgAgPVw"
  5165. },
  5166. {
  5167. "__type__": "cc.ScrollView",
  5168. "_name": "",
  5169. "_objFlags": 0,
  5170. "__editorExtras__": {},
  5171. "node": {
  5172. "__id__": 122
  5173. },
  5174. "_enabled": true,
  5175. "__prefab": null,
  5176. "bounceDuration": 0.23,
  5177. "brake": 0.75,
  5178. "elastic": true,
  5179. "inertia": true,
  5180. "horizontal": false,
  5181. "vertical": true,
  5182. "cancelInnerEvents": true,
  5183. "scrollEvents": [],
  5184. "_content": {
  5185. "__id__": 132
  5186. },
  5187. "_horizontalScrollBar": null,
  5188. "_verticalScrollBar": {
  5189. "__id__": 130
  5190. },
  5191. "_id": "ca7xP9xidN+roasx36toNZ"
  5192. },
  5193. {
  5194. "__type__": "cc.Node",
  5195. "_name": "content",
  5196. "_objFlags": 0,
  5197. "__editorExtras__": {},
  5198. "_parent": {
  5199. "__id__": 133
  5200. },
  5201. "_children": [],
  5202. "_active": true,
  5203. "_components": [
  5204. {
  5205. "__id__": 138
  5206. },
  5207. {
  5208. "__id__": 139
  5209. }
  5210. ],
  5211. "_prefab": null,
  5212. "_lpos": {
  5213. "__type__": "cc.Vec3",
  5214. "x": 0,
  5215. "y": 395.06,
  5216. "z": 0
  5217. },
  5218. "_lrot": {
  5219. "__type__": "cc.Quat",
  5220. "x": 0,
  5221. "y": 0,
  5222. "z": 0,
  5223. "w": 1
  5224. },
  5225. "_lscale": {
  5226. "__type__": "cc.Vec3",
  5227. "x": 1,
  5228. "y": 1,
  5229. "z": 1
  5230. },
  5231. "_mobility": 0,
  5232. "_layer": 33554432,
  5233. "_euler": {
  5234. "__type__": "cc.Vec3",
  5235. "x": 0,
  5236. "y": 0,
  5237. "z": 0
  5238. },
  5239. "_id": "0aG2I7fnZA6JBc2VabfGX7"
  5240. },
  5241. {
  5242. "__type__": "cc.Node",
  5243. "_name": "view",
  5244. "_objFlags": 0,
  5245. "__editorExtras__": {},
  5246. "_parent": {
  5247. "__id__": 122
  5248. },
  5249. "_children": [
  5250. {
  5251. "__id__": 132
  5252. }
  5253. ],
  5254. "_active": true,
  5255. "_components": [
  5256. {
  5257. "__id__": 134
  5258. },
  5259. {
  5260. "__id__": 135
  5261. },
  5262. {
  5263. "__id__": 136
  5264. },
  5265. {
  5266. "__id__": 137
  5267. }
  5268. ],
  5269. "_prefab": null,
  5270. "_lpos": {
  5271. "__type__": "cc.Vec3",
  5272. "x": 0,
  5273. "y": 0,
  5274. "z": 0
  5275. },
  5276. "_lrot": {
  5277. "__type__": "cc.Quat",
  5278. "x": 0,
  5279. "y": 0,
  5280. "z": 0,
  5281. "w": 1
  5282. },
  5283. "_lscale": {
  5284. "__type__": "cc.Vec3",
  5285. "x": 1,
  5286. "y": 1,
  5287. "z": 1
  5288. },
  5289. "_mobility": 0,
  5290. "_layer": 33554432,
  5291. "_euler": {
  5292. "__type__": "cc.Vec3",
  5293. "x": 0,
  5294. "y": 0,
  5295. "z": 0
  5296. },
  5297. "_id": "5ddQPYN7xKapPCN2Yjkvoq"
  5298. },
  5299. {
  5300. "__type__": "cc.UITransform",
  5301. "_name": "",
  5302. "_objFlags": 0,
  5303. "__editorExtras__": {},
  5304. "node": {
  5305. "__id__": 133
  5306. },
  5307. "_enabled": true,
  5308. "__prefab": null,
  5309. "_contentSize": {
  5310. "__type__": "cc.Size",
  5311. "width": 1920,
  5312. "height": 1080
  5313. },
  5314. "_anchorPoint": {
  5315. "__type__": "cc.Vec2",
  5316. "x": 0.5,
  5317. "y": 0.5
  5318. },
  5319. "_id": "38RySv9MpJxrW/ox2klp+3"
  5320. },
  5321. {
  5322. "__type__": "cc.Mask",
  5323. "_name": "",
  5324. "_objFlags": 0,
  5325. "__editorExtras__": {},
  5326. "node": {
  5327. "__id__": 133
  5328. },
  5329. "_enabled": true,
  5330. "__prefab": null,
  5331. "_type": 0,
  5332. "_inverted": false,
  5333. "_segments": 64,
  5334. "_alphaThreshold": 0.1,
  5335. "_id": "35fskNeFtAe6PSMQgLdcbU"
  5336. },
  5337. {
  5338. "__type__": "cc.Graphics",
  5339. "_name": "",
  5340. "_objFlags": 0,
  5341. "__editorExtras__": {},
  5342. "node": {
  5343. "__id__": 133
  5344. },
  5345. "_enabled": true,
  5346. "__prefab": null,
  5347. "_customMaterial": null,
  5348. "_srcBlendFactor": 2,
  5349. "_dstBlendFactor": 4,
  5350. "_color": {
  5351. "__type__": "cc.Color",
  5352. "r": 255,
  5353. "g": 255,
  5354. "b": 255,
  5355. "a": 255
  5356. },
  5357. "_lineWidth": 1,
  5358. "_strokeColor": {
  5359. "__type__": "cc.Color",
  5360. "r": 0,
  5361. "g": 0,
  5362. "b": 0,
  5363. "a": 255
  5364. },
  5365. "_lineJoin": 2,
  5366. "_lineCap": 0,
  5367. "_fillColor": {
  5368. "__type__": "cc.Color",
  5369. "r": 255,
  5370. "g": 255,
  5371. "b": 255,
  5372. "a": 0
  5373. },
  5374. "_miterLimit": 10,
  5375. "_id": "16Gna7ZrdJa7cLhp3FVTtb"
  5376. },
  5377. {
  5378. "__type__": "cc.Widget",
  5379. "_name": "",
  5380. "_objFlags": 0,
  5381. "__editorExtras__": {},
  5382. "node": {
  5383. "__id__": 133
  5384. },
  5385. "_enabled": true,
  5386. "__prefab": null,
  5387. "_alignFlags": 45,
  5388. "_target": null,
  5389. "_left": 0,
  5390. "_right": 0,
  5391. "_top": 0,
  5392. "_bottom": 0,
  5393. "_horizontalCenter": 0,
  5394. "_verticalCenter": 0,
  5395. "_isAbsLeft": true,
  5396. "_isAbsRight": true,
  5397. "_isAbsTop": true,
  5398. "_isAbsBottom": true,
  5399. "_isAbsHorizontalCenter": true,
  5400. "_isAbsVerticalCenter": true,
  5401. "_originalWidth": 240,
  5402. "_originalHeight": 250,
  5403. "_alignMode": 2,
  5404. "_lockFlags": 0,
  5405. "_id": "49PORtr4BHrb1TbF8fQ4DV"
  5406. },
  5407. {
  5408. "__type__": "cc.UITransform",
  5409. "_name": "",
  5410. "_objFlags": 0,
  5411. "__editorExtras__": {},
  5412. "node": {
  5413. "__id__": 132
  5414. },
  5415. "_enabled": true,
  5416. "__prefab": null,
  5417. "_contentSize": {
  5418. "__type__": "cc.Size",
  5419. "width": 220,
  5420. "height": -20
  5421. },
  5422. "_anchorPoint": {
  5423. "__type__": "cc.Vec2",
  5424. "x": 0.5,
  5425. "y": 1
  5426. },
  5427. "_id": "2cCUBbjUBHCbi14BS7Mtvb"
  5428. },
  5429. {
  5430. "__type__": "cc.Layout",
  5431. "_name": "",
  5432. "_objFlags": 0,
  5433. "__editorExtras__": {},
  5434. "node": {
  5435. "__id__": 132
  5436. },
  5437. "_enabled": true,
  5438. "__prefab": null,
  5439. "_resizeMode": 1,
  5440. "_layoutType": 2,
  5441. "_cellSize": {
  5442. "__type__": "cc.Size",
  5443. "width": 40,
  5444. "height": 40
  5445. },
  5446. "_startAxis": 0,
  5447. "_paddingLeft": 0,
  5448. "_paddingRight": 0,
  5449. "_paddingTop": 0,
  5450. "_paddingBottom": 0,
  5451. "_spacingX": 0,
  5452. "_spacingY": 20,
  5453. "_verticalDirection": 1,
  5454. "_horizontalDirection": 0,
  5455. "_constraint": 0,
  5456. "_constraintNum": 2,
  5457. "_affectedByScale": false,
  5458. "_isAlign": false,
  5459. "_id": "3cRrldYUZE8KuGh+OLzgl/"
  5460. },
  5461. {
  5462. "__type__": "cc.UITransform",
  5463. "_name": "",
  5464. "_objFlags": 0,
  5465. "__editorExtras__": {},
  5466. "node": {
  5467. "__id__": 122
  5468. },
  5469. "_enabled": true,
  5470. "__prefab": null,
  5471. "_contentSize": {
  5472. "__type__": "cc.Size",
  5473. "width": 1920,
  5474. "height": 1080
  5475. },
  5476. "_anchorPoint": {
  5477. "__type__": "cc.Vec2",
  5478. "x": 0.5,
  5479. "y": 0.5
  5480. },
  5481. "_id": "99/qzUmulLHbJlZxqPJA/h"
  5482. },
  5483. {
  5484. "__type__": "cc.Sprite",
  5485. "_name": "",
  5486. "_objFlags": 0,
  5487. "__editorExtras__": {},
  5488. "node": {
  5489. "__id__": 122
  5490. },
  5491. "_enabled": true,
  5492. "__prefab": null,
  5493. "_customMaterial": null,
  5494. "_srcBlendFactor": 2,
  5495. "_dstBlendFactor": 4,
  5496. "_color": {
  5497. "__type__": "cc.Color",
  5498. "r": 255,
  5499. "g": 255,
  5500. "b": 255,
  5501. "a": 255
  5502. },
  5503. "_spriteFrame": {
  5504. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  5505. "__expectedType__": "cc.SpriteFrame"
  5506. },
  5507. "_type": 1,
  5508. "_fillType": 0,
  5509. "_sizeMode": 0,
  5510. "_fillCenter": {
  5511. "__type__": "cc.Vec2",
  5512. "x": 0,
  5513. "y": 0
  5514. },
  5515. "_fillStart": 0,
  5516. "_fillRange": 0,
  5517. "_isTrimmedMode": true,
  5518. "_useGrayscale": false,
  5519. "_atlas": null,
  5520. "_id": "38Y0FphBBD4akQLKPWkUyN"
  5521. },
  5522. {
  5523. "__type__": "cc.Widget",
  5524. "_name": "",
  5525. "_objFlags": 0,
  5526. "__editorExtras__": {},
  5527. "node": {
  5528. "__id__": 122
  5529. },
  5530. "_enabled": true,
  5531. "__prefab": null,
  5532. "_alignFlags": 45,
  5533. "_target": null,
  5534. "_left": 0,
  5535. "_right": 0,
  5536. "_top": 0,
  5537. "_bottom": 0,
  5538. "_horizontalCenter": 0,
  5539. "_verticalCenter": 0,
  5540. "_isAbsLeft": true,
  5541. "_isAbsRight": true,
  5542. "_isAbsTop": true,
  5543. "_isAbsBottom": true,
  5544. "_isAbsHorizontalCenter": true,
  5545. "_isAbsVerticalCenter": true,
  5546. "_originalWidth": 240,
  5547. "_originalHeight": 250,
  5548. "_alignMode": 2,
  5549. "_lockFlags": 0,
  5550. "_id": "6dEDQNRvdNHrcXEMmJtygW"
  5551. },
  5552. {
  5553. "__type__": "cc.UITransform",
  5554. "_name": "",
  5555. "_objFlags": 0,
  5556. "__editorExtras__": {},
  5557. "node": {
  5558. "__id__": 117
  5559. },
  5560. "_enabled": false,
  5561. "__prefab": null,
  5562. "_contentSize": {
  5563. "__type__": "cc.Size",
  5564. "width": 1920,
  5565. "height": 1080
  5566. },
  5567. "_anchorPoint": {
  5568. "__type__": "cc.Vec2",
  5569. "x": 0.5,
  5570. "y": 0.5
  5571. },
  5572. "_id": "81Zfm3pPJFRpaWalX3I1DI"
  5573. },
  5574. {
  5575. "__type__": "efd112GEjhLsqiQhegJheCe",
  5576. "_name": "",
  5577. "_objFlags": 0,
  5578. "__editorExtras__": {},
  5579. "node": {
  5580. "__id__": 117
  5581. },
  5582. "_enabled": true,
  5583. "__prefab": null,
  5584. "item_prefab": {
  5585. "__uuid__": "a1dc977e-da6f-4743-9077-4006f54b7bc0",
  5586. "__expectedType__": "cc.Prefab"
  5587. },
  5588. "content": {
  5589. "__id__": 132
  5590. },
  5591. "game_1": {
  5592. "__id__": 5
  5593. },
  5594. "game_font": {
  5595. "__id__": 145
  5596. },
  5597. "game_detail": {
  5598. "__id__": 235
  5599. },
  5600. "_id": "2dSJX6cEVAwaMiKsgatCDY"
  5601. },
  5602. {
  5603. "__type__": "cc.Node",
  5604. "_name": "game_font",
  5605. "_objFlags": 0,
  5606. "__editorExtras__": {},
  5607. "_parent": {
  5608. "__id__": 2
  5609. },
  5610. "_children": [
  5611. {
  5612. "__id__": 146
  5613. },
  5614. {
  5615. "__id__": 149
  5616. },
  5617. {
  5618. "__id__": 156
  5619. },
  5620. {
  5621. "__id__": 163
  5622. },
  5623. {
  5624. "__id__": 170
  5625. },
  5626. {
  5627. "__id__": 173
  5628. }
  5629. ],
  5630. "_active": false,
  5631. "_components": [
  5632. {
  5633. "__id__": 231
  5634. },
  5635. {
  5636. "__id__": 232
  5637. },
  5638. {
  5639. "__id__": 233
  5640. },
  5641. {
  5642. "__id__": 234
  5643. }
  5644. ],
  5645. "_prefab": null,
  5646. "_lpos": {
  5647. "__type__": "cc.Vec3",
  5648. "x": 0,
  5649. "y": 0,
  5650. "z": 0
  5651. },
  5652. "_lrot": {
  5653. "__type__": "cc.Quat",
  5654. "x": 0,
  5655. "y": 0,
  5656. "z": 0,
  5657. "w": 1
  5658. },
  5659. "_lscale": {
  5660. "__type__": "cc.Vec3",
  5661. "x": 1,
  5662. "y": 1,
  5663. "z": 1
  5664. },
  5665. "_mobility": 0,
  5666. "_layer": 33554432,
  5667. "_euler": {
  5668. "__type__": "cc.Vec3",
  5669. "x": 0,
  5670. "y": 0,
  5671. "z": 0
  5672. },
  5673. "_id": "39ZoIya6hBH762aJ+PauqT"
  5674. },
  5675. {
  5676. "__type__": "cc.Node",
  5677. "_name": "grid_list",
  5678. "_objFlags": 0,
  5679. "__editorExtras__": {},
  5680. "_parent": {
  5681. "__id__": 145
  5682. },
  5683. "_children": [],
  5684. "_active": true,
  5685. "_components": [
  5686. {
  5687. "__id__": 147
  5688. },
  5689. {
  5690. "__id__": 148
  5691. }
  5692. ],
  5693. "_prefab": null,
  5694. "_lpos": {
  5695. "__type__": "cc.Vec3",
  5696. "x": 200,
  5697. "y": -300,
  5698. "z": 0
  5699. },
  5700. "_lrot": {
  5701. "__type__": "cc.Quat",
  5702. "x": 0,
  5703. "y": 0,
  5704. "z": 0,
  5705. "w": 1
  5706. },
  5707. "_lscale": {
  5708. "__type__": "cc.Vec3",
  5709. "x": 1,
  5710. "y": 1,
  5711. "z": 1
  5712. },
  5713. "_mobility": 0,
  5714. "_layer": 33554432,
  5715. "_euler": {
  5716. "__type__": "cc.Vec3",
  5717. "x": 0,
  5718. "y": 0,
  5719. "z": 0
  5720. },
  5721. "_id": "318WfJMrZDA47b/sjVlI9D"
  5722. },
  5723. {
  5724. "__type__": "cc.UITransform",
  5725. "_name": "",
  5726. "_objFlags": 0,
  5727. "__editorExtras__": {},
  5728. "node": {
  5729. "__id__": 146
  5730. },
  5731. "_enabled": true,
  5732. "__prefab": null,
  5733. "_contentSize": {
  5734. "__type__": "cc.Size",
  5735. "width": 90,
  5736. "height": 0
  5737. },
  5738. "_anchorPoint": {
  5739. "__type__": "cc.Vec2",
  5740. "x": 1,
  5741. "y": 0
  5742. },
  5743. "_id": "0a9y9KsnhOnoSjvJb2vzGC"
  5744. },
  5745. {
  5746. "__type__": "cc.Layout",
  5747. "_name": "",
  5748. "_objFlags": 0,
  5749. "__editorExtras__": {},
  5750. "node": {
  5751. "__id__": 146
  5752. },
  5753. "_enabled": true,
  5754. "__prefab": null,
  5755. "_resizeMode": 1,
  5756. "_layoutType": 3,
  5757. "_cellSize": {
  5758. "__type__": "cc.Size",
  5759. "width": 40,
  5760. "height": 40
  5761. },
  5762. "_startAxis": 0,
  5763. "_paddingLeft": 0,
  5764. "_paddingRight": 0,
  5765. "_paddingTop": 0,
  5766. "_paddingBottom": 0,
  5767. "_spacingX": 0,
  5768. "_spacingY": 0,
  5769. "_verticalDirection": 0,
  5770. "_horizontalDirection": 1,
  5771. "_constraint": 2,
  5772. "_constraintNum": 11,
  5773. "_affectedByScale": false,
  5774. "_isAlign": false,
  5775. "_id": "f0eHOHEohGV76IVH2W+Is0"
  5776. },
  5777. {
  5778. "__type__": "cc.Node",
  5779. "_name": "btn_select_level",
  5780. "_objFlags": 0,
  5781. "__editorExtras__": {},
  5782. "_parent": {
  5783. "__id__": 145
  5784. },
  5785. "_children": [
  5786. {
  5787. "__id__": 150
  5788. }
  5789. ],
  5790. "_active": true,
  5791. "_components": [
  5792. {
  5793. "__id__": 153
  5794. },
  5795. {
  5796. "__id__": 154
  5797. },
  5798. {
  5799. "__id__": 155
  5800. }
  5801. ],
  5802. "_prefab": null,
  5803. "_lpos": {
  5804. "__type__": "cc.Vec3",
  5805. "x": 620,
  5806. "y": 100,
  5807. "z": 0
  5808. },
  5809. "_lrot": {
  5810. "__type__": "cc.Quat",
  5811. "x": 0,
  5812. "y": 0,
  5813. "z": 0,
  5814. "w": 1
  5815. },
  5816. "_lscale": {
  5817. "__type__": "cc.Vec3",
  5818. "x": 1,
  5819. "y": 1,
  5820. "z": 1
  5821. },
  5822. "_mobility": 0,
  5823. "_layer": 33554432,
  5824. "_euler": {
  5825. "__type__": "cc.Vec3",
  5826. "x": 0,
  5827. "y": 0,
  5828. "z": 0
  5829. },
  5830. "_id": "ffHbmccnpDrqrlZTK4pADH"
  5831. },
  5832. {
  5833. "__type__": "cc.Node",
  5834. "_name": "Label",
  5835. "_objFlags": 0,
  5836. "__editorExtras__": {},
  5837. "_parent": {
  5838. "__id__": 149
  5839. },
  5840. "_children": [],
  5841. "_active": true,
  5842. "_components": [
  5843. {
  5844. "__id__": 151
  5845. },
  5846. {
  5847. "__id__": 152
  5848. }
  5849. ],
  5850. "_prefab": null,
  5851. "_lpos": {
  5852. "__type__": "cc.Vec3",
  5853. "x": 0,
  5854. "y": 0,
  5855. "z": 0
  5856. },
  5857. "_lrot": {
  5858. "__type__": "cc.Quat",
  5859. "x": 0,
  5860. "y": 0,
  5861. "z": 0,
  5862. "w": 1
  5863. },
  5864. "_lscale": {
  5865. "__type__": "cc.Vec3",
  5866. "x": 1,
  5867. "y": 1,
  5868. "z": 1
  5869. },
  5870. "_mobility": 0,
  5871. "_layer": 33554432,
  5872. "_euler": {
  5873. "__type__": "cc.Vec3",
  5874. "x": 0,
  5875. "y": 0,
  5876. "z": 0
  5877. },
  5878. "_id": "c4QLn5fPRAGLWjhS+nvkkM"
  5879. },
  5880. {
  5881. "__type__": "cc.UITransform",
  5882. "_name": "",
  5883. "_objFlags": 0,
  5884. "__editorExtras__": {},
  5885. "node": {
  5886. "__id__": 150
  5887. },
  5888. "_enabled": true,
  5889. "__prefab": null,
  5890. "_contentSize": {
  5891. "__type__": "cc.Size",
  5892. "width": 100,
  5893. "height": 40
  5894. },
  5895. "_anchorPoint": {
  5896. "__type__": "cc.Vec2",
  5897. "x": 0.5,
  5898. "y": 0.5
  5899. },
  5900. "_id": "b8KqJzUZBHd58lhexzfYL8"
  5901. },
  5902. {
  5903. "__type__": "cc.Label",
  5904. "_name": "",
  5905. "_objFlags": 0,
  5906. "__editorExtras__": {},
  5907. "node": {
  5908. "__id__": 150
  5909. },
  5910. "_enabled": true,
  5911. "__prefab": null,
  5912. "_customMaterial": null,
  5913. "_srcBlendFactor": 2,
  5914. "_dstBlendFactor": 4,
  5915. "_color": {
  5916. "__type__": "cc.Color",
  5917. "r": 0,
  5918. "g": 0,
  5919. "b": 0,
  5920. "a": 255
  5921. },
  5922. "_string": "关卡选择",
  5923. "_horizontalAlign": 1,
  5924. "_verticalAlign": 1,
  5925. "_actualFontSize": 20,
  5926. "_fontSize": 20,
  5927. "_fontFamily": "Arial",
  5928. "_lineHeight": 40,
  5929. "_overflow": 1,
  5930. "_enableWrapText": false,
  5931. "_font": null,
  5932. "_isSystemFontUsed": true,
  5933. "_spacingX": 0,
  5934. "_isItalic": false,
  5935. "_isBold": false,
  5936. "_isUnderline": false,
  5937. "_underlineHeight": 2,
  5938. "_cacheMode": 0,
  5939. "_id": "b568/W2YxHQ7B6uWJ9dLLZ"
  5940. },
  5941. {
  5942. "__type__": "cc.UITransform",
  5943. "_name": "",
  5944. "_objFlags": 0,
  5945. "__editorExtras__": {},
  5946. "node": {
  5947. "__id__": 149
  5948. },
  5949. "_enabled": true,
  5950. "__prefab": null,
  5951. "_contentSize": {
  5952. "__type__": "cc.Size",
  5953. "width": 200,
  5954. "height": 100
  5955. },
  5956. "_anchorPoint": {
  5957. "__type__": "cc.Vec2",
  5958. "x": 0.5,
  5959. "y": 0.5
  5960. },
  5961. "_id": "0f+8bMDFlCvKkdm2kfrPH6"
  5962. },
  5963. {
  5964. "__type__": "cc.Sprite",
  5965. "_name": "",
  5966. "_objFlags": 0,
  5967. "__editorExtras__": {},
  5968. "node": {
  5969. "__id__": 149
  5970. },
  5971. "_enabled": true,
  5972. "__prefab": null,
  5973. "_customMaterial": null,
  5974. "_srcBlendFactor": 2,
  5975. "_dstBlendFactor": 4,
  5976. "_color": {
  5977. "__type__": "cc.Color",
  5978. "r": 255,
  5979. "g": 255,
  5980. "b": 255,
  5981. "a": 255
  5982. },
  5983. "_spriteFrame": {
  5984. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5985. "__expectedType__": "cc.SpriteFrame"
  5986. },
  5987. "_type": 1,
  5988. "_fillType": 0,
  5989. "_sizeMode": 0,
  5990. "_fillCenter": {
  5991. "__type__": "cc.Vec2",
  5992. "x": 0,
  5993. "y": 0
  5994. },
  5995. "_fillStart": 0,
  5996. "_fillRange": 0,
  5997. "_isTrimmedMode": true,
  5998. "_useGrayscale": false,
  5999. "_atlas": null,
  6000. "_id": "1eocAB4NhLBYEnbbsStedu"
  6001. },
  6002. {
  6003. "__type__": "cc.Button",
  6004. "_name": "",
  6005. "_objFlags": 0,
  6006. "__editorExtras__": {},
  6007. "node": {
  6008. "__id__": 149
  6009. },
  6010. "_enabled": true,
  6011. "__prefab": null,
  6012. "clickEvents": [],
  6013. "_interactable": true,
  6014. "_transition": 2,
  6015. "_normalColor": {
  6016. "__type__": "cc.Color",
  6017. "r": 214,
  6018. "g": 214,
  6019. "b": 214,
  6020. "a": 255
  6021. },
  6022. "_hoverColor": {
  6023. "__type__": "cc.Color",
  6024. "r": 211,
  6025. "g": 211,
  6026. "b": 211,
  6027. "a": 255
  6028. },
  6029. "_pressedColor": {
  6030. "__type__": "cc.Color",
  6031. "r": 255,
  6032. "g": 255,
  6033. "b": 255,
  6034. "a": 255
  6035. },
  6036. "_disabledColor": {
  6037. "__type__": "cc.Color",
  6038. "r": 124,
  6039. "g": 124,
  6040. "b": 124,
  6041. "a": 255
  6042. },
  6043. "_normalSprite": {
  6044. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6045. "__expectedType__": "cc.SpriteFrame"
  6046. },
  6047. "_hoverSprite": {
  6048. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6049. "__expectedType__": "cc.SpriteFrame"
  6050. },
  6051. "_pressedSprite": {
  6052. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  6053. "__expectedType__": "cc.SpriteFrame"
  6054. },
  6055. "_disabledSprite": {
  6056. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  6057. "__expectedType__": "cc.SpriteFrame"
  6058. },
  6059. "_duration": 0.1,
  6060. "_zoomScale": 1.2,
  6061. "_target": {
  6062. "__id__": 149
  6063. },
  6064. "_id": "adb64vepBPlp7BlfPXp2f1"
  6065. },
  6066. {
  6067. "__type__": "cc.Node",
  6068. "_name": "btn_save",
  6069. "_objFlags": 0,
  6070. "__editorExtras__": {},
  6071. "_parent": {
  6072. "__id__": 145
  6073. },
  6074. "_children": [
  6075. {
  6076. "__id__": 157
  6077. }
  6078. ],
  6079. "_active": true,
  6080. "_components": [
  6081. {
  6082. "__id__": 160
  6083. },
  6084. {
  6085. "__id__": 161
  6086. },
  6087. {
  6088. "__id__": 162
  6089. }
  6090. ],
  6091. "_prefab": null,
  6092. "_lpos": {
  6093. "__type__": "cc.Vec3",
  6094. "x": 620,
  6095. "y": 210,
  6096. "z": 0
  6097. },
  6098. "_lrot": {
  6099. "__type__": "cc.Quat",
  6100. "x": 0,
  6101. "y": 0,
  6102. "z": 0,
  6103. "w": 1
  6104. },
  6105. "_lscale": {
  6106. "__type__": "cc.Vec3",
  6107. "x": 1,
  6108. "y": 1,
  6109. "z": 1
  6110. },
  6111. "_mobility": 0,
  6112. "_layer": 33554432,
  6113. "_euler": {
  6114. "__type__": "cc.Vec3",
  6115. "x": 0,
  6116. "y": 0,
  6117. "z": 0
  6118. },
  6119. "_id": "f6zfoqvnNEYINKQVfPPrJk"
  6120. },
  6121. {
  6122. "__type__": "cc.Node",
  6123. "_name": "Label",
  6124. "_objFlags": 0,
  6125. "__editorExtras__": {},
  6126. "_parent": {
  6127. "__id__": 156
  6128. },
  6129. "_children": [],
  6130. "_active": true,
  6131. "_components": [
  6132. {
  6133. "__id__": 158
  6134. },
  6135. {
  6136. "__id__": 159
  6137. }
  6138. ],
  6139. "_prefab": null,
  6140. "_lpos": {
  6141. "__type__": "cc.Vec3",
  6142. "x": 0,
  6143. "y": 0,
  6144. "z": 0
  6145. },
  6146. "_lrot": {
  6147. "__type__": "cc.Quat",
  6148. "x": 0,
  6149. "y": 0,
  6150. "z": 0,
  6151. "w": 1
  6152. },
  6153. "_lscale": {
  6154. "__type__": "cc.Vec3",
  6155. "x": 1,
  6156. "y": 1,
  6157. "z": 1
  6158. },
  6159. "_mobility": 0,
  6160. "_layer": 33554432,
  6161. "_euler": {
  6162. "__type__": "cc.Vec3",
  6163. "x": 0,
  6164. "y": 0,
  6165. "z": 0
  6166. },
  6167. "_id": "a3/gqchuJJUIM5x+Zo2UOy"
  6168. },
  6169. {
  6170. "__type__": "cc.UITransform",
  6171. "_name": "",
  6172. "_objFlags": 0,
  6173. "__editorExtras__": {},
  6174. "node": {
  6175. "__id__": 157
  6176. },
  6177. "_enabled": true,
  6178. "__prefab": null,
  6179. "_contentSize": {
  6180. "__type__": "cc.Size",
  6181. "width": 100,
  6182. "height": 40
  6183. },
  6184. "_anchorPoint": {
  6185. "__type__": "cc.Vec2",
  6186. "x": 0.5,
  6187. "y": 0.5
  6188. },
  6189. "_id": "44fuSt5ehN07qt0uRFsKOX"
  6190. },
  6191. {
  6192. "__type__": "cc.Label",
  6193. "_name": "",
  6194. "_objFlags": 0,
  6195. "__editorExtras__": {},
  6196. "node": {
  6197. "__id__": 157
  6198. },
  6199. "_enabled": true,
  6200. "__prefab": null,
  6201. "_customMaterial": null,
  6202. "_srcBlendFactor": 2,
  6203. "_dstBlendFactor": 4,
  6204. "_color": {
  6205. "__type__": "cc.Color",
  6206. "r": 0,
  6207. "g": 0,
  6208. "b": 0,
  6209. "a": 255
  6210. },
  6211. "_string": "保存",
  6212. "_horizontalAlign": 1,
  6213. "_verticalAlign": 1,
  6214. "_actualFontSize": 20,
  6215. "_fontSize": 20,
  6216. "_fontFamily": "Arial",
  6217. "_lineHeight": 40,
  6218. "_overflow": 1,
  6219. "_enableWrapText": false,
  6220. "_font": null,
  6221. "_isSystemFontUsed": true,
  6222. "_spacingX": 0,
  6223. "_isItalic": false,
  6224. "_isBold": false,
  6225. "_isUnderline": false,
  6226. "_underlineHeight": 2,
  6227. "_cacheMode": 0,
  6228. "_id": "16DkYBlndMzoCO1oagUuAY"
  6229. },
  6230. {
  6231. "__type__": "cc.UITransform",
  6232. "_name": "",
  6233. "_objFlags": 0,
  6234. "__editorExtras__": {},
  6235. "node": {
  6236. "__id__": 156
  6237. },
  6238. "_enabled": true,
  6239. "__prefab": null,
  6240. "_contentSize": {
  6241. "__type__": "cc.Size",
  6242. "width": 200,
  6243. "height": 100
  6244. },
  6245. "_anchorPoint": {
  6246. "__type__": "cc.Vec2",
  6247. "x": 0.5,
  6248. "y": 0.5
  6249. },
  6250. "_id": "79u6JUj0FGybb1lJmNMD0M"
  6251. },
  6252. {
  6253. "__type__": "cc.Sprite",
  6254. "_name": "",
  6255. "_objFlags": 0,
  6256. "__editorExtras__": {},
  6257. "node": {
  6258. "__id__": 156
  6259. },
  6260. "_enabled": true,
  6261. "__prefab": null,
  6262. "_customMaterial": null,
  6263. "_srcBlendFactor": 2,
  6264. "_dstBlendFactor": 4,
  6265. "_color": {
  6266. "__type__": "cc.Color",
  6267. "r": 255,
  6268. "g": 255,
  6269. "b": 255,
  6270. "a": 255
  6271. },
  6272. "_spriteFrame": {
  6273. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6274. "__expectedType__": "cc.SpriteFrame"
  6275. },
  6276. "_type": 1,
  6277. "_fillType": 0,
  6278. "_sizeMode": 0,
  6279. "_fillCenter": {
  6280. "__type__": "cc.Vec2",
  6281. "x": 0,
  6282. "y": 0
  6283. },
  6284. "_fillStart": 0,
  6285. "_fillRange": 0,
  6286. "_isTrimmedMode": true,
  6287. "_useGrayscale": false,
  6288. "_atlas": null,
  6289. "_id": "f6lNNqbj9OiL+ztd47iea9"
  6290. },
  6291. {
  6292. "__type__": "cc.Button",
  6293. "_name": "",
  6294. "_objFlags": 0,
  6295. "__editorExtras__": {},
  6296. "node": {
  6297. "__id__": 156
  6298. },
  6299. "_enabled": true,
  6300. "__prefab": null,
  6301. "clickEvents": [],
  6302. "_interactable": true,
  6303. "_transition": 2,
  6304. "_normalColor": {
  6305. "__type__": "cc.Color",
  6306. "r": 214,
  6307. "g": 214,
  6308. "b": 214,
  6309. "a": 255
  6310. },
  6311. "_hoverColor": {
  6312. "__type__": "cc.Color",
  6313. "r": 211,
  6314. "g": 211,
  6315. "b": 211,
  6316. "a": 255
  6317. },
  6318. "_pressedColor": {
  6319. "__type__": "cc.Color",
  6320. "r": 255,
  6321. "g": 255,
  6322. "b": 255,
  6323. "a": 255
  6324. },
  6325. "_disabledColor": {
  6326. "__type__": "cc.Color",
  6327. "r": 124,
  6328. "g": 124,
  6329. "b": 124,
  6330. "a": 255
  6331. },
  6332. "_normalSprite": {
  6333. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6334. "__expectedType__": "cc.SpriteFrame"
  6335. },
  6336. "_hoverSprite": {
  6337. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6338. "__expectedType__": "cc.SpriteFrame"
  6339. },
  6340. "_pressedSprite": {
  6341. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  6342. "__expectedType__": "cc.SpriteFrame"
  6343. },
  6344. "_disabledSprite": {
  6345. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  6346. "__expectedType__": "cc.SpriteFrame"
  6347. },
  6348. "_duration": 0.1,
  6349. "_zoomScale": 1.2,
  6350. "_target": {
  6351. "__id__": 156
  6352. },
  6353. "_id": "aaXboLyURFSKSM2sBZSxSj"
  6354. },
  6355. {
  6356. "__type__": "cc.Node",
  6357. "_name": "btn_back",
  6358. "_objFlags": 0,
  6359. "__editorExtras__": {},
  6360. "_parent": {
  6361. "__id__": 145
  6362. },
  6363. "_children": [
  6364. {
  6365. "__id__": 164
  6366. }
  6367. ],
  6368. "_active": true,
  6369. "_components": [
  6370. {
  6371. "__id__": 167
  6372. },
  6373. {
  6374. "__id__": 168
  6375. },
  6376. {
  6377. "__id__": 169
  6378. }
  6379. ],
  6380. "_prefab": null,
  6381. "_lpos": {
  6382. "__type__": "cc.Vec3",
  6383. "x": 620,
  6384. "y": -10,
  6385. "z": 0
  6386. },
  6387. "_lrot": {
  6388. "__type__": "cc.Quat",
  6389. "x": 0,
  6390. "y": 0,
  6391. "z": 0,
  6392. "w": 1
  6393. },
  6394. "_lscale": {
  6395. "__type__": "cc.Vec3",
  6396. "x": 1,
  6397. "y": 1,
  6398. "z": 1
  6399. },
  6400. "_mobility": 0,
  6401. "_layer": 33554432,
  6402. "_euler": {
  6403. "__type__": "cc.Vec3",
  6404. "x": 0,
  6405. "y": 0,
  6406. "z": 0
  6407. },
  6408. "_id": "58NlHQcUBF2pWsNBQtl//J"
  6409. },
  6410. {
  6411. "__type__": "cc.Node",
  6412. "_name": "Label",
  6413. "_objFlags": 0,
  6414. "__editorExtras__": {},
  6415. "_parent": {
  6416. "__id__": 163
  6417. },
  6418. "_children": [],
  6419. "_active": true,
  6420. "_components": [
  6421. {
  6422. "__id__": 165
  6423. },
  6424. {
  6425. "__id__": 166
  6426. }
  6427. ],
  6428. "_prefab": null,
  6429. "_lpos": {
  6430. "__type__": "cc.Vec3",
  6431. "x": 0,
  6432. "y": 0,
  6433. "z": 0
  6434. },
  6435. "_lrot": {
  6436. "__type__": "cc.Quat",
  6437. "x": 0,
  6438. "y": 0,
  6439. "z": 0,
  6440. "w": 1
  6441. },
  6442. "_lscale": {
  6443. "__type__": "cc.Vec3",
  6444. "x": 1,
  6445. "y": 1,
  6446. "z": 1
  6447. },
  6448. "_mobility": 0,
  6449. "_layer": 33554432,
  6450. "_euler": {
  6451. "__type__": "cc.Vec3",
  6452. "x": 0,
  6453. "y": 0,
  6454. "z": 0
  6455. },
  6456. "_id": "ecYijZKBVLOIhx0eb9dy/O"
  6457. },
  6458. {
  6459. "__type__": "cc.UITransform",
  6460. "_name": "",
  6461. "_objFlags": 0,
  6462. "__editorExtras__": {},
  6463. "node": {
  6464. "__id__": 164
  6465. },
  6466. "_enabled": true,
  6467. "__prefab": null,
  6468. "_contentSize": {
  6469. "__type__": "cc.Size",
  6470. "width": 100,
  6471. "height": 40
  6472. },
  6473. "_anchorPoint": {
  6474. "__type__": "cc.Vec2",
  6475. "x": 0.5,
  6476. "y": 0.5
  6477. },
  6478. "_id": "c7tDnKEsNLrI6Er1JcOAf6"
  6479. },
  6480. {
  6481. "__type__": "cc.Label",
  6482. "_name": "",
  6483. "_objFlags": 0,
  6484. "__editorExtras__": {},
  6485. "node": {
  6486. "__id__": 164
  6487. },
  6488. "_enabled": true,
  6489. "__prefab": null,
  6490. "_customMaterial": null,
  6491. "_srcBlendFactor": 2,
  6492. "_dstBlendFactor": 4,
  6493. "_color": {
  6494. "__type__": "cc.Color",
  6495. "r": 0,
  6496. "g": 0,
  6497. "b": 0,
  6498. "a": 255
  6499. },
  6500. "_string": "返回",
  6501. "_horizontalAlign": 1,
  6502. "_verticalAlign": 1,
  6503. "_actualFontSize": 20,
  6504. "_fontSize": 20,
  6505. "_fontFamily": "Arial",
  6506. "_lineHeight": 40,
  6507. "_overflow": 1,
  6508. "_enableWrapText": false,
  6509. "_font": null,
  6510. "_isSystemFontUsed": true,
  6511. "_spacingX": 0,
  6512. "_isItalic": false,
  6513. "_isBold": false,
  6514. "_isUnderline": false,
  6515. "_underlineHeight": 2,
  6516. "_cacheMode": 0,
  6517. "_id": "79Poap2mZHoq03OwwebcSk"
  6518. },
  6519. {
  6520. "__type__": "cc.UITransform",
  6521. "_name": "",
  6522. "_objFlags": 0,
  6523. "__editorExtras__": {},
  6524. "node": {
  6525. "__id__": 163
  6526. },
  6527. "_enabled": true,
  6528. "__prefab": null,
  6529. "_contentSize": {
  6530. "__type__": "cc.Size",
  6531. "width": 200,
  6532. "height": 100
  6533. },
  6534. "_anchorPoint": {
  6535. "__type__": "cc.Vec2",
  6536. "x": 0.5,
  6537. "y": 0.5
  6538. },
  6539. "_id": "65cLRCSzdH07DAzPO4hQln"
  6540. },
  6541. {
  6542. "__type__": "cc.Sprite",
  6543. "_name": "",
  6544. "_objFlags": 0,
  6545. "__editorExtras__": {},
  6546. "node": {
  6547. "__id__": 163
  6548. },
  6549. "_enabled": true,
  6550. "__prefab": null,
  6551. "_customMaterial": null,
  6552. "_srcBlendFactor": 2,
  6553. "_dstBlendFactor": 4,
  6554. "_color": {
  6555. "__type__": "cc.Color",
  6556. "r": 255,
  6557. "g": 255,
  6558. "b": 255,
  6559. "a": 255
  6560. },
  6561. "_spriteFrame": {
  6562. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6563. "__expectedType__": "cc.SpriteFrame"
  6564. },
  6565. "_type": 1,
  6566. "_fillType": 0,
  6567. "_sizeMode": 0,
  6568. "_fillCenter": {
  6569. "__type__": "cc.Vec2",
  6570. "x": 0,
  6571. "y": 0
  6572. },
  6573. "_fillStart": 0,
  6574. "_fillRange": 0,
  6575. "_isTrimmedMode": true,
  6576. "_useGrayscale": false,
  6577. "_atlas": null,
  6578. "_id": "09gDdUoSJNUpiL0jqERCCU"
  6579. },
  6580. {
  6581. "__type__": "cc.Button",
  6582. "_name": "",
  6583. "_objFlags": 0,
  6584. "__editorExtras__": {},
  6585. "node": {
  6586. "__id__": 163
  6587. },
  6588. "_enabled": true,
  6589. "__prefab": null,
  6590. "clickEvents": [],
  6591. "_interactable": true,
  6592. "_transition": 2,
  6593. "_normalColor": {
  6594. "__type__": "cc.Color",
  6595. "r": 214,
  6596. "g": 214,
  6597. "b": 214,
  6598. "a": 255
  6599. },
  6600. "_hoverColor": {
  6601. "__type__": "cc.Color",
  6602. "r": 211,
  6603. "g": 211,
  6604. "b": 211,
  6605. "a": 255
  6606. },
  6607. "_pressedColor": {
  6608. "__type__": "cc.Color",
  6609. "r": 255,
  6610. "g": 255,
  6611. "b": 255,
  6612. "a": 255
  6613. },
  6614. "_disabledColor": {
  6615. "__type__": "cc.Color",
  6616. "r": 124,
  6617. "g": 124,
  6618. "b": 124,
  6619. "a": 255
  6620. },
  6621. "_normalSprite": {
  6622. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6623. "__expectedType__": "cc.SpriteFrame"
  6624. },
  6625. "_hoverSprite": {
  6626. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6627. "__expectedType__": "cc.SpriteFrame"
  6628. },
  6629. "_pressedSprite": {
  6630. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  6631. "__expectedType__": "cc.SpriteFrame"
  6632. },
  6633. "_disabledSprite": {
  6634. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  6635. "__expectedType__": "cc.SpriteFrame"
  6636. },
  6637. "_duration": 0.1,
  6638. "_zoomScale": 1.2,
  6639. "_target": {
  6640. "__id__": 163
  6641. },
  6642. "_id": "70HavjExxJg7AfRyVINin+"
  6643. },
  6644. {
  6645. "__type__": "cc.Node",
  6646. "_name": "Sprite",
  6647. "_objFlags": 0,
  6648. "__editorExtras__": {},
  6649. "_parent": {
  6650. "__id__": 145
  6651. },
  6652. "_children": [],
  6653. "_active": true,
  6654. "_components": [
  6655. {
  6656. "__id__": 171
  6657. },
  6658. {
  6659. "__id__": 172
  6660. }
  6661. ],
  6662. "_prefab": null,
  6663. "_lpos": {
  6664. "__type__": "cc.Vec3",
  6665. "x": 620,
  6666. "y": 350,
  6667. "z": 0
  6668. },
  6669. "_lrot": {
  6670. "__type__": "cc.Quat",
  6671. "x": 0,
  6672. "y": 0,
  6673. "z": 0,
  6674. "w": 1
  6675. },
  6676. "_lscale": {
  6677. "__type__": "cc.Vec3",
  6678. "x": 1,
  6679. "y": 1,
  6680. "z": 1
  6681. },
  6682. "_mobility": 0,
  6683. "_layer": 33554432,
  6684. "_euler": {
  6685. "__type__": "cc.Vec3",
  6686. "x": 0,
  6687. "y": 0,
  6688. "z": 0
  6689. },
  6690. "_id": "f0N0ybQChCmrGVfCNlyCyL"
  6691. },
  6692. {
  6693. "__type__": "cc.UITransform",
  6694. "_name": "",
  6695. "_objFlags": 0,
  6696. "__editorExtras__": {},
  6697. "node": {
  6698. "__id__": 170
  6699. },
  6700. "_enabled": true,
  6701. "__prefab": null,
  6702. "_contentSize": {
  6703. "__type__": "cc.Size",
  6704. "width": 100,
  6705. "height": 100
  6706. },
  6707. "_anchorPoint": {
  6708. "__type__": "cc.Vec2",
  6709. "x": 0.5,
  6710. "y": 0.5
  6711. },
  6712. "_id": "37H8/fRB9N2L3P1o/Da7eR"
  6713. },
  6714. {
  6715. "__type__": "cc.Sprite",
  6716. "_name": "",
  6717. "_objFlags": 0,
  6718. "__editorExtras__": {},
  6719. "node": {
  6720. "__id__": 170
  6721. },
  6722. "_enabled": true,
  6723. "__prefab": null,
  6724. "_customMaterial": null,
  6725. "_srcBlendFactor": 2,
  6726. "_dstBlendFactor": 4,
  6727. "_color": {
  6728. "__type__": "cc.Color",
  6729. "r": 255,
  6730. "g": 255,
  6731. "b": 255,
  6732. "a": 255
  6733. },
  6734. "_spriteFrame": {
  6735. "__uuid__": "653aff99-e146-434c-804f-49ca179db627@f9941",
  6736. "__expectedType__": "cc.SpriteFrame"
  6737. },
  6738. "_type": 0,
  6739. "_fillType": 0,
  6740. "_sizeMode": 0,
  6741. "_fillCenter": {
  6742. "__type__": "cc.Vec2",
  6743. "x": 0,
  6744. "y": 0
  6745. },
  6746. "_fillStart": 0,
  6747. "_fillRange": 0,
  6748. "_isTrimmedMode": true,
  6749. "_useGrayscale": false,
  6750. "_atlas": null,
  6751. "_id": "6cKoKfQc5ATb2WzqP+kBco"
  6752. },
  6753. {
  6754. "__type__": "cc.Node",
  6755. "_name": "game_font_level_list",
  6756. "_objFlags": 0,
  6757. "__editorExtras__": {},
  6758. "_parent": {
  6759. "__id__": 145
  6760. },
  6761. "_children": [
  6762. {
  6763. "__id__": 174
  6764. },
  6765. {
  6766. "__id__": 186
  6767. },
  6768. {
  6769. "__id__": 193
  6770. },
  6771. {
  6772. "__id__": 200
  6773. },
  6774. {
  6775. "__id__": 210
  6776. },
  6777. {
  6778. "__id__": 217
  6779. },
  6780. {
  6781. "__id__": 220
  6782. }
  6783. ],
  6784. "_active": true,
  6785. "_components": [
  6786. {
  6787. "__id__": 227
  6788. },
  6789. {
  6790. "__id__": 228
  6791. },
  6792. {
  6793. "__id__": 229
  6794. },
  6795. {
  6796. "__id__": 230
  6797. }
  6798. ],
  6799. "_prefab": null,
  6800. "_lpos": {
  6801. "__type__": "cc.Vec3",
  6802. "x": 0,
  6803. "y": 0,
  6804. "z": 0
  6805. },
  6806. "_lrot": {
  6807. "__type__": "cc.Quat",
  6808. "x": 0,
  6809. "y": 0,
  6810. "z": 0,
  6811. "w": 1
  6812. },
  6813. "_lscale": {
  6814. "__type__": "cc.Vec3",
  6815. "x": 1,
  6816. "y": 1,
  6817. "z": 1
  6818. },
  6819. "_mobility": 0,
  6820. "_layer": 33554432,
  6821. "_euler": {
  6822. "__type__": "cc.Vec3",
  6823. "x": 0,
  6824. "y": 0,
  6825. "z": 0
  6826. },
  6827. "_id": "200nYJe3VHfL3zgo8vH3L0"
  6828. },
  6829. {
  6830. "__type__": "cc.Node",
  6831. "_name": "ScrollView",
  6832. "_objFlags": 0,
  6833. "__editorExtras__": {},
  6834. "_parent": {
  6835. "__id__": 173
  6836. },
  6837. "_children": [
  6838. {
  6839. "__id__": 175
  6840. }
  6841. ],
  6842. "_active": true,
  6843. "_components": [
  6844. {
  6845. "__id__": 183
  6846. },
  6847. {
  6848. "__id__": 184
  6849. },
  6850. {
  6851. "__id__": 185
  6852. }
  6853. ],
  6854. "_prefab": null,
  6855. "_lpos": {
  6856. "__type__": "cc.Vec3",
  6857. "x": 0,
  6858. "y": 0,
  6859. "z": 0
  6860. },
  6861. "_lrot": {
  6862. "__type__": "cc.Quat",
  6863. "x": 0,
  6864. "y": 0,
  6865. "z": 0,
  6866. "w": 1
  6867. },
  6868. "_lscale": {
  6869. "__type__": "cc.Vec3",
  6870. "x": 1,
  6871. "y": 1,
  6872. "z": 1
  6873. },
  6874. "_mobility": 0,
  6875. "_layer": 33554432,
  6876. "_euler": {
  6877. "__type__": "cc.Vec3",
  6878. "x": 0,
  6879. "y": 0,
  6880. "z": 0
  6881. },
  6882. "_id": "5dRWu02EJNUa517D4n+t+v"
  6883. },
  6884. {
  6885. "__type__": "cc.Node",
  6886. "_name": "view",
  6887. "_objFlags": 0,
  6888. "__editorExtras__": {},
  6889. "_parent": {
  6890. "__id__": 174
  6891. },
  6892. "_children": [
  6893. {
  6894. "__id__": 176
  6895. }
  6896. ],
  6897. "_active": true,
  6898. "_components": [
  6899. {
  6900. "__id__": 179
  6901. },
  6902. {
  6903. "__id__": 180
  6904. },
  6905. {
  6906. "__id__": 181
  6907. },
  6908. {
  6909. "__id__": 182
  6910. }
  6911. ],
  6912. "_prefab": null,
  6913. "_lpos": {
  6914. "__type__": "cc.Vec3",
  6915. "x": 0,
  6916. "y": 0,
  6917. "z": 0
  6918. },
  6919. "_lrot": {
  6920. "__type__": "cc.Quat",
  6921. "x": 0,
  6922. "y": 0,
  6923. "z": 0,
  6924. "w": 1
  6925. },
  6926. "_lscale": {
  6927. "__type__": "cc.Vec3",
  6928. "x": 1,
  6929. "y": 1,
  6930. "z": 1
  6931. },
  6932. "_mobility": 0,
  6933. "_layer": 33554432,
  6934. "_euler": {
  6935. "__type__": "cc.Vec3",
  6936. "x": 0,
  6937. "y": 0,
  6938. "z": 0
  6939. },
  6940. "_id": "5ec60CWXxPMYnXO67AXfO9"
  6941. },
  6942. {
  6943. "__type__": "cc.Node",
  6944. "_name": "content",
  6945. "_objFlags": 0,
  6946. "__editorExtras__": {},
  6947. "_parent": {
  6948. "__id__": 175
  6949. },
  6950. "_children": [],
  6951. "_active": true,
  6952. "_components": [
  6953. {
  6954. "__id__": 177
  6955. },
  6956. {
  6957. "__id__": 178
  6958. }
  6959. ],
  6960. "_prefab": null,
  6961. "_lpos": {
  6962. "__type__": "cc.Vec3",
  6963. "x": -10,
  6964. "y": 259.09,
  6965. "z": 0
  6966. },
  6967. "_lrot": {
  6968. "__type__": "cc.Quat",
  6969. "x": 0,
  6970. "y": 0,
  6971. "z": 0,
  6972. "w": 1
  6973. },
  6974. "_lscale": {
  6975. "__type__": "cc.Vec3",
  6976. "x": 1,
  6977. "y": 1,
  6978. "z": 1
  6979. },
  6980. "_mobility": 0,
  6981. "_layer": 33554432,
  6982. "_euler": {
  6983. "__type__": "cc.Vec3",
  6984. "x": 0,
  6985. "y": 0,
  6986. "z": 0
  6987. },
  6988. "_id": "31D1HgI55InLLD03izeUnx"
  6989. },
  6990. {
  6991. "__type__": "cc.UITransform",
  6992. "_name": "",
  6993. "_objFlags": 0,
  6994. "__editorExtras__": {},
  6995. "node": {
  6996. "__id__": 176
  6997. },
  6998. "_enabled": true,
  6999. "__prefab": null,
  7000. "_contentSize": {
  7001. "__type__": "cc.Size",
  7002. "width": 220,
  7003. "height": -10
  7004. },
  7005. "_anchorPoint": {
  7006. "__type__": "cc.Vec2",
  7007. "x": 0.5,
  7008. "y": 1
  7009. },
  7010. "_id": "058QlPRYVPEbMk0oh9OIN7"
  7011. },
  7012. {
  7013. "__type__": "cc.Layout",
  7014. "_name": "",
  7015. "_objFlags": 0,
  7016. "__editorExtras__": {},
  7017. "node": {
  7018. "__id__": 176
  7019. },
  7020. "_enabled": true,
  7021. "__prefab": null,
  7022. "_resizeMode": 1,
  7023. "_layoutType": 2,
  7024. "_cellSize": {
  7025. "__type__": "cc.Size",
  7026. "width": 40,
  7027. "height": 40
  7028. },
  7029. "_startAxis": 0,
  7030. "_paddingLeft": 0,
  7031. "_paddingRight": 0,
  7032. "_paddingTop": 0,
  7033. "_paddingBottom": 0,
  7034. "_spacingX": 0,
  7035. "_spacingY": 10,
  7036. "_verticalDirection": 1,
  7037. "_horizontalDirection": 0,
  7038. "_constraint": 0,
  7039. "_constraintNum": 2,
  7040. "_affectedByScale": false,
  7041. "_isAlign": false,
  7042. "_id": "3eB9Zq24FPfJ5WIH8wdecP"
  7043. },
  7044. {
  7045. "__type__": "cc.UITransform",
  7046. "_name": "",
  7047. "_objFlags": 0,
  7048. "__editorExtras__": {},
  7049. "node": {
  7050. "__id__": 175
  7051. },
  7052. "_enabled": true,
  7053. "__prefab": null,
  7054. "_contentSize": {
  7055. "__type__": "cc.Size",
  7056. "width": 375,
  7057. "height": 600
  7058. },
  7059. "_anchorPoint": {
  7060. "__type__": "cc.Vec2",
  7061. "x": 0.5,
  7062. "y": 0.5
  7063. },
  7064. "_id": "30z833H/xNgp4Ixj2wJqzr"
  7065. },
  7066. {
  7067. "__type__": "cc.Mask",
  7068. "_name": "",
  7069. "_objFlags": 0,
  7070. "__editorExtras__": {},
  7071. "node": {
  7072. "__id__": 175
  7073. },
  7074. "_enabled": true,
  7075. "__prefab": null,
  7076. "_type": 0,
  7077. "_inverted": false,
  7078. "_segments": 64,
  7079. "_alphaThreshold": 0.1,
  7080. "_id": "c6Tk+O9dBKt5eIqYTWOBvU"
  7081. },
  7082. {
  7083. "__type__": "cc.Graphics",
  7084. "_name": "",
  7085. "_objFlags": 0,
  7086. "__editorExtras__": {},
  7087. "node": {
  7088. "__id__": 175
  7089. },
  7090. "_enabled": true,
  7091. "__prefab": null,
  7092. "_customMaterial": null,
  7093. "_srcBlendFactor": 2,
  7094. "_dstBlendFactor": 4,
  7095. "_color": {
  7096. "__type__": "cc.Color",
  7097. "r": 255,
  7098. "g": 255,
  7099. "b": 255,
  7100. "a": 255
  7101. },
  7102. "_lineWidth": 1,
  7103. "_strokeColor": {
  7104. "__type__": "cc.Color",
  7105. "r": 0,
  7106. "g": 0,
  7107. "b": 0,
  7108. "a": 255
  7109. },
  7110. "_lineJoin": 2,
  7111. "_lineCap": 0,
  7112. "_fillColor": {
  7113. "__type__": "cc.Color",
  7114. "r": 255,
  7115. "g": 255,
  7116. "b": 255,
  7117. "a": 0
  7118. },
  7119. "_miterLimit": 10,
  7120. "_id": "4fM+qgqdhO/aA8Mr+/CMLL"
  7121. },
  7122. {
  7123. "__type__": "cc.Widget",
  7124. "_name": "",
  7125. "_objFlags": 0,
  7126. "__editorExtras__": {},
  7127. "node": {
  7128. "__id__": 175
  7129. },
  7130. "_enabled": true,
  7131. "__prefab": null,
  7132. "_alignFlags": 45,
  7133. "_target": null,
  7134. "_left": 0,
  7135. "_right": 0,
  7136. "_top": 0,
  7137. "_bottom": 0,
  7138. "_horizontalCenter": 0,
  7139. "_verticalCenter": 0,
  7140. "_isAbsLeft": true,
  7141. "_isAbsRight": true,
  7142. "_isAbsTop": true,
  7143. "_isAbsBottom": true,
  7144. "_isAbsHorizontalCenter": true,
  7145. "_isAbsVerticalCenter": true,
  7146. "_originalWidth": 240,
  7147. "_originalHeight": 250,
  7148. "_alignMode": 2,
  7149. "_lockFlags": 0,
  7150. "_id": "14i7WkIH5OjIt67xOSsew2"
  7151. },
  7152. {
  7153. "__type__": "cc.UITransform",
  7154. "_name": "",
  7155. "_objFlags": 0,
  7156. "__editorExtras__": {},
  7157. "node": {
  7158. "__id__": 174
  7159. },
  7160. "_enabled": true,
  7161. "__prefab": null,
  7162. "_contentSize": {
  7163. "__type__": "cc.Size",
  7164. "width": 375,
  7165. "height": 600
  7166. },
  7167. "_anchorPoint": {
  7168. "__type__": "cc.Vec2",
  7169. "x": 0.5,
  7170. "y": 0.5
  7171. },
  7172. "_id": "b0PYyY4M1CZ7f0ynn34Rua"
  7173. },
  7174. {
  7175. "__type__": "cc.Sprite",
  7176. "_name": "",
  7177. "_objFlags": 0,
  7178. "__editorExtras__": {},
  7179. "node": {
  7180. "__id__": 174
  7181. },
  7182. "_enabled": true,
  7183. "__prefab": null,
  7184. "_customMaterial": null,
  7185. "_srcBlendFactor": 2,
  7186. "_dstBlendFactor": 4,
  7187. "_color": {
  7188. "__type__": "cc.Color",
  7189. "r": 255,
  7190. "g": 255,
  7191. "b": 255,
  7192. "a": 255
  7193. },
  7194. "_spriteFrame": {
  7195. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  7196. "__expectedType__": "cc.SpriteFrame"
  7197. },
  7198. "_type": 1,
  7199. "_fillType": 0,
  7200. "_sizeMode": 0,
  7201. "_fillCenter": {
  7202. "__type__": "cc.Vec2",
  7203. "x": 0,
  7204. "y": 0
  7205. },
  7206. "_fillStart": 0,
  7207. "_fillRange": 0,
  7208. "_isTrimmedMode": true,
  7209. "_useGrayscale": false,
  7210. "_atlas": null,
  7211. "_id": "e2ouAJEDlLnKTBeD8MSEuY"
  7212. },
  7213. {
  7214. "__type__": "cc.ScrollView",
  7215. "_name": "",
  7216. "_objFlags": 0,
  7217. "__editorExtras__": {},
  7218. "node": {
  7219. "__id__": 174
  7220. },
  7221. "_enabled": true,
  7222. "__prefab": null,
  7223. "bounceDuration": 0.23,
  7224. "brake": 0.75,
  7225. "elastic": true,
  7226. "inertia": true,
  7227. "horizontal": false,
  7228. "vertical": true,
  7229. "cancelInnerEvents": true,
  7230. "scrollEvents": [],
  7231. "_content": {
  7232. "__id__": 176
  7233. },
  7234. "_horizontalScrollBar": null,
  7235. "_verticalScrollBar": null,
  7236. "_id": "00u9Wy1kVAobT787S3kAuI"
  7237. },
  7238. {
  7239. "__type__": "cc.Node",
  7240. "_name": "btn_superior",
  7241. "_objFlags": 0,
  7242. "__editorExtras__": {},
  7243. "_parent": {
  7244. "__id__": 173
  7245. },
  7246. "_children": [
  7247. {
  7248. "__id__": 187
  7249. }
  7250. ],
  7251. "_active": true,
  7252. "_components": [
  7253. {
  7254. "__id__": 190
  7255. },
  7256. {
  7257. "__id__": 191
  7258. },
  7259. {
  7260. "__id__": 192
  7261. }
  7262. ],
  7263. "_prefab": null,
  7264. "_lpos": {
  7265. "__type__": "cc.Vec3",
  7266. "x": -112.155,
  7267. "y": -372.419,
  7268. "z": 0
  7269. },
  7270. "_lrot": {
  7271. "__type__": "cc.Quat",
  7272. "x": 0,
  7273. "y": 0,
  7274. "z": 0,
  7275. "w": 1
  7276. },
  7277. "_lscale": {
  7278. "__type__": "cc.Vec3",
  7279. "x": 1,
  7280. "y": 1,
  7281. "z": 1
  7282. },
  7283. "_mobility": 0,
  7284. "_layer": 33554432,
  7285. "_euler": {
  7286. "__type__": "cc.Vec3",
  7287. "x": 0,
  7288. "y": 0,
  7289. "z": 0
  7290. },
  7291. "_id": "efvdLzLQVOtZFcEPtOH9vX"
  7292. },
  7293. {
  7294. "__type__": "cc.Node",
  7295. "_name": "Label",
  7296. "_objFlags": 0,
  7297. "__editorExtras__": {},
  7298. "_parent": {
  7299. "__id__": 186
  7300. },
  7301. "_children": [],
  7302. "_active": true,
  7303. "_components": [
  7304. {
  7305. "__id__": 188
  7306. },
  7307. {
  7308. "__id__": 189
  7309. }
  7310. ],
  7311. "_prefab": null,
  7312. "_lpos": {
  7313. "__type__": "cc.Vec3",
  7314. "x": 0,
  7315. "y": 0,
  7316. "z": 0
  7317. },
  7318. "_lrot": {
  7319. "__type__": "cc.Quat",
  7320. "x": 0,
  7321. "y": 0,
  7322. "z": 0,
  7323. "w": 1
  7324. },
  7325. "_lscale": {
  7326. "__type__": "cc.Vec3",
  7327. "x": 1,
  7328. "y": 1,
  7329. "z": 1
  7330. },
  7331. "_mobility": 0,
  7332. "_layer": 33554432,
  7333. "_euler": {
  7334. "__type__": "cc.Vec3",
  7335. "x": 0,
  7336. "y": 0,
  7337. "z": 0
  7338. },
  7339. "_id": "116RCQv+NLv7xEwDy1tNnu"
  7340. },
  7341. {
  7342. "__type__": "cc.UITransform",
  7343. "_name": "",
  7344. "_objFlags": 0,
  7345. "__editorExtras__": {},
  7346. "node": {
  7347. "__id__": 187
  7348. },
  7349. "_enabled": true,
  7350. "__prefab": null,
  7351. "_contentSize": {
  7352. "__type__": "cc.Size",
  7353. "width": 100,
  7354. "height": 40
  7355. },
  7356. "_anchorPoint": {
  7357. "__type__": "cc.Vec2",
  7358. "x": 0.5,
  7359. "y": 0.5
  7360. },
  7361. "_id": "31PbkjcBhEHoL19Q0wrZw4"
  7362. },
  7363. {
  7364. "__type__": "cc.Label",
  7365. "_name": "",
  7366. "_objFlags": 0,
  7367. "__editorExtras__": {},
  7368. "node": {
  7369. "__id__": 187
  7370. },
  7371. "_enabled": true,
  7372. "__prefab": null,
  7373. "_customMaterial": null,
  7374. "_srcBlendFactor": 2,
  7375. "_dstBlendFactor": 4,
  7376. "_color": {
  7377. "__type__": "cc.Color",
  7378. "r": 0,
  7379. "g": 0,
  7380. "b": 0,
  7381. "a": 255
  7382. },
  7383. "_string": "上一页",
  7384. "_horizontalAlign": 1,
  7385. "_verticalAlign": 1,
  7386. "_actualFontSize": 20,
  7387. "_fontSize": 20,
  7388. "_fontFamily": "Arial",
  7389. "_lineHeight": 40,
  7390. "_overflow": 1,
  7391. "_enableWrapText": false,
  7392. "_font": null,
  7393. "_isSystemFontUsed": true,
  7394. "_spacingX": 0,
  7395. "_isItalic": false,
  7396. "_isBold": false,
  7397. "_isUnderline": false,
  7398. "_underlineHeight": 2,
  7399. "_cacheMode": 0,
  7400. "_id": "a4Pv61YyFAS6UO0egTGkRF"
  7401. },
  7402. {
  7403. "__type__": "cc.UITransform",
  7404. "_name": "",
  7405. "_objFlags": 0,
  7406. "__editorExtras__": {},
  7407. "node": {
  7408. "__id__": 186
  7409. },
  7410. "_enabled": true,
  7411. "__prefab": null,
  7412. "_contentSize": {
  7413. "__type__": "cc.Size",
  7414. "width": 100,
  7415. "height": 40
  7416. },
  7417. "_anchorPoint": {
  7418. "__type__": "cc.Vec2",
  7419. "x": 0.5,
  7420. "y": 0.5
  7421. },
  7422. "_id": "ecTHXDbjpPd6UolFPRAnj8"
  7423. },
  7424. {
  7425. "__type__": "cc.Sprite",
  7426. "_name": "",
  7427. "_objFlags": 0,
  7428. "__editorExtras__": {},
  7429. "node": {
  7430. "__id__": 186
  7431. },
  7432. "_enabled": true,
  7433. "__prefab": null,
  7434. "_customMaterial": null,
  7435. "_srcBlendFactor": 2,
  7436. "_dstBlendFactor": 4,
  7437. "_color": {
  7438. "__type__": "cc.Color",
  7439. "r": 255,
  7440. "g": 255,
  7441. "b": 255,
  7442. "a": 255
  7443. },
  7444. "_spriteFrame": {
  7445. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7446. "__expectedType__": "cc.SpriteFrame"
  7447. },
  7448. "_type": 1,
  7449. "_fillType": 0,
  7450. "_sizeMode": 0,
  7451. "_fillCenter": {
  7452. "__type__": "cc.Vec2",
  7453. "x": 0,
  7454. "y": 0
  7455. },
  7456. "_fillStart": 0,
  7457. "_fillRange": 0,
  7458. "_isTrimmedMode": true,
  7459. "_useGrayscale": false,
  7460. "_atlas": null,
  7461. "_id": "f7sfFkZrBF7Y/iB1mwt0pS"
  7462. },
  7463. {
  7464. "__type__": "cc.Button",
  7465. "_name": "",
  7466. "_objFlags": 0,
  7467. "__editorExtras__": {},
  7468. "node": {
  7469. "__id__": 186
  7470. },
  7471. "_enabled": true,
  7472. "__prefab": null,
  7473. "clickEvents": [],
  7474. "_interactable": true,
  7475. "_transition": 2,
  7476. "_normalColor": {
  7477. "__type__": "cc.Color",
  7478. "r": 214,
  7479. "g": 214,
  7480. "b": 214,
  7481. "a": 255
  7482. },
  7483. "_hoverColor": {
  7484. "__type__": "cc.Color",
  7485. "r": 211,
  7486. "g": 211,
  7487. "b": 211,
  7488. "a": 255
  7489. },
  7490. "_pressedColor": {
  7491. "__type__": "cc.Color",
  7492. "r": 255,
  7493. "g": 255,
  7494. "b": 255,
  7495. "a": 255
  7496. },
  7497. "_disabledColor": {
  7498. "__type__": "cc.Color",
  7499. "r": 124,
  7500. "g": 124,
  7501. "b": 124,
  7502. "a": 255
  7503. },
  7504. "_normalSprite": {
  7505. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7506. "__expectedType__": "cc.SpriteFrame"
  7507. },
  7508. "_hoverSprite": {
  7509. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7510. "__expectedType__": "cc.SpriteFrame"
  7511. },
  7512. "_pressedSprite": {
  7513. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  7514. "__expectedType__": "cc.SpriteFrame"
  7515. },
  7516. "_disabledSprite": {
  7517. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  7518. "__expectedType__": "cc.SpriteFrame"
  7519. },
  7520. "_duration": 0.1,
  7521. "_zoomScale": 1.2,
  7522. "_target": {
  7523. "__id__": 186
  7524. },
  7525. "_id": "f8hrCf53tH8Lqzyk7ZQV3V"
  7526. },
  7527. {
  7528. "__type__": "cc.Node",
  7529. "_name": "btn_next",
  7530. "_objFlags": 0,
  7531. "__editorExtras__": {},
  7532. "_parent": {
  7533. "__id__": 173
  7534. },
  7535. "_children": [
  7536. {
  7537. "__id__": 194
  7538. }
  7539. ],
  7540. "_active": true,
  7541. "_components": [
  7542. {
  7543. "__id__": 197
  7544. },
  7545. {
  7546. "__id__": 198
  7547. },
  7548. {
  7549. "__id__": 199
  7550. }
  7551. ],
  7552. "_prefab": null,
  7553. "_lpos": {
  7554. "__type__": "cc.Vec3",
  7555. "x": 125.507,
  7556. "y": -372.419,
  7557. "z": 0
  7558. },
  7559. "_lrot": {
  7560. "__type__": "cc.Quat",
  7561. "x": 0,
  7562. "y": 0,
  7563. "z": 0,
  7564. "w": 1
  7565. },
  7566. "_lscale": {
  7567. "__type__": "cc.Vec3",
  7568. "x": 1,
  7569. "y": 1,
  7570. "z": 1
  7571. },
  7572. "_mobility": 0,
  7573. "_layer": 33554432,
  7574. "_euler": {
  7575. "__type__": "cc.Vec3",
  7576. "x": 0,
  7577. "y": 0,
  7578. "z": 0
  7579. },
  7580. "_id": "d2HXS/WHVFgIgyaoBf0Q9g"
  7581. },
  7582. {
  7583. "__type__": "cc.Node",
  7584. "_name": "Label",
  7585. "_objFlags": 0,
  7586. "__editorExtras__": {},
  7587. "_parent": {
  7588. "__id__": 193
  7589. },
  7590. "_children": [],
  7591. "_active": true,
  7592. "_components": [
  7593. {
  7594. "__id__": 195
  7595. },
  7596. {
  7597. "__id__": 196
  7598. }
  7599. ],
  7600. "_prefab": null,
  7601. "_lpos": {
  7602. "__type__": "cc.Vec3",
  7603. "x": 0,
  7604. "y": 0,
  7605. "z": 0
  7606. },
  7607. "_lrot": {
  7608. "__type__": "cc.Quat",
  7609. "x": 0,
  7610. "y": 0,
  7611. "z": 0,
  7612. "w": 1
  7613. },
  7614. "_lscale": {
  7615. "__type__": "cc.Vec3",
  7616. "x": 1,
  7617. "y": 1,
  7618. "z": 1
  7619. },
  7620. "_mobility": 0,
  7621. "_layer": 33554432,
  7622. "_euler": {
  7623. "__type__": "cc.Vec3",
  7624. "x": 0,
  7625. "y": 0,
  7626. "z": 0
  7627. },
  7628. "_id": "caFd5Pu8BPapMQlq1hUukr"
  7629. },
  7630. {
  7631. "__type__": "cc.UITransform",
  7632. "_name": "",
  7633. "_objFlags": 0,
  7634. "__editorExtras__": {},
  7635. "node": {
  7636. "__id__": 194
  7637. },
  7638. "_enabled": true,
  7639. "__prefab": null,
  7640. "_contentSize": {
  7641. "__type__": "cc.Size",
  7642. "width": 100,
  7643. "height": 40
  7644. },
  7645. "_anchorPoint": {
  7646. "__type__": "cc.Vec2",
  7647. "x": 0.5,
  7648. "y": 0.5
  7649. },
  7650. "_id": "94YnjihCtGRIkQNhiFg5ln"
  7651. },
  7652. {
  7653. "__type__": "cc.Label",
  7654. "_name": "",
  7655. "_objFlags": 0,
  7656. "__editorExtras__": {},
  7657. "node": {
  7658. "__id__": 194
  7659. },
  7660. "_enabled": true,
  7661. "__prefab": null,
  7662. "_customMaterial": null,
  7663. "_srcBlendFactor": 2,
  7664. "_dstBlendFactor": 4,
  7665. "_color": {
  7666. "__type__": "cc.Color",
  7667. "r": 0,
  7668. "g": 0,
  7669. "b": 0,
  7670. "a": 255
  7671. },
  7672. "_string": "下一页",
  7673. "_horizontalAlign": 1,
  7674. "_verticalAlign": 1,
  7675. "_actualFontSize": 20,
  7676. "_fontSize": 20,
  7677. "_fontFamily": "Arial",
  7678. "_lineHeight": 40,
  7679. "_overflow": 1,
  7680. "_enableWrapText": false,
  7681. "_font": null,
  7682. "_isSystemFontUsed": true,
  7683. "_spacingX": 0,
  7684. "_isItalic": false,
  7685. "_isBold": false,
  7686. "_isUnderline": false,
  7687. "_underlineHeight": 2,
  7688. "_cacheMode": 0,
  7689. "_id": "934/DAgRBKx4tOlo2GEqvD"
  7690. },
  7691. {
  7692. "__type__": "cc.UITransform",
  7693. "_name": "",
  7694. "_objFlags": 0,
  7695. "__editorExtras__": {},
  7696. "node": {
  7697. "__id__": 193
  7698. },
  7699. "_enabled": true,
  7700. "__prefab": null,
  7701. "_contentSize": {
  7702. "__type__": "cc.Size",
  7703. "width": 100,
  7704. "height": 40
  7705. },
  7706. "_anchorPoint": {
  7707. "__type__": "cc.Vec2",
  7708. "x": 0.5,
  7709. "y": 0.5
  7710. },
  7711. "_id": "6e1XnjU/lEtK5Hf2UdUMz+"
  7712. },
  7713. {
  7714. "__type__": "cc.Sprite",
  7715. "_name": "",
  7716. "_objFlags": 0,
  7717. "__editorExtras__": {},
  7718. "node": {
  7719. "__id__": 193
  7720. },
  7721. "_enabled": true,
  7722. "__prefab": null,
  7723. "_customMaterial": null,
  7724. "_srcBlendFactor": 2,
  7725. "_dstBlendFactor": 4,
  7726. "_color": {
  7727. "__type__": "cc.Color",
  7728. "r": 255,
  7729. "g": 255,
  7730. "b": 255,
  7731. "a": 255
  7732. },
  7733. "_spriteFrame": {
  7734. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7735. "__expectedType__": "cc.SpriteFrame"
  7736. },
  7737. "_type": 1,
  7738. "_fillType": 0,
  7739. "_sizeMode": 0,
  7740. "_fillCenter": {
  7741. "__type__": "cc.Vec2",
  7742. "x": 0,
  7743. "y": 0
  7744. },
  7745. "_fillStart": 0,
  7746. "_fillRange": 0,
  7747. "_isTrimmedMode": true,
  7748. "_useGrayscale": false,
  7749. "_atlas": null,
  7750. "_id": "6cLSRdXflEYpVRVQ7SPv7/"
  7751. },
  7752. {
  7753. "__type__": "cc.Button",
  7754. "_name": "",
  7755. "_objFlags": 0,
  7756. "__editorExtras__": {},
  7757. "node": {
  7758. "__id__": 193
  7759. },
  7760. "_enabled": true,
  7761. "__prefab": null,
  7762. "clickEvents": [],
  7763. "_interactable": true,
  7764. "_transition": 2,
  7765. "_normalColor": {
  7766. "__type__": "cc.Color",
  7767. "r": 214,
  7768. "g": 214,
  7769. "b": 214,
  7770. "a": 255
  7771. },
  7772. "_hoverColor": {
  7773. "__type__": "cc.Color",
  7774. "r": 211,
  7775. "g": 211,
  7776. "b": 211,
  7777. "a": 255
  7778. },
  7779. "_pressedColor": {
  7780. "__type__": "cc.Color",
  7781. "r": 255,
  7782. "g": 255,
  7783. "b": 255,
  7784. "a": 255
  7785. },
  7786. "_disabledColor": {
  7787. "__type__": "cc.Color",
  7788. "r": 124,
  7789. "g": 124,
  7790. "b": 124,
  7791. "a": 255
  7792. },
  7793. "_normalSprite": {
  7794. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7795. "__expectedType__": "cc.SpriteFrame"
  7796. },
  7797. "_hoverSprite": {
  7798. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7799. "__expectedType__": "cc.SpriteFrame"
  7800. },
  7801. "_pressedSprite": {
  7802. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  7803. "__expectedType__": "cc.SpriteFrame"
  7804. },
  7805. "_disabledSprite": {
  7806. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  7807. "__expectedType__": "cc.SpriteFrame"
  7808. },
  7809. "_duration": 0.1,
  7810. "_zoomScale": 1.2,
  7811. "_target": {
  7812. "__id__": 193
  7813. },
  7814. "_id": "a4kSQ4nvRPkY+WZTfOmfWH"
  7815. },
  7816. {
  7817. "__type__": "cc.Node",
  7818. "_name": "EditBox",
  7819. "_objFlags": 0,
  7820. "__editorExtras__": {},
  7821. "_parent": {
  7822. "__id__": 173
  7823. },
  7824. "_children": [
  7825. {
  7826. "__id__": 201
  7827. },
  7828. {
  7829. "__id__": 204
  7830. }
  7831. ],
  7832. "_active": true,
  7833. "_components": [
  7834. {
  7835. "__id__": 207
  7836. },
  7837. {
  7838. "__id__": 208
  7839. },
  7840. {
  7841. "__id__": 209
  7842. }
  7843. ],
  7844. "_prefab": null,
  7845. "_lpos": {
  7846. "__type__": "cc.Vec3",
  7847. "x": -12.241,
  7848. "y": 340.959,
  7849. "z": 0
  7850. },
  7851. "_lrot": {
  7852. "__type__": "cc.Quat",
  7853. "x": 0,
  7854. "y": 0,
  7855. "z": 0,
  7856. "w": 1
  7857. },
  7858. "_lscale": {
  7859. "__type__": "cc.Vec3",
  7860. "x": 1,
  7861. "y": 1,
  7862. "z": 1
  7863. },
  7864. "_mobility": 0,
  7865. "_layer": 33554432,
  7866. "_euler": {
  7867. "__type__": "cc.Vec3",
  7868. "x": 0,
  7869. "y": 0,
  7870. "z": 0
  7871. },
  7872. "_id": "2d4b6iUflBPZxze5jlzERr"
  7873. },
  7874. {
  7875. "__type__": "cc.Node",
  7876. "_name": "TEXT_LABEL",
  7877. "_objFlags": 0,
  7878. "__editorExtras__": {},
  7879. "_parent": {
  7880. "__id__": 200
  7881. },
  7882. "_children": [],
  7883. "_active": false,
  7884. "_components": [
  7885. {
  7886. "__id__": 202
  7887. },
  7888. {
  7889. "__id__": 203
  7890. }
  7891. ],
  7892. "_prefab": null,
  7893. "_lpos": {
  7894. "__type__": "cc.Vec3",
  7895. "x": -48,
  7896. "y": 20,
  7897. "z": 0
  7898. },
  7899. "_lrot": {
  7900. "__type__": "cc.Quat",
  7901. "x": 0,
  7902. "y": 0,
  7903. "z": 0,
  7904. "w": 1
  7905. },
  7906. "_lscale": {
  7907. "__type__": "cc.Vec3",
  7908. "x": 1,
  7909. "y": 1,
  7910. "z": 1
  7911. },
  7912. "_mobility": 0,
  7913. "_layer": 33554432,
  7914. "_euler": {
  7915. "__type__": "cc.Vec3",
  7916. "x": 0,
  7917. "y": 0,
  7918. "z": 0
  7919. },
  7920. "_id": "ffWJR+7pVIO5s4/qVqPtOO"
  7921. },
  7922. {
  7923. "__type__": "cc.UITransform",
  7924. "_name": "",
  7925. "_objFlags": 0,
  7926. "__editorExtras__": {},
  7927. "node": {
  7928. "__id__": 201
  7929. },
  7930. "_enabled": true,
  7931. "__prefab": null,
  7932. "_contentSize": {
  7933. "__type__": "cc.Size",
  7934. "width": 98,
  7935. "height": 40
  7936. },
  7937. "_anchorPoint": {
  7938. "__type__": "cc.Vec2",
  7939. "x": 0,
  7940. "y": 1
  7941. },
  7942. "_id": "e6JpX8gzxOa4vzkdLvOwE8"
  7943. },
  7944. {
  7945. "__type__": "cc.Label",
  7946. "_name": "",
  7947. "_objFlags": 0,
  7948. "__editorExtras__": {},
  7949. "node": {
  7950. "__id__": 201
  7951. },
  7952. "_enabled": true,
  7953. "__prefab": null,
  7954. "_customMaterial": null,
  7955. "_srcBlendFactor": 2,
  7956. "_dstBlendFactor": 4,
  7957. "_color": {
  7958. "__type__": "cc.Color",
  7959. "r": 255,
  7960. "g": 255,
  7961. "b": 255,
  7962. "a": 255
  7963. },
  7964. "_string": "",
  7965. "_horizontalAlign": 0,
  7966. "_verticalAlign": 1,
  7967. "_actualFontSize": 20,
  7968. "_fontSize": 20,
  7969. "_fontFamily": "Arial",
  7970. "_lineHeight": 40,
  7971. "_overflow": 1,
  7972. "_enableWrapText": false,
  7973. "_font": null,
  7974. "_isSystemFontUsed": true,
  7975. "_spacingX": 0,
  7976. "_isItalic": false,
  7977. "_isBold": false,
  7978. "_isUnderline": false,
  7979. "_underlineHeight": 2,
  7980. "_cacheMode": 0,
  7981. "_id": "7d0cwKoRdHyZ18VMhqHs0y"
  7982. },
  7983. {
  7984. "__type__": "cc.Node",
  7985. "_name": "PLACEHOLDER_LABEL",
  7986. "_objFlags": 0,
  7987. "__editorExtras__": {},
  7988. "_parent": {
  7989. "__id__": 200
  7990. },
  7991. "_children": [],
  7992. "_active": true,
  7993. "_components": [
  7994. {
  7995. "__id__": 205
  7996. },
  7997. {
  7998. "__id__": 206
  7999. }
  8000. ],
  8001. "_prefab": null,
  8002. "_lpos": {
  8003. "__type__": "cc.Vec3",
  8004. "x": -48,
  8005. "y": 20,
  8006. "z": 0
  8007. },
  8008. "_lrot": {
  8009. "__type__": "cc.Quat",
  8010. "x": 0,
  8011. "y": 0,
  8012. "z": 0,
  8013. "w": 1
  8014. },
  8015. "_lscale": {
  8016. "__type__": "cc.Vec3",
  8017. "x": 1,
  8018. "y": 1,
  8019. "z": 1
  8020. },
  8021. "_mobility": 0,
  8022. "_layer": 33554432,
  8023. "_euler": {
  8024. "__type__": "cc.Vec3",
  8025. "x": 0,
  8026. "y": 0,
  8027. "z": 0
  8028. },
  8029. "_id": "16dSFHaDJBnJH5TNdRWU2p"
  8030. },
  8031. {
  8032. "__type__": "cc.UITransform",
  8033. "_name": "",
  8034. "_objFlags": 0,
  8035. "__editorExtras__": {},
  8036. "node": {
  8037. "__id__": 204
  8038. },
  8039. "_enabled": true,
  8040. "__prefab": null,
  8041. "_contentSize": {
  8042. "__type__": "cc.Size",
  8043. "width": 98,
  8044. "height": 40
  8045. },
  8046. "_anchorPoint": {
  8047. "__type__": "cc.Vec2",
  8048. "x": 0,
  8049. "y": 1
  8050. },
  8051. "_id": "61lOhWYqdHRIhCg7RoAubm"
  8052. },
  8053. {
  8054. "__type__": "cc.Label",
  8055. "_name": "",
  8056. "_objFlags": 0,
  8057. "__editorExtras__": {},
  8058. "node": {
  8059. "__id__": 204
  8060. },
  8061. "_enabled": true,
  8062. "__prefab": null,
  8063. "_customMaterial": null,
  8064. "_srcBlendFactor": 2,
  8065. "_dstBlendFactor": 4,
  8066. "_color": {
  8067. "__type__": "cc.Color",
  8068. "r": 0,
  8069. "g": 0,
  8070. "b": 0,
  8071. "a": 255
  8072. },
  8073. "_string": "输入页数",
  8074. "_horizontalAlign": 0,
  8075. "_verticalAlign": 1,
  8076. "_actualFontSize": 20,
  8077. "_fontSize": 20,
  8078. "_fontFamily": "Arial",
  8079. "_lineHeight": 40,
  8080. "_overflow": 1,
  8081. "_enableWrapText": false,
  8082. "_font": null,
  8083. "_isSystemFontUsed": true,
  8084. "_spacingX": 0,
  8085. "_isItalic": false,
  8086. "_isBold": false,
  8087. "_isUnderline": false,
  8088. "_underlineHeight": 2,
  8089. "_cacheMode": 0,
  8090. "_id": "97kmq2xCRK1LBcrCrE9iP+"
  8091. },
  8092. {
  8093. "__type__": "cc.UITransform",
  8094. "_name": "",
  8095. "_objFlags": 0,
  8096. "__editorExtras__": {},
  8097. "node": {
  8098. "__id__": 200
  8099. },
  8100. "_enabled": true,
  8101. "__prefab": null,
  8102. "_contentSize": {
  8103. "__type__": "cc.Size",
  8104. "width": 100,
  8105. "height": 40
  8106. },
  8107. "_anchorPoint": {
  8108. "__type__": "cc.Vec2",
  8109. "x": 0.5,
  8110. "y": 0.5
  8111. },
  8112. "_id": "f5/MAg2c1IP6E8AgglUcLa"
  8113. },
  8114. {
  8115. "__type__": "cc.Sprite",
  8116. "_name": "",
  8117. "_objFlags": 0,
  8118. "__editorExtras__": {},
  8119. "node": {
  8120. "__id__": 200
  8121. },
  8122. "_enabled": true,
  8123. "__prefab": null,
  8124. "_customMaterial": null,
  8125. "_srcBlendFactor": 2,
  8126. "_dstBlendFactor": 4,
  8127. "_color": {
  8128. "__type__": "cc.Color",
  8129. "r": 255,
  8130. "g": 255,
  8131. "b": 255,
  8132. "a": 255
  8133. },
  8134. "_spriteFrame": {
  8135. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  8136. "__expectedType__": "cc.SpriteFrame"
  8137. },
  8138. "_type": 1,
  8139. "_fillType": 0,
  8140. "_sizeMode": 0,
  8141. "_fillCenter": {
  8142. "__type__": "cc.Vec2",
  8143. "x": 0,
  8144. "y": 0
  8145. },
  8146. "_fillStart": 0,
  8147. "_fillRange": 0,
  8148. "_isTrimmedMode": true,
  8149. "_useGrayscale": false,
  8150. "_atlas": null,
  8151. "_id": "39ozNoCipA74x4egjUYuWm"
  8152. },
  8153. {
  8154. "__type__": "cc.EditBox",
  8155. "_name": "",
  8156. "_objFlags": 0,
  8157. "__editorExtras__": {},
  8158. "node": {
  8159. "__id__": 200
  8160. },
  8161. "_enabled": true,
  8162. "__prefab": null,
  8163. "editingDidBegan": [],
  8164. "textChanged": [],
  8165. "editingDidEnded": [],
  8166. "editingReturn": [],
  8167. "_textLabel": {
  8168. "__id__": 203
  8169. },
  8170. "_placeholderLabel": {
  8171. "__id__": 206
  8172. },
  8173. "_returnType": 0,
  8174. "_string": "",
  8175. "_tabIndex": 0,
  8176. "_backgroundImage": {
  8177. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  8178. "__expectedType__": "cc.SpriteFrame"
  8179. },
  8180. "_inputFlag": 5,
  8181. "_inputMode": 3,
  8182. "_maxLength": 8,
  8183. "_id": "c8dE6iVK1GCKMGXUQg2NrJ"
  8184. },
  8185. {
  8186. "__type__": "cc.Node",
  8187. "_name": "btn_search",
  8188. "_objFlags": 0,
  8189. "__editorExtras__": {},
  8190. "_parent": {
  8191. "__id__": 173
  8192. },
  8193. "_children": [
  8194. {
  8195. "__id__": 211
  8196. }
  8197. ],
  8198. "_active": true,
  8199. "_components": [
  8200. {
  8201. "__id__": 214
  8202. },
  8203. {
  8204. "__id__": 215
  8205. },
  8206. {
  8207. "__id__": 216
  8208. }
  8209. ],
  8210. "_prefab": null,
  8211. "_lpos": {
  8212. "__type__": "cc.Vec3",
  8213. "x": 125.507,
  8214. "y": 340.958,
  8215. "z": 0
  8216. },
  8217. "_lrot": {
  8218. "__type__": "cc.Quat",
  8219. "x": 0,
  8220. "y": 0,
  8221. "z": 0,
  8222. "w": 1
  8223. },
  8224. "_lscale": {
  8225. "__type__": "cc.Vec3",
  8226. "x": 1,
  8227. "y": 1,
  8228. "z": 1
  8229. },
  8230. "_mobility": 0,
  8231. "_layer": 33554432,
  8232. "_euler": {
  8233. "__type__": "cc.Vec3",
  8234. "x": 0,
  8235. "y": 0,
  8236. "z": 0
  8237. },
  8238. "_id": "74pUVG9+xIza9MJQOzcIAa"
  8239. },
  8240. {
  8241. "__type__": "cc.Node",
  8242. "_name": "Label",
  8243. "_objFlags": 0,
  8244. "__editorExtras__": {},
  8245. "_parent": {
  8246. "__id__": 210
  8247. },
  8248. "_children": [],
  8249. "_active": true,
  8250. "_components": [
  8251. {
  8252. "__id__": 212
  8253. },
  8254. {
  8255. "__id__": 213
  8256. }
  8257. ],
  8258. "_prefab": null,
  8259. "_lpos": {
  8260. "__type__": "cc.Vec3",
  8261. "x": 0,
  8262. "y": 0,
  8263. "z": 0
  8264. },
  8265. "_lrot": {
  8266. "__type__": "cc.Quat",
  8267. "x": 0,
  8268. "y": 0,
  8269. "z": 0,
  8270. "w": 1
  8271. },
  8272. "_lscale": {
  8273. "__type__": "cc.Vec3",
  8274. "x": 1,
  8275. "y": 1,
  8276. "z": 1
  8277. },
  8278. "_mobility": 0,
  8279. "_layer": 33554432,
  8280. "_euler": {
  8281. "__type__": "cc.Vec3",
  8282. "x": 0,
  8283. "y": 0,
  8284. "z": 0
  8285. },
  8286. "_id": "6dxanEm8VIha/T+4IR65v7"
  8287. },
  8288. {
  8289. "__type__": "cc.UITransform",
  8290. "_name": "",
  8291. "_objFlags": 0,
  8292. "__editorExtras__": {},
  8293. "node": {
  8294. "__id__": 211
  8295. },
  8296. "_enabled": true,
  8297. "__prefab": null,
  8298. "_contentSize": {
  8299. "__type__": "cc.Size",
  8300. "width": 100,
  8301. "height": 40
  8302. },
  8303. "_anchorPoint": {
  8304. "__type__": "cc.Vec2",
  8305. "x": 0.5,
  8306. "y": 0.5
  8307. },
  8308. "_id": "2bYkWOSMxOlbiSktHpCxaN"
  8309. },
  8310. {
  8311. "__type__": "cc.Label",
  8312. "_name": "",
  8313. "_objFlags": 0,
  8314. "__editorExtras__": {},
  8315. "node": {
  8316. "__id__": 211
  8317. },
  8318. "_enabled": true,
  8319. "__prefab": null,
  8320. "_customMaterial": null,
  8321. "_srcBlendFactor": 2,
  8322. "_dstBlendFactor": 4,
  8323. "_color": {
  8324. "__type__": "cc.Color",
  8325. "r": 0,
  8326. "g": 0,
  8327. "b": 0,
  8328. "a": 255
  8329. },
  8330. "_string": "搜索",
  8331. "_horizontalAlign": 1,
  8332. "_verticalAlign": 1,
  8333. "_actualFontSize": 20,
  8334. "_fontSize": 20,
  8335. "_fontFamily": "Arial",
  8336. "_lineHeight": 40,
  8337. "_overflow": 1,
  8338. "_enableWrapText": false,
  8339. "_font": null,
  8340. "_isSystemFontUsed": true,
  8341. "_spacingX": 0,
  8342. "_isItalic": false,
  8343. "_isBold": false,
  8344. "_isUnderline": false,
  8345. "_underlineHeight": 2,
  8346. "_cacheMode": 0,
  8347. "_id": "e2AqYJOsxApZLKbpFkOHCX"
  8348. },
  8349. {
  8350. "__type__": "cc.UITransform",
  8351. "_name": "",
  8352. "_objFlags": 0,
  8353. "__editorExtras__": {},
  8354. "node": {
  8355. "__id__": 210
  8356. },
  8357. "_enabled": true,
  8358. "__prefab": null,
  8359. "_contentSize": {
  8360. "__type__": "cc.Size",
  8361. "width": 100,
  8362. "height": 40
  8363. },
  8364. "_anchorPoint": {
  8365. "__type__": "cc.Vec2",
  8366. "x": 0.5,
  8367. "y": 0.5
  8368. },
  8369. "_id": "88q2sG3DtLjIEEhRHO7XvS"
  8370. },
  8371. {
  8372. "__type__": "cc.Sprite",
  8373. "_name": "",
  8374. "_objFlags": 0,
  8375. "__editorExtras__": {},
  8376. "node": {
  8377. "__id__": 210
  8378. },
  8379. "_enabled": true,
  8380. "__prefab": null,
  8381. "_customMaterial": null,
  8382. "_srcBlendFactor": 2,
  8383. "_dstBlendFactor": 4,
  8384. "_color": {
  8385. "__type__": "cc.Color",
  8386. "r": 255,
  8387. "g": 255,
  8388. "b": 255,
  8389. "a": 255
  8390. },
  8391. "_spriteFrame": {
  8392. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  8393. "__expectedType__": "cc.SpriteFrame"
  8394. },
  8395. "_type": 1,
  8396. "_fillType": 0,
  8397. "_sizeMode": 0,
  8398. "_fillCenter": {
  8399. "__type__": "cc.Vec2",
  8400. "x": 0,
  8401. "y": 0
  8402. },
  8403. "_fillStart": 0,
  8404. "_fillRange": 0,
  8405. "_isTrimmedMode": true,
  8406. "_useGrayscale": false,
  8407. "_atlas": null,
  8408. "_id": "66GRLkIGlGZJCpuDXbeOHh"
  8409. },
  8410. {
  8411. "__type__": "cc.Button",
  8412. "_name": "",
  8413. "_objFlags": 0,
  8414. "__editorExtras__": {},
  8415. "node": {
  8416. "__id__": 210
  8417. },
  8418. "_enabled": true,
  8419. "__prefab": null,
  8420. "clickEvents": [],
  8421. "_interactable": true,
  8422. "_transition": 2,
  8423. "_normalColor": {
  8424. "__type__": "cc.Color",
  8425. "r": 214,
  8426. "g": 214,
  8427. "b": 214,
  8428. "a": 255
  8429. },
  8430. "_hoverColor": {
  8431. "__type__": "cc.Color",
  8432. "r": 211,
  8433. "g": 211,
  8434. "b": 211,
  8435. "a": 255
  8436. },
  8437. "_pressedColor": {
  8438. "__type__": "cc.Color",
  8439. "r": 255,
  8440. "g": 255,
  8441. "b": 255,
  8442. "a": 255
  8443. },
  8444. "_disabledColor": {
  8445. "__type__": "cc.Color",
  8446. "r": 124,
  8447. "g": 124,
  8448. "b": 124,
  8449. "a": 255
  8450. },
  8451. "_normalSprite": {
  8452. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  8453. "__expectedType__": "cc.SpriteFrame"
  8454. },
  8455. "_hoverSprite": {
  8456. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  8457. "__expectedType__": "cc.SpriteFrame"
  8458. },
  8459. "_pressedSprite": {
  8460. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  8461. "__expectedType__": "cc.SpriteFrame"
  8462. },
  8463. "_disabledSprite": {
  8464. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  8465. "__expectedType__": "cc.SpriteFrame"
  8466. },
  8467. "_duration": 0.1,
  8468. "_zoomScale": 1.2,
  8469. "_target": {
  8470. "__id__": 210
  8471. },
  8472. "_id": "37jLJATZRP5YAhQr4UDWsZ"
  8473. },
  8474. {
  8475. "__type__": "cc.Node",
  8476. "_name": "Label",
  8477. "_objFlags": 0,
  8478. "__editorExtras__": {},
  8479. "_parent": {
  8480. "__id__": 173
  8481. },
  8482. "_children": [],
  8483. "_active": true,
  8484. "_components": [
  8485. {
  8486. "__id__": 218
  8487. },
  8488. {
  8489. "__id__": 219
  8490. }
  8491. ],
  8492. "_prefab": null,
  8493. "_lpos": {
  8494. "__type__": "cc.Vec3",
  8495. "x": 0,
  8496. "y": -332.556,
  8497. "z": 0
  8498. },
  8499. "_lrot": {
  8500. "__type__": "cc.Quat",
  8501. "x": 0,
  8502. "y": 0,
  8503. "z": 0,
  8504. "w": 1
  8505. },
  8506. "_lscale": {
  8507. "__type__": "cc.Vec3",
  8508. "x": 1,
  8509. "y": 1,
  8510. "z": 1
  8511. },
  8512. "_mobility": 0,
  8513. "_layer": 33554432,
  8514. "_euler": {
  8515. "__type__": "cc.Vec3",
  8516. "x": 0,
  8517. "y": 0,
  8518. "z": 0
  8519. },
  8520. "_id": "44aj3e7x5FDIKLHDI98Wba"
  8521. },
  8522. {
  8523. "__type__": "cc.UITransform",
  8524. "_name": "",
  8525. "_objFlags": 0,
  8526. "__editorExtras__": {},
  8527. "node": {
  8528. "__id__": 217
  8529. },
  8530. "_enabled": true,
  8531. "__prefab": null,
  8532. "_contentSize": {
  8533. "__type__": "cc.Size",
  8534. "width": 91.123046875,
  8535. "height": 50.4
  8536. },
  8537. "_anchorPoint": {
  8538. "__type__": "cc.Vec2",
  8539. "x": 0.5,
  8540. "y": 0.5
  8541. },
  8542. "_id": "79GwR0bspCuIkZqcSrxNyO"
  8543. },
  8544. {
  8545. "__type__": "cc.Label",
  8546. "_name": "",
  8547. "_objFlags": 0,
  8548. "__editorExtras__": {},
  8549. "node": {
  8550. "__id__": 217
  8551. },
  8552. "_enabled": true,
  8553. "__prefab": null,
  8554. "_customMaterial": null,
  8555. "_srcBlendFactor": 2,
  8556. "_dstBlendFactor": 4,
  8557. "_color": {
  8558. "__type__": "cc.Color",
  8559. "r": 0,
  8560. "g": 0,
  8561. "b": 0,
  8562. "a": 255
  8563. },
  8564. "_string": "当前第1页",
  8565. "_horizontalAlign": 1,
  8566. "_verticalAlign": 1,
  8567. "_actualFontSize": 20,
  8568. "_fontSize": 20,
  8569. "_fontFamily": "Arial",
  8570. "_lineHeight": 40,
  8571. "_overflow": 0,
  8572. "_enableWrapText": true,
  8573. "_font": null,
  8574. "_isSystemFontUsed": true,
  8575. "_spacingX": 0,
  8576. "_isItalic": false,
  8577. "_isBold": false,
  8578. "_isUnderline": false,
  8579. "_underlineHeight": 2,
  8580. "_cacheMode": 0,
  8581. "_id": "21rgXn7nJOHajnsxHUfy0s"
  8582. },
  8583. {
  8584. "__type__": "cc.Node",
  8585. "_name": "btn_back",
  8586. "_objFlags": 0,
  8587. "__editorExtras__": {},
  8588. "_parent": {
  8589. "__id__": 173
  8590. },
  8591. "_children": [
  8592. {
  8593. "__id__": 221
  8594. }
  8595. ],
  8596. "_active": true,
  8597. "_components": [
  8598. {
  8599. "__id__": 224
  8600. },
  8601. {
  8602. "__id__": 225
  8603. },
  8604. {
  8605. "__id__": 226
  8606. }
  8607. ],
  8608. "_prefab": null,
  8609. "_lpos": {
  8610. "__type__": "cc.Vec3",
  8611. "x": -135.813,
  8612. "y": 340.958,
  8613. "z": 0
  8614. },
  8615. "_lrot": {
  8616. "__type__": "cc.Quat",
  8617. "x": 0,
  8618. "y": 0,
  8619. "z": 0,
  8620. "w": 1
  8621. },
  8622. "_lscale": {
  8623. "__type__": "cc.Vec3",
  8624. "x": 1,
  8625. "y": 1,
  8626. "z": 1
  8627. },
  8628. "_mobility": 0,
  8629. "_layer": 33554432,
  8630. "_euler": {
  8631. "__type__": "cc.Vec3",
  8632. "x": 0,
  8633. "y": 0,
  8634. "z": 0
  8635. },
  8636. "_id": "14paq9KOxEprXlDdNGYEVV"
  8637. },
  8638. {
  8639. "__type__": "cc.Node",
  8640. "_name": "Label",
  8641. "_objFlags": 0,
  8642. "__editorExtras__": {},
  8643. "_parent": {
  8644. "__id__": 220
  8645. },
  8646. "_children": [],
  8647. "_active": true,
  8648. "_components": [
  8649. {
  8650. "__id__": 222
  8651. },
  8652. {
  8653. "__id__": 223
  8654. }
  8655. ],
  8656. "_prefab": null,
  8657. "_lpos": {
  8658. "__type__": "cc.Vec3",
  8659. "x": 0,
  8660. "y": 0,
  8661. "z": 0
  8662. },
  8663. "_lrot": {
  8664. "__type__": "cc.Quat",
  8665. "x": 0,
  8666. "y": 0,
  8667. "z": 0,
  8668. "w": 1
  8669. },
  8670. "_lscale": {
  8671. "__type__": "cc.Vec3",
  8672. "x": 1,
  8673. "y": 1,
  8674. "z": 1
  8675. },
  8676. "_mobility": 0,
  8677. "_layer": 33554432,
  8678. "_euler": {
  8679. "__type__": "cc.Vec3",
  8680. "x": 0,
  8681. "y": 0,
  8682. "z": 0
  8683. },
  8684. "_id": "65+rbvPitLjYY2xRKOJYIL"
  8685. },
  8686. {
  8687. "__type__": "cc.UITransform",
  8688. "_name": "",
  8689. "_objFlags": 0,
  8690. "__editorExtras__": {},
  8691. "node": {
  8692. "__id__": 221
  8693. },
  8694. "_enabled": true,
  8695. "__prefab": null,
  8696. "_contentSize": {
  8697. "__type__": "cc.Size",
  8698. "width": 100,
  8699. "height": 40
  8700. },
  8701. "_anchorPoint": {
  8702. "__type__": "cc.Vec2",
  8703. "x": 0.5,
  8704. "y": 0.5
  8705. },
  8706. "_id": "5dqz074ilApZ4SMn9HL1uD"
  8707. },
  8708. {
  8709. "__type__": "cc.Label",
  8710. "_name": "",
  8711. "_objFlags": 0,
  8712. "__editorExtras__": {},
  8713. "node": {
  8714. "__id__": 221
  8715. },
  8716. "_enabled": true,
  8717. "__prefab": null,
  8718. "_customMaterial": null,
  8719. "_srcBlendFactor": 2,
  8720. "_dstBlendFactor": 4,
  8721. "_color": {
  8722. "__type__": "cc.Color",
  8723. "r": 0,
  8724. "g": 0,
  8725. "b": 0,
  8726. "a": 255
  8727. },
  8728. "_string": "返回",
  8729. "_horizontalAlign": 1,
  8730. "_verticalAlign": 1,
  8731. "_actualFontSize": 20,
  8732. "_fontSize": 20,
  8733. "_fontFamily": "Arial",
  8734. "_lineHeight": 40,
  8735. "_overflow": 1,
  8736. "_enableWrapText": false,
  8737. "_font": null,
  8738. "_isSystemFontUsed": true,
  8739. "_spacingX": 0,
  8740. "_isItalic": false,
  8741. "_isBold": false,
  8742. "_isUnderline": false,
  8743. "_underlineHeight": 2,
  8744. "_cacheMode": 0,
  8745. "_id": "64r9pa59VDYqpe+iQku4Ax"
  8746. },
  8747. {
  8748. "__type__": "cc.UITransform",
  8749. "_name": "",
  8750. "_objFlags": 0,
  8751. "__editorExtras__": {},
  8752. "node": {
  8753. "__id__": 220
  8754. },
  8755. "_enabled": true,
  8756. "__prefab": null,
  8757. "_contentSize": {
  8758. "__type__": "cc.Size",
  8759. "width": 100,
  8760. "height": 40
  8761. },
  8762. "_anchorPoint": {
  8763. "__type__": "cc.Vec2",
  8764. "x": 0.5,
  8765. "y": 0.5
  8766. },
  8767. "_id": "adR6TQCvFMnbssUKmOT8GI"
  8768. },
  8769. {
  8770. "__type__": "cc.Sprite",
  8771. "_name": "",
  8772. "_objFlags": 0,
  8773. "__editorExtras__": {},
  8774. "node": {
  8775. "__id__": 220
  8776. },
  8777. "_enabled": true,
  8778. "__prefab": null,
  8779. "_customMaterial": null,
  8780. "_srcBlendFactor": 2,
  8781. "_dstBlendFactor": 4,
  8782. "_color": {
  8783. "__type__": "cc.Color",
  8784. "r": 255,
  8785. "g": 255,
  8786. "b": 255,
  8787. "a": 255
  8788. },
  8789. "_spriteFrame": {
  8790. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  8791. "__expectedType__": "cc.SpriteFrame"
  8792. },
  8793. "_type": 1,
  8794. "_fillType": 0,
  8795. "_sizeMode": 0,
  8796. "_fillCenter": {
  8797. "__type__": "cc.Vec2",
  8798. "x": 0,
  8799. "y": 0
  8800. },
  8801. "_fillStart": 0,
  8802. "_fillRange": 0,
  8803. "_isTrimmedMode": true,
  8804. "_useGrayscale": false,
  8805. "_atlas": null,
  8806. "_id": "9cIFuXISNHfrJ5Ezfco61o"
  8807. },
  8808. {
  8809. "__type__": "cc.Button",
  8810. "_name": "",
  8811. "_objFlags": 0,
  8812. "__editorExtras__": {},
  8813. "node": {
  8814. "__id__": 220
  8815. },
  8816. "_enabled": true,
  8817. "__prefab": null,
  8818. "clickEvents": [],
  8819. "_interactable": true,
  8820. "_transition": 2,
  8821. "_normalColor": {
  8822. "__type__": "cc.Color",
  8823. "r": 214,
  8824. "g": 214,
  8825. "b": 214,
  8826. "a": 255
  8827. },
  8828. "_hoverColor": {
  8829. "__type__": "cc.Color",
  8830. "r": 211,
  8831. "g": 211,
  8832. "b": 211,
  8833. "a": 255
  8834. },
  8835. "_pressedColor": {
  8836. "__type__": "cc.Color",
  8837. "r": 255,
  8838. "g": 255,
  8839. "b": 255,
  8840. "a": 255
  8841. },
  8842. "_disabledColor": {
  8843. "__type__": "cc.Color",
  8844. "r": 124,
  8845. "g": 124,
  8846. "b": 124,
  8847. "a": 255
  8848. },
  8849. "_normalSprite": {
  8850. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  8851. "__expectedType__": "cc.SpriteFrame"
  8852. },
  8853. "_hoverSprite": {
  8854. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  8855. "__expectedType__": "cc.SpriteFrame"
  8856. },
  8857. "_pressedSprite": {
  8858. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  8859. "__expectedType__": "cc.SpriteFrame"
  8860. },
  8861. "_disabledSprite": {
  8862. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  8863. "__expectedType__": "cc.SpriteFrame"
  8864. },
  8865. "_duration": 0.1,
  8866. "_zoomScale": 1.2,
  8867. "_target": {
  8868. "__id__": 220
  8869. },
  8870. "_id": "39V8IQ7bVNFbHk2FTkzJaZ"
  8871. },
  8872. {
  8873. "__type__": "cc.UITransform",
  8874. "_name": "",
  8875. "_objFlags": 0,
  8876. "__editorExtras__": {},
  8877. "node": {
  8878. "__id__": 173
  8879. },
  8880. "_enabled": true,
  8881. "__prefab": null,
  8882. "_contentSize": {
  8883. "__type__": "cc.Size",
  8884. "width": 1920,
  8885. "height": 1080
  8886. },
  8887. "_anchorPoint": {
  8888. "__type__": "cc.Vec2",
  8889. "x": 0.5,
  8890. "y": 0.5
  8891. },
  8892. "_id": "7ejqO3+A9BLLp2DcOV0wx1"
  8893. },
  8894. {
  8895. "__type__": "cc.Widget",
  8896. "_name": "",
  8897. "_objFlags": 0,
  8898. "__editorExtras__": {},
  8899. "node": {
  8900. "__id__": 173
  8901. },
  8902. "_enabled": true,
  8903. "__prefab": null,
  8904. "_alignFlags": 45,
  8905. "_target": null,
  8906. "_left": 0,
  8907. "_right": 0,
  8908. "_top": 0,
  8909. "_bottom": 0,
  8910. "_horizontalCenter": 0,
  8911. "_verticalCenter": 0,
  8912. "_isAbsLeft": true,
  8913. "_isAbsRight": true,
  8914. "_isAbsTop": true,
  8915. "_isAbsBottom": true,
  8916. "_isAbsHorizontalCenter": true,
  8917. "_isAbsVerticalCenter": true,
  8918. "_originalWidth": 100,
  8919. "_originalHeight": 100,
  8920. "_alignMode": 2,
  8921. "_lockFlags": 0,
  8922. "_id": "dfRSxe9eFBLZiGVzD3W9J4"
  8923. },
  8924. {
  8925. "__type__": "cc.Sprite",
  8926. "_name": "",
  8927. "_objFlags": 0,
  8928. "__editorExtras__": {},
  8929. "node": {
  8930. "__id__": 173
  8931. },
  8932. "_enabled": true,
  8933. "__prefab": null,
  8934. "_customMaterial": null,
  8935. "_srcBlendFactor": 2,
  8936. "_dstBlendFactor": 4,
  8937. "_color": {
  8938. "__type__": "cc.Color",
  8939. "r": 255,
  8940. "g": 255,
  8941. "b": 255,
  8942. "a": 255
  8943. },
  8944. "_spriteFrame": {
  8945. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  8946. "__expectedType__": "cc.SpriteFrame"
  8947. },
  8948. "_type": 0,
  8949. "_fillType": 0,
  8950. "_sizeMode": 0,
  8951. "_fillCenter": {
  8952. "__type__": "cc.Vec2",
  8953. "x": 0,
  8954. "y": 0
  8955. },
  8956. "_fillStart": 0,
  8957. "_fillRange": 0,
  8958. "_isTrimmedMode": true,
  8959. "_useGrayscale": false,
  8960. "_atlas": null,
  8961. "_id": "9eZZhtpHxMyIAzIK/4dPHQ"
  8962. },
  8963. {
  8964. "__type__": "cba318LSv1Ne6Rk0WuVlhK9",
  8965. "_name": "",
  8966. "_objFlags": 0,
  8967. "__editorExtras__": {},
  8968. "node": {
  8969. "__id__": 173
  8970. },
  8971. "_enabled": true,
  8972. "__prefab": null,
  8973. "btn_cancel": {
  8974. "__id__": 220
  8975. },
  8976. "btn_search": {
  8977. "__id__": 210
  8978. },
  8979. "btn_p": {
  8980. "__id__": 186
  8981. },
  8982. "btn_n": {
  8983. "__id__": 193
  8984. },
  8985. "content": {
  8986. "__id__": 176
  8987. },
  8988. "item_prefab": {
  8989. "__uuid__": "e0903480-6086-4f89-be39-3ee3bd78c017",
  8990. "__expectedType__": "cc.Prefab"
  8991. },
  8992. "game_font": {
  8993. "__id__": 145
  8994. },
  8995. "lab_cur_page": {
  8996. "__id__": 217
  8997. },
  8998. "ed_lab": {
  8999. "__id__": 209
  9000. },
  9001. "_id": "65E9YqXtFHZYGKVW21nJ9W"
  9002. },
  9003. {
  9004. "__type__": "cc.UITransform",
  9005. "_name": "",
  9006. "_objFlags": 0,
  9007. "__editorExtras__": {},
  9008. "node": {
  9009. "__id__": 145
  9010. },
  9011. "_enabled": true,
  9012. "__prefab": null,
  9013. "_contentSize": {
  9014. "__type__": "cc.Size",
  9015. "width": 1920,
  9016. "height": 1080
  9017. },
  9018. "_anchorPoint": {
  9019. "__type__": "cc.Vec2",
  9020. "x": 0.5,
  9021. "y": 0.5
  9022. },
  9023. "_id": "1fW/yAwqNHMbpVoKL2ylwS"
  9024. },
  9025. {
  9026. "__type__": "cc.Widget",
  9027. "_name": "",
  9028. "_objFlags": 0,
  9029. "__editorExtras__": {},
  9030. "node": {
  9031. "__id__": 145
  9032. },
  9033. "_enabled": true,
  9034. "__prefab": null,
  9035. "_alignFlags": 45,
  9036. "_target": null,
  9037. "_left": 0,
  9038. "_right": 0,
  9039. "_top": 0,
  9040. "_bottom": 0,
  9041. "_horizontalCenter": 0,
  9042. "_verticalCenter": 0,
  9043. "_isAbsLeft": true,
  9044. "_isAbsRight": true,
  9045. "_isAbsTop": true,
  9046. "_isAbsBottom": true,
  9047. "_isAbsHorizontalCenter": true,
  9048. "_isAbsVerticalCenter": true,
  9049. "_originalWidth": 100,
  9050. "_originalHeight": 100,
  9051. "_alignMode": 2,
  9052. "_lockFlags": 0,
  9053. "_id": "c9OQR+LE1BSafTlNIBK9gB"
  9054. },
  9055. {
  9056. "__type__": "cc.Sprite",
  9057. "_name": "",
  9058. "_objFlags": 0,
  9059. "__editorExtras__": {},
  9060. "node": {
  9061. "__id__": 145
  9062. },
  9063. "_enabled": true,
  9064. "__prefab": null,
  9065. "_customMaterial": null,
  9066. "_srcBlendFactor": 2,
  9067. "_dstBlendFactor": 4,
  9068. "_color": {
  9069. "__type__": "cc.Color",
  9070. "r": 194,
  9071. "g": 255,
  9072. "b": 223,
  9073. "a": 255
  9074. },
  9075. "_spriteFrame": {
  9076. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  9077. "__expectedType__": "cc.SpriteFrame"
  9078. },
  9079. "_type": 1,
  9080. "_fillType": 0,
  9081. "_sizeMode": 0,
  9082. "_fillCenter": {
  9083. "__type__": "cc.Vec2",
  9084. "x": 0,
  9085. "y": 0
  9086. },
  9087. "_fillStart": 0,
  9088. "_fillRange": 0,
  9089. "_isTrimmedMode": true,
  9090. "_useGrayscale": false,
  9091. "_atlas": null,
  9092. "_id": "f4bw2ofYVA17or91XRahrn"
  9093. },
  9094. {
  9095. "__type__": "ebe8c9wq+tICJNGfsVi/5DI",
  9096. "_name": "",
  9097. "_objFlags": 0,
  9098. "__editorExtras__": {},
  9099. "node": {
  9100. "__id__": 145
  9101. },
  9102. "_enabled": true,
  9103. "__prefab": null,
  9104. "btn_back": {
  9105. "__id__": 163
  9106. },
  9107. "btn_save": {
  9108. "__id__": 156
  9109. },
  9110. "btn_level_select": {
  9111. "__id__": 149
  9112. },
  9113. "grid_list": {
  9114. "__id__": 146
  9115. },
  9116. "insert_spr": {
  9117. "__id__": 170
  9118. },
  9119. "item_prefab": {
  9120. "__uuid__": "d4588d07-a5d4-4dfa-9704-c8aea466b7eb",
  9121. "__expectedType__": "cc.Prefab"
  9122. },
  9123. "game_edit_list": {
  9124. "__id__": 117
  9125. },
  9126. "sf_1": {
  9127. "__uuid__": "7e6f4e65-6a92-4ff8-8eac-ddf2498e2b55@f9941",
  9128. "__expectedType__": "cc.SpriteFrame"
  9129. },
  9130. "sf_2": {
  9131. "__uuid__": "653aff99-e146-434c-804f-49ca179db627@f9941",
  9132. "__expectedType__": "cc.SpriteFrame"
  9133. },
  9134. "level_list": {
  9135. "__id__": 173
  9136. },
  9137. "_id": "3b2/vEuHtBFITlB4YZ1E1D"
  9138. },
  9139. {
  9140. "__type__": "cc.Node",
  9141. "_name": "game_detail",
  9142. "_objFlags": 0,
  9143. "__editorExtras__": {},
  9144. "_parent": {
  9145. "__id__": 2
  9146. },
  9147. "_children": [
  9148. {
  9149. "__id__": 236
  9150. },
  9151. {
  9152. "__id__": 243
  9153. },
  9154. {
  9155. "__id__": 250
  9156. },
  9157. {
  9158. "__id__": 257
  9159. },
  9160. {
  9161. "__id__": 260
  9162. },
  9163. {
  9164. "__id__": 281
  9165. },
  9166. {
  9167. "__id__": 284
  9168. },
  9169. {
  9170. "__id__": 342
  9171. }
  9172. ],
  9173. "_active": false,
  9174. "_components": [
  9175. {
  9176. "__id__": 376
  9177. },
  9178. {
  9179. "__id__": 377
  9180. },
  9181. {
  9182. "__id__": 378
  9183. },
  9184. {
  9185. "__id__": 379
  9186. }
  9187. ],
  9188. "_prefab": null,
  9189. "_lpos": {
  9190. "__type__": "cc.Vec3",
  9191. "x": -960,
  9192. "y": -540,
  9193. "z": 0
  9194. },
  9195. "_lrot": {
  9196. "__type__": "cc.Quat",
  9197. "x": 0,
  9198. "y": 0,
  9199. "z": 0,
  9200. "w": 1
  9201. },
  9202. "_lscale": {
  9203. "__type__": "cc.Vec3",
  9204. "x": 1,
  9205. "y": 1,
  9206. "z": 1
  9207. },
  9208. "_mobility": 0,
  9209. "_layer": 33554432,
  9210. "_euler": {
  9211. "__type__": "cc.Vec3",
  9212. "x": 0,
  9213. "y": 0,
  9214. "z": 0
  9215. },
  9216. "_id": "barrZHmcpCzaNxiAjbu4OA"
  9217. },
  9218. {
  9219. "__type__": "cc.Node",
  9220. "_name": "btn_select_level",
  9221. "_objFlags": 0,
  9222. "__editorExtras__": {},
  9223. "_parent": {
  9224. "__id__": 235
  9225. },
  9226. "_children": [
  9227. {
  9228. "__id__": 237
  9229. }
  9230. ],
  9231. "_active": true,
  9232. "_components": [
  9233. {
  9234. "__id__": 240
  9235. },
  9236. {
  9237. "__id__": 241
  9238. },
  9239. {
  9240. "__id__": 242
  9241. }
  9242. ],
  9243. "_prefab": null,
  9244. "_lpos": {
  9245. "__type__": "cc.Vec3",
  9246. "x": 1600,
  9247. "y": 650,
  9248. "z": 0
  9249. },
  9250. "_lrot": {
  9251. "__type__": "cc.Quat",
  9252. "x": 0,
  9253. "y": 0,
  9254. "z": 0,
  9255. "w": 1
  9256. },
  9257. "_lscale": {
  9258. "__type__": "cc.Vec3",
  9259. "x": 1,
  9260. "y": 1,
  9261. "z": 1
  9262. },
  9263. "_mobility": 0,
  9264. "_layer": 33554432,
  9265. "_euler": {
  9266. "__type__": "cc.Vec3",
  9267. "x": 0,
  9268. "y": 0,
  9269. "z": 0
  9270. },
  9271. "_id": "9d7h8fFtVAu50PTOGUfWl/"
  9272. },
  9273. {
  9274. "__type__": "cc.Node",
  9275. "_name": "Label",
  9276. "_objFlags": 0,
  9277. "__editorExtras__": {},
  9278. "_parent": {
  9279. "__id__": 236
  9280. },
  9281. "_children": [],
  9282. "_active": true,
  9283. "_components": [
  9284. {
  9285. "__id__": 238
  9286. },
  9287. {
  9288. "__id__": 239
  9289. }
  9290. ],
  9291. "_prefab": null,
  9292. "_lpos": {
  9293. "__type__": "cc.Vec3",
  9294. "x": 0,
  9295. "y": 0,
  9296. "z": 0
  9297. },
  9298. "_lrot": {
  9299. "__type__": "cc.Quat",
  9300. "x": 0,
  9301. "y": 0,
  9302. "z": 0,
  9303. "w": 1
  9304. },
  9305. "_lscale": {
  9306. "__type__": "cc.Vec3",
  9307. "x": 1,
  9308. "y": 1,
  9309. "z": 1
  9310. },
  9311. "_mobility": 0,
  9312. "_layer": 33554432,
  9313. "_euler": {
  9314. "__type__": "cc.Vec3",
  9315. "x": 0,
  9316. "y": 0,
  9317. "z": 0
  9318. },
  9319. "_id": "456hVBVZNGtJYL5L/TXUrL"
  9320. },
  9321. {
  9322. "__type__": "cc.UITransform",
  9323. "_name": "",
  9324. "_objFlags": 0,
  9325. "__editorExtras__": {},
  9326. "node": {
  9327. "__id__": 237
  9328. },
  9329. "_enabled": true,
  9330. "__prefab": null,
  9331. "_contentSize": {
  9332. "__type__": "cc.Size",
  9333. "width": 100,
  9334. "height": 40
  9335. },
  9336. "_anchorPoint": {
  9337. "__type__": "cc.Vec2",
  9338. "x": 0.5,
  9339. "y": 0.5
  9340. },
  9341. "_id": "afHHGECt9FwLwJsOLMufbw"
  9342. },
  9343. {
  9344. "__type__": "cc.Label",
  9345. "_name": "",
  9346. "_objFlags": 0,
  9347. "__editorExtras__": {},
  9348. "node": {
  9349. "__id__": 237
  9350. },
  9351. "_enabled": true,
  9352. "__prefab": null,
  9353. "_customMaterial": null,
  9354. "_srcBlendFactor": 2,
  9355. "_dstBlendFactor": 4,
  9356. "_color": {
  9357. "__type__": "cc.Color",
  9358. "r": 0,
  9359. "g": 0,
  9360. "b": 0,
  9361. "a": 255
  9362. },
  9363. "_string": "关卡选择",
  9364. "_horizontalAlign": 1,
  9365. "_verticalAlign": 1,
  9366. "_actualFontSize": 20,
  9367. "_fontSize": 20,
  9368. "_fontFamily": "Arial",
  9369. "_lineHeight": 40,
  9370. "_overflow": 1,
  9371. "_enableWrapText": false,
  9372. "_font": null,
  9373. "_isSystemFontUsed": true,
  9374. "_spacingX": 0,
  9375. "_isItalic": false,
  9376. "_isBold": false,
  9377. "_isUnderline": false,
  9378. "_underlineHeight": 2,
  9379. "_cacheMode": 0,
  9380. "_id": "92BmeBXXBLe42eLAjmF5/X"
  9381. },
  9382. {
  9383. "__type__": "cc.UITransform",
  9384. "_name": "",
  9385. "_objFlags": 0,
  9386. "__editorExtras__": {},
  9387. "node": {
  9388. "__id__": 236
  9389. },
  9390. "_enabled": true,
  9391. "__prefab": null,
  9392. "_contentSize": {
  9393. "__type__": "cc.Size",
  9394. "width": 200,
  9395. "height": 100
  9396. },
  9397. "_anchorPoint": {
  9398. "__type__": "cc.Vec2",
  9399. "x": 0.5,
  9400. "y": 0.5
  9401. },
  9402. "_id": "9a2g9nyyRHI6rl2mq1YqAm"
  9403. },
  9404. {
  9405. "__type__": "cc.Sprite",
  9406. "_name": "",
  9407. "_objFlags": 0,
  9408. "__editorExtras__": {},
  9409. "node": {
  9410. "__id__": 236
  9411. },
  9412. "_enabled": true,
  9413. "__prefab": null,
  9414. "_customMaterial": null,
  9415. "_srcBlendFactor": 2,
  9416. "_dstBlendFactor": 4,
  9417. "_color": {
  9418. "__type__": "cc.Color",
  9419. "r": 255,
  9420. "g": 255,
  9421. "b": 255,
  9422. "a": 255
  9423. },
  9424. "_spriteFrame": {
  9425. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  9426. "__expectedType__": "cc.SpriteFrame"
  9427. },
  9428. "_type": 1,
  9429. "_fillType": 0,
  9430. "_sizeMode": 0,
  9431. "_fillCenter": {
  9432. "__type__": "cc.Vec2",
  9433. "x": 0,
  9434. "y": 0
  9435. },
  9436. "_fillStart": 0,
  9437. "_fillRange": 0,
  9438. "_isTrimmedMode": true,
  9439. "_useGrayscale": false,
  9440. "_atlas": null,
  9441. "_id": "2e665uFOdBpaRo4xdPVpXl"
  9442. },
  9443. {
  9444. "__type__": "cc.Button",
  9445. "_name": "",
  9446. "_objFlags": 0,
  9447. "__editorExtras__": {},
  9448. "node": {
  9449. "__id__": 236
  9450. },
  9451. "_enabled": true,
  9452. "__prefab": null,
  9453. "clickEvents": [],
  9454. "_interactable": true,
  9455. "_transition": 2,
  9456. "_normalColor": {
  9457. "__type__": "cc.Color",
  9458. "r": 214,
  9459. "g": 214,
  9460. "b": 214,
  9461. "a": 255
  9462. },
  9463. "_hoverColor": {
  9464. "__type__": "cc.Color",
  9465. "r": 211,
  9466. "g": 211,
  9467. "b": 211,
  9468. "a": 255
  9469. },
  9470. "_pressedColor": {
  9471. "__type__": "cc.Color",
  9472. "r": 255,
  9473. "g": 255,
  9474. "b": 255,
  9475. "a": 255
  9476. },
  9477. "_disabledColor": {
  9478. "__type__": "cc.Color",
  9479. "r": 124,
  9480. "g": 124,
  9481. "b": 124,
  9482. "a": 255
  9483. },
  9484. "_normalSprite": {
  9485. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  9486. "__expectedType__": "cc.SpriteFrame"
  9487. },
  9488. "_hoverSprite": {
  9489. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  9490. "__expectedType__": "cc.SpriteFrame"
  9491. },
  9492. "_pressedSprite": {
  9493. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  9494. "__expectedType__": "cc.SpriteFrame"
  9495. },
  9496. "_disabledSprite": {
  9497. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  9498. "__expectedType__": "cc.SpriteFrame"
  9499. },
  9500. "_duration": 0.1,
  9501. "_zoomScale": 1.2,
  9502. "_target": {
  9503. "__id__": 236
  9504. },
  9505. "_id": "e67PYPjVhFRbq8YMNymK6L"
  9506. },
  9507. {
  9508. "__type__": "cc.Node",
  9509. "_name": "btn_back",
  9510. "_objFlags": 0,
  9511. "__editorExtras__": {},
  9512. "_parent": {
  9513. "__id__": 235
  9514. },
  9515. "_children": [
  9516. {
  9517. "__id__": 244
  9518. }
  9519. ],
  9520. "_active": true,
  9521. "_components": [
  9522. {
  9523. "__id__": 247
  9524. },
  9525. {
  9526. "__id__": 248
  9527. },
  9528. {
  9529. "__id__": 249
  9530. }
  9531. ],
  9532. "_prefab": null,
  9533. "_lpos": {
  9534. "__type__": "cc.Vec3",
  9535. "x": 1600,
  9536. "y": 540,
  9537. "z": 0
  9538. },
  9539. "_lrot": {
  9540. "__type__": "cc.Quat",
  9541. "x": 0,
  9542. "y": 0,
  9543. "z": 0,
  9544. "w": 1
  9545. },
  9546. "_lscale": {
  9547. "__type__": "cc.Vec3",
  9548. "x": 1,
  9549. "y": 1,
  9550. "z": 1
  9551. },
  9552. "_mobility": 0,
  9553. "_layer": 33554432,
  9554. "_euler": {
  9555. "__type__": "cc.Vec3",
  9556. "x": 0,
  9557. "y": 0,
  9558. "z": 0
  9559. },
  9560. "_id": "dbkVn27YxGfZg6p2GLWlja"
  9561. },
  9562. {
  9563. "__type__": "cc.Node",
  9564. "_name": "Label",
  9565. "_objFlags": 0,
  9566. "__editorExtras__": {},
  9567. "_parent": {
  9568. "__id__": 243
  9569. },
  9570. "_children": [],
  9571. "_active": true,
  9572. "_components": [
  9573. {
  9574. "__id__": 245
  9575. },
  9576. {
  9577. "__id__": 246
  9578. }
  9579. ],
  9580. "_prefab": null,
  9581. "_lpos": {
  9582. "__type__": "cc.Vec3",
  9583. "x": 0,
  9584. "y": 0,
  9585. "z": 0
  9586. },
  9587. "_lrot": {
  9588. "__type__": "cc.Quat",
  9589. "x": 0,
  9590. "y": 0,
  9591. "z": 0,
  9592. "w": 1
  9593. },
  9594. "_lscale": {
  9595. "__type__": "cc.Vec3",
  9596. "x": 1,
  9597. "y": 1,
  9598. "z": 1
  9599. },
  9600. "_mobility": 0,
  9601. "_layer": 33554432,
  9602. "_euler": {
  9603. "__type__": "cc.Vec3",
  9604. "x": 0,
  9605. "y": 0,
  9606. "z": 0
  9607. },
  9608. "_id": "4d7FEJgKdK77/xqrQD6dWd"
  9609. },
  9610. {
  9611. "__type__": "cc.UITransform",
  9612. "_name": "",
  9613. "_objFlags": 0,
  9614. "__editorExtras__": {},
  9615. "node": {
  9616. "__id__": 244
  9617. },
  9618. "_enabled": true,
  9619. "__prefab": null,
  9620. "_contentSize": {
  9621. "__type__": "cc.Size",
  9622. "width": 100,
  9623. "height": 40
  9624. },
  9625. "_anchorPoint": {
  9626. "__type__": "cc.Vec2",
  9627. "x": 0.5,
  9628. "y": 0.5
  9629. },
  9630. "_id": "b4Dfobv1ZOnJXfk1rVKo4P"
  9631. },
  9632. {
  9633. "__type__": "cc.Label",
  9634. "_name": "",
  9635. "_objFlags": 0,
  9636. "__editorExtras__": {},
  9637. "node": {
  9638. "__id__": 244
  9639. },
  9640. "_enabled": true,
  9641. "__prefab": null,
  9642. "_customMaterial": null,
  9643. "_srcBlendFactor": 2,
  9644. "_dstBlendFactor": 4,
  9645. "_color": {
  9646. "__type__": "cc.Color",
  9647. "r": 0,
  9648. "g": 0,
  9649. "b": 0,
  9650. "a": 255
  9651. },
  9652. "_string": "返回",
  9653. "_horizontalAlign": 1,
  9654. "_verticalAlign": 1,
  9655. "_actualFontSize": 20,
  9656. "_fontSize": 20,
  9657. "_fontFamily": "Arial",
  9658. "_lineHeight": 40,
  9659. "_overflow": 1,
  9660. "_enableWrapText": false,
  9661. "_font": null,
  9662. "_isSystemFontUsed": true,
  9663. "_spacingX": 0,
  9664. "_isItalic": false,
  9665. "_isBold": false,
  9666. "_isUnderline": false,
  9667. "_underlineHeight": 2,
  9668. "_cacheMode": 0,
  9669. "_id": "e8FyG/qw5Gr71Z9+u5ejR9"
  9670. },
  9671. {
  9672. "__type__": "cc.UITransform",
  9673. "_name": "",
  9674. "_objFlags": 0,
  9675. "__editorExtras__": {},
  9676. "node": {
  9677. "__id__": 243
  9678. },
  9679. "_enabled": true,
  9680. "__prefab": null,
  9681. "_contentSize": {
  9682. "__type__": "cc.Size",
  9683. "width": 200,
  9684. "height": 100
  9685. },
  9686. "_anchorPoint": {
  9687. "__type__": "cc.Vec2",
  9688. "x": 0.5,
  9689. "y": 0.5
  9690. },
  9691. "_id": "2eUifMPEJOx5JHlXJ8sl3G"
  9692. },
  9693. {
  9694. "__type__": "cc.Sprite",
  9695. "_name": "",
  9696. "_objFlags": 0,
  9697. "__editorExtras__": {},
  9698. "node": {
  9699. "__id__": 243
  9700. },
  9701. "_enabled": true,
  9702. "__prefab": null,
  9703. "_customMaterial": null,
  9704. "_srcBlendFactor": 2,
  9705. "_dstBlendFactor": 4,
  9706. "_color": {
  9707. "__type__": "cc.Color",
  9708. "r": 255,
  9709. "g": 255,
  9710. "b": 255,
  9711. "a": 255
  9712. },
  9713. "_spriteFrame": {
  9714. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  9715. "__expectedType__": "cc.SpriteFrame"
  9716. },
  9717. "_type": 1,
  9718. "_fillType": 0,
  9719. "_sizeMode": 0,
  9720. "_fillCenter": {
  9721. "__type__": "cc.Vec2",
  9722. "x": 0,
  9723. "y": 0
  9724. },
  9725. "_fillStart": 0,
  9726. "_fillRange": 0,
  9727. "_isTrimmedMode": true,
  9728. "_useGrayscale": false,
  9729. "_atlas": null,
  9730. "_id": "cc0mJRrWJAXblYwYktKoAL"
  9731. },
  9732. {
  9733. "__type__": "cc.Button",
  9734. "_name": "",
  9735. "_objFlags": 0,
  9736. "__editorExtras__": {},
  9737. "node": {
  9738. "__id__": 243
  9739. },
  9740. "_enabled": true,
  9741. "__prefab": null,
  9742. "clickEvents": [],
  9743. "_interactable": true,
  9744. "_transition": 2,
  9745. "_normalColor": {
  9746. "__type__": "cc.Color",
  9747. "r": 214,
  9748. "g": 214,
  9749. "b": 214,
  9750. "a": 255
  9751. },
  9752. "_hoverColor": {
  9753. "__type__": "cc.Color",
  9754. "r": 211,
  9755. "g": 211,
  9756. "b": 211,
  9757. "a": 255
  9758. },
  9759. "_pressedColor": {
  9760. "__type__": "cc.Color",
  9761. "r": 255,
  9762. "g": 255,
  9763. "b": 255,
  9764. "a": 255
  9765. },
  9766. "_disabledColor": {
  9767. "__type__": "cc.Color",
  9768. "r": 124,
  9769. "g": 124,
  9770. "b": 124,
  9771. "a": 255
  9772. },
  9773. "_normalSprite": {
  9774. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  9775. "__expectedType__": "cc.SpriteFrame"
  9776. },
  9777. "_hoverSprite": {
  9778. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  9779. "__expectedType__": "cc.SpriteFrame"
  9780. },
  9781. "_pressedSprite": {
  9782. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  9783. "__expectedType__": "cc.SpriteFrame"
  9784. },
  9785. "_disabledSprite": {
  9786. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  9787. "__expectedType__": "cc.SpriteFrame"
  9788. },
  9789. "_duration": 0.1,
  9790. "_zoomScale": 1.2,
  9791. "_target": {
  9792. "__id__": 243
  9793. },
  9794. "_id": "c3vI9wAjpHaL2beNx+QBZy"
  9795. },
  9796. {
  9797. "__type__": "cc.Node",
  9798. "_name": "btn_save",
  9799. "_objFlags": 0,
  9800. "__editorExtras__": {},
  9801. "_parent": {
  9802. "__id__": 235
  9803. },
  9804. "_children": [
  9805. {
  9806. "__id__": 251
  9807. }
  9808. ],
  9809. "_active": true,
  9810. "_components": [
  9811. {
  9812. "__id__": 254
  9813. },
  9814. {
  9815. "__id__": 255
  9816. },
  9817. {
  9818. "__id__": 256
  9819. }
  9820. ],
  9821. "_prefab": null,
  9822. "_lpos": {
  9823. "__type__": "cc.Vec3",
  9824. "x": 1600,
  9825. "y": 760,
  9826. "z": 0
  9827. },
  9828. "_lrot": {
  9829. "__type__": "cc.Quat",
  9830. "x": 0,
  9831. "y": 0,
  9832. "z": 0,
  9833. "w": 1
  9834. },
  9835. "_lscale": {
  9836. "__type__": "cc.Vec3",
  9837. "x": 1,
  9838. "y": 1,
  9839. "z": 1
  9840. },
  9841. "_mobility": 0,
  9842. "_layer": 33554432,
  9843. "_euler": {
  9844. "__type__": "cc.Vec3",
  9845. "x": 0,
  9846. "y": 0,
  9847. "z": 0
  9848. },
  9849. "_id": "6eF0C/rjJEIbmylxGpM35i"
  9850. },
  9851. {
  9852. "__type__": "cc.Node",
  9853. "_name": "Label",
  9854. "_objFlags": 0,
  9855. "__editorExtras__": {},
  9856. "_parent": {
  9857. "__id__": 250
  9858. },
  9859. "_children": [],
  9860. "_active": true,
  9861. "_components": [
  9862. {
  9863. "__id__": 252
  9864. },
  9865. {
  9866. "__id__": 253
  9867. }
  9868. ],
  9869. "_prefab": null,
  9870. "_lpos": {
  9871. "__type__": "cc.Vec3",
  9872. "x": 0,
  9873. "y": 0,
  9874. "z": 0
  9875. },
  9876. "_lrot": {
  9877. "__type__": "cc.Quat",
  9878. "x": 0,
  9879. "y": 0,
  9880. "z": 0,
  9881. "w": 1
  9882. },
  9883. "_lscale": {
  9884. "__type__": "cc.Vec3",
  9885. "x": 1,
  9886. "y": 1,
  9887. "z": 1
  9888. },
  9889. "_mobility": 0,
  9890. "_layer": 33554432,
  9891. "_euler": {
  9892. "__type__": "cc.Vec3",
  9893. "x": 0,
  9894. "y": 0,
  9895. "z": 0
  9896. },
  9897. "_id": "80pCqfTRZCKaRwG1Q1uAnC"
  9898. },
  9899. {
  9900. "__type__": "cc.UITransform",
  9901. "_name": "",
  9902. "_objFlags": 0,
  9903. "__editorExtras__": {},
  9904. "node": {
  9905. "__id__": 251
  9906. },
  9907. "_enabled": true,
  9908. "__prefab": null,
  9909. "_contentSize": {
  9910. "__type__": "cc.Size",
  9911. "width": 100,
  9912. "height": 40
  9913. },
  9914. "_anchorPoint": {
  9915. "__type__": "cc.Vec2",
  9916. "x": 0.5,
  9917. "y": 0.5
  9918. },
  9919. "_id": "76j034ZsRISbkdYXy5nTER"
  9920. },
  9921. {
  9922. "__type__": "cc.Label",
  9923. "_name": "",
  9924. "_objFlags": 0,
  9925. "__editorExtras__": {},
  9926. "node": {
  9927. "__id__": 251
  9928. },
  9929. "_enabled": true,
  9930. "__prefab": null,
  9931. "_customMaterial": null,
  9932. "_srcBlendFactor": 2,
  9933. "_dstBlendFactor": 4,
  9934. "_color": {
  9935. "__type__": "cc.Color",
  9936. "r": 0,
  9937. "g": 0,
  9938. "b": 0,
  9939. "a": 255
  9940. },
  9941. "_string": "保存",
  9942. "_horizontalAlign": 1,
  9943. "_verticalAlign": 1,
  9944. "_actualFontSize": 20,
  9945. "_fontSize": 20,
  9946. "_fontFamily": "Arial",
  9947. "_lineHeight": 40,
  9948. "_overflow": 1,
  9949. "_enableWrapText": false,
  9950. "_font": null,
  9951. "_isSystemFontUsed": true,
  9952. "_spacingX": 0,
  9953. "_isItalic": false,
  9954. "_isBold": false,
  9955. "_isUnderline": false,
  9956. "_underlineHeight": 2,
  9957. "_cacheMode": 0,
  9958. "_id": "59enzo62FOkocqGe0XvDYb"
  9959. },
  9960. {
  9961. "__type__": "cc.UITransform",
  9962. "_name": "",
  9963. "_objFlags": 0,
  9964. "__editorExtras__": {},
  9965. "node": {
  9966. "__id__": 250
  9967. },
  9968. "_enabled": true,
  9969. "__prefab": null,
  9970. "_contentSize": {
  9971. "__type__": "cc.Size",
  9972. "width": 200,
  9973. "height": 100
  9974. },
  9975. "_anchorPoint": {
  9976. "__type__": "cc.Vec2",
  9977. "x": 0.5,
  9978. "y": 0.5
  9979. },
  9980. "_id": "2ajV+FzHhAVYnIluYEFNBX"
  9981. },
  9982. {
  9983. "__type__": "cc.Sprite",
  9984. "_name": "",
  9985. "_objFlags": 0,
  9986. "__editorExtras__": {},
  9987. "node": {
  9988. "__id__": 250
  9989. },
  9990. "_enabled": true,
  9991. "__prefab": null,
  9992. "_customMaterial": null,
  9993. "_srcBlendFactor": 2,
  9994. "_dstBlendFactor": 4,
  9995. "_color": {
  9996. "__type__": "cc.Color",
  9997. "r": 255,
  9998. "g": 255,
  9999. "b": 255,
  10000. "a": 255
  10001. },
  10002. "_spriteFrame": {
  10003. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  10004. "__expectedType__": "cc.SpriteFrame"
  10005. },
  10006. "_type": 1,
  10007. "_fillType": 0,
  10008. "_sizeMode": 0,
  10009. "_fillCenter": {
  10010. "__type__": "cc.Vec2",
  10011. "x": 0,
  10012. "y": 0
  10013. },
  10014. "_fillStart": 0,
  10015. "_fillRange": 0,
  10016. "_isTrimmedMode": true,
  10017. "_useGrayscale": false,
  10018. "_atlas": null,
  10019. "_id": "922W2A04JKjKmmqu+Jvyxp"
  10020. },
  10021. {
  10022. "__type__": "cc.Button",
  10023. "_name": "",
  10024. "_objFlags": 0,
  10025. "__editorExtras__": {},
  10026. "node": {
  10027. "__id__": 250
  10028. },
  10029. "_enabled": true,
  10030. "__prefab": null,
  10031. "clickEvents": [],
  10032. "_interactable": true,
  10033. "_transition": 2,
  10034. "_normalColor": {
  10035. "__type__": "cc.Color",
  10036. "r": 214,
  10037. "g": 214,
  10038. "b": 214,
  10039. "a": 255
  10040. },
  10041. "_hoverColor": {
  10042. "__type__": "cc.Color",
  10043. "r": 211,
  10044. "g": 211,
  10045. "b": 211,
  10046. "a": 255
  10047. },
  10048. "_pressedColor": {
  10049. "__type__": "cc.Color",
  10050. "r": 255,
  10051. "g": 255,
  10052. "b": 255,
  10053. "a": 255
  10054. },
  10055. "_disabledColor": {
  10056. "__type__": "cc.Color",
  10057. "r": 124,
  10058. "g": 124,
  10059. "b": 124,
  10060. "a": 255
  10061. },
  10062. "_normalSprite": {
  10063. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  10064. "__expectedType__": "cc.SpriteFrame"
  10065. },
  10066. "_hoverSprite": {
  10067. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  10068. "__expectedType__": "cc.SpriteFrame"
  10069. },
  10070. "_pressedSprite": {
  10071. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  10072. "__expectedType__": "cc.SpriteFrame"
  10073. },
  10074. "_disabledSprite": {
  10075. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  10076. "__expectedType__": "cc.SpriteFrame"
  10077. },
  10078. "_duration": 0.1,
  10079. "_zoomScale": 1.2,
  10080. "_target": {
  10081. "__id__": 250
  10082. },
  10083. "_id": "b3krkcC2lOVI2JvqgVcTAC"
  10084. },
  10085. {
  10086. "__type__": "cc.Node",
  10087. "_name": "img",
  10088. "_objFlags": 0,
  10089. "__editorExtras__": {},
  10090. "_parent": {
  10091. "__id__": 235
  10092. },
  10093. "_children": [],
  10094. "_active": true,
  10095. "_components": [
  10096. {
  10097. "__id__": 258
  10098. },
  10099. {
  10100. "__id__": 259
  10101. }
  10102. ],
  10103. "_prefab": null,
  10104. "_lpos": {
  10105. "__type__": "cc.Vec3",
  10106. "x": 650,
  10107. "y": 149.768,
  10108. "z": 0
  10109. },
  10110. "_lrot": {
  10111. "__type__": "cc.Quat",
  10112. "x": 0,
  10113. "y": 0,
  10114. "z": 0,
  10115. "w": 1
  10116. },
  10117. "_lscale": {
  10118. "__type__": "cc.Vec3",
  10119. "x": 1.7,
  10120. "y": 1.7,
  10121. "z": 1
  10122. },
  10123. "_mobility": 0,
  10124. "_layer": 33554432,
  10125. "_euler": {
  10126. "__type__": "cc.Vec3",
  10127. "x": 0,
  10128. "y": 0,
  10129. "z": 0
  10130. },
  10131. "_id": "81YKjswd5Ni4fNe2iuvhep"
  10132. },
  10133. {
  10134. "__type__": "cc.UITransform",
  10135. "_name": "",
  10136. "_objFlags": 0,
  10137. "__editorExtras__": {},
  10138. "node": {
  10139. "__id__": 257
  10140. },
  10141. "_enabled": true,
  10142. "__prefab": null,
  10143. "_contentSize": {
  10144. "__type__": "cc.Size",
  10145. "width": 345,
  10146. "height": 480
  10147. },
  10148. "_anchorPoint": {
  10149. "__type__": "cc.Vec2",
  10150. "x": 0,
  10151. "y": 0
  10152. },
  10153. "_id": "a2rgJwWy9L3Ii2OL9KEcoC"
  10154. },
  10155. {
  10156. "__type__": "cc.Sprite",
  10157. "_name": "",
  10158. "_objFlags": 0,
  10159. "__editorExtras__": {},
  10160. "node": {
  10161. "__id__": 257
  10162. },
  10163. "_enabled": true,
  10164. "__prefab": null,
  10165. "_customMaterial": null,
  10166. "_srcBlendFactor": 2,
  10167. "_dstBlendFactor": 4,
  10168. "_color": {
  10169. "__type__": "cc.Color",
  10170. "r": 255,
  10171. "g": 255,
  10172. "b": 255,
  10173. "a": 255
  10174. },
  10175. "_spriteFrame": {
  10176. "__uuid__": "e434a981-5656-4d76-9641-4938a0828ce7@f9941",
  10177. "__expectedType__": "cc.SpriteFrame"
  10178. },
  10179. "_type": 0,
  10180. "_fillType": 0,
  10181. "_sizeMode": 0,
  10182. "_fillCenter": {
  10183. "__type__": "cc.Vec2",
  10184. "x": 0,
  10185. "y": 0
  10186. },
  10187. "_fillStart": 0,
  10188. "_fillRange": 0,
  10189. "_isTrimmedMode": true,
  10190. "_useGrayscale": false,
  10191. "_atlas": null,
  10192. "_id": "08a7xiMlVJba8tsE64JAvt"
  10193. },
  10194. {
  10195. "__type__": "cc.Node",
  10196. "_name": "circle",
  10197. "_objFlags": 0,
  10198. "__editorExtras__": {},
  10199. "_parent": {
  10200. "__id__": 235
  10201. },
  10202. "_children": [
  10203. {
  10204. "__id__": 261
  10205. },
  10206. {
  10207. "__id__": 268
  10208. },
  10209. {
  10210. "__id__": 275
  10211. }
  10212. ],
  10213. "_active": true,
  10214. "_components": [
  10215. {
  10216. "__id__": 278
  10217. },
  10218. {
  10219. "__id__": 279
  10220. },
  10221. {
  10222. "__id__": 280
  10223. }
  10224. ],
  10225. "_prefab": null,
  10226. "_lpos": {
  10227. "__type__": "cc.Vec3",
  10228. "x": 1600,
  10229. "y": 900,
  10230. "z": 0
  10231. },
  10232. "_lrot": {
  10233. "__type__": "cc.Quat",
  10234. "x": 0,
  10235. "y": 0,
  10236. "z": 0,
  10237. "w": 1
  10238. },
  10239. "_lscale": {
  10240. "__type__": "cc.Vec3",
  10241. "x": 1,
  10242. "y": 1,
  10243. "z": 1
  10244. },
  10245. "_mobility": 0,
  10246. "_layer": 33554432,
  10247. "_euler": {
  10248. "__type__": "cc.Vec3",
  10249. "x": 0,
  10250. "y": 0,
  10251. "z": 0
  10252. },
  10253. "_id": "49tszpUndOsKnUEvHq4gyF"
  10254. },
  10255. {
  10256. "__type__": "cc.Node",
  10257. "_name": "btn_cancel",
  10258. "_objFlags": 0,
  10259. "__editorExtras__": {},
  10260. "_parent": {
  10261. "__id__": 260
  10262. },
  10263. "_children": [
  10264. {
  10265. "__id__": 262
  10266. }
  10267. ],
  10268. "_active": true,
  10269. "_components": [
  10270. {
  10271. "__id__": 265
  10272. },
  10273. {
  10274. "__id__": 266
  10275. },
  10276. {
  10277. "__id__": 267
  10278. }
  10279. ],
  10280. "_prefab": null,
  10281. "_lpos": {
  10282. "__type__": "cc.Vec3",
  10283. "x": -52.444,
  10284. "y": 0,
  10285. "z": 0
  10286. },
  10287. "_lrot": {
  10288. "__type__": "cc.Quat",
  10289. "x": 0,
  10290. "y": 0,
  10291. "z": 0,
  10292. "w": 1
  10293. },
  10294. "_lscale": {
  10295. "__type__": "cc.Vec3",
  10296. "x": 0.5,
  10297. "y": 0.5,
  10298. "z": 1
  10299. },
  10300. "_mobility": 0,
  10301. "_layer": 33554432,
  10302. "_euler": {
  10303. "__type__": "cc.Vec3",
  10304. "x": 0,
  10305. "y": 0,
  10306. "z": 0
  10307. },
  10308. "_id": "b1cxdL4n1I9LezGuHMon8O"
  10309. },
  10310. {
  10311. "__type__": "cc.Node",
  10312. "_name": "Label",
  10313. "_objFlags": 0,
  10314. "__editorExtras__": {},
  10315. "_parent": {
  10316. "__id__": 261
  10317. },
  10318. "_children": [],
  10319. "_active": true,
  10320. "_components": [
  10321. {
  10322. "__id__": 263
  10323. },
  10324. {
  10325. "__id__": 264
  10326. }
  10327. ],
  10328. "_prefab": null,
  10329. "_lpos": {
  10330. "__type__": "cc.Vec3",
  10331. "x": 0,
  10332. "y": 0,
  10333. "z": 0
  10334. },
  10335. "_lrot": {
  10336. "__type__": "cc.Quat",
  10337. "x": 0,
  10338. "y": 0,
  10339. "z": 0,
  10340. "w": 1
  10341. },
  10342. "_lscale": {
  10343. "__type__": "cc.Vec3",
  10344. "x": 1,
  10345. "y": 1,
  10346. "z": 1
  10347. },
  10348. "_mobility": 0,
  10349. "_layer": 33554432,
  10350. "_euler": {
  10351. "__type__": "cc.Vec3",
  10352. "x": 0,
  10353. "y": 0,
  10354. "z": 0
  10355. },
  10356. "_id": "aa3mnCcTtAF5xe1xj0VB4m"
  10357. },
  10358. {
  10359. "__type__": "cc.UITransform",
  10360. "_name": "",
  10361. "_objFlags": 0,
  10362. "__editorExtras__": {},
  10363. "node": {
  10364. "__id__": 262
  10365. },
  10366. "_enabled": true,
  10367. "__prefab": null,
  10368. "_contentSize": {
  10369. "__type__": "cc.Size",
  10370. "width": 100,
  10371. "height": 40
  10372. },
  10373. "_anchorPoint": {
  10374. "__type__": "cc.Vec2",
  10375. "x": 0.5,
  10376. "y": 0.5
  10377. },
  10378. "_id": "6cRyCSJ/dIm5iX+yVKKXUa"
  10379. },
  10380. {
  10381. "__type__": "cc.Label",
  10382. "_name": "",
  10383. "_objFlags": 0,
  10384. "__editorExtras__": {},
  10385. "node": {
  10386. "__id__": 262
  10387. },
  10388. "_enabled": true,
  10389. "__prefab": null,
  10390. "_customMaterial": null,
  10391. "_srcBlendFactor": 2,
  10392. "_dstBlendFactor": 4,
  10393. "_color": {
  10394. "__type__": "cc.Color",
  10395. "r": 0,
  10396. "g": 0,
  10397. "b": 0,
  10398. "a": 255
  10399. },
  10400. "_string": "取消",
  10401. "_horizontalAlign": 1,
  10402. "_verticalAlign": 1,
  10403. "_actualFontSize": 20,
  10404. "_fontSize": 20,
  10405. "_fontFamily": "Arial",
  10406. "_lineHeight": 40,
  10407. "_overflow": 1,
  10408. "_enableWrapText": false,
  10409. "_font": null,
  10410. "_isSystemFontUsed": true,
  10411. "_spacingX": 0,
  10412. "_isItalic": false,
  10413. "_isBold": false,
  10414. "_isUnderline": false,
  10415. "_underlineHeight": 2,
  10416. "_cacheMode": 0,
  10417. "_id": "1fmxErxR9EX6u1/cSp2Lh1"
  10418. },
  10419. {
  10420. "__type__": "cc.UITransform",
  10421. "_name": "",
  10422. "_objFlags": 0,
  10423. "__editorExtras__": {},
  10424. "node": {
  10425. "__id__": 261
  10426. },
  10427. "_enabled": true,
  10428. "__prefab": null,
  10429. "_contentSize": {
  10430. "__type__": "cc.Size",
  10431. "width": 100,
  10432. "height": 40
  10433. },
  10434. "_anchorPoint": {
  10435. "__type__": "cc.Vec2",
  10436. "x": 0.5,
  10437. "y": 0.5
  10438. },
  10439. "_id": "12KlRqcFJLvZU+xHyBop6K"
  10440. },
  10441. {
  10442. "__type__": "cc.Sprite",
  10443. "_name": "",
  10444. "_objFlags": 0,
  10445. "__editorExtras__": {},
  10446. "node": {
  10447. "__id__": 261
  10448. },
  10449. "_enabled": true,
  10450. "__prefab": null,
  10451. "_customMaterial": null,
  10452. "_srcBlendFactor": 2,
  10453. "_dstBlendFactor": 4,
  10454. "_color": {
  10455. "__type__": "cc.Color",
  10456. "r": 255,
  10457. "g": 255,
  10458. "b": 255,
  10459. "a": 255
  10460. },
  10461. "_spriteFrame": {
  10462. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  10463. "__expectedType__": "cc.SpriteFrame"
  10464. },
  10465. "_type": 1,
  10466. "_fillType": 0,
  10467. "_sizeMode": 0,
  10468. "_fillCenter": {
  10469. "__type__": "cc.Vec2",
  10470. "x": 0,
  10471. "y": 0
  10472. },
  10473. "_fillStart": 0,
  10474. "_fillRange": 0,
  10475. "_isTrimmedMode": true,
  10476. "_useGrayscale": false,
  10477. "_atlas": null,
  10478. "_id": "52YkG0mh5JJo0oIVGCsT4u"
  10479. },
  10480. {
  10481. "__type__": "cc.Button",
  10482. "_name": "",
  10483. "_objFlags": 0,
  10484. "__editorExtras__": {},
  10485. "node": {
  10486. "__id__": 261
  10487. },
  10488. "_enabled": true,
  10489. "__prefab": null,
  10490. "clickEvents": [],
  10491. "_interactable": true,
  10492. "_transition": 2,
  10493. "_normalColor": {
  10494. "__type__": "cc.Color",
  10495. "r": 214,
  10496. "g": 214,
  10497. "b": 214,
  10498. "a": 255
  10499. },
  10500. "_hoverColor": {
  10501. "__type__": "cc.Color",
  10502. "r": 211,
  10503. "g": 211,
  10504. "b": 211,
  10505. "a": 255
  10506. },
  10507. "_pressedColor": {
  10508. "__type__": "cc.Color",
  10509. "r": 255,
  10510. "g": 255,
  10511. "b": 255,
  10512. "a": 255
  10513. },
  10514. "_disabledColor": {
  10515. "__type__": "cc.Color",
  10516. "r": 124,
  10517. "g": 124,
  10518. "b": 124,
  10519. "a": 255
  10520. },
  10521. "_normalSprite": {
  10522. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  10523. "__expectedType__": "cc.SpriteFrame"
  10524. },
  10525. "_hoverSprite": {
  10526. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  10527. "__expectedType__": "cc.SpriteFrame"
  10528. },
  10529. "_pressedSprite": {
  10530. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  10531. "__expectedType__": "cc.SpriteFrame"
  10532. },
  10533. "_disabledSprite": {
  10534. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  10535. "__expectedType__": "cc.SpriteFrame"
  10536. },
  10537. "_duration": 0.1,
  10538. "_zoomScale": 1.2,
  10539. "_target": {
  10540. "__id__": 261
  10541. },
  10542. "_id": "9d7ZTKhH1Hw6I3N/lBHd6u"
  10543. },
  10544. {
  10545. "__type__": "cc.Node",
  10546. "_name": "btn_delete",
  10547. "_objFlags": 0,
  10548. "__editorExtras__": {},
  10549. "_parent": {
  10550. "__id__": 260
  10551. },
  10552. "_children": [
  10553. {
  10554. "__id__": 269
  10555. }
  10556. ],
  10557. "_active": true,
  10558. "_components": [
  10559. {
  10560. "__id__": 272
  10561. },
  10562. {
  10563. "__id__": 273
  10564. },
  10565. {
  10566. "__id__": 274
  10567. }
  10568. ],
  10569. "_prefab": null,
  10570. "_lpos": {
  10571. "__type__": "cc.Vec3",
  10572. "x": 53.858,
  10573. "y": 0,
  10574. "z": 0
  10575. },
  10576. "_lrot": {
  10577. "__type__": "cc.Quat",
  10578. "x": 0,
  10579. "y": 0,
  10580. "z": 0,
  10581. "w": 1
  10582. },
  10583. "_lscale": {
  10584. "__type__": "cc.Vec3",
  10585. "x": 0.5,
  10586. "y": 0.5,
  10587. "z": 1
  10588. },
  10589. "_mobility": 0,
  10590. "_layer": 33554432,
  10591. "_euler": {
  10592. "__type__": "cc.Vec3",
  10593. "x": 0,
  10594. "y": 0,
  10595. "z": 0
  10596. },
  10597. "_id": "8cpASfZbdBipd8Xcc9rw63"
  10598. },
  10599. {
  10600. "__type__": "cc.Node",
  10601. "_name": "Label",
  10602. "_objFlags": 0,
  10603. "__editorExtras__": {},
  10604. "_parent": {
  10605. "__id__": 268
  10606. },
  10607. "_children": [],
  10608. "_active": true,
  10609. "_components": [
  10610. {
  10611. "__id__": 270
  10612. },
  10613. {
  10614. "__id__": 271
  10615. }
  10616. ],
  10617. "_prefab": null,
  10618. "_lpos": {
  10619. "__type__": "cc.Vec3",
  10620. "x": 0,
  10621. "y": 0,
  10622. "z": 0
  10623. },
  10624. "_lrot": {
  10625. "__type__": "cc.Quat",
  10626. "x": 0,
  10627. "y": 0,
  10628. "z": 0,
  10629. "w": 1
  10630. },
  10631. "_lscale": {
  10632. "__type__": "cc.Vec3",
  10633. "x": 1,
  10634. "y": 1,
  10635. "z": 1
  10636. },
  10637. "_mobility": 0,
  10638. "_layer": 33554432,
  10639. "_euler": {
  10640. "__type__": "cc.Vec3",
  10641. "x": 0,
  10642. "y": 0,
  10643. "z": 0
  10644. },
  10645. "_id": "52hmIfMeZKKoMUDti+v2g8"
  10646. },
  10647. {
  10648. "__type__": "cc.UITransform",
  10649. "_name": "",
  10650. "_objFlags": 0,
  10651. "__editorExtras__": {},
  10652. "node": {
  10653. "__id__": 269
  10654. },
  10655. "_enabled": true,
  10656. "__prefab": null,
  10657. "_contentSize": {
  10658. "__type__": "cc.Size",
  10659. "width": 100,
  10660. "height": 40
  10661. },
  10662. "_anchorPoint": {
  10663. "__type__": "cc.Vec2",
  10664. "x": 0.5,
  10665. "y": 0.5
  10666. },
  10667. "_id": "fa8L/Zat5Jsp0XUTjhW1oV"
  10668. },
  10669. {
  10670. "__type__": "cc.Label",
  10671. "_name": "",
  10672. "_objFlags": 0,
  10673. "__editorExtras__": {},
  10674. "node": {
  10675. "__id__": 269
  10676. },
  10677. "_enabled": true,
  10678. "__prefab": null,
  10679. "_customMaterial": null,
  10680. "_srcBlendFactor": 2,
  10681. "_dstBlendFactor": 4,
  10682. "_color": {
  10683. "__type__": "cc.Color",
  10684. "r": 0,
  10685. "g": 0,
  10686. "b": 0,
  10687. "a": 255
  10688. },
  10689. "_string": "删除",
  10690. "_horizontalAlign": 1,
  10691. "_verticalAlign": 1,
  10692. "_actualFontSize": 20,
  10693. "_fontSize": 20,
  10694. "_fontFamily": "Arial",
  10695. "_lineHeight": 40,
  10696. "_overflow": 1,
  10697. "_enableWrapText": false,
  10698. "_font": null,
  10699. "_isSystemFontUsed": true,
  10700. "_spacingX": 0,
  10701. "_isItalic": false,
  10702. "_isBold": false,
  10703. "_isUnderline": false,
  10704. "_underlineHeight": 2,
  10705. "_cacheMode": 0,
  10706. "_id": "d88Ry031dCgJphwtMCL4S2"
  10707. },
  10708. {
  10709. "__type__": "cc.UITransform",
  10710. "_name": "",
  10711. "_objFlags": 0,
  10712. "__editorExtras__": {},
  10713. "node": {
  10714. "__id__": 268
  10715. },
  10716. "_enabled": true,
  10717. "__prefab": null,
  10718. "_contentSize": {
  10719. "__type__": "cc.Size",
  10720. "width": 100,
  10721. "height": 40
  10722. },
  10723. "_anchorPoint": {
  10724. "__type__": "cc.Vec2",
  10725. "x": 0.5,
  10726. "y": 0.5
  10727. },
  10728. "_id": "e0/2azRSlPPa/D2g+St/7M"
  10729. },
  10730. {
  10731. "__type__": "cc.Sprite",
  10732. "_name": "",
  10733. "_objFlags": 0,
  10734. "__editorExtras__": {},
  10735. "node": {
  10736. "__id__": 268
  10737. },
  10738. "_enabled": true,
  10739. "__prefab": null,
  10740. "_customMaterial": null,
  10741. "_srcBlendFactor": 2,
  10742. "_dstBlendFactor": 4,
  10743. "_color": {
  10744. "__type__": "cc.Color",
  10745. "r": 255,
  10746. "g": 255,
  10747. "b": 255,
  10748. "a": 255
  10749. },
  10750. "_spriteFrame": {
  10751. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  10752. "__expectedType__": "cc.SpriteFrame"
  10753. },
  10754. "_type": 1,
  10755. "_fillType": 0,
  10756. "_sizeMode": 0,
  10757. "_fillCenter": {
  10758. "__type__": "cc.Vec2",
  10759. "x": 0,
  10760. "y": 0
  10761. },
  10762. "_fillStart": 0,
  10763. "_fillRange": 0,
  10764. "_isTrimmedMode": true,
  10765. "_useGrayscale": false,
  10766. "_atlas": null,
  10767. "_id": "28jw4/Rt9LtKIO6mb7kLKD"
  10768. },
  10769. {
  10770. "__type__": "cc.Button",
  10771. "_name": "",
  10772. "_objFlags": 0,
  10773. "__editorExtras__": {},
  10774. "node": {
  10775. "__id__": 268
  10776. },
  10777. "_enabled": true,
  10778. "__prefab": null,
  10779. "clickEvents": [],
  10780. "_interactable": true,
  10781. "_transition": 2,
  10782. "_normalColor": {
  10783. "__type__": "cc.Color",
  10784. "r": 214,
  10785. "g": 214,
  10786. "b": 214,
  10787. "a": 255
  10788. },
  10789. "_hoverColor": {
  10790. "__type__": "cc.Color",
  10791. "r": 211,
  10792. "g": 211,
  10793. "b": 211,
  10794. "a": 255
  10795. },
  10796. "_pressedColor": {
  10797. "__type__": "cc.Color",
  10798. "r": 255,
  10799. "g": 255,
  10800. "b": 255,
  10801. "a": 255
  10802. },
  10803. "_disabledColor": {
  10804. "__type__": "cc.Color",
  10805. "r": 124,
  10806. "g": 124,
  10807. "b": 124,
  10808. "a": 255
  10809. },
  10810. "_normalSprite": {
  10811. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  10812. "__expectedType__": "cc.SpriteFrame"
  10813. },
  10814. "_hoverSprite": {
  10815. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  10816. "__expectedType__": "cc.SpriteFrame"
  10817. },
  10818. "_pressedSprite": {
  10819. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  10820. "__expectedType__": "cc.SpriteFrame"
  10821. },
  10822. "_disabledSprite": {
  10823. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  10824. "__expectedType__": "cc.SpriteFrame"
  10825. },
  10826. "_duration": 0.1,
  10827. "_zoomScale": 1.2,
  10828. "_target": {
  10829. "__id__": 268
  10830. },
  10831. "_id": "368y6m4d5JromK+ayhydnq"
  10832. },
  10833. {
  10834. "__type__": "cc.Node",
  10835. "_name": "Sprite",
  10836. "_objFlags": 0,
  10837. "__editorExtras__": {},
  10838. "_parent": {
  10839. "__id__": 260
  10840. },
  10841. "_children": [],
  10842. "_active": true,
  10843. "_components": [
  10844. {
  10845. "__id__": 276
  10846. },
  10847. {
  10848. "__id__": 277
  10849. }
  10850. ],
  10851. "_prefab": null,
  10852. "_lpos": {
  10853. "__type__": "cc.Vec3",
  10854. "x": 0,
  10855. "y": 0,
  10856. "z": 0
  10857. },
  10858. "_lrot": {
  10859. "__type__": "cc.Quat",
  10860. "x": 0,
  10861. "y": 0,
  10862. "z": 0,
  10863. "w": 1
  10864. },
  10865. "_lscale": {
  10866. "__type__": "cc.Vec3",
  10867. "x": 1,
  10868. "y": 1,
  10869. "z": 1
  10870. },
  10871. "_mobility": 0,
  10872. "_layer": 33554432,
  10873. "_euler": {
  10874. "__type__": "cc.Vec3",
  10875. "x": 0,
  10876. "y": 0,
  10877. "z": 0
  10878. },
  10879. "_id": "e67ZNNZiZNKqFUp894Ck3b"
  10880. },
  10881. {
  10882. "__type__": "cc.UITransform",
  10883. "_name": "",
  10884. "_objFlags": 0,
  10885. "__editorExtras__": {},
  10886. "node": {
  10887. "__id__": 275
  10888. },
  10889. "_enabled": true,
  10890. "__prefab": null,
  10891. "_contentSize": {
  10892. "__type__": "cc.Size",
  10893. "width": 40,
  10894. "height": 36
  10895. },
  10896. "_anchorPoint": {
  10897. "__type__": "cc.Vec2",
  10898. "x": 0.5,
  10899. "y": 0.5
  10900. },
  10901. "_id": "cc/4kfFO1EQJOpSFqqadB0"
  10902. },
  10903. {
  10904. "__type__": "cc.Sprite",
  10905. "_name": "",
  10906. "_objFlags": 0,
  10907. "__editorExtras__": {},
  10908. "node": {
  10909. "__id__": 275
  10910. },
  10911. "_enabled": true,
  10912. "__prefab": null,
  10913. "_customMaterial": null,
  10914. "_srcBlendFactor": 2,
  10915. "_dstBlendFactor": 4,
  10916. "_color": {
  10917. "__type__": "cc.Color",
  10918. "r": 255,
  10919. "g": 255,
  10920. "b": 255,
  10921. "a": 255
  10922. },
  10923. "_spriteFrame": null,
  10924. "_type": 0,
  10925. "_fillType": 0,
  10926. "_sizeMode": 0,
  10927. "_fillCenter": {
  10928. "__type__": "cc.Vec2",
  10929. "x": 0,
  10930. "y": 0
  10931. },
  10932. "_fillStart": 0,
  10933. "_fillRange": 0,
  10934. "_isTrimmedMode": true,
  10935. "_useGrayscale": false,
  10936. "_atlas": null,
  10937. "_id": "3fGw0CQGFPqoPHotRGnoE5"
  10938. },
  10939. {
  10940. "__type__": "cc.UITransform",
  10941. "_name": "",
  10942. "_objFlags": 0,
  10943. "__editorExtras__": {},
  10944. "node": {
  10945. "__id__": 260
  10946. },
  10947. "_enabled": true,
  10948. "__prefab": null,
  10949. "_contentSize": {
  10950. "__type__": "cc.Size",
  10951. "width": 120,
  10952. "height": 120
  10953. },
  10954. "_anchorPoint": {
  10955. "__type__": "cc.Vec2",
  10956. "x": 0.5,
  10957. "y": 0.5
  10958. },
  10959. "_id": "4bLlZhMmFIy6olFl+tdP8f"
  10960. },
  10961. {
  10962. "__type__": "cc.Sprite",
  10963. "_name": "",
  10964. "_objFlags": 0,
  10965. "__editorExtras__": {},
  10966. "node": {
  10967. "__id__": 260
  10968. },
  10969. "_enabled": true,
  10970. "__prefab": null,
  10971. "_customMaterial": null,
  10972. "_srcBlendFactor": 2,
  10973. "_dstBlendFactor": 4,
  10974. "_color": {
  10975. "__type__": "cc.Color",
  10976. "r": 255,
  10977. "g": 255,
  10978. "b": 255,
  10979. "a": 255
  10980. },
  10981. "_spriteFrame": {
  10982. "__uuid__": "0135c9bc-71b8-484b-8c91-39e882267f7c@f9941",
  10983. "__expectedType__": "cc.SpriteFrame"
  10984. },
  10985. "_type": 0,
  10986. "_fillType": 0,
  10987. "_sizeMode": 0,
  10988. "_fillCenter": {
  10989. "__type__": "cc.Vec2",
  10990. "x": 0,
  10991. "y": 0
  10992. },
  10993. "_fillStart": 0,
  10994. "_fillRange": 0,
  10995. "_isTrimmedMode": true,
  10996. "_useGrayscale": false,
  10997. "_atlas": null,
  10998. "_id": "3a5OFOOLVJqJkHohpNuRBD"
  10999. },
  11000. {
  11001. "__type__": "bfa3eNzx1NEsJHhkkLKx/dh",
  11002. "_name": "",
  11003. "_objFlags": 0,
  11004. "__editorExtras__": {},
  11005. "node": {
  11006. "__id__": 260
  11007. },
  11008. "_enabled": true,
  11009. "__prefab": null,
  11010. "btn_cancel": {
  11011. "__id__": 261
  11012. },
  11013. "btn_delete": {
  11014. "__id__": 268
  11015. },
  11016. "sf": {
  11017. "__id__": 275
  11018. },
  11019. "_id": "0aTRvV4oJCSYjfgjXSSf7S"
  11020. },
  11021. {
  11022. "__type__": "cc.Node",
  11023. "_name": "Label-001",
  11024. "_objFlags": 0,
  11025. "__editorExtras__": {},
  11026. "_parent": {
  11027. "__id__": 235
  11028. },
  11029. "_children": [],
  11030. "_active": true,
  11031. "_components": [
  11032. {
  11033. "__id__": 282
  11034. },
  11035. {
  11036. "__id__": 283
  11037. }
  11038. ],
  11039. "_prefab": null,
  11040. "_lpos": {
  11041. "__type__": "cc.Vec3",
  11042. "x": 1600,
  11043. "y": 450,
  11044. "z": 0
  11045. },
  11046. "_lrot": {
  11047. "__type__": "cc.Quat",
  11048. "x": 0,
  11049. "y": 0,
  11050. "z": 0,
  11051. "w": 1
  11052. },
  11053. "_lscale": {
  11054. "__type__": "cc.Vec3",
  11055. "x": 1,
  11056. "y": 1,
  11057. "z": 1
  11058. },
  11059. "_mobility": 0,
  11060. "_layer": 33554432,
  11061. "_euler": {
  11062. "__type__": "cc.Vec3",
  11063. "x": 0,
  11064. "y": 0,
  11065. "z": 0
  11066. },
  11067. "_id": "5eSkCF5SVH1bEtsZg3eecd"
  11068. },
  11069. {
  11070. "__type__": "cc.UITransform",
  11071. "_name": "",
  11072. "_objFlags": 0,
  11073. "__editorExtras__": {},
  11074. "node": {
  11075. "__id__": 281
  11076. },
  11077. "_enabled": true,
  11078. "__prefab": null,
  11079. "_contentSize": {
  11080. "__type__": "cc.Size",
  11081. "width": 103.359375,
  11082. "height": 50.4
  11083. },
  11084. "_anchorPoint": {
  11085. "__type__": "cc.Vec2",
  11086. "x": 0.5,
  11087. "y": 0.5
  11088. },
  11089. "_id": "ec4yFVP+VPLYAQxRNbnc1a"
  11090. },
  11091. {
  11092. "__type__": "cc.Label",
  11093. "_name": "",
  11094. "_objFlags": 0,
  11095. "__editorExtras__": {},
  11096. "node": {
  11097. "__id__": 281
  11098. },
  11099. "_enabled": true,
  11100. "__prefab": null,
  11101. "_customMaterial": null,
  11102. "_srcBlendFactor": 2,
  11103. "_dstBlendFactor": 4,
  11104. "_color": {
  11105. "__type__": "cc.Color",
  11106. "r": 255,
  11107. "g": 255,
  11108. "b": 255,
  11109. "a": 255
  11110. },
  11111. "_string": "<关卡名称>",
  11112. "_horizontalAlign": 1,
  11113. "_verticalAlign": 1,
  11114. "_actualFontSize": 20,
  11115. "_fontSize": 20,
  11116. "_fontFamily": "Arial",
  11117. "_lineHeight": 40,
  11118. "_overflow": 0,
  11119. "_enableWrapText": true,
  11120. "_font": null,
  11121. "_isSystemFontUsed": true,
  11122. "_spacingX": 0,
  11123. "_isItalic": false,
  11124. "_isBold": false,
  11125. "_isUnderline": false,
  11126. "_underlineHeight": 2,
  11127. "_cacheMode": 0,
  11128. "_id": "3aExpmu41BBLi2OLUPu1d9"
  11129. },
  11130. {
  11131. "__type__": "cc.Node",
  11132. "_name": "detail_level_list",
  11133. "_objFlags": 0,
  11134. "__editorExtras__": {},
  11135. "_parent": {
  11136. "__id__": 235
  11137. },
  11138. "_children": [
  11139. {
  11140. "__id__": 285
  11141. },
  11142. {
  11143. "__id__": 297
  11144. },
  11145. {
  11146. "__id__": 304
  11147. },
  11148. {
  11149. "__id__": 311
  11150. },
  11151. {
  11152. "__id__": 321
  11153. },
  11154. {
  11155. "__id__": 328
  11156. },
  11157. {
  11158. "__id__": 331
  11159. }
  11160. ],
  11161. "_active": true,
  11162. "_components": [
  11163. {
  11164. "__id__": 338
  11165. },
  11166. {
  11167. "__id__": 339
  11168. },
  11169. {
  11170. "__id__": 340
  11171. },
  11172. {
  11173. "__id__": 341
  11174. }
  11175. ],
  11176. "_prefab": null,
  11177. "_lpos": {
  11178. "__type__": "cc.Vec3",
  11179. "x": 960,
  11180. "y": 540,
  11181. "z": 0
  11182. },
  11183. "_lrot": {
  11184. "__type__": "cc.Quat",
  11185. "x": 0,
  11186. "y": 0,
  11187. "z": 0,
  11188. "w": 1
  11189. },
  11190. "_lscale": {
  11191. "__type__": "cc.Vec3",
  11192. "x": 1,
  11193. "y": 1,
  11194. "z": 1
  11195. },
  11196. "_mobility": 0,
  11197. "_layer": 33554432,
  11198. "_euler": {
  11199. "__type__": "cc.Vec3",
  11200. "x": 0,
  11201. "y": 0,
  11202. "z": 0
  11203. },
  11204. "_id": "96Cpc4XwpP94CPUmQCJalZ"
  11205. },
  11206. {
  11207. "__type__": "cc.Node",
  11208. "_name": "ScrollView",
  11209. "_objFlags": 0,
  11210. "__editorExtras__": {},
  11211. "_parent": {
  11212. "__id__": 284
  11213. },
  11214. "_children": [
  11215. {
  11216. "__id__": 286
  11217. }
  11218. ],
  11219. "_active": true,
  11220. "_components": [
  11221. {
  11222. "__id__": 294
  11223. },
  11224. {
  11225. "__id__": 295
  11226. },
  11227. {
  11228. "__id__": 296
  11229. }
  11230. ],
  11231. "_prefab": null,
  11232. "_lpos": {
  11233. "__type__": "cc.Vec3",
  11234. "x": 0,
  11235. "y": 0,
  11236. "z": 0
  11237. },
  11238. "_lrot": {
  11239. "__type__": "cc.Quat",
  11240. "x": 0,
  11241. "y": 0,
  11242. "z": 0,
  11243. "w": 1
  11244. },
  11245. "_lscale": {
  11246. "__type__": "cc.Vec3",
  11247. "x": 1,
  11248. "y": 1,
  11249. "z": 1
  11250. },
  11251. "_mobility": 0,
  11252. "_layer": 33554432,
  11253. "_euler": {
  11254. "__type__": "cc.Vec3",
  11255. "x": 0,
  11256. "y": 0,
  11257. "z": 0
  11258. },
  11259. "_id": "20Iz++fDNLHoc5HA8LrYEJ"
  11260. },
  11261. {
  11262. "__type__": "cc.Node",
  11263. "_name": "view",
  11264. "_objFlags": 0,
  11265. "__editorExtras__": {},
  11266. "_parent": {
  11267. "__id__": 285
  11268. },
  11269. "_children": [
  11270. {
  11271. "__id__": 287
  11272. }
  11273. ],
  11274. "_active": true,
  11275. "_components": [
  11276. {
  11277. "__id__": 290
  11278. },
  11279. {
  11280. "__id__": 291
  11281. },
  11282. {
  11283. "__id__": 292
  11284. },
  11285. {
  11286. "__id__": 293
  11287. }
  11288. ],
  11289. "_prefab": null,
  11290. "_lpos": {
  11291. "__type__": "cc.Vec3",
  11292. "x": 0,
  11293. "y": 0,
  11294. "z": 0
  11295. },
  11296. "_lrot": {
  11297. "__type__": "cc.Quat",
  11298. "x": 0,
  11299. "y": 0,
  11300. "z": 0,
  11301. "w": 1
  11302. },
  11303. "_lscale": {
  11304. "__type__": "cc.Vec3",
  11305. "x": 1,
  11306. "y": 1,
  11307. "z": 1
  11308. },
  11309. "_mobility": 0,
  11310. "_layer": 33554432,
  11311. "_euler": {
  11312. "__type__": "cc.Vec3",
  11313. "x": 0,
  11314. "y": 0,
  11315. "z": 0
  11316. },
  11317. "_id": "37g6IQeMZCDICQN6Ehi23R"
  11318. },
  11319. {
  11320. "__type__": "cc.Node",
  11321. "_name": "content",
  11322. "_objFlags": 0,
  11323. "__editorExtras__": {},
  11324. "_parent": {
  11325. "__id__": 286
  11326. },
  11327. "_children": [],
  11328. "_active": true,
  11329. "_components": [
  11330. {
  11331. "__id__": 288
  11332. },
  11333. {
  11334. "__id__": 289
  11335. }
  11336. ],
  11337. "_prefab": null,
  11338. "_lpos": {
  11339. "__type__": "cc.Vec3",
  11340. "x": -10,
  11341. "y": 259.09,
  11342. "z": 0
  11343. },
  11344. "_lrot": {
  11345. "__type__": "cc.Quat",
  11346. "x": 0,
  11347. "y": 0,
  11348. "z": 0,
  11349. "w": 1
  11350. },
  11351. "_lscale": {
  11352. "__type__": "cc.Vec3",
  11353. "x": 1,
  11354. "y": 1,
  11355. "z": 1
  11356. },
  11357. "_mobility": 0,
  11358. "_layer": 33554432,
  11359. "_euler": {
  11360. "__type__": "cc.Vec3",
  11361. "x": 0,
  11362. "y": 0,
  11363. "z": 0
  11364. },
  11365. "_id": "5f8AvE+OFHHoFnPEpM/weE"
  11366. },
  11367. {
  11368. "__type__": "cc.UITransform",
  11369. "_name": "",
  11370. "_objFlags": 0,
  11371. "__editorExtras__": {},
  11372. "node": {
  11373. "__id__": 287
  11374. },
  11375. "_enabled": true,
  11376. "__prefab": null,
  11377. "_contentSize": {
  11378. "__type__": "cc.Size",
  11379. "width": 220,
  11380. "height": -10
  11381. },
  11382. "_anchorPoint": {
  11383. "__type__": "cc.Vec2",
  11384. "x": 0.5,
  11385. "y": 1
  11386. },
  11387. "_id": "0b271iRrNJgLQCaUhf+GL0"
  11388. },
  11389. {
  11390. "__type__": "cc.Layout",
  11391. "_name": "",
  11392. "_objFlags": 0,
  11393. "__editorExtras__": {},
  11394. "node": {
  11395. "__id__": 287
  11396. },
  11397. "_enabled": true,
  11398. "__prefab": null,
  11399. "_resizeMode": 1,
  11400. "_layoutType": 2,
  11401. "_cellSize": {
  11402. "__type__": "cc.Size",
  11403. "width": 40,
  11404. "height": 40
  11405. },
  11406. "_startAxis": 0,
  11407. "_paddingLeft": 0,
  11408. "_paddingRight": 0,
  11409. "_paddingTop": 0,
  11410. "_paddingBottom": 0,
  11411. "_spacingX": 0,
  11412. "_spacingY": 10,
  11413. "_verticalDirection": 1,
  11414. "_horizontalDirection": 0,
  11415. "_constraint": 0,
  11416. "_constraintNum": 2,
  11417. "_affectedByScale": false,
  11418. "_isAlign": false,
  11419. "_id": "4bWPdEsj1JuaJtVlRvFusU"
  11420. },
  11421. {
  11422. "__type__": "cc.UITransform",
  11423. "_name": "",
  11424. "_objFlags": 0,
  11425. "__editorExtras__": {},
  11426. "node": {
  11427. "__id__": 286
  11428. },
  11429. "_enabled": true,
  11430. "__prefab": null,
  11431. "_contentSize": {
  11432. "__type__": "cc.Size",
  11433. "width": 375,
  11434. "height": 600
  11435. },
  11436. "_anchorPoint": {
  11437. "__type__": "cc.Vec2",
  11438. "x": 0.5,
  11439. "y": 0.5
  11440. },
  11441. "_id": "43xnTBp1NAooI5pOmFs3yY"
  11442. },
  11443. {
  11444. "__type__": "cc.Mask",
  11445. "_name": "",
  11446. "_objFlags": 0,
  11447. "__editorExtras__": {},
  11448. "node": {
  11449. "__id__": 286
  11450. },
  11451. "_enabled": true,
  11452. "__prefab": null,
  11453. "_type": 0,
  11454. "_inverted": false,
  11455. "_segments": 64,
  11456. "_alphaThreshold": 0.1,
  11457. "_id": "fdRw6PahxEIapK9qb65ndA"
  11458. },
  11459. {
  11460. "__type__": "cc.Graphics",
  11461. "_name": "",
  11462. "_objFlags": 0,
  11463. "__editorExtras__": {},
  11464. "node": {
  11465. "__id__": 286
  11466. },
  11467. "_enabled": true,
  11468. "__prefab": null,
  11469. "_customMaterial": null,
  11470. "_srcBlendFactor": 2,
  11471. "_dstBlendFactor": 4,
  11472. "_color": {
  11473. "__type__": "cc.Color",
  11474. "r": 255,
  11475. "g": 255,
  11476. "b": 255,
  11477. "a": 255
  11478. },
  11479. "_lineWidth": 1,
  11480. "_strokeColor": {
  11481. "__type__": "cc.Color",
  11482. "r": 0,
  11483. "g": 0,
  11484. "b": 0,
  11485. "a": 255
  11486. },
  11487. "_lineJoin": 2,
  11488. "_lineCap": 0,
  11489. "_fillColor": {
  11490. "__type__": "cc.Color",
  11491. "r": 255,
  11492. "g": 255,
  11493. "b": 255,
  11494. "a": 0
  11495. },
  11496. "_miterLimit": 10,
  11497. "_id": "a2oX94filLbaDIDwZ9qXkZ"
  11498. },
  11499. {
  11500. "__type__": "cc.Widget",
  11501. "_name": "",
  11502. "_objFlags": 0,
  11503. "__editorExtras__": {},
  11504. "node": {
  11505. "__id__": 286
  11506. },
  11507. "_enabled": true,
  11508. "__prefab": null,
  11509. "_alignFlags": 45,
  11510. "_target": null,
  11511. "_left": 0,
  11512. "_right": 0,
  11513. "_top": 0,
  11514. "_bottom": 0,
  11515. "_horizontalCenter": 0,
  11516. "_verticalCenter": 0,
  11517. "_isAbsLeft": true,
  11518. "_isAbsRight": true,
  11519. "_isAbsTop": true,
  11520. "_isAbsBottom": true,
  11521. "_isAbsHorizontalCenter": true,
  11522. "_isAbsVerticalCenter": true,
  11523. "_originalWidth": 240,
  11524. "_originalHeight": 250,
  11525. "_alignMode": 2,
  11526. "_lockFlags": 0,
  11527. "_id": "59caBg7ppI+bN0TFrd/RCT"
  11528. },
  11529. {
  11530. "__type__": "cc.UITransform",
  11531. "_name": "",
  11532. "_objFlags": 0,
  11533. "__editorExtras__": {},
  11534. "node": {
  11535. "__id__": 285
  11536. },
  11537. "_enabled": true,
  11538. "__prefab": null,
  11539. "_contentSize": {
  11540. "__type__": "cc.Size",
  11541. "width": 375,
  11542. "height": 600
  11543. },
  11544. "_anchorPoint": {
  11545. "__type__": "cc.Vec2",
  11546. "x": 0.5,
  11547. "y": 0.5
  11548. },
  11549. "_id": "b1TIw2XnVAGKqR67tK0Ihx"
  11550. },
  11551. {
  11552. "__type__": "cc.Sprite",
  11553. "_name": "",
  11554. "_objFlags": 0,
  11555. "__editorExtras__": {},
  11556. "node": {
  11557. "__id__": 285
  11558. },
  11559. "_enabled": true,
  11560. "__prefab": null,
  11561. "_customMaterial": null,
  11562. "_srcBlendFactor": 2,
  11563. "_dstBlendFactor": 4,
  11564. "_color": {
  11565. "__type__": "cc.Color",
  11566. "r": 255,
  11567. "g": 255,
  11568. "b": 255,
  11569. "a": 255
  11570. },
  11571. "_spriteFrame": {
  11572. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  11573. "__expectedType__": "cc.SpriteFrame"
  11574. },
  11575. "_type": 1,
  11576. "_fillType": 0,
  11577. "_sizeMode": 0,
  11578. "_fillCenter": {
  11579. "__type__": "cc.Vec2",
  11580. "x": 0,
  11581. "y": 0
  11582. },
  11583. "_fillStart": 0,
  11584. "_fillRange": 0,
  11585. "_isTrimmedMode": true,
  11586. "_useGrayscale": false,
  11587. "_atlas": null,
  11588. "_id": "2bNKaeAPFLDoiv1i6u+fWK"
  11589. },
  11590. {
  11591. "__type__": "cc.ScrollView",
  11592. "_name": "",
  11593. "_objFlags": 0,
  11594. "__editorExtras__": {},
  11595. "node": {
  11596. "__id__": 285
  11597. },
  11598. "_enabled": true,
  11599. "__prefab": null,
  11600. "bounceDuration": 0.23,
  11601. "brake": 0.75,
  11602. "elastic": true,
  11603. "inertia": true,
  11604. "horizontal": false,
  11605. "vertical": true,
  11606. "cancelInnerEvents": true,
  11607. "scrollEvents": [],
  11608. "_content": {
  11609. "__id__": 287
  11610. },
  11611. "_horizontalScrollBar": null,
  11612. "_verticalScrollBar": null,
  11613. "_id": "41TDjfYFdDGoPgUdgyflwL"
  11614. },
  11615. {
  11616. "__type__": "cc.Node",
  11617. "_name": "btn_superior",
  11618. "_objFlags": 0,
  11619. "__editorExtras__": {},
  11620. "_parent": {
  11621. "__id__": 284
  11622. },
  11623. "_children": [
  11624. {
  11625. "__id__": 298
  11626. }
  11627. ],
  11628. "_active": true,
  11629. "_components": [
  11630. {
  11631. "__id__": 301
  11632. },
  11633. {
  11634. "__id__": 302
  11635. },
  11636. {
  11637. "__id__": 303
  11638. }
  11639. ],
  11640. "_prefab": null,
  11641. "_lpos": {
  11642. "__type__": "cc.Vec3",
  11643. "x": -112.155,
  11644. "y": -372.419,
  11645. "z": 0
  11646. },
  11647. "_lrot": {
  11648. "__type__": "cc.Quat",
  11649. "x": 0,
  11650. "y": 0,
  11651. "z": 0,
  11652. "w": 1
  11653. },
  11654. "_lscale": {
  11655. "__type__": "cc.Vec3",
  11656. "x": 1,
  11657. "y": 1,
  11658. "z": 1
  11659. },
  11660. "_mobility": 0,
  11661. "_layer": 33554432,
  11662. "_euler": {
  11663. "__type__": "cc.Vec3",
  11664. "x": 0,
  11665. "y": 0,
  11666. "z": 0
  11667. },
  11668. "_id": "7dp5GCYw1HbZSqfGSUv+mB"
  11669. },
  11670. {
  11671. "__type__": "cc.Node",
  11672. "_name": "Label",
  11673. "_objFlags": 0,
  11674. "__editorExtras__": {},
  11675. "_parent": {
  11676. "__id__": 297
  11677. },
  11678. "_children": [],
  11679. "_active": true,
  11680. "_components": [
  11681. {
  11682. "__id__": 299
  11683. },
  11684. {
  11685. "__id__": 300
  11686. }
  11687. ],
  11688. "_prefab": null,
  11689. "_lpos": {
  11690. "__type__": "cc.Vec3",
  11691. "x": 0,
  11692. "y": 0,
  11693. "z": 0
  11694. },
  11695. "_lrot": {
  11696. "__type__": "cc.Quat",
  11697. "x": 0,
  11698. "y": 0,
  11699. "z": 0,
  11700. "w": 1
  11701. },
  11702. "_lscale": {
  11703. "__type__": "cc.Vec3",
  11704. "x": 1,
  11705. "y": 1,
  11706. "z": 1
  11707. },
  11708. "_mobility": 0,
  11709. "_layer": 33554432,
  11710. "_euler": {
  11711. "__type__": "cc.Vec3",
  11712. "x": 0,
  11713. "y": 0,
  11714. "z": 0
  11715. },
  11716. "_id": "b0VMG9vl1LM5ZhPSkhzlZS"
  11717. },
  11718. {
  11719. "__type__": "cc.UITransform",
  11720. "_name": "",
  11721. "_objFlags": 0,
  11722. "__editorExtras__": {},
  11723. "node": {
  11724. "__id__": 298
  11725. },
  11726. "_enabled": true,
  11727. "__prefab": null,
  11728. "_contentSize": {
  11729. "__type__": "cc.Size",
  11730. "width": 100,
  11731. "height": 40
  11732. },
  11733. "_anchorPoint": {
  11734. "__type__": "cc.Vec2",
  11735. "x": 0.5,
  11736. "y": 0.5
  11737. },
  11738. "_id": "6fPS0DYsJEyrNTAF9//jqJ"
  11739. },
  11740. {
  11741. "__type__": "cc.Label",
  11742. "_name": "",
  11743. "_objFlags": 0,
  11744. "__editorExtras__": {},
  11745. "node": {
  11746. "__id__": 298
  11747. },
  11748. "_enabled": true,
  11749. "__prefab": null,
  11750. "_customMaterial": null,
  11751. "_srcBlendFactor": 2,
  11752. "_dstBlendFactor": 4,
  11753. "_color": {
  11754. "__type__": "cc.Color",
  11755. "r": 0,
  11756. "g": 0,
  11757. "b": 0,
  11758. "a": 255
  11759. },
  11760. "_string": "上一页",
  11761. "_horizontalAlign": 1,
  11762. "_verticalAlign": 1,
  11763. "_actualFontSize": 20,
  11764. "_fontSize": 20,
  11765. "_fontFamily": "Arial",
  11766. "_lineHeight": 40,
  11767. "_overflow": 1,
  11768. "_enableWrapText": false,
  11769. "_font": null,
  11770. "_isSystemFontUsed": true,
  11771. "_spacingX": 0,
  11772. "_isItalic": false,
  11773. "_isBold": false,
  11774. "_isUnderline": false,
  11775. "_underlineHeight": 2,
  11776. "_cacheMode": 0,
  11777. "_id": "4b4Qt6DrdNvaUHAR86nFzm"
  11778. },
  11779. {
  11780. "__type__": "cc.UITransform",
  11781. "_name": "",
  11782. "_objFlags": 0,
  11783. "__editorExtras__": {},
  11784. "node": {
  11785. "__id__": 297
  11786. },
  11787. "_enabled": true,
  11788. "__prefab": null,
  11789. "_contentSize": {
  11790. "__type__": "cc.Size",
  11791. "width": 100,
  11792. "height": 40
  11793. },
  11794. "_anchorPoint": {
  11795. "__type__": "cc.Vec2",
  11796. "x": 0.5,
  11797. "y": 0.5
  11798. },
  11799. "_id": "a7eLroKNJL67anlyU+/k6h"
  11800. },
  11801. {
  11802. "__type__": "cc.Sprite",
  11803. "_name": "",
  11804. "_objFlags": 0,
  11805. "__editorExtras__": {},
  11806. "node": {
  11807. "__id__": 297
  11808. },
  11809. "_enabled": true,
  11810. "__prefab": null,
  11811. "_customMaterial": null,
  11812. "_srcBlendFactor": 2,
  11813. "_dstBlendFactor": 4,
  11814. "_color": {
  11815. "__type__": "cc.Color",
  11816. "r": 255,
  11817. "g": 255,
  11818. "b": 255,
  11819. "a": 255
  11820. },
  11821. "_spriteFrame": {
  11822. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  11823. "__expectedType__": "cc.SpriteFrame"
  11824. },
  11825. "_type": 1,
  11826. "_fillType": 0,
  11827. "_sizeMode": 0,
  11828. "_fillCenter": {
  11829. "__type__": "cc.Vec2",
  11830. "x": 0,
  11831. "y": 0
  11832. },
  11833. "_fillStart": 0,
  11834. "_fillRange": 0,
  11835. "_isTrimmedMode": true,
  11836. "_useGrayscale": false,
  11837. "_atlas": null,
  11838. "_id": "89DhyR6NlMiqvDDhrydqLi"
  11839. },
  11840. {
  11841. "__type__": "cc.Button",
  11842. "_name": "",
  11843. "_objFlags": 0,
  11844. "__editorExtras__": {},
  11845. "node": {
  11846. "__id__": 297
  11847. },
  11848. "_enabled": true,
  11849. "__prefab": null,
  11850. "clickEvents": [],
  11851. "_interactable": true,
  11852. "_transition": 2,
  11853. "_normalColor": {
  11854. "__type__": "cc.Color",
  11855. "r": 214,
  11856. "g": 214,
  11857. "b": 214,
  11858. "a": 255
  11859. },
  11860. "_hoverColor": {
  11861. "__type__": "cc.Color",
  11862. "r": 211,
  11863. "g": 211,
  11864. "b": 211,
  11865. "a": 255
  11866. },
  11867. "_pressedColor": {
  11868. "__type__": "cc.Color",
  11869. "r": 255,
  11870. "g": 255,
  11871. "b": 255,
  11872. "a": 255
  11873. },
  11874. "_disabledColor": {
  11875. "__type__": "cc.Color",
  11876. "r": 124,
  11877. "g": 124,
  11878. "b": 124,
  11879. "a": 255
  11880. },
  11881. "_normalSprite": {
  11882. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  11883. "__expectedType__": "cc.SpriteFrame"
  11884. },
  11885. "_hoverSprite": {
  11886. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  11887. "__expectedType__": "cc.SpriteFrame"
  11888. },
  11889. "_pressedSprite": {
  11890. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  11891. "__expectedType__": "cc.SpriteFrame"
  11892. },
  11893. "_disabledSprite": {
  11894. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  11895. "__expectedType__": "cc.SpriteFrame"
  11896. },
  11897. "_duration": 0.1,
  11898. "_zoomScale": 1.2,
  11899. "_target": {
  11900. "__id__": 297
  11901. },
  11902. "_id": "95np5jnqxK57xvg3nlQoXe"
  11903. },
  11904. {
  11905. "__type__": "cc.Node",
  11906. "_name": "btn_next",
  11907. "_objFlags": 0,
  11908. "__editorExtras__": {},
  11909. "_parent": {
  11910. "__id__": 284
  11911. },
  11912. "_children": [
  11913. {
  11914. "__id__": 305
  11915. }
  11916. ],
  11917. "_active": true,
  11918. "_components": [
  11919. {
  11920. "__id__": 308
  11921. },
  11922. {
  11923. "__id__": 309
  11924. },
  11925. {
  11926. "__id__": 310
  11927. }
  11928. ],
  11929. "_prefab": null,
  11930. "_lpos": {
  11931. "__type__": "cc.Vec3",
  11932. "x": 125.507,
  11933. "y": -372.419,
  11934. "z": 0
  11935. },
  11936. "_lrot": {
  11937. "__type__": "cc.Quat",
  11938. "x": 0,
  11939. "y": 0,
  11940. "z": 0,
  11941. "w": 1
  11942. },
  11943. "_lscale": {
  11944. "__type__": "cc.Vec3",
  11945. "x": 1,
  11946. "y": 1,
  11947. "z": 1
  11948. },
  11949. "_mobility": 0,
  11950. "_layer": 33554432,
  11951. "_euler": {
  11952. "__type__": "cc.Vec3",
  11953. "x": 0,
  11954. "y": 0,
  11955. "z": 0
  11956. },
  11957. "_id": "04VYW7n8RBr6X0t11n8cnJ"
  11958. },
  11959. {
  11960. "__type__": "cc.Node",
  11961. "_name": "Label",
  11962. "_objFlags": 0,
  11963. "__editorExtras__": {},
  11964. "_parent": {
  11965. "__id__": 304
  11966. },
  11967. "_children": [],
  11968. "_active": true,
  11969. "_components": [
  11970. {
  11971. "__id__": 306
  11972. },
  11973. {
  11974. "__id__": 307
  11975. }
  11976. ],
  11977. "_prefab": null,
  11978. "_lpos": {
  11979. "__type__": "cc.Vec3",
  11980. "x": 0,
  11981. "y": 0,
  11982. "z": 0
  11983. },
  11984. "_lrot": {
  11985. "__type__": "cc.Quat",
  11986. "x": 0,
  11987. "y": 0,
  11988. "z": 0,
  11989. "w": 1
  11990. },
  11991. "_lscale": {
  11992. "__type__": "cc.Vec3",
  11993. "x": 1,
  11994. "y": 1,
  11995. "z": 1
  11996. },
  11997. "_mobility": 0,
  11998. "_layer": 33554432,
  11999. "_euler": {
  12000. "__type__": "cc.Vec3",
  12001. "x": 0,
  12002. "y": 0,
  12003. "z": 0
  12004. },
  12005. "_id": "79engJAR9I8LNp7peOGeAN"
  12006. },
  12007. {
  12008. "__type__": "cc.UITransform",
  12009. "_name": "",
  12010. "_objFlags": 0,
  12011. "__editorExtras__": {},
  12012. "node": {
  12013. "__id__": 305
  12014. },
  12015. "_enabled": true,
  12016. "__prefab": null,
  12017. "_contentSize": {
  12018. "__type__": "cc.Size",
  12019. "width": 100,
  12020. "height": 40
  12021. },
  12022. "_anchorPoint": {
  12023. "__type__": "cc.Vec2",
  12024. "x": 0.5,
  12025. "y": 0.5
  12026. },
  12027. "_id": "f5pDDDW8BOsoWI24gtuEMP"
  12028. },
  12029. {
  12030. "__type__": "cc.Label",
  12031. "_name": "",
  12032. "_objFlags": 0,
  12033. "__editorExtras__": {},
  12034. "node": {
  12035. "__id__": 305
  12036. },
  12037. "_enabled": true,
  12038. "__prefab": null,
  12039. "_customMaterial": null,
  12040. "_srcBlendFactor": 2,
  12041. "_dstBlendFactor": 4,
  12042. "_color": {
  12043. "__type__": "cc.Color",
  12044. "r": 0,
  12045. "g": 0,
  12046. "b": 0,
  12047. "a": 255
  12048. },
  12049. "_string": "下一页",
  12050. "_horizontalAlign": 1,
  12051. "_verticalAlign": 1,
  12052. "_actualFontSize": 20,
  12053. "_fontSize": 20,
  12054. "_fontFamily": "Arial",
  12055. "_lineHeight": 40,
  12056. "_overflow": 1,
  12057. "_enableWrapText": false,
  12058. "_font": null,
  12059. "_isSystemFontUsed": true,
  12060. "_spacingX": 0,
  12061. "_isItalic": false,
  12062. "_isBold": false,
  12063. "_isUnderline": false,
  12064. "_underlineHeight": 2,
  12065. "_cacheMode": 0,
  12066. "_id": "54ddcOE1NHTYSLmwpLAjB2"
  12067. },
  12068. {
  12069. "__type__": "cc.UITransform",
  12070. "_name": "",
  12071. "_objFlags": 0,
  12072. "__editorExtras__": {},
  12073. "node": {
  12074. "__id__": 304
  12075. },
  12076. "_enabled": true,
  12077. "__prefab": null,
  12078. "_contentSize": {
  12079. "__type__": "cc.Size",
  12080. "width": 100,
  12081. "height": 40
  12082. },
  12083. "_anchorPoint": {
  12084. "__type__": "cc.Vec2",
  12085. "x": 0.5,
  12086. "y": 0.5
  12087. },
  12088. "_id": "7eY553Ei9CfL3JRmc06Q0p"
  12089. },
  12090. {
  12091. "__type__": "cc.Sprite",
  12092. "_name": "",
  12093. "_objFlags": 0,
  12094. "__editorExtras__": {},
  12095. "node": {
  12096. "__id__": 304
  12097. },
  12098. "_enabled": true,
  12099. "__prefab": null,
  12100. "_customMaterial": null,
  12101. "_srcBlendFactor": 2,
  12102. "_dstBlendFactor": 4,
  12103. "_color": {
  12104. "__type__": "cc.Color",
  12105. "r": 255,
  12106. "g": 255,
  12107. "b": 255,
  12108. "a": 255
  12109. },
  12110. "_spriteFrame": {
  12111. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  12112. "__expectedType__": "cc.SpriteFrame"
  12113. },
  12114. "_type": 1,
  12115. "_fillType": 0,
  12116. "_sizeMode": 0,
  12117. "_fillCenter": {
  12118. "__type__": "cc.Vec2",
  12119. "x": 0,
  12120. "y": 0
  12121. },
  12122. "_fillStart": 0,
  12123. "_fillRange": 0,
  12124. "_isTrimmedMode": true,
  12125. "_useGrayscale": false,
  12126. "_atlas": null,
  12127. "_id": "93ZwBYCNtMZIo+Rj6wtasR"
  12128. },
  12129. {
  12130. "__type__": "cc.Button",
  12131. "_name": "",
  12132. "_objFlags": 0,
  12133. "__editorExtras__": {},
  12134. "node": {
  12135. "__id__": 304
  12136. },
  12137. "_enabled": true,
  12138. "__prefab": null,
  12139. "clickEvents": [],
  12140. "_interactable": true,
  12141. "_transition": 2,
  12142. "_normalColor": {
  12143. "__type__": "cc.Color",
  12144. "r": 214,
  12145. "g": 214,
  12146. "b": 214,
  12147. "a": 255
  12148. },
  12149. "_hoverColor": {
  12150. "__type__": "cc.Color",
  12151. "r": 211,
  12152. "g": 211,
  12153. "b": 211,
  12154. "a": 255
  12155. },
  12156. "_pressedColor": {
  12157. "__type__": "cc.Color",
  12158. "r": 255,
  12159. "g": 255,
  12160. "b": 255,
  12161. "a": 255
  12162. },
  12163. "_disabledColor": {
  12164. "__type__": "cc.Color",
  12165. "r": 124,
  12166. "g": 124,
  12167. "b": 124,
  12168. "a": 255
  12169. },
  12170. "_normalSprite": {
  12171. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  12172. "__expectedType__": "cc.SpriteFrame"
  12173. },
  12174. "_hoverSprite": {
  12175. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  12176. "__expectedType__": "cc.SpriteFrame"
  12177. },
  12178. "_pressedSprite": {
  12179. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  12180. "__expectedType__": "cc.SpriteFrame"
  12181. },
  12182. "_disabledSprite": {
  12183. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  12184. "__expectedType__": "cc.SpriteFrame"
  12185. },
  12186. "_duration": 0.1,
  12187. "_zoomScale": 1.2,
  12188. "_target": {
  12189. "__id__": 304
  12190. },
  12191. "_id": "43foMjl1ZKv7lY5ticXUw4"
  12192. },
  12193. {
  12194. "__type__": "cc.Node",
  12195. "_name": "EditBox",
  12196. "_objFlags": 0,
  12197. "__editorExtras__": {},
  12198. "_parent": {
  12199. "__id__": 284
  12200. },
  12201. "_children": [
  12202. {
  12203. "__id__": 312
  12204. },
  12205. {
  12206. "__id__": 315
  12207. }
  12208. ],
  12209. "_active": true,
  12210. "_components": [
  12211. {
  12212. "__id__": 318
  12213. },
  12214. {
  12215. "__id__": 319
  12216. },
  12217. {
  12218. "__id__": 320
  12219. }
  12220. ],
  12221. "_prefab": null,
  12222. "_lpos": {
  12223. "__type__": "cc.Vec3",
  12224. "x": -12.241,
  12225. "y": 340.959,
  12226. "z": 0
  12227. },
  12228. "_lrot": {
  12229. "__type__": "cc.Quat",
  12230. "x": 0,
  12231. "y": 0,
  12232. "z": 0,
  12233. "w": 1
  12234. },
  12235. "_lscale": {
  12236. "__type__": "cc.Vec3",
  12237. "x": 1,
  12238. "y": 1,
  12239. "z": 1
  12240. },
  12241. "_mobility": 0,
  12242. "_layer": 33554432,
  12243. "_euler": {
  12244. "__type__": "cc.Vec3",
  12245. "x": 0,
  12246. "y": 0,
  12247. "z": 0
  12248. },
  12249. "_id": "ealyB1poxLr4b/yLpvhMFI"
  12250. },
  12251. {
  12252. "__type__": "cc.Node",
  12253. "_name": "TEXT_LABEL",
  12254. "_objFlags": 0,
  12255. "__editorExtras__": {},
  12256. "_parent": {
  12257. "__id__": 311
  12258. },
  12259. "_children": [],
  12260. "_active": false,
  12261. "_components": [
  12262. {
  12263. "__id__": 313
  12264. },
  12265. {
  12266. "__id__": 314
  12267. }
  12268. ],
  12269. "_prefab": null,
  12270. "_lpos": {
  12271. "__type__": "cc.Vec3",
  12272. "x": -48,
  12273. "y": 20,
  12274. "z": 0
  12275. },
  12276. "_lrot": {
  12277. "__type__": "cc.Quat",
  12278. "x": 0,
  12279. "y": 0,
  12280. "z": 0,
  12281. "w": 1
  12282. },
  12283. "_lscale": {
  12284. "__type__": "cc.Vec3",
  12285. "x": 1,
  12286. "y": 1,
  12287. "z": 1
  12288. },
  12289. "_mobility": 0,
  12290. "_layer": 33554432,
  12291. "_euler": {
  12292. "__type__": "cc.Vec3",
  12293. "x": 0,
  12294. "y": 0,
  12295. "z": 0
  12296. },
  12297. "_id": "9acIu881VIdoQp3w9Z7RdU"
  12298. },
  12299. {
  12300. "__type__": "cc.UITransform",
  12301. "_name": "",
  12302. "_objFlags": 0,
  12303. "__editorExtras__": {},
  12304. "node": {
  12305. "__id__": 312
  12306. },
  12307. "_enabled": true,
  12308. "__prefab": null,
  12309. "_contentSize": {
  12310. "__type__": "cc.Size",
  12311. "width": 98,
  12312. "height": 40
  12313. },
  12314. "_anchorPoint": {
  12315. "__type__": "cc.Vec2",
  12316. "x": 0,
  12317. "y": 1
  12318. },
  12319. "_id": "9fi7Qo8ZlJFbK62tDiSjvb"
  12320. },
  12321. {
  12322. "__type__": "cc.Label",
  12323. "_name": "",
  12324. "_objFlags": 0,
  12325. "__editorExtras__": {},
  12326. "node": {
  12327. "__id__": 312
  12328. },
  12329. "_enabled": true,
  12330. "__prefab": null,
  12331. "_customMaterial": null,
  12332. "_srcBlendFactor": 2,
  12333. "_dstBlendFactor": 4,
  12334. "_color": {
  12335. "__type__": "cc.Color",
  12336. "r": 255,
  12337. "g": 255,
  12338. "b": 255,
  12339. "a": 255
  12340. },
  12341. "_string": "",
  12342. "_horizontalAlign": 0,
  12343. "_verticalAlign": 1,
  12344. "_actualFontSize": 20,
  12345. "_fontSize": 20,
  12346. "_fontFamily": "Arial",
  12347. "_lineHeight": 40,
  12348. "_overflow": 1,
  12349. "_enableWrapText": false,
  12350. "_font": null,
  12351. "_isSystemFontUsed": true,
  12352. "_spacingX": 0,
  12353. "_isItalic": false,
  12354. "_isBold": false,
  12355. "_isUnderline": false,
  12356. "_underlineHeight": 2,
  12357. "_cacheMode": 0,
  12358. "_id": "02pLjWHiZFcZA788iHB8Nm"
  12359. },
  12360. {
  12361. "__type__": "cc.Node",
  12362. "_name": "PLACEHOLDER_LABEL",
  12363. "_objFlags": 0,
  12364. "__editorExtras__": {},
  12365. "_parent": {
  12366. "__id__": 311
  12367. },
  12368. "_children": [],
  12369. "_active": true,
  12370. "_components": [
  12371. {
  12372. "__id__": 316
  12373. },
  12374. {
  12375. "__id__": 317
  12376. }
  12377. ],
  12378. "_prefab": null,
  12379. "_lpos": {
  12380. "__type__": "cc.Vec3",
  12381. "x": -48,
  12382. "y": 20,
  12383. "z": 0
  12384. },
  12385. "_lrot": {
  12386. "__type__": "cc.Quat",
  12387. "x": 0,
  12388. "y": 0,
  12389. "z": 0,
  12390. "w": 1
  12391. },
  12392. "_lscale": {
  12393. "__type__": "cc.Vec3",
  12394. "x": 1,
  12395. "y": 1,
  12396. "z": 1
  12397. },
  12398. "_mobility": 0,
  12399. "_layer": 33554432,
  12400. "_euler": {
  12401. "__type__": "cc.Vec3",
  12402. "x": 0,
  12403. "y": 0,
  12404. "z": 0
  12405. },
  12406. "_id": "b7iu/POkNPHY8RomgKvcI7"
  12407. },
  12408. {
  12409. "__type__": "cc.UITransform",
  12410. "_name": "",
  12411. "_objFlags": 0,
  12412. "__editorExtras__": {},
  12413. "node": {
  12414. "__id__": 315
  12415. },
  12416. "_enabled": true,
  12417. "__prefab": null,
  12418. "_contentSize": {
  12419. "__type__": "cc.Size",
  12420. "width": 98,
  12421. "height": 40
  12422. },
  12423. "_anchorPoint": {
  12424. "__type__": "cc.Vec2",
  12425. "x": 0,
  12426. "y": 1
  12427. },
  12428. "_id": "7f3VlF2XJJxYvU19K3eftJ"
  12429. },
  12430. {
  12431. "__type__": "cc.Label",
  12432. "_name": "",
  12433. "_objFlags": 0,
  12434. "__editorExtras__": {},
  12435. "node": {
  12436. "__id__": 315
  12437. },
  12438. "_enabled": true,
  12439. "__prefab": null,
  12440. "_customMaterial": null,
  12441. "_srcBlendFactor": 2,
  12442. "_dstBlendFactor": 4,
  12443. "_color": {
  12444. "__type__": "cc.Color",
  12445. "r": 0,
  12446. "g": 0,
  12447. "b": 0,
  12448. "a": 255
  12449. },
  12450. "_string": "输入页数",
  12451. "_horizontalAlign": 0,
  12452. "_verticalAlign": 1,
  12453. "_actualFontSize": 20,
  12454. "_fontSize": 20,
  12455. "_fontFamily": "Arial",
  12456. "_lineHeight": 40,
  12457. "_overflow": 1,
  12458. "_enableWrapText": false,
  12459. "_font": null,
  12460. "_isSystemFontUsed": true,
  12461. "_spacingX": 0,
  12462. "_isItalic": false,
  12463. "_isBold": false,
  12464. "_isUnderline": false,
  12465. "_underlineHeight": 2,
  12466. "_cacheMode": 0,
  12467. "_id": "d9pEz2gdFBXp+LrRbzLZ3b"
  12468. },
  12469. {
  12470. "__type__": "cc.UITransform",
  12471. "_name": "",
  12472. "_objFlags": 0,
  12473. "__editorExtras__": {},
  12474. "node": {
  12475. "__id__": 311
  12476. },
  12477. "_enabled": true,
  12478. "__prefab": null,
  12479. "_contentSize": {
  12480. "__type__": "cc.Size",
  12481. "width": 100,
  12482. "height": 40
  12483. },
  12484. "_anchorPoint": {
  12485. "__type__": "cc.Vec2",
  12486. "x": 0.5,
  12487. "y": 0.5
  12488. },
  12489. "_id": "f7KvioW7VBf794Ypr/lavk"
  12490. },
  12491. {
  12492. "__type__": "cc.Sprite",
  12493. "_name": "",
  12494. "_objFlags": 0,
  12495. "__editorExtras__": {},
  12496. "node": {
  12497. "__id__": 311
  12498. },
  12499. "_enabled": true,
  12500. "__prefab": null,
  12501. "_customMaterial": null,
  12502. "_srcBlendFactor": 2,
  12503. "_dstBlendFactor": 4,
  12504. "_color": {
  12505. "__type__": "cc.Color",
  12506. "r": 255,
  12507. "g": 255,
  12508. "b": 255,
  12509. "a": 255
  12510. },
  12511. "_spriteFrame": {
  12512. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  12513. "__expectedType__": "cc.SpriteFrame"
  12514. },
  12515. "_type": 1,
  12516. "_fillType": 0,
  12517. "_sizeMode": 0,
  12518. "_fillCenter": {
  12519. "__type__": "cc.Vec2",
  12520. "x": 0,
  12521. "y": 0
  12522. },
  12523. "_fillStart": 0,
  12524. "_fillRange": 0,
  12525. "_isTrimmedMode": true,
  12526. "_useGrayscale": false,
  12527. "_atlas": null,
  12528. "_id": "9bg5nG7JBOl6PgD+HAsT12"
  12529. },
  12530. {
  12531. "__type__": "cc.EditBox",
  12532. "_name": "",
  12533. "_objFlags": 0,
  12534. "__editorExtras__": {},
  12535. "node": {
  12536. "__id__": 311
  12537. },
  12538. "_enabled": true,
  12539. "__prefab": null,
  12540. "editingDidBegan": [],
  12541. "textChanged": [],
  12542. "editingDidEnded": [],
  12543. "editingReturn": [],
  12544. "_textLabel": {
  12545. "__id__": 314
  12546. },
  12547. "_placeholderLabel": {
  12548. "__id__": 317
  12549. },
  12550. "_returnType": 0,
  12551. "_string": "",
  12552. "_tabIndex": 0,
  12553. "_backgroundImage": {
  12554. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  12555. "__expectedType__": "cc.SpriteFrame"
  12556. },
  12557. "_inputFlag": 5,
  12558. "_inputMode": 3,
  12559. "_maxLength": 8,
  12560. "_id": "61Bp7EWX1F4oCY3vx6q7BH"
  12561. },
  12562. {
  12563. "__type__": "cc.Node",
  12564. "_name": "btn_search",
  12565. "_objFlags": 0,
  12566. "__editorExtras__": {},
  12567. "_parent": {
  12568. "__id__": 284
  12569. },
  12570. "_children": [
  12571. {
  12572. "__id__": 322
  12573. }
  12574. ],
  12575. "_active": true,
  12576. "_components": [
  12577. {
  12578. "__id__": 325
  12579. },
  12580. {
  12581. "__id__": 326
  12582. },
  12583. {
  12584. "__id__": 327
  12585. }
  12586. ],
  12587. "_prefab": null,
  12588. "_lpos": {
  12589. "__type__": "cc.Vec3",
  12590. "x": 125.507,
  12591. "y": 340.958,
  12592. "z": 0
  12593. },
  12594. "_lrot": {
  12595. "__type__": "cc.Quat",
  12596. "x": 0,
  12597. "y": 0,
  12598. "z": 0,
  12599. "w": 1
  12600. },
  12601. "_lscale": {
  12602. "__type__": "cc.Vec3",
  12603. "x": 1,
  12604. "y": 1,
  12605. "z": 1
  12606. },
  12607. "_mobility": 0,
  12608. "_layer": 33554432,
  12609. "_euler": {
  12610. "__type__": "cc.Vec3",
  12611. "x": 0,
  12612. "y": 0,
  12613. "z": 0
  12614. },
  12615. "_id": "8bsXAR8n9MQq7w99QHJnDB"
  12616. },
  12617. {
  12618. "__type__": "cc.Node",
  12619. "_name": "Label",
  12620. "_objFlags": 0,
  12621. "__editorExtras__": {},
  12622. "_parent": {
  12623. "__id__": 321
  12624. },
  12625. "_children": [],
  12626. "_active": true,
  12627. "_components": [
  12628. {
  12629. "__id__": 323
  12630. },
  12631. {
  12632. "__id__": 324
  12633. }
  12634. ],
  12635. "_prefab": null,
  12636. "_lpos": {
  12637. "__type__": "cc.Vec3",
  12638. "x": 0,
  12639. "y": 0,
  12640. "z": 0
  12641. },
  12642. "_lrot": {
  12643. "__type__": "cc.Quat",
  12644. "x": 0,
  12645. "y": 0,
  12646. "z": 0,
  12647. "w": 1
  12648. },
  12649. "_lscale": {
  12650. "__type__": "cc.Vec3",
  12651. "x": 1,
  12652. "y": 1,
  12653. "z": 1
  12654. },
  12655. "_mobility": 0,
  12656. "_layer": 33554432,
  12657. "_euler": {
  12658. "__type__": "cc.Vec3",
  12659. "x": 0,
  12660. "y": 0,
  12661. "z": 0
  12662. },
  12663. "_id": "9aX3egdDlKHrPGVNW5rLsN"
  12664. },
  12665. {
  12666. "__type__": "cc.UITransform",
  12667. "_name": "",
  12668. "_objFlags": 0,
  12669. "__editorExtras__": {},
  12670. "node": {
  12671. "__id__": 322
  12672. },
  12673. "_enabled": true,
  12674. "__prefab": null,
  12675. "_contentSize": {
  12676. "__type__": "cc.Size",
  12677. "width": 100,
  12678. "height": 40
  12679. },
  12680. "_anchorPoint": {
  12681. "__type__": "cc.Vec2",
  12682. "x": 0.5,
  12683. "y": 0.5
  12684. },
  12685. "_id": "d77uG0jl5AJpk0VYRGauac"
  12686. },
  12687. {
  12688. "__type__": "cc.Label",
  12689. "_name": "",
  12690. "_objFlags": 0,
  12691. "__editorExtras__": {},
  12692. "node": {
  12693. "__id__": 322
  12694. },
  12695. "_enabled": true,
  12696. "__prefab": null,
  12697. "_customMaterial": null,
  12698. "_srcBlendFactor": 2,
  12699. "_dstBlendFactor": 4,
  12700. "_color": {
  12701. "__type__": "cc.Color",
  12702. "r": 0,
  12703. "g": 0,
  12704. "b": 0,
  12705. "a": 255
  12706. },
  12707. "_string": "搜索",
  12708. "_horizontalAlign": 1,
  12709. "_verticalAlign": 1,
  12710. "_actualFontSize": 20,
  12711. "_fontSize": 20,
  12712. "_fontFamily": "Arial",
  12713. "_lineHeight": 40,
  12714. "_overflow": 1,
  12715. "_enableWrapText": false,
  12716. "_font": null,
  12717. "_isSystemFontUsed": true,
  12718. "_spacingX": 0,
  12719. "_isItalic": false,
  12720. "_isBold": false,
  12721. "_isUnderline": false,
  12722. "_underlineHeight": 2,
  12723. "_cacheMode": 0,
  12724. "_id": "34B30zsjpGcpY4azarSb+D"
  12725. },
  12726. {
  12727. "__type__": "cc.UITransform",
  12728. "_name": "",
  12729. "_objFlags": 0,
  12730. "__editorExtras__": {},
  12731. "node": {
  12732. "__id__": 321
  12733. },
  12734. "_enabled": true,
  12735. "__prefab": null,
  12736. "_contentSize": {
  12737. "__type__": "cc.Size",
  12738. "width": 100,
  12739. "height": 40
  12740. },
  12741. "_anchorPoint": {
  12742. "__type__": "cc.Vec2",
  12743. "x": 0.5,
  12744. "y": 0.5
  12745. },
  12746. "_id": "84/R8S755KZrZdqZ9mYC/I"
  12747. },
  12748. {
  12749. "__type__": "cc.Sprite",
  12750. "_name": "",
  12751. "_objFlags": 0,
  12752. "__editorExtras__": {},
  12753. "node": {
  12754. "__id__": 321
  12755. },
  12756. "_enabled": true,
  12757. "__prefab": null,
  12758. "_customMaterial": null,
  12759. "_srcBlendFactor": 2,
  12760. "_dstBlendFactor": 4,
  12761. "_color": {
  12762. "__type__": "cc.Color",
  12763. "r": 255,
  12764. "g": 255,
  12765. "b": 255,
  12766. "a": 255
  12767. },
  12768. "_spriteFrame": {
  12769. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  12770. "__expectedType__": "cc.SpriteFrame"
  12771. },
  12772. "_type": 1,
  12773. "_fillType": 0,
  12774. "_sizeMode": 0,
  12775. "_fillCenter": {
  12776. "__type__": "cc.Vec2",
  12777. "x": 0,
  12778. "y": 0
  12779. },
  12780. "_fillStart": 0,
  12781. "_fillRange": 0,
  12782. "_isTrimmedMode": true,
  12783. "_useGrayscale": false,
  12784. "_atlas": null,
  12785. "_id": "2cLPUbJlZPn5KPIXwPPCz2"
  12786. },
  12787. {
  12788. "__type__": "cc.Button",
  12789. "_name": "",
  12790. "_objFlags": 0,
  12791. "__editorExtras__": {},
  12792. "node": {
  12793. "__id__": 321
  12794. },
  12795. "_enabled": true,
  12796. "__prefab": null,
  12797. "clickEvents": [],
  12798. "_interactable": true,
  12799. "_transition": 2,
  12800. "_normalColor": {
  12801. "__type__": "cc.Color",
  12802. "r": 214,
  12803. "g": 214,
  12804. "b": 214,
  12805. "a": 255
  12806. },
  12807. "_hoverColor": {
  12808. "__type__": "cc.Color",
  12809. "r": 211,
  12810. "g": 211,
  12811. "b": 211,
  12812. "a": 255
  12813. },
  12814. "_pressedColor": {
  12815. "__type__": "cc.Color",
  12816. "r": 255,
  12817. "g": 255,
  12818. "b": 255,
  12819. "a": 255
  12820. },
  12821. "_disabledColor": {
  12822. "__type__": "cc.Color",
  12823. "r": 124,
  12824. "g": 124,
  12825. "b": 124,
  12826. "a": 255
  12827. },
  12828. "_normalSprite": {
  12829. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  12830. "__expectedType__": "cc.SpriteFrame"
  12831. },
  12832. "_hoverSprite": {
  12833. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  12834. "__expectedType__": "cc.SpriteFrame"
  12835. },
  12836. "_pressedSprite": {
  12837. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  12838. "__expectedType__": "cc.SpriteFrame"
  12839. },
  12840. "_disabledSprite": {
  12841. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  12842. "__expectedType__": "cc.SpriteFrame"
  12843. },
  12844. "_duration": 0.1,
  12845. "_zoomScale": 1.2,
  12846. "_target": {
  12847. "__id__": 321
  12848. },
  12849. "_id": "5cJbv6jAxF5bQZpn7tzFzA"
  12850. },
  12851. {
  12852. "__type__": "cc.Node",
  12853. "_name": "Label",
  12854. "_objFlags": 0,
  12855. "__editorExtras__": {},
  12856. "_parent": {
  12857. "__id__": 284
  12858. },
  12859. "_children": [],
  12860. "_active": true,
  12861. "_components": [
  12862. {
  12863. "__id__": 329
  12864. },
  12865. {
  12866. "__id__": 330
  12867. }
  12868. ],
  12869. "_prefab": null,
  12870. "_lpos": {
  12871. "__type__": "cc.Vec3",
  12872. "x": 0,
  12873. "y": -332.556,
  12874. "z": 0
  12875. },
  12876. "_lrot": {
  12877. "__type__": "cc.Quat",
  12878. "x": 0,
  12879. "y": 0,
  12880. "z": 0,
  12881. "w": 1
  12882. },
  12883. "_lscale": {
  12884. "__type__": "cc.Vec3",
  12885. "x": 1,
  12886. "y": 1,
  12887. "z": 1
  12888. },
  12889. "_mobility": 0,
  12890. "_layer": 33554432,
  12891. "_euler": {
  12892. "__type__": "cc.Vec3",
  12893. "x": 0,
  12894. "y": 0,
  12895. "z": 0
  12896. },
  12897. "_id": "47HsExCL9JYKFeQKM+yTac"
  12898. },
  12899. {
  12900. "__type__": "cc.UITransform",
  12901. "_name": "",
  12902. "_objFlags": 0,
  12903. "__editorExtras__": {},
  12904. "node": {
  12905. "__id__": 328
  12906. },
  12907. "_enabled": true,
  12908. "__prefab": null,
  12909. "_contentSize": {
  12910. "__type__": "cc.Size",
  12911. "width": 91.123046875,
  12912. "height": 50.4
  12913. },
  12914. "_anchorPoint": {
  12915. "__type__": "cc.Vec2",
  12916. "x": 0.5,
  12917. "y": 0.5
  12918. },
  12919. "_id": "cbvONBT09Nj5YuZQpC4JQh"
  12920. },
  12921. {
  12922. "__type__": "cc.Label",
  12923. "_name": "",
  12924. "_objFlags": 0,
  12925. "__editorExtras__": {},
  12926. "node": {
  12927. "__id__": 328
  12928. },
  12929. "_enabled": true,
  12930. "__prefab": null,
  12931. "_customMaterial": null,
  12932. "_srcBlendFactor": 2,
  12933. "_dstBlendFactor": 4,
  12934. "_color": {
  12935. "__type__": "cc.Color",
  12936. "r": 0,
  12937. "g": 0,
  12938. "b": 0,
  12939. "a": 255
  12940. },
  12941. "_string": "当前第1页",
  12942. "_horizontalAlign": 1,
  12943. "_verticalAlign": 1,
  12944. "_actualFontSize": 20,
  12945. "_fontSize": 20,
  12946. "_fontFamily": "Arial",
  12947. "_lineHeight": 40,
  12948. "_overflow": 0,
  12949. "_enableWrapText": true,
  12950. "_font": null,
  12951. "_isSystemFontUsed": true,
  12952. "_spacingX": 0,
  12953. "_isItalic": false,
  12954. "_isBold": false,
  12955. "_isUnderline": false,
  12956. "_underlineHeight": 2,
  12957. "_cacheMode": 0,
  12958. "_id": "6eIh4U0n5Fyar4xg34Uz+5"
  12959. },
  12960. {
  12961. "__type__": "cc.Node",
  12962. "_name": "btn_back",
  12963. "_objFlags": 0,
  12964. "__editorExtras__": {},
  12965. "_parent": {
  12966. "__id__": 284
  12967. },
  12968. "_children": [
  12969. {
  12970. "__id__": 332
  12971. }
  12972. ],
  12973. "_active": true,
  12974. "_components": [
  12975. {
  12976. "__id__": 335
  12977. },
  12978. {
  12979. "__id__": 336
  12980. },
  12981. {
  12982. "__id__": 337
  12983. }
  12984. ],
  12985. "_prefab": null,
  12986. "_lpos": {
  12987. "__type__": "cc.Vec3",
  12988. "x": -135.813,
  12989. "y": 340.958,
  12990. "z": 0
  12991. },
  12992. "_lrot": {
  12993. "__type__": "cc.Quat",
  12994. "x": 0,
  12995. "y": 0,
  12996. "z": 0,
  12997. "w": 1
  12998. },
  12999. "_lscale": {
  13000. "__type__": "cc.Vec3",
  13001. "x": 1,
  13002. "y": 1,
  13003. "z": 1
  13004. },
  13005. "_mobility": 0,
  13006. "_layer": 33554432,
  13007. "_euler": {
  13008. "__type__": "cc.Vec3",
  13009. "x": 0,
  13010. "y": 0,
  13011. "z": 0
  13012. },
  13013. "_id": "1eJuIq6TdMZ73lpHJbZyek"
  13014. },
  13015. {
  13016. "__type__": "cc.Node",
  13017. "_name": "Label",
  13018. "_objFlags": 0,
  13019. "__editorExtras__": {},
  13020. "_parent": {
  13021. "__id__": 331
  13022. },
  13023. "_children": [],
  13024. "_active": true,
  13025. "_components": [
  13026. {
  13027. "__id__": 333
  13028. },
  13029. {
  13030. "__id__": 334
  13031. }
  13032. ],
  13033. "_prefab": null,
  13034. "_lpos": {
  13035. "__type__": "cc.Vec3",
  13036. "x": 0,
  13037. "y": 0,
  13038. "z": 0
  13039. },
  13040. "_lrot": {
  13041. "__type__": "cc.Quat",
  13042. "x": 0,
  13043. "y": 0,
  13044. "z": 0,
  13045. "w": 1
  13046. },
  13047. "_lscale": {
  13048. "__type__": "cc.Vec3",
  13049. "x": 1,
  13050. "y": 1,
  13051. "z": 1
  13052. },
  13053. "_mobility": 0,
  13054. "_layer": 33554432,
  13055. "_euler": {
  13056. "__type__": "cc.Vec3",
  13057. "x": 0,
  13058. "y": 0,
  13059. "z": 0
  13060. },
  13061. "_id": "9fNfNJxZJLgpeRPrel17Mk"
  13062. },
  13063. {
  13064. "__type__": "cc.UITransform",
  13065. "_name": "",
  13066. "_objFlags": 0,
  13067. "__editorExtras__": {},
  13068. "node": {
  13069. "__id__": 332
  13070. },
  13071. "_enabled": true,
  13072. "__prefab": null,
  13073. "_contentSize": {
  13074. "__type__": "cc.Size",
  13075. "width": 100,
  13076. "height": 40
  13077. },
  13078. "_anchorPoint": {
  13079. "__type__": "cc.Vec2",
  13080. "x": 0.5,
  13081. "y": 0.5
  13082. },
  13083. "_id": "d7XD9fp5FOnYR6RFqBkDEV"
  13084. },
  13085. {
  13086. "__type__": "cc.Label",
  13087. "_name": "",
  13088. "_objFlags": 0,
  13089. "__editorExtras__": {},
  13090. "node": {
  13091. "__id__": 332
  13092. },
  13093. "_enabled": true,
  13094. "__prefab": null,
  13095. "_customMaterial": null,
  13096. "_srcBlendFactor": 2,
  13097. "_dstBlendFactor": 4,
  13098. "_color": {
  13099. "__type__": "cc.Color",
  13100. "r": 0,
  13101. "g": 0,
  13102. "b": 0,
  13103. "a": 255
  13104. },
  13105. "_string": "返回",
  13106. "_horizontalAlign": 1,
  13107. "_verticalAlign": 1,
  13108. "_actualFontSize": 20,
  13109. "_fontSize": 20,
  13110. "_fontFamily": "Arial",
  13111. "_lineHeight": 40,
  13112. "_overflow": 1,
  13113. "_enableWrapText": false,
  13114. "_font": null,
  13115. "_isSystemFontUsed": true,
  13116. "_spacingX": 0,
  13117. "_isItalic": false,
  13118. "_isBold": false,
  13119. "_isUnderline": false,
  13120. "_underlineHeight": 2,
  13121. "_cacheMode": 0,
  13122. "_id": "12taisOO1LmJC+/VyN1GJh"
  13123. },
  13124. {
  13125. "__type__": "cc.UITransform",
  13126. "_name": "",
  13127. "_objFlags": 0,
  13128. "__editorExtras__": {},
  13129. "node": {
  13130. "__id__": 331
  13131. },
  13132. "_enabled": true,
  13133. "__prefab": null,
  13134. "_contentSize": {
  13135. "__type__": "cc.Size",
  13136. "width": 100,
  13137. "height": 40
  13138. },
  13139. "_anchorPoint": {
  13140. "__type__": "cc.Vec2",
  13141. "x": 0.5,
  13142. "y": 0.5
  13143. },
  13144. "_id": "38CfCXdSpO3adyZJc6gcNH"
  13145. },
  13146. {
  13147. "__type__": "cc.Sprite",
  13148. "_name": "",
  13149. "_objFlags": 0,
  13150. "__editorExtras__": {},
  13151. "node": {
  13152. "__id__": 331
  13153. },
  13154. "_enabled": true,
  13155. "__prefab": null,
  13156. "_customMaterial": null,
  13157. "_srcBlendFactor": 2,
  13158. "_dstBlendFactor": 4,
  13159. "_color": {
  13160. "__type__": "cc.Color",
  13161. "r": 255,
  13162. "g": 255,
  13163. "b": 255,
  13164. "a": 255
  13165. },
  13166. "_spriteFrame": {
  13167. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  13168. "__expectedType__": "cc.SpriteFrame"
  13169. },
  13170. "_type": 1,
  13171. "_fillType": 0,
  13172. "_sizeMode": 0,
  13173. "_fillCenter": {
  13174. "__type__": "cc.Vec2",
  13175. "x": 0,
  13176. "y": 0
  13177. },
  13178. "_fillStart": 0,
  13179. "_fillRange": 0,
  13180. "_isTrimmedMode": true,
  13181. "_useGrayscale": false,
  13182. "_atlas": null,
  13183. "_id": "3d8fdmF7BBP6lWpYFy1R/Y"
  13184. },
  13185. {
  13186. "__type__": "cc.Button",
  13187. "_name": "",
  13188. "_objFlags": 0,
  13189. "__editorExtras__": {},
  13190. "node": {
  13191. "__id__": 331
  13192. },
  13193. "_enabled": true,
  13194. "__prefab": null,
  13195. "clickEvents": [],
  13196. "_interactable": true,
  13197. "_transition": 2,
  13198. "_normalColor": {
  13199. "__type__": "cc.Color",
  13200. "r": 214,
  13201. "g": 214,
  13202. "b": 214,
  13203. "a": 255
  13204. },
  13205. "_hoverColor": {
  13206. "__type__": "cc.Color",
  13207. "r": 211,
  13208. "g": 211,
  13209. "b": 211,
  13210. "a": 255
  13211. },
  13212. "_pressedColor": {
  13213. "__type__": "cc.Color",
  13214. "r": 255,
  13215. "g": 255,
  13216. "b": 255,
  13217. "a": 255
  13218. },
  13219. "_disabledColor": {
  13220. "__type__": "cc.Color",
  13221. "r": 124,
  13222. "g": 124,
  13223. "b": 124,
  13224. "a": 255
  13225. },
  13226. "_normalSprite": {
  13227. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  13228. "__expectedType__": "cc.SpriteFrame"
  13229. },
  13230. "_hoverSprite": {
  13231. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  13232. "__expectedType__": "cc.SpriteFrame"
  13233. },
  13234. "_pressedSprite": {
  13235. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  13236. "__expectedType__": "cc.SpriteFrame"
  13237. },
  13238. "_disabledSprite": {
  13239. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  13240. "__expectedType__": "cc.SpriteFrame"
  13241. },
  13242. "_duration": 0.1,
  13243. "_zoomScale": 1.2,
  13244. "_target": {
  13245. "__id__": 331
  13246. },
  13247. "_id": "d6wlIbe51Ppr5TVu5uYOsI"
  13248. },
  13249. {
  13250. "__type__": "cc.UITransform",
  13251. "_name": "",
  13252. "_objFlags": 0,
  13253. "__editorExtras__": {},
  13254. "node": {
  13255. "__id__": 284
  13256. },
  13257. "_enabled": true,
  13258. "__prefab": null,
  13259. "_contentSize": {
  13260. "__type__": "cc.Size",
  13261. "width": 1920,
  13262. "height": 1080
  13263. },
  13264. "_anchorPoint": {
  13265. "__type__": "cc.Vec2",
  13266. "x": 0.5,
  13267. "y": 0.5
  13268. },
  13269. "_id": "f9LbkxNZBOkJzwNJN9LuVv"
  13270. },
  13271. {
  13272. "__type__": "cc.Widget",
  13273. "_name": "",
  13274. "_objFlags": 0,
  13275. "__editorExtras__": {},
  13276. "node": {
  13277. "__id__": 284
  13278. },
  13279. "_enabled": true,
  13280. "__prefab": null,
  13281. "_alignFlags": 45,
  13282. "_target": null,
  13283. "_left": 0,
  13284. "_right": 0,
  13285. "_top": 0,
  13286. "_bottom": 0,
  13287. "_horizontalCenter": 0,
  13288. "_verticalCenter": 0,
  13289. "_isAbsLeft": true,
  13290. "_isAbsRight": true,
  13291. "_isAbsTop": true,
  13292. "_isAbsBottom": true,
  13293. "_isAbsHorizontalCenter": true,
  13294. "_isAbsVerticalCenter": true,
  13295. "_originalWidth": 100,
  13296. "_originalHeight": 100,
  13297. "_alignMode": 2,
  13298. "_lockFlags": 0,
  13299. "_id": "b6mtAtfvpFVq1xNswWSRLG"
  13300. },
  13301. {
  13302. "__type__": "cc.Sprite",
  13303. "_name": "",
  13304. "_objFlags": 0,
  13305. "__editorExtras__": {},
  13306. "node": {
  13307. "__id__": 284
  13308. },
  13309. "_enabled": true,
  13310. "__prefab": null,
  13311. "_customMaterial": null,
  13312. "_srcBlendFactor": 2,
  13313. "_dstBlendFactor": 4,
  13314. "_color": {
  13315. "__type__": "cc.Color",
  13316. "r": 255,
  13317. "g": 255,
  13318. "b": 255,
  13319. "a": 255
  13320. },
  13321. "_spriteFrame": {
  13322. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  13323. "__expectedType__": "cc.SpriteFrame"
  13324. },
  13325. "_type": 0,
  13326. "_fillType": 0,
  13327. "_sizeMode": 0,
  13328. "_fillCenter": {
  13329. "__type__": "cc.Vec2",
  13330. "x": 0,
  13331. "y": 0
  13332. },
  13333. "_fillStart": 0,
  13334. "_fillRange": 0,
  13335. "_isTrimmedMode": true,
  13336. "_useGrayscale": false,
  13337. "_atlas": null,
  13338. "_id": "e3JhJLzd1IorojZyc868ZG"
  13339. },
  13340. {
  13341. "__type__": "f51faYGs59Fb4Vrkq0X4Yow",
  13342. "_name": "",
  13343. "_objFlags": 0,
  13344. "__editorExtras__": {},
  13345. "node": {
  13346. "__id__": 284
  13347. },
  13348. "_enabled": true,
  13349. "__prefab": null,
  13350. "btn_cancel": {
  13351. "__id__": 331
  13352. },
  13353. "btn_search": {
  13354. "__id__": 321
  13355. },
  13356. "btn_p": {
  13357. "__id__": 297
  13358. },
  13359. "btn_n": {
  13360. "__id__": 304
  13361. },
  13362. "content": {
  13363. "__id__": 287
  13364. },
  13365. "item_prefab": {
  13366. "__uuid__": "e0903480-6086-4f89-be39-3ee3bd78c017",
  13367. "__expectedType__": "cc.Prefab"
  13368. },
  13369. "game_detail": {
  13370. "__id__": 235
  13371. },
  13372. "lab_cur_page": {
  13373. "__id__": 328
  13374. },
  13375. "ed_lab": {
  13376. "__id__": 320
  13377. },
  13378. "_id": "af1wAjrFNEboXVCtK9iL+v"
  13379. },
  13380. {
  13381. "__type__": "cc.Node",
  13382. "_name": "select_com",
  13383. "_objFlags": 0,
  13384. "__editorExtras__": {},
  13385. "_parent": {
  13386. "__id__": 235
  13387. },
  13388. "_children": [
  13389. {
  13390. "__id__": 343
  13391. },
  13392. {
  13393. "__id__": 347
  13394. },
  13395. {
  13396. "__id__": 350
  13397. },
  13398. {
  13399. "__id__": 357
  13400. },
  13401. {
  13402. "__id__": 364
  13403. }
  13404. ],
  13405. "_active": false,
  13406. "_components": [
  13407. {
  13408. "__id__": 371
  13409. },
  13410. {
  13411. "__id__": 372
  13412. },
  13413. {
  13414. "__id__": 373
  13415. },
  13416. {
  13417. "__id__": 374
  13418. },
  13419. {
  13420. "__id__": 375
  13421. }
  13422. ],
  13423. "_prefab": null,
  13424. "_lpos": {
  13425. "__type__": "cc.Vec3",
  13426. "x": 960,
  13427. "y": 540,
  13428. "z": 0
  13429. },
  13430. "_lrot": {
  13431. "__type__": "cc.Quat",
  13432. "x": 0,
  13433. "y": 0,
  13434. "z": 0,
  13435. "w": 1
  13436. },
  13437. "_lscale": {
  13438. "__type__": "cc.Vec3",
  13439. "x": 1,
  13440. "y": 1,
  13441. "z": 1
  13442. },
  13443. "_mobility": 0,
  13444. "_layer": 33554432,
  13445. "_euler": {
  13446. "__type__": "cc.Vec3",
  13447. "x": 0,
  13448. "y": 0,
  13449. "z": 0
  13450. },
  13451. "_id": "61uaT4/P1NJKpYW1+Sed6K"
  13452. },
  13453. {
  13454. "__type__": "cc.Node",
  13455. "_name": "mask",
  13456. "_objFlags": 0,
  13457. "__editorExtras__": {},
  13458. "_parent": {
  13459. "__id__": 342
  13460. },
  13461. "_children": [],
  13462. "_active": true,
  13463. "_components": [
  13464. {
  13465. "__id__": 344
  13466. },
  13467. {
  13468. "__id__": 345
  13469. },
  13470. {
  13471. "__id__": 346
  13472. }
  13473. ],
  13474. "_prefab": null,
  13475. "_lpos": {
  13476. "__type__": "cc.Vec3",
  13477. "x": 0,
  13478. "y": 0,
  13479. "z": 0
  13480. },
  13481. "_lrot": {
  13482. "__type__": "cc.Quat",
  13483. "x": 0,
  13484. "y": 0,
  13485. "z": 0,
  13486. "w": 1
  13487. },
  13488. "_lscale": {
  13489. "__type__": "cc.Vec3",
  13490. "x": 1,
  13491. "y": 1,
  13492. "z": 1
  13493. },
  13494. "_mobility": 0,
  13495. "_layer": 33554432,
  13496. "_euler": {
  13497. "__type__": "cc.Vec3",
  13498. "x": 0,
  13499. "y": 0,
  13500. "z": 0
  13501. },
  13502. "_id": "0dye9AZ4pD/aWCkIz12K+E"
  13503. },
  13504. {
  13505. "__type__": "cc.UITransform",
  13506. "_name": "",
  13507. "_objFlags": 0,
  13508. "__editorExtras__": {},
  13509. "node": {
  13510. "__id__": 343
  13511. },
  13512. "_enabled": true,
  13513. "__prefab": null,
  13514. "_contentSize": {
  13515. "__type__": "cc.Size",
  13516. "width": 1920,
  13517. "height": 1080
  13518. },
  13519. "_anchorPoint": {
  13520. "__type__": "cc.Vec2",
  13521. "x": 0.5,
  13522. "y": 0.5
  13523. },
  13524. "_id": "acoDM4BW5KCa2+7/XPK1gq"
  13525. },
  13526. {
  13527. "__type__": "cc.Sprite",
  13528. "_name": "",
  13529. "_objFlags": 0,
  13530. "__editorExtras__": {},
  13531. "node": {
  13532. "__id__": 343
  13533. },
  13534. "_enabled": true,
  13535. "__prefab": null,
  13536. "_customMaterial": null,
  13537. "_srcBlendFactor": 2,
  13538. "_dstBlendFactor": 4,
  13539. "_color": {
  13540. "__type__": "cc.Color",
  13541. "r": 0,
  13542. "g": 0,
  13543. "b": 0,
  13544. "a": 107
  13545. },
  13546. "_spriteFrame": {
  13547. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  13548. "__expectedType__": "cc.SpriteFrame"
  13549. },
  13550. "_type": 1,
  13551. "_fillType": 0,
  13552. "_sizeMode": 0,
  13553. "_fillCenter": {
  13554. "__type__": "cc.Vec2",
  13555. "x": 0,
  13556. "y": 0
  13557. },
  13558. "_fillStart": 0,
  13559. "_fillRange": 0,
  13560. "_isTrimmedMode": true,
  13561. "_useGrayscale": false,
  13562. "_atlas": null,
  13563. "_id": "49BlpuOLxBB7/cQmWFHMtr"
  13564. },
  13565. {
  13566. "__type__": "cc.Widget",
  13567. "_name": "",
  13568. "_objFlags": 0,
  13569. "__editorExtras__": {},
  13570. "node": {
  13571. "__id__": 343
  13572. },
  13573. "_enabled": true,
  13574. "__prefab": null,
  13575. "_alignFlags": 45,
  13576. "_target": null,
  13577. "_left": 0,
  13578. "_right": 0,
  13579. "_top": 0,
  13580. "_bottom": 0,
  13581. "_horizontalCenter": 0,
  13582. "_verticalCenter": 0,
  13583. "_isAbsLeft": true,
  13584. "_isAbsRight": true,
  13585. "_isAbsTop": true,
  13586. "_isAbsBottom": true,
  13587. "_isAbsHorizontalCenter": true,
  13588. "_isAbsVerticalCenter": true,
  13589. "_originalWidth": 40,
  13590. "_originalHeight": 40,
  13591. "_alignMode": 2,
  13592. "_lockFlags": 0,
  13593. "_id": "a14ZXMxEREd44y/pR+bKZg"
  13594. },
  13595. {
  13596. "__type__": "cc.Node",
  13597. "_name": "grid_list",
  13598. "_objFlags": 0,
  13599. "__editorExtras__": {},
  13600. "_parent": {
  13601. "__id__": 342
  13602. },
  13603. "_children": [],
  13604. "_active": true,
  13605. "_components": [
  13606. {
  13607. "__id__": 348
  13608. },
  13609. {
  13610. "__id__": 349
  13611. }
  13612. ],
  13613. "_prefab": null,
  13614. "_lpos": {
  13615. "__type__": "cc.Vec3",
  13616. "x": 390.185,
  13617. "y": -321.03,
  13618. "z": 0
  13619. },
  13620. "_lrot": {
  13621. "__type__": "cc.Quat",
  13622. "x": 0,
  13623. "y": 0,
  13624. "z": 0,
  13625. "w": 1
  13626. },
  13627. "_lscale": {
  13628. "__type__": "cc.Vec3",
  13629. "x": 1,
  13630. "y": 1,
  13631. "z": 1
  13632. },
  13633. "_mobility": 0,
  13634. "_layer": 33554432,
  13635. "_euler": {
  13636. "__type__": "cc.Vec3",
  13637. "x": 0,
  13638. "y": 0,
  13639. "z": 0
  13640. },
  13641. "_id": "f9Z3seCqFDnae2rd0X1nZj"
  13642. },
  13643. {
  13644. "__type__": "cc.UITransform",
  13645. "_name": "",
  13646. "_objFlags": 0,
  13647. "__editorExtras__": {},
  13648. "node": {
  13649. "__id__": 347
  13650. },
  13651. "_enabled": true,
  13652. "__prefab": null,
  13653. "_contentSize": {
  13654. "__type__": "cc.Size",
  13655. "width": 232,
  13656. "height": 0
  13657. },
  13658. "_anchorPoint": {
  13659. "__type__": "cc.Vec2",
  13660. "x": 0,
  13661. "y": 0
  13662. },
  13663. "_id": "1206uDtylBOaT4AkAwTGdE"
  13664. },
  13665. {
  13666. "__type__": "cc.Layout",
  13667. "_name": "",
  13668. "_objFlags": 0,
  13669. "__editorExtras__": {},
  13670. "node": {
  13671. "__id__": 347
  13672. },
  13673. "_enabled": true,
  13674. "__prefab": null,
  13675. "_resizeMode": 1,
  13676. "_layoutType": 3,
  13677. "_cellSize": {
  13678. "__type__": "cc.Size",
  13679. "width": 40,
  13680. "height": 40
  13681. },
  13682. "_startAxis": 0,
  13683. "_paddingLeft": 0,
  13684. "_paddingRight": 0,
  13685. "_paddingTop": 0,
  13686. "_paddingBottom": 0,
  13687. "_spacingX": 0,
  13688. "_spacingY": 0,
  13689. "_verticalDirection": 1,
  13690. "_horizontalDirection": 0,
  13691. "_constraint": 2,
  13692. "_constraintNum": 5,
  13693. "_affectedByScale": false,
  13694. "_isAlign": false,
  13695. "_id": "20nK+wcIJMtpOC59V71xYH"
  13696. },
  13697. {
  13698. "__type__": "cc.Node",
  13699. "_name": "btn_sure",
  13700. "_objFlags": 0,
  13701. "__editorExtras__": {},
  13702. "_parent": {
  13703. "__id__": 342
  13704. },
  13705. "_children": [
  13706. {
  13707. "__id__": 351
  13708. }
  13709. ],
  13710. "_active": true,
  13711. "_components": [
  13712. {
  13713. "__id__": 354
  13714. },
  13715. {
  13716. "__id__": 355
  13717. },
  13718. {
  13719. "__id__": 356
  13720. }
  13721. ],
  13722. "_prefab": null,
  13723. "_lpos": {
  13724. "__type__": "cc.Vec3",
  13725. "x": 800,
  13726. "y": -200,
  13727. "z": 0
  13728. },
  13729. "_lrot": {
  13730. "__type__": "cc.Quat",
  13731. "x": 0,
  13732. "y": 0,
  13733. "z": 0,
  13734. "w": 1
  13735. },
  13736. "_lscale": {
  13737. "__type__": "cc.Vec3",
  13738. "x": 1,
  13739. "y": 1,
  13740. "z": 1
  13741. },
  13742. "_mobility": 0,
  13743. "_layer": 33554432,
  13744. "_euler": {
  13745. "__type__": "cc.Vec3",
  13746. "x": 0,
  13747. "y": 0,
  13748. "z": 0
  13749. },
  13750. "_id": "93xcQtnTJB8peeI4d8IwXU"
  13751. },
  13752. {
  13753. "__type__": "cc.Node",
  13754. "_name": "Label",
  13755. "_objFlags": 0,
  13756. "__editorExtras__": {},
  13757. "_parent": {
  13758. "__id__": 350
  13759. },
  13760. "_children": [],
  13761. "_active": true,
  13762. "_components": [
  13763. {
  13764. "__id__": 352
  13765. },
  13766. {
  13767. "__id__": 353
  13768. }
  13769. ],
  13770. "_prefab": null,
  13771. "_lpos": {
  13772. "__type__": "cc.Vec3",
  13773. "x": 0,
  13774. "y": 0,
  13775. "z": 0
  13776. },
  13777. "_lrot": {
  13778. "__type__": "cc.Quat",
  13779. "x": 0,
  13780. "y": 0,
  13781. "z": 0,
  13782. "w": 1
  13783. },
  13784. "_lscale": {
  13785. "__type__": "cc.Vec3",
  13786. "x": 1,
  13787. "y": 1,
  13788. "z": 1
  13789. },
  13790. "_mobility": 0,
  13791. "_layer": 33554432,
  13792. "_euler": {
  13793. "__type__": "cc.Vec3",
  13794. "x": 0,
  13795. "y": 0,
  13796. "z": 0
  13797. },
  13798. "_id": "125pvDNxxDwIE8n+TIiMMU"
  13799. },
  13800. {
  13801. "__type__": "cc.UITransform",
  13802. "_name": "",
  13803. "_objFlags": 0,
  13804. "__editorExtras__": {},
  13805. "node": {
  13806. "__id__": 351
  13807. },
  13808. "_enabled": true,
  13809. "__prefab": null,
  13810. "_contentSize": {
  13811. "__type__": "cc.Size",
  13812. "width": 100,
  13813. "height": 40
  13814. },
  13815. "_anchorPoint": {
  13816. "__type__": "cc.Vec2",
  13817. "x": 0.5,
  13818. "y": 0.5
  13819. },
  13820. "_id": "d0/Qq9NFREoKv8NbhkI0jh"
  13821. },
  13822. {
  13823. "__type__": "cc.Label",
  13824. "_name": "",
  13825. "_objFlags": 0,
  13826. "__editorExtras__": {},
  13827. "node": {
  13828. "__id__": 351
  13829. },
  13830. "_enabled": true,
  13831. "__prefab": null,
  13832. "_customMaterial": null,
  13833. "_srcBlendFactor": 2,
  13834. "_dstBlendFactor": 4,
  13835. "_color": {
  13836. "__type__": "cc.Color",
  13837. "r": 0,
  13838. "g": 0,
  13839. "b": 0,
  13840. "a": 255
  13841. },
  13842. "_string": "确定",
  13843. "_horizontalAlign": 1,
  13844. "_verticalAlign": 1,
  13845. "_actualFontSize": 20,
  13846. "_fontSize": 20,
  13847. "_fontFamily": "Arial",
  13848. "_lineHeight": 40,
  13849. "_overflow": 1,
  13850. "_enableWrapText": false,
  13851. "_font": null,
  13852. "_isSystemFontUsed": true,
  13853. "_spacingX": 0,
  13854. "_isItalic": false,
  13855. "_isBold": false,
  13856. "_isUnderline": false,
  13857. "_underlineHeight": 2,
  13858. "_cacheMode": 0,
  13859. "_id": "986HKPYYlCHprilsroIQU2"
  13860. },
  13861. {
  13862. "__type__": "cc.UITransform",
  13863. "_name": "",
  13864. "_objFlags": 0,
  13865. "__editorExtras__": {},
  13866. "node": {
  13867. "__id__": 350
  13868. },
  13869. "_enabled": true,
  13870. "__prefab": null,
  13871. "_contentSize": {
  13872. "__type__": "cc.Size",
  13873. "width": 130,
  13874. "height": 60
  13875. },
  13876. "_anchorPoint": {
  13877. "__type__": "cc.Vec2",
  13878. "x": 0.5,
  13879. "y": 0.5
  13880. },
  13881. "_id": "66MSUXPeZLTagHhnqfKl79"
  13882. },
  13883. {
  13884. "__type__": "cc.Sprite",
  13885. "_name": "",
  13886. "_objFlags": 0,
  13887. "__editorExtras__": {},
  13888. "node": {
  13889. "__id__": 350
  13890. },
  13891. "_enabled": true,
  13892. "__prefab": null,
  13893. "_customMaterial": null,
  13894. "_srcBlendFactor": 2,
  13895. "_dstBlendFactor": 4,
  13896. "_color": {
  13897. "__type__": "cc.Color",
  13898. "r": 255,
  13899. "g": 255,
  13900. "b": 255,
  13901. "a": 255
  13902. },
  13903. "_spriteFrame": {
  13904. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  13905. "__expectedType__": "cc.SpriteFrame"
  13906. },
  13907. "_type": 1,
  13908. "_fillType": 0,
  13909. "_sizeMode": 0,
  13910. "_fillCenter": {
  13911. "__type__": "cc.Vec2",
  13912. "x": 0,
  13913. "y": 0
  13914. },
  13915. "_fillStart": 0,
  13916. "_fillRange": 0,
  13917. "_isTrimmedMode": true,
  13918. "_useGrayscale": false,
  13919. "_atlas": null,
  13920. "_id": "56zjovPchNxouXXB73K7nx"
  13921. },
  13922. {
  13923. "__type__": "cc.Button",
  13924. "_name": "",
  13925. "_objFlags": 0,
  13926. "__editorExtras__": {},
  13927. "node": {
  13928. "__id__": 350
  13929. },
  13930. "_enabled": true,
  13931. "__prefab": null,
  13932. "clickEvents": [],
  13933. "_interactable": true,
  13934. "_transition": 2,
  13935. "_normalColor": {
  13936. "__type__": "cc.Color",
  13937. "r": 214,
  13938. "g": 214,
  13939. "b": 214,
  13940. "a": 255
  13941. },
  13942. "_hoverColor": {
  13943. "__type__": "cc.Color",
  13944. "r": 211,
  13945. "g": 211,
  13946. "b": 211,
  13947. "a": 255
  13948. },
  13949. "_pressedColor": {
  13950. "__type__": "cc.Color",
  13951. "r": 255,
  13952. "g": 255,
  13953. "b": 255,
  13954. "a": 255
  13955. },
  13956. "_disabledColor": {
  13957. "__type__": "cc.Color",
  13958. "r": 124,
  13959. "g": 124,
  13960. "b": 124,
  13961. "a": 255
  13962. },
  13963. "_normalSprite": {
  13964. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  13965. "__expectedType__": "cc.SpriteFrame"
  13966. },
  13967. "_hoverSprite": {
  13968. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  13969. "__expectedType__": "cc.SpriteFrame"
  13970. },
  13971. "_pressedSprite": {
  13972. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  13973. "__expectedType__": "cc.SpriteFrame"
  13974. },
  13975. "_disabledSprite": {
  13976. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  13977. "__expectedType__": "cc.SpriteFrame"
  13978. },
  13979. "_duration": 0.1,
  13980. "_zoomScale": 1.2,
  13981. "_target": {
  13982. "__id__": 350
  13983. },
  13984. "_id": "7dqNQt5fRGxZw5nddFP/NQ"
  13985. },
  13986. {
  13987. "__type__": "cc.Node",
  13988. "_name": "btn_cancel",
  13989. "_objFlags": 0,
  13990. "__editorExtras__": {},
  13991. "_parent": {
  13992. "__id__": 342
  13993. },
  13994. "_children": [
  13995. {
  13996. "__id__": 358
  13997. }
  13998. ],
  13999. "_active": true,
  14000. "_components": [
  14001. {
  14002. "__id__": 361
  14003. },
  14004. {
  14005. "__id__": 362
  14006. },
  14007. {
  14008. "__id__": 363
  14009. }
  14010. ],
  14011. "_prefab": null,
  14012. "_lpos": {
  14013. "__type__": "cc.Vec3",
  14014. "x": 800,
  14015. "y": -270,
  14016. "z": 0
  14017. },
  14018. "_lrot": {
  14019. "__type__": "cc.Quat",
  14020. "x": 0,
  14021. "y": 0,
  14022. "z": 0,
  14023. "w": 1
  14024. },
  14025. "_lscale": {
  14026. "__type__": "cc.Vec3",
  14027. "x": 1,
  14028. "y": 1,
  14029. "z": 1
  14030. },
  14031. "_mobility": 0,
  14032. "_layer": 33554432,
  14033. "_euler": {
  14034. "__type__": "cc.Vec3",
  14035. "x": 0,
  14036. "y": 0,
  14037. "z": 0
  14038. },
  14039. "_id": "5dbnYMPppGNpmhBN434cJq"
  14040. },
  14041. {
  14042. "__type__": "cc.Node",
  14043. "_name": "Label",
  14044. "_objFlags": 0,
  14045. "__editorExtras__": {},
  14046. "_parent": {
  14047. "__id__": 357
  14048. },
  14049. "_children": [],
  14050. "_active": true,
  14051. "_components": [
  14052. {
  14053. "__id__": 359
  14054. },
  14055. {
  14056. "__id__": 360
  14057. }
  14058. ],
  14059. "_prefab": null,
  14060. "_lpos": {
  14061. "__type__": "cc.Vec3",
  14062. "x": 0,
  14063. "y": 0,
  14064. "z": 0
  14065. },
  14066. "_lrot": {
  14067. "__type__": "cc.Quat",
  14068. "x": 0,
  14069. "y": 0,
  14070. "z": 0,
  14071. "w": 1
  14072. },
  14073. "_lscale": {
  14074. "__type__": "cc.Vec3",
  14075. "x": 1,
  14076. "y": 1,
  14077. "z": 1
  14078. },
  14079. "_mobility": 0,
  14080. "_layer": 33554432,
  14081. "_euler": {
  14082. "__type__": "cc.Vec3",
  14083. "x": 0,
  14084. "y": 0,
  14085. "z": 0
  14086. },
  14087. "_id": "52G8zZnN9MIKBH/kj4L/nW"
  14088. },
  14089. {
  14090. "__type__": "cc.UITransform",
  14091. "_name": "",
  14092. "_objFlags": 0,
  14093. "__editorExtras__": {},
  14094. "node": {
  14095. "__id__": 358
  14096. },
  14097. "_enabled": true,
  14098. "__prefab": null,
  14099. "_contentSize": {
  14100. "__type__": "cc.Size",
  14101. "width": 100,
  14102. "height": 40
  14103. },
  14104. "_anchorPoint": {
  14105. "__type__": "cc.Vec2",
  14106. "x": 0.5,
  14107. "y": 0.5
  14108. },
  14109. "_id": "39d1hf5ZdHK46qFk7HUJjm"
  14110. },
  14111. {
  14112. "__type__": "cc.Label",
  14113. "_name": "",
  14114. "_objFlags": 0,
  14115. "__editorExtras__": {},
  14116. "node": {
  14117. "__id__": 358
  14118. },
  14119. "_enabled": true,
  14120. "__prefab": null,
  14121. "_customMaterial": null,
  14122. "_srcBlendFactor": 2,
  14123. "_dstBlendFactor": 4,
  14124. "_color": {
  14125. "__type__": "cc.Color",
  14126. "r": 0,
  14127. "g": 0,
  14128. "b": 0,
  14129. "a": 255
  14130. },
  14131. "_string": "取消",
  14132. "_horizontalAlign": 1,
  14133. "_verticalAlign": 1,
  14134. "_actualFontSize": 20,
  14135. "_fontSize": 20,
  14136. "_fontFamily": "Arial",
  14137. "_lineHeight": 40,
  14138. "_overflow": 1,
  14139. "_enableWrapText": false,
  14140. "_font": null,
  14141. "_isSystemFontUsed": true,
  14142. "_spacingX": 0,
  14143. "_isItalic": false,
  14144. "_isBold": false,
  14145. "_isUnderline": false,
  14146. "_underlineHeight": 2,
  14147. "_cacheMode": 0,
  14148. "_id": "d6Ir//LxpK+qvBo+8cA+UA"
  14149. },
  14150. {
  14151. "__type__": "cc.UITransform",
  14152. "_name": "",
  14153. "_objFlags": 0,
  14154. "__editorExtras__": {},
  14155. "node": {
  14156. "__id__": 357
  14157. },
  14158. "_enabled": true,
  14159. "__prefab": null,
  14160. "_contentSize": {
  14161. "__type__": "cc.Size",
  14162. "width": 130,
  14163. "height": 60
  14164. },
  14165. "_anchorPoint": {
  14166. "__type__": "cc.Vec2",
  14167. "x": 0.5,
  14168. "y": 0.5
  14169. },
  14170. "_id": "99ugmXk9BMdKuS8exXwl99"
  14171. },
  14172. {
  14173. "__type__": "cc.Sprite",
  14174. "_name": "",
  14175. "_objFlags": 0,
  14176. "__editorExtras__": {},
  14177. "node": {
  14178. "__id__": 357
  14179. },
  14180. "_enabled": true,
  14181. "__prefab": null,
  14182. "_customMaterial": null,
  14183. "_srcBlendFactor": 2,
  14184. "_dstBlendFactor": 4,
  14185. "_color": {
  14186. "__type__": "cc.Color",
  14187. "r": 255,
  14188. "g": 255,
  14189. "b": 255,
  14190. "a": 255
  14191. },
  14192. "_spriteFrame": {
  14193. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  14194. "__expectedType__": "cc.SpriteFrame"
  14195. },
  14196. "_type": 1,
  14197. "_fillType": 0,
  14198. "_sizeMode": 0,
  14199. "_fillCenter": {
  14200. "__type__": "cc.Vec2",
  14201. "x": 0,
  14202. "y": 0
  14203. },
  14204. "_fillStart": 0,
  14205. "_fillRange": 0,
  14206. "_isTrimmedMode": true,
  14207. "_useGrayscale": false,
  14208. "_atlas": null,
  14209. "_id": "f59GI2B1NAc6RqdVeKB9+W"
  14210. },
  14211. {
  14212. "__type__": "cc.Button",
  14213. "_name": "",
  14214. "_objFlags": 0,
  14215. "__editorExtras__": {},
  14216. "node": {
  14217. "__id__": 357
  14218. },
  14219. "_enabled": true,
  14220. "__prefab": null,
  14221. "clickEvents": [],
  14222. "_interactable": true,
  14223. "_transition": 2,
  14224. "_normalColor": {
  14225. "__type__": "cc.Color",
  14226. "r": 214,
  14227. "g": 214,
  14228. "b": 214,
  14229. "a": 255
  14230. },
  14231. "_hoverColor": {
  14232. "__type__": "cc.Color",
  14233. "r": 211,
  14234. "g": 211,
  14235. "b": 211,
  14236. "a": 255
  14237. },
  14238. "_pressedColor": {
  14239. "__type__": "cc.Color",
  14240. "r": 255,
  14241. "g": 255,
  14242. "b": 255,
  14243. "a": 255
  14244. },
  14245. "_disabledColor": {
  14246. "__type__": "cc.Color",
  14247. "r": 124,
  14248. "g": 124,
  14249. "b": 124,
  14250. "a": 255
  14251. },
  14252. "_normalSprite": {
  14253. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  14254. "__expectedType__": "cc.SpriteFrame"
  14255. },
  14256. "_hoverSprite": {
  14257. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  14258. "__expectedType__": "cc.SpriteFrame"
  14259. },
  14260. "_pressedSprite": {
  14261. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  14262. "__expectedType__": "cc.SpriteFrame"
  14263. },
  14264. "_disabledSprite": {
  14265. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  14266. "__expectedType__": "cc.SpriteFrame"
  14267. },
  14268. "_duration": 0.1,
  14269. "_zoomScale": 1.2,
  14270. "_target": {
  14271. "__id__": 357
  14272. },
  14273. "_id": "b8WCZQYBlCVqezwS6GwbGo"
  14274. },
  14275. {
  14276. "__type__": "cc.Node",
  14277. "_name": "btn_delete",
  14278. "_objFlags": 0,
  14279. "__editorExtras__": {},
  14280. "_parent": {
  14281. "__id__": 342
  14282. },
  14283. "_children": [
  14284. {
  14285. "__id__": 365
  14286. }
  14287. ],
  14288. "_active": true,
  14289. "_components": [
  14290. {
  14291. "__id__": 368
  14292. },
  14293. {
  14294. "__id__": 369
  14295. },
  14296. {
  14297. "__id__": 370
  14298. }
  14299. ],
  14300. "_prefab": null,
  14301. "_lpos": {
  14302. "__type__": "cc.Vec3",
  14303. "x": 800,
  14304. "y": -340,
  14305. "z": 0
  14306. },
  14307. "_lrot": {
  14308. "__type__": "cc.Quat",
  14309. "x": 0,
  14310. "y": 0,
  14311. "z": 0,
  14312. "w": 1
  14313. },
  14314. "_lscale": {
  14315. "__type__": "cc.Vec3",
  14316. "x": 1,
  14317. "y": 1,
  14318. "z": 1
  14319. },
  14320. "_mobility": 0,
  14321. "_layer": 33554432,
  14322. "_euler": {
  14323. "__type__": "cc.Vec3",
  14324. "x": 0,
  14325. "y": 0,
  14326. "z": 0
  14327. },
  14328. "_id": "55cdp/DM5C/oFC0gdDJMAO"
  14329. },
  14330. {
  14331. "__type__": "cc.Node",
  14332. "_name": "Label",
  14333. "_objFlags": 0,
  14334. "__editorExtras__": {},
  14335. "_parent": {
  14336. "__id__": 364
  14337. },
  14338. "_children": [],
  14339. "_active": true,
  14340. "_components": [
  14341. {
  14342. "__id__": 366
  14343. },
  14344. {
  14345. "__id__": 367
  14346. }
  14347. ],
  14348. "_prefab": null,
  14349. "_lpos": {
  14350. "__type__": "cc.Vec3",
  14351. "x": 0,
  14352. "y": 0,
  14353. "z": 0
  14354. },
  14355. "_lrot": {
  14356. "__type__": "cc.Quat",
  14357. "x": 0,
  14358. "y": 0,
  14359. "z": 0,
  14360. "w": 1
  14361. },
  14362. "_lscale": {
  14363. "__type__": "cc.Vec3",
  14364. "x": 1,
  14365. "y": 1,
  14366. "z": 1
  14367. },
  14368. "_mobility": 0,
  14369. "_layer": 33554432,
  14370. "_euler": {
  14371. "__type__": "cc.Vec3",
  14372. "x": 0,
  14373. "y": 0,
  14374. "z": 0
  14375. },
  14376. "_id": "ebwtbLMRNDNJj1LyriuQqP"
  14377. },
  14378. {
  14379. "__type__": "cc.UITransform",
  14380. "_name": "",
  14381. "_objFlags": 0,
  14382. "__editorExtras__": {},
  14383. "node": {
  14384. "__id__": 365
  14385. },
  14386. "_enabled": true,
  14387. "__prefab": null,
  14388. "_contentSize": {
  14389. "__type__": "cc.Size",
  14390. "width": 130,
  14391. "height": 40
  14392. },
  14393. "_anchorPoint": {
  14394. "__type__": "cc.Vec2",
  14395. "x": 0.5,
  14396. "y": 0.5
  14397. },
  14398. "_id": "5c9TbYhKBHS5PI9omqi+q3"
  14399. },
  14400. {
  14401. "__type__": "cc.Label",
  14402. "_name": "",
  14403. "_objFlags": 0,
  14404. "__editorExtras__": {},
  14405. "node": {
  14406. "__id__": 365
  14407. },
  14408. "_enabled": true,
  14409. "__prefab": null,
  14410. "_customMaterial": null,
  14411. "_srcBlendFactor": 2,
  14412. "_dstBlendFactor": 4,
  14413. "_color": {
  14414. "__type__": "cc.Color",
  14415. "r": 0,
  14416. "g": 0,
  14417. "b": 0,
  14418. "a": 255
  14419. },
  14420. "_string": "删除",
  14421. "_horizontalAlign": 1,
  14422. "_verticalAlign": 1,
  14423. "_actualFontSize": 20,
  14424. "_fontSize": 20,
  14425. "_fontFamily": "Arial",
  14426. "_lineHeight": 40,
  14427. "_overflow": 1,
  14428. "_enableWrapText": false,
  14429. "_font": null,
  14430. "_isSystemFontUsed": true,
  14431. "_spacingX": 0,
  14432. "_isItalic": false,
  14433. "_isBold": false,
  14434. "_isUnderline": false,
  14435. "_underlineHeight": 2,
  14436. "_cacheMode": 0,
  14437. "_id": "4a5G3pwKNLXa+aec/IuIr3"
  14438. },
  14439. {
  14440. "__type__": "cc.UITransform",
  14441. "_name": "",
  14442. "_objFlags": 0,
  14443. "__editorExtras__": {},
  14444. "node": {
  14445. "__id__": 364
  14446. },
  14447. "_enabled": true,
  14448. "__prefab": null,
  14449. "_contentSize": {
  14450. "__type__": "cc.Size",
  14451. "width": 130,
  14452. "height": 60
  14453. },
  14454. "_anchorPoint": {
  14455. "__type__": "cc.Vec2",
  14456. "x": 0.5,
  14457. "y": 0.5
  14458. },
  14459. "_id": "1d/VSxIKhAmbwSnEq7Vipe"
  14460. },
  14461. {
  14462. "__type__": "cc.Sprite",
  14463. "_name": "",
  14464. "_objFlags": 0,
  14465. "__editorExtras__": {},
  14466. "node": {
  14467. "__id__": 364
  14468. },
  14469. "_enabled": true,
  14470. "__prefab": null,
  14471. "_customMaterial": null,
  14472. "_srcBlendFactor": 2,
  14473. "_dstBlendFactor": 4,
  14474. "_color": {
  14475. "__type__": "cc.Color",
  14476. "r": 255,
  14477. "g": 255,
  14478. "b": 255,
  14479. "a": 255
  14480. },
  14481. "_spriteFrame": {
  14482. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  14483. "__expectedType__": "cc.SpriteFrame"
  14484. },
  14485. "_type": 1,
  14486. "_fillType": 0,
  14487. "_sizeMode": 0,
  14488. "_fillCenter": {
  14489. "__type__": "cc.Vec2",
  14490. "x": 0,
  14491. "y": 0
  14492. },
  14493. "_fillStart": 0,
  14494. "_fillRange": 0,
  14495. "_isTrimmedMode": true,
  14496. "_useGrayscale": false,
  14497. "_atlas": null,
  14498. "_id": "deuHrCrzFGaaVRsIkDR5Pv"
  14499. },
  14500. {
  14501. "__type__": "cc.Button",
  14502. "_name": "",
  14503. "_objFlags": 0,
  14504. "__editorExtras__": {},
  14505. "node": {
  14506. "__id__": 364
  14507. },
  14508. "_enabled": true,
  14509. "__prefab": null,
  14510. "clickEvents": [],
  14511. "_interactable": true,
  14512. "_transition": 2,
  14513. "_normalColor": {
  14514. "__type__": "cc.Color",
  14515. "r": 214,
  14516. "g": 214,
  14517. "b": 214,
  14518. "a": 255
  14519. },
  14520. "_hoverColor": {
  14521. "__type__": "cc.Color",
  14522. "r": 211,
  14523. "g": 211,
  14524. "b": 211,
  14525. "a": 255
  14526. },
  14527. "_pressedColor": {
  14528. "__type__": "cc.Color",
  14529. "r": 255,
  14530. "g": 255,
  14531. "b": 255,
  14532. "a": 255
  14533. },
  14534. "_disabledColor": {
  14535. "__type__": "cc.Color",
  14536. "r": 124,
  14537. "g": 124,
  14538. "b": 124,
  14539. "a": 255
  14540. },
  14541. "_normalSprite": {
  14542. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  14543. "__expectedType__": "cc.SpriteFrame"
  14544. },
  14545. "_hoverSprite": {
  14546. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  14547. "__expectedType__": "cc.SpriteFrame"
  14548. },
  14549. "_pressedSprite": {
  14550. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  14551. "__expectedType__": "cc.SpriteFrame"
  14552. },
  14553. "_disabledSprite": {
  14554. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  14555. "__expectedType__": "cc.SpriteFrame"
  14556. },
  14557. "_duration": 0.1,
  14558. "_zoomScale": 1.2,
  14559. "_target": {
  14560. "__id__": 364
  14561. },
  14562. "_id": "51RJacBVtOa6iZzOBmVtcf"
  14563. },
  14564. {
  14565. "__type__": "cc.UITransform",
  14566. "_name": "",
  14567. "_objFlags": 0,
  14568. "__editorExtras__": {},
  14569. "node": {
  14570. "__id__": 342
  14571. },
  14572. "_enabled": true,
  14573. "__prefab": null,
  14574. "_contentSize": {
  14575. "__type__": "cc.Size",
  14576. "width": 1920,
  14577. "height": 1080
  14578. },
  14579. "_anchorPoint": {
  14580. "__type__": "cc.Vec2",
  14581. "x": 0.5,
  14582. "y": 0.5
  14583. },
  14584. "_id": "b6VbN5hFZMUbRPLc8cXPQf"
  14585. },
  14586. {
  14587. "__type__": "cc.Sprite",
  14588. "_name": "",
  14589. "_objFlags": 0,
  14590. "__editorExtras__": {},
  14591. "node": {
  14592. "__id__": 342
  14593. },
  14594. "_enabled": false,
  14595. "__prefab": null,
  14596. "_customMaterial": null,
  14597. "_srcBlendFactor": 2,
  14598. "_dstBlendFactor": 4,
  14599. "_color": {
  14600. "__type__": "cc.Color",
  14601. "r": 255,
  14602. "g": 255,
  14603. "b": 255,
  14604. "a": 255
  14605. },
  14606. "_spriteFrame": {
  14607. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  14608. "__expectedType__": "cc.SpriteFrame"
  14609. },
  14610. "_type": 1,
  14611. "_fillType": 0,
  14612. "_sizeMode": 0,
  14613. "_fillCenter": {
  14614. "__type__": "cc.Vec2",
  14615. "x": 0,
  14616. "y": 0
  14617. },
  14618. "_fillStart": 0,
  14619. "_fillRange": 0,
  14620. "_isTrimmedMode": true,
  14621. "_useGrayscale": false,
  14622. "_atlas": null,
  14623. "_id": "8dVz57g1pLM60gkgbz644q"
  14624. },
  14625. {
  14626. "__type__": "cc.Widget",
  14627. "_name": "",
  14628. "_objFlags": 0,
  14629. "__editorExtras__": {},
  14630. "node": {
  14631. "__id__": 342
  14632. },
  14633. "_enabled": true,
  14634. "__prefab": null,
  14635. "_alignFlags": 45,
  14636. "_target": null,
  14637. "_left": 0,
  14638. "_right": 0,
  14639. "_top": 0,
  14640. "_bottom": 0,
  14641. "_horizontalCenter": 0,
  14642. "_verticalCenter": 0,
  14643. "_isAbsLeft": true,
  14644. "_isAbsRight": true,
  14645. "_isAbsTop": true,
  14646. "_isAbsBottom": true,
  14647. "_isAbsHorizontalCenter": true,
  14648. "_isAbsVerticalCenter": true,
  14649. "_originalWidth": 40,
  14650. "_originalHeight": 40,
  14651. "_alignMode": 2,
  14652. "_lockFlags": 0,
  14653. "_id": "10nZPD94NHD6smc8Ai2CFu"
  14654. },
  14655. {
  14656. "__type__": "c4a50uwC5tKvqrriC8D+BlF",
  14657. "_name": "",
  14658. "_objFlags": 0,
  14659. "__editorExtras__": {},
  14660. "node": {
  14661. "__id__": 342
  14662. },
  14663. "_enabled": true,
  14664. "__prefab": null,
  14665. "grid_list": {
  14666. "__id__": 347
  14667. },
  14668. "btn_cancel": {
  14669. "__id__": 357
  14670. },
  14671. "btn_sure": {
  14672. "__id__": 350
  14673. },
  14674. "btn_delete": {
  14675. "__id__": 364
  14676. },
  14677. "_id": "e06FhCgytAbrgNLW2AZwP+"
  14678. },
  14679. {
  14680. "__type__": "cc.BlockInputEvents",
  14681. "_name": "",
  14682. "_objFlags": 0,
  14683. "__editorExtras__": {},
  14684. "node": {
  14685. "__id__": 342
  14686. },
  14687. "_enabled": true,
  14688. "__prefab": null,
  14689. "_id": "3f0j9jIOVJdZgDMNUe1AzW"
  14690. },
  14691. {
  14692. "__type__": "cc.UITransform",
  14693. "_name": "",
  14694. "_objFlags": 0,
  14695. "__editorExtras__": {},
  14696. "node": {
  14697. "__id__": 235
  14698. },
  14699. "_enabled": true,
  14700. "__prefab": null,
  14701. "_contentSize": {
  14702. "__type__": "cc.Size",
  14703. "width": 1920,
  14704. "height": 1080
  14705. },
  14706. "_anchorPoint": {
  14707. "__type__": "cc.Vec2",
  14708. "x": 0,
  14709. "y": 0
  14710. },
  14711. "_id": "91VzphD41J5riSicq4lIaD"
  14712. },
  14713. {
  14714. "__type__": "cc.Widget",
  14715. "_name": "",
  14716. "_objFlags": 0,
  14717. "__editorExtras__": {},
  14718. "node": {
  14719. "__id__": 235
  14720. },
  14721. "_enabled": true,
  14722. "__prefab": null,
  14723. "_alignFlags": 45,
  14724. "_target": null,
  14725. "_left": 0,
  14726. "_right": 0,
  14727. "_top": 0,
  14728. "_bottom": 0,
  14729. "_horizontalCenter": 0,
  14730. "_verticalCenter": 0,
  14731. "_isAbsLeft": true,
  14732. "_isAbsRight": true,
  14733. "_isAbsTop": true,
  14734. "_isAbsBottom": true,
  14735. "_isAbsHorizontalCenter": true,
  14736. "_isAbsVerticalCenter": true,
  14737. "_originalWidth": 100,
  14738. "_originalHeight": 100,
  14739. "_alignMode": 2,
  14740. "_lockFlags": 0,
  14741. "_id": "05bQjGOqtCY7WHxMYCVyXe"
  14742. },
  14743. {
  14744. "__type__": "cc.Sprite",
  14745. "_name": "",
  14746. "_objFlags": 0,
  14747. "__editorExtras__": {},
  14748. "node": {
  14749. "__id__": 235
  14750. },
  14751. "_enabled": true,
  14752. "__prefab": null,
  14753. "_customMaterial": null,
  14754. "_srcBlendFactor": 2,
  14755. "_dstBlendFactor": 4,
  14756. "_color": {
  14757. "__type__": "cc.Color",
  14758. "r": 255,
  14759. "g": 255,
  14760. "b": 255,
  14761. "a": 255
  14762. },
  14763. "_spriteFrame": {
  14764. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  14765. "__expectedType__": "cc.SpriteFrame"
  14766. },
  14767. "_type": 1,
  14768. "_fillType": 0,
  14769. "_sizeMode": 0,
  14770. "_fillCenter": {
  14771. "__type__": "cc.Vec2",
  14772. "x": 0,
  14773. "y": 0
  14774. },
  14775. "_fillStart": 0,
  14776. "_fillRange": 0,
  14777. "_isTrimmedMode": true,
  14778. "_useGrayscale": false,
  14779. "_atlas": null,
  14780. "_id": "dbN4mPn7VFuaVUe5nmuLcu"
  14781. },
  14782. {
  14783. "__type__": "3e81b6hw2NFdoWPWIy8Vq/3",
  14784. "_name": "",
  14785. "_objFlags": 0,
  14786. "__editorExtras__": {},
  14787. "node": {
  14788. "__id__": 235
  14789. },
  14790. "_enabled": true,
  14791. "__prefab": null,
  14792. "btn_back": {
  14793. "__id__": 243
  14794. },
  14795. "btn_save": {
  14796. "__id__": 250
  14797. },
  14798. "btn_level_select": {
  14799. "__id__": 236
  14800. },
  14801. "cur_spr": {
  14802. "__id__": 257
  14803. },
  14804. "item_prefab": {
  14805. "__uuid__": "e9527b58-d08d-40e9-bb2f-ed989a90cbe0",
  14806. "__expectedType__": "cc.Prefab"
  14807. },
  14808. "game_edit_list": {
  14809. "__id__": 117
  14810. },
  14811. "level_list": {
  14812. "__id__": 284
  14813. },
  14814. "circle": {
  14815. "__id__": 260
  14816. },
  14817. "select_com": {
  14818. "__id__": 342
  14819. },
  14820. "lab_title": {
  14821. "__id__": 281
  14822. },
  14823. "_id": "a9RFsxMY5JpJpJaYfsT3R7"
  14824. },
  14825. {
  14826. "__type__": "cc.Widget",
  14827. "_name": "",
  14828. "_objFlags": 0,
  14829. "__editorExtras__": {},
  14830. "node": {
  14831. "__id__": 117
  14832. },
  14833. "_enabled": true,
  14834. "__prefab": null,
  14835. "_alignFlags": 45,
  14836. "_target": null,
  14837. "_left": 0,
  14838. "_right": 0,
  14839. "_top": 0,
  14840. "_bottom": 0,
  14841. "_horizontalCenter": 0,
  14842. "_verticalCenter": 0,
  14843. "_isAbsLeft": true,
  14844. "_isAbsRight": true,
  14845. "_isAbsTop": true,
  14846. "_isAbsBottom": true,
  14847. "_isAbsHorizontalCenter": true,
  14848. "_isAbsVerticalCenter": true,
  14849. "_originalWidth": 375,
  14850. "_originalHeight": 812,
  14851. "_alignMode": 2,
  14852. "_lockFlags": 0,
  14853. "_id": "7c9cyKkYJLZ7CS13/9TsDV"
  14854. },
  14855. {
  14856. "__type__": "cc.Widget",
  14857. "_name": "",
  14858. "_objFlags": 0,
  14859. "__editorExtras__": {},
  14860. "node": {
  14861. "__id__": 5
  14862. },
  14863. "_enabled": true,
  14864. "__prefab": null,
  14865. "_alignFlags": 45,
  14866. "_target": null,
  14867. "_left": 0,
  14868. "_right": 0,
  14869. "_top": 0,
  14870. "_bottom": 0,
  14871. "_horizontalCenter": 0,
  14872. "_verticalCenter": 0,
  14873. "_isAbsLeft": true,
  14874. "_isAbsRight": true,
  14875. "_isAbsTop": true,
  14876. "_isAbsBottom": true,
  14877. "_isAbsHorizontalCenter": true,
  14878. "_isAbsVerticalCenter": true,
  14879. "_originalWidth": 375,
  14880. "_originalHeight": 812,
  14881. "_alignMode": 2,
  14882. "_lockFlags": 0,
  14883. "_id": "39IURFuOdJ5a2I+3OMHro4"
  14884. },
  14885. {
  14886. "__type__": "cc.UITransform",
  14887. "_name": "",
  14888. "_objFlags": 0,
  14889. "__editorExtras__": {},
  14890. "node": {
  14891. "__id__": 2
  14892. },
  14893. "_enabled": true,
  14894. "__prefab": null,
  14895. "_contentSize": {
  14896. "__type__": "cc.Size",
  14897. "width": 1920,
  14898. "height": 1080
  14899. },
  14900. "_anchorPoint": {
  14901. "__type__": "cc.Vec2",
  14902. "x": 0.5,
  14903. "y": 0.5
  14904. },
  14905. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  14906. },
  14907. {
  14908. "__type__": "cc.Canvas",
  14909. "_name": "",
  14910. "_objFlags": 0,
  14911. "__editorExtras__": {},
  14912. "node": {
  14913. "__id__": 2
  14914. },
  14915. "_enabled": true,
  14916. "__prefab": null,
  14917. "_cameraComponent": {
  14918. "__id__": 4
  14919. },
  14920. "_alignCanvasWithScreen": true,
  14921. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  14922. },
  14923. {
  14924. "__type__": "cc.Widget",
  14925. "_name": "",
  14926. "_objFlags": 0,
  14927. "__editorExtras__": {},
  14928. "node": {
  14929. "__id__": 2
  14930. },
  14931. "_enabled": true,
  14932. "__prefab": null,
  14933. "_alignFlags": 45,
  14934. "_target": null,
  14935. "_left": -8.526512829121202e-14,
  14936. "_right": -8.526512829121202e-14,
  14937. "_top": 5.684341886080802e-14,
  14938. "_bottom": 5.684341886080802e-14,
  14939. "_horizontalCenter": 0,
  14940. "_verticalCenter": 0,
  14941. "_isAbsLeft": true,
  14942. "_isAbsRight": true,
  14943. "_isAbsTop": true,
  14944. "_isAbsBottom": true,
  14945. "_isAbsHorizontalCenter": true,
  14946. "_isAbsVerticalCenter": true,
  14947. "_originalWidth": 0,
  14948. "_originalHeight": 0,
  14949. "_alignMode": 2,
  14950. "_lockFlags": 0,
  14951. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  14952. },
  14953. {
  14954. "__type__": "cc.PrefabInfo",
  14955. "root": null,
  14956. "asset": null,
  14957. "fileId": "1c9182fc-c6a7-4fca-a293-02b3051d1594",
  14958. "instance": null,
  14959. "targetOverrides": null
  14960. },
  14961. {
  14962. "__type__": "cc.SceneGlobals",
  14963. "ambient": {
  14964. "__id__": 387
  14965. },
  14966. "shadows": {
  14967. "__id__": 388
  14968. },
  14969. "_skybox": {
  14970. "__id__": 389
  14971. },
  14972. "fog": {
  14973. "__id__": 390
  14974. },
  14975. "octree": {
  14976. "__id__": 391
  14977. },
  14978. "skin": {
  14979. "__id__": 392
  14980. },
  14981. "lightProbeInfo": {
  14982. "__id__": 393
  14983. },
  14984. "bakedWithStationaryMainLight": false,
  14985. "bakedWithHighpLightmap": false
  14986. },
  14987. {
  14988. "__type__": "cc.AmbientInfo",
  14989. "_skyColorHDR": {
  14990. "__type__": "cc.Vec4",
  14991. "x": 0,
  14992. "y": 0,
  14993. "z": 0,
  14994. "w": 0.520833125
  14995. },
  14996. "_skyColor": {
  14997. "__type__": "cc.Vec4",
  14998. "x": 0,
  14999. "y": 0,
  15000. "z": 0,
  15001. "w": 0.520833125
  15002. },
  15003. "_skyIllumHDR": 20000,
  15004. "_skyIllum": 20000,
  15005. "_groundAlbedoHDR": {
  15006. "__type__": "cc.Vec4",
  15007. "x": 0,
  15008. "y": 0,
  15009. "z": 0,
  15010. "w": 0
  15011. },
  15012. "_groundAlbedo": {
  15013. "__type__": "cc.Vec4",
  15014. "x": 0,
  15015. "y": 0,
  15016. "z": 0,
  15017. "w": 0
  15018. },
  15019. "_skyColorLDR": {
  15020. "__type__": "cc.Vec4",
  15021. "x": 0.2,
  15022. "y": 0.5,
  15023. "z": 0.8,
  15024. "w": 1
  15025. },
  15026. "_skyIllumLDR": 20000,
  15027. "_groundAlbedoLDR": {
  15028. "__type__": "cc.Vec4",
  15029. "x": 0.2,
  15030. "y": 0.2,
  15031. "z": 0.2,
  15032. "w": 1
  15033. }
  15034. },
  15035. {
  15036. "__type__": "cc.ShadowsInfo",
  15037. "_enabled": false,
  15038. "_type": 0,
  15039. "_normal": {
  15040. "__type__": "cc.Vec3",
  15041. "x": 0,
  15042. "y": 1,
  15043. "z": 0
  15044. },
  15045. "_distance": 0,
  15046. "_shadowColor": {
  15047. "__type__": "cc.Color",
  15048. "r": 76,
  15049. "g": 76,
  15050. "b": 76,
  15051. "a": 255
  15052. },
  15053. "_maxReceived": 4,
  15054. "_size": {
  15055. "__type__": "cc.Vec2",
  15056. "x": 512,
  15057. "y": 512
  15058. }
  15059. },
  15060. {
  15061. "__type__": "cc.SkyboxInfo",
  15062. "_envLightingType": 0,
  15063. "_envmapHDR": null,
  15064. "_envmap": null,
  15065. "_envmapLDR": null,
  15066. "_diffuseMapHDR": null,
  15067. "_diffuseMapLDR": null,
  15068. "_enabled": false,
  15069. "_useHDR": true,
  15070. "_editableMaterial": null,
  15071. "_reflectionHDR": null,
  15072. "_reflectionLDR": null,
  15073. "_rotationAngle": 0
  15074. },
  15075. {
  15076. "__type__": "cc.FogInfo",
  15077. "_type": 0,
  15078. "_fogColor": {
  15079. "__type__": "cc.Color",
  15080. "r": 200,
  15081. "g": 200,
  15082. "b": 200,
  15083. "a": 255
  15084. },
  15085. "_enabled": false,
  15086. "_fogDensity": 0.3,
  15087. "_fogStart": 0.5,
  15088. "_fogEnd": 300,
  15089. "_fogAtten": 5,
  15090. "_fogTop": 1.5,
  15091. "_fogRange": 1.2,
  15092. "_accurate": false
  15093. },
  15094. {
  15095. "__type__": "cc.OctreeInfo",
  15096. "_enabled": false,
  15097. "_minPos": {
  15098. "__type__": "cc.Vec3",
  15099. "x": -1024,
  15100. "y": -1024,
  15101. "z": -1024
  15102. },
  15103. "_maxPos": {
  15104. "__type__": "cc.Vec3",
  15105. "x": 1024,
  15106. "y": 1024,
  15107. "z": 1024
  15108. },
  15109. "_depth": 8
  15110. },
  15111. {
  15112. "__type__": "cc.SkinInfo",
  15113. "_enabled": true,
  15114. "_blurRadius": 0.01,
  15115. "_sssIntensity": 3
  15116. },
  15117. {
  15118. "__type__": "cc.LightProbeInfo",
  15119. "_giScale": 1,
  15120. "_giSamples": 1024,
  15121. "_bounces": 2,
  15122. "_reduceRinging": 0,
  15123. "_showProbe": true,
  15124. "_showWireframe": true,
  15125. "_showConvex": false,
  15126. "_data": null,
  15127. "_lightProbeSphereVolume": 1
  15128. }
  15129. ]