main.scene 176 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801
  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__": 254
  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__": 336
  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__": 81
  78. },
  79. {
  80. "__id__": 179
  81. },
  82. {
  83. "__id__": 222
  84. }
  85. ],
  86. "_active": true,
  87. "_components": [
  88. {
  89. "__id__": 251
  90. },
  91. {
  92. "__id__": 252
  93. },
  94. {
  95. "__id__": 253
  96. }
  97. ],
  98. "_prefab": null,
  99. "_lpos": {
  100. "__type__": "cc.Vec3",
  101. "x": 960.0000000000001,
  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__": 79
  257. },
  258. {
  259. "__id__": 70
  260. },
  261. {
  262. "__id__": 80
  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": 100,
  1631. "height": 100
  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. "_objFlags": 0,
  2312. "_parent": {
  2313. "__id__": 5
  2314. },
  2315. "_prefab": {
  2316. "__id__": 58
  2317. },
  2318. "__editorExtras__": {}
  2319. },
  2320. {
  2321. "__type__": "cc.PrefabInfo",
  2322. "root": {
  2323. "__id__": 57
  2324. },
  2325. "asset": {
  2326. "__uuid__": "1e9e31bd-4dd6-42cf-bea5-9142225d4524",
  2327. "__expectedType__": "cc.Prefab"
  2328. },
  2329. "fileId": "e2Js/PfCRCoK/ZvwUwCNQt",
  2330. "instance": {
  2331. "__id__": 59
  2332. },
  2333. "targetOverrides": [],
  2334. "nestedPrefabInstanceRoots": null
  2335. },
  2336. {
  2337. "__type__": "cc.PrefabInstance",
  2338. "fileId": "2baeV+LRpARrGKmw3zaDkK",
  2339. "prefabRootNode": null,
  2340. "mountedChildren": [],
  2341. "mountedComponents": [],
  2342. "propertyOverrides": [
  2343. {
  2344. "__id__": 60
  2345. },
  2346. {
  2347. "__id__": 62
  2348. },
  2349. {
  2350. "__id__": 64
  2351. },
  2352. {
  2353. "__id__": 66
  2354. },
  2355. {
  2356. "__id__": 68
  2357. },
  2358. {
  2359. "__id__": 71
  2360. },
  2361. {
  2362. "__id__": 72
  2363. },
  2364. {
  2365. "__id__": 74
  2366. },
  2367. {
  2368. "__id__": 76
  2369. },
  2370. {
  2371. "__id__": 77
  2372. },
  2373. {
  2374. "__id__": 78
  2375. }
  2376. ],
  2377. "removedComponents": []
  2378. },
  2379. {
  2380. "__type__": "CCPropertyOverrideInfo",
  2381. "targetInfo": {
  2382. "__id__": 61
  2383. },
  2384. "propertyPath": [
  2385. "_name"
  2386. ],
  2387. "value": "level_list"
  2388. },
  2389. {
  2390. "__type__": "cc.TargetInfo",
  2391. "localID": [
  2392. "e2Js/PfCRCoK/ZvwUwCNQt"
  2393. ]
  2394. },
  2395. {
  2396. "__type__": "CCPropertyOverrideInfo",
  2397. "targetInfo": {
  2398. "__id__": 63
  2399. },
  2400. "propertyPath": [
  2401. "_lpos"
  2402. ],
  2403. "value": {
  2404. "__type__": "cc.Vec3",
  2405. "x": 960,
  2406. "y": 540,
  2407. "z": 0
  2408. }
  2409. },
  2410. {
  2411. "__type__": "cc.TargetInfo",
  2412. "localID": [
  2413. "e2Js/PfCRCoK/ZvwUwCNQt"
  2414. ]
  2415. },
  2416. {
  2417. "__type__": "CCPropertyOverrideInfo",
  2418. "targetInfo": {
  2419. "__id__": 65
  2420. },
  2421. "propertyPath": [
  2422. "_lrot"
  2423. ],
  2424. "value": {
  2425. "__type__": "cc.Quat",
  2426. "x": 0,
  2427. "y": 0,
  2428. "z": 0,
  2429. "w": 1
  2430. }
  2431. },
  2432. {
  2433. "__type__": "cc.TargetInfo",
  2434. "localID": [
  2435. "e2Js/PfCRCoK/ZvwUwCNQt"
  2436. ]
  2437. },
  2438. {
  2439. "__type__": "CCPropertyOverrideInfo",
  2440. "targetInfo": {
  2441. "__id__": 67
  2442. },
  2443. "propertyPath": [
  2444. "_euler"
  2445. ],
  2446. "value": {
  2447. "__type__": "cc.Vec3",
  2448. "x": 0,
  2449. "y": 0,
  2450. "z": 0
  2451. }
  2452. },
  2453. {
  2454. "__type__": "cc.TargetInfo",
  2455. "localID": [
  2456. "e2Js/PfCRCoK/ZvwUwCNQt"
  2457. ]
  2458. },
  2459. {
  2460. "__type__": "CCPropertyOverrideInfo",
  2461. "targetInfo": {
  2462. "__id__": 69
  2463. },
  2464. "propertyPath": [
  2465. "game_page"
  2466. ],
  2467. "value": {
  2468. "__id__": 70
  2469. }
  2470. },
  2471. {
  2472. "__type__": "cc.TargetInfo",
  2473. "localID": [
  2474. "c0jCcjGjBGNokGQItd4ax/"
  2475. ]
  2476. },
  2477. {
  2478. "__type__": "7bc878sCPVGNbkT4i+nAMCS",
  2479. "_name": "",
  2480. "_objFlags": 0,
  2481. "__editorExtras__": {},
  2482. "node": {
  2483. "__id__": 5
  2484. },
  2485. "_enabled": true,
  2486. "__prefab": null,
  2487. "level_list": null,
  2488. "btn_cancel": {
  2489. "__id__": 6
  2490. },
  2491. "btn_save": {
  2492. "__id__": 50
  2493. },
  2494. "btn_select_level": {
  2495. "__id__": 13
  2496. },
  2497. "list_circle": {
  2498. "__id__": 45
  2499. },
  2500. "item_prefab": {
  2501. "__id__": 23
  2502. },
  2503. "lab_title": {
  2504. "__id__": 20
  2505. },
  2506. "rect_obj": {
  2507. "__id__": 44
  2508. },
  2509. "img_1": {
  2510. "__id__": 44
  2511. },
  2512. "img_2": {
  2513. "__id__": 41
  2514. },
  2515. "_id": "05Ps5PEWhAbJhbUq/5ZYwV"
  2516. },
  2517. {
  2518. "__type__": "CCPropertyOverrideInfo",
  2519. "targetInfo": {
  2520. "__id__": 67
  2521. },
  2522. "propertyPath": [
  2523. "_active"
  2524. ],
  2525. "value": false
  2526. },
  2527. {
  2528. "__type__": "CCPropertyOverrideInfo",
  2529. "targetInfo": {
  2530. "__id__": 73
  2531. },
  2532. "propertyPath": [
  2533. "_contentSize"
  2534. ],
  2535. "value": {
  2536. "__type__": "cc.Size",
  2537. "width": 1920,
  2538. "height": 1080
  2539. }
  2540. },
  2541. {
  2542. "__type__": "cc.TargetInfo",
  2543. "localID": [
  2544. "56l+NLlMJOeJ6FrnY9oF21"
  2545. ]
  2546. },
  2547. {
  2548. "__type__": "CCPropertyOverrideInfo",
  2549. "targetInfo": {
  2550. "__id__": 75
  2551. },
  2552. "propertyPath": [
  2553. "_left"
  2554. ],
  2555. "value": 0
  2556. },
  2557. {
  2558. "__type__": "cc.TargetInfo",
  2559. "localID": [
  2560. "e6nkAlL51PWojRDoPJCaI8"
  2561. ]
  2562. },
  2563. {
  2564. "__type__": "CCPropertyOverrideInfo",
  2565. "targetInfo": {
  2566. "__id__": 75
  2567. },
  2568. "propertyPath": [
  2569. "_right"
  2570. ],
  2571. "value": 0
  2572. },
  2573. {
  2574. "__type__": "CCPropertyOverrideInfo",
  2575. "targetInfo": {
  2576. "__id__": 75
  2577. },
  2578. "propertyPath": [
  2579. "_top"
  2580. ],
  2581. "value": 0
  2582. },
  2583. {
  2584. "__type__": "CCPropertyOverrideInfo",
  2585. "targetInfo": {
  2586. "__id__": 75
  2587. },
  2588. "propertyPath": [
  2589. "_bottom"
  2590. ],
  2591. "value": 0
  2592. },
  2593. {
  2594. "__type__": "cc.UITransform",
  2595. "_name": "",
  2596. "_objFlags": 0,
  2597. "__editorExtras__": {},
  2598. "node": {
  2599. "__id__": 5
  2600. },
  2601. "_enabled": true,
  2602. "__prefab": null,
  2603. "_contentSize": {
  2604. "__type__": "cc.Size",
  2605. "width": 1920,
  2606. "height": 1080
  2607. },
  2608. "_anchorPoint": {
  2609. "__type__": "cc.Vec2",
  2610. "x": 0,
  2611. "y": 0
  2612. },
  2613. "_id": "bcaeJWCzBATqz3wOgMjMzE"
  2614. },
  2615. {
  2616. "__type__": "cc.Widget",
  2617. "_name": "",
  2618. "_objFlags": 0,
  2619. "__editorExtras__": {},
  2620. "node": {
  2621. "__id__": 5
  2622. },
  2623. "_enabled": true,
  2624. "__prefab": null,
  2625. "_alignFlags": 45,
  2626. "_target": null,
  2627. "_left": 0,
  2628. "_right": 0,
  2629. "_top": 0,
  2630. "_bottom": 0,
  2631. "_horizontalCenter": 0,
  2632. "_verticalCenter": 0,
  2633. "_isAbsLeft": true,
  2634. "_isAbsRight": true,
  2635. "_isAbsTop": true,
  2636. "_isAbsBottom": true,
  2637. "_isAbsHorizontalCenter": true,
  2638. "_isAbsVerticalCenter": true,
  2639. "_originalWidth": 375,
  2640. "_originalHeight": 812,
  2641. "_alignMode": 2,
  2642. "_lockFlags": 0,
  2643. "_id": "39IURFuOdJ5a2I+3OMHro4"
  2644. },
  2645. {
  2646. "__type__": "cc.Node",
  2647. "_name": "game_detail",
  2648. "_objFlags": 0,
  2649. "__editorExtras__": {},
  2650. "_parent": {
  2651. "__id__": 2
  2652. },
  2653. "_children": [
  2654. {
  2655. "__id__": 82
  2656. },
  2657. {
  2658. "__id__": 89
  2659. },
  2660. {
  2661. "__id__": 96
  2662. },
  2663. {
  2664. "__id__": 103
  2665. },
  2666. {
  2667. "__id__": 106
  2668. },
  2669. {
  2670. "__id__": 127
  2671. },
  2672. {
  2673. "__id__": 130
  2674. },
  2675. {
  2676. "__id__": 141
  2677. }
  2678. ],
  2679. "_active": false,
  2680. "_components": [
  2681. {
  2682. "__id__": 176
  2683. },
  2684. {
  2685. "__id__": 177
  2686. },
  2687. {
  2688. "__id__": 178
  2689. },
  2690. {
  2691. "__id__": 140
  2692. }
  2693. ],
  2694. "_prefab": null,
  2695. "_lpos": {
  2696. "__type__": "cc.Vec3",
  2697. "x": -960,
  2698. "y": -540,
  2699. "z": 0
  2700. },
  2701. "_lrot": {
  2702. "__type__": "cc.Quat",
  2703. "x": 0,
  2704. "y": 0,
  2705. "z": 0,
  2706. "w": 1
  2707. },
  2708. "_lscale": {
  2709. "__type__": "cc.Vec3",
  2710. "x": 1,
  2711. "y": 1,
  2712. "z": 1
  2713. },
  2714. "_mobility": 0,
  2715. "_layer": 33554432,
  2716. "_euler": {
  2717. "__type__": "cc.Vec3",
  2718. "x": 0,
  2719. "y": 0,
  2720. "z": 0
  2721. },
  2722. "_id": "barrZHmcpCzaNxiAjbu4OA"
  2723. },
  2724. {
  2725. "__type__": "cc.Node",
  2726. "_name": "btn_select_level",
  2727. "_objFlags": 0,
  2728. "__editorExtras__": {},
  2729. "_parent": {
  2730. "__id__": 81
  2731. },
  2732. "_children": [
  2733. {
  2734. "__id__": 83
  2735. }
  2736. ],
  2737. "_active": true,
  2738. "_components": [
  2739. {
  2740. "__id__": 86
  2741. },
  2742. {
  2743. "__id__": 87
  2744. },
  2745. {
  2746. "__id__": 88
  2747. }
  2748. ],
  2749. "_prefab": null,
  2750. "_lpos": {
  2751. "__type__": "cc.Vec3",
  2752. "x": 1600,
  2753. "y": 650,
  2754. "z": 0
  2755. },
  2756. "_lrot": {
  2757. "__type__": "cc.Quat",
  2758. "x": 0,
  2759. "y": 0,
  2760. "z": 0,
  2761. "w": 1
  2762. },
  2763. "_lscale": {
  2764. "__type__": "cc.Vec3",
  2765. "x": 1,
  2766. "y": 1,
  2767. "z": 1
  2768. },
  2769. "_mobility": 0,
  2770. "_layer": 33554432,
  2771. "_euler": {
  2772. "__type__": "cc.Vec3",
  2773. "x": 0,
  2774. "y": 0,
  2775. "z": 0
  2776. },
  2777. "_id": "9d7h8fFtVAu50PTOGUfWl/"
  2778. },
  2779. {
  2780. "__type__": "cc.Node",
  2781. "_name": "Label",
  2782. "_objFlags": 0,
  2783. "__editorExtras__": {},
  2784. "_parent": {
  2785. "__id__": 82
  2786. },
  2787. "_children": [],
  2788. "_active": true,
  2789. "_components": [
  2790. {
  2791. "__id__": 84
  2792. },
  2793. {
  2794. "__id__": 85
  2795. }
  2796. ],
  2797. "_prefab": null,
  2798. "_lpos": {
  2799. "__type__": "cc.Vec3",
  2800. "x": 0,
  2801. "y": 0,
  2802. "z": 0
  2803. },
  2804. "_lrot": {
  2805. "__type__": "cc.Quat",
  2806. "x": 0,
  2807. "y": 0,
  2808. "z": 0,
  2809. "w": 1
  2810. },
  2811. "_lscale": {
  2812. "__type__": "cc.Vec3",
  2813. "x": 1,
  2814. "y": 1,
  2815. "z": 1
  2816. },
  2817. "_mobility": 0,
  2818. "_layer": 33554432,
  2819. "_euler": {
  2820. "__type__": "cc.Vec3",
  2821. "x": 0,
  2822. "y": 0,
  2823. "z": 0
  2824. },
  2825. "_id": "456hVBVZNGtJYL5L/TXUrL"
  2826. },
  2827. {
  2828. "__type__": "cc.UITransform",
  2829. "_name": "",
  2830. "_objFlags": 0,
  2831. "__editorExtras__": {},
  2832. "node": {
  2833. "__id__": 83
  2834. },
  2835. "_enabled": true,
  2836. "__prefab": null,
  2837. "_contentSize": {
  2838. "__type__": "cc.Size",
  2839. "width": 100,
  2840. "height": 40
  2841. },
  2842. "_anchorPoint": {
  2843. "__type__": "cc.Vec2",
  2844. "x": 0.5,
  2845. "y": 0.5
  2846. },
  2847. "_id": "afHHGECt9FwLwJsOLMufbw"
  2848. },
  2849. {
  2850. "__type__": "cc.Label",
  2851. "_name": "",
  2852. "_objFlags": 0,
  2853. "__editorExtras__": {},
  2854. "node": {
  2855. "__id__": 83
  2856. },
  2857. "_enabled": true,
  2858. "__prefab": null,
  2859. "_customMaterial": null,
  2860. "_srcBlendFactor": 2,
  2861. "_dstBlendFactor": 4,
  2862. "_color": {
  2863. "__type__": "cc.Color",
  2864. "r": 0,
  2865. "g": 0,
  2866. "b": 0,
  2867. "a": 255
  2868. },
  2869. "_string": "关卡选择",
  2870. "_horizontalAlign": 1,
  2871. "_verticalAlign": 1,
  2872. "_actualFontSize": 20,
  2873. "_fontSize": 20,
  2874. "_fontFamily": "Arial",
  2875. "_lineHeight": 40,
  2876. "_overflow": 1,
  2877. "_enableWrapText": false,
  2878. "_font": null,
  2879. "_isSystemFontUsed": true,
  2880. "_spacingX": 0,
  2881. "_isItalic": false,
  2882. "_isBold": false,
  2883. "_isUnderline": false,
  2884. "_underlineHeight": 2,
  2885. "_cacheMode": 0,
  2886. "_id": "92BmeBXXBLe42eLAjmF5/X"
  2887. },
  2888. {
  2889. "__type__": "cc.UITransform",
  2890. "_name": "",
  2891. "_objFlags": 0,
  2892. "__editorExtras__": {},
  2893. "node": {
  2894. "__id__": 82
  2895. },
  2896. "_enabled": true,
  2897. "__prefab": null,
  2898. "_contentSize": {
  2899. "__type__": "cc.Size",
  2900. "width": 200,
  2901. "height": 100
  2902. },
  2903. "_anchorPoint": {
  2904. "__type__": "cc.Vec2",
  2905. "x": 0.5,
  2906. "y": 0.5
  2907. },
  2908. "_id": "9a2g9nyyRHI6rl2mq1YqAm"
  2909. },
  2910. {
  2911. "__type__": "cc.Sprite",
  2912. "_name": "",
  2913. "_objFlags": 0,
  2914. "__editorExtras__": {},
  2915. "node": {
  2916. "__id__": 82
  2917. },
  2918. "_enabled": true,
  2919. "__prefab": null,
  2920. "_customMaterial": null,
  2921. "_srcBlendFactor": 2,
  2922. "_dstBlendFactor": 4,
  2923. "_color": {
  2924. "__type__": "cc.Color",
  2925. "r": 255,
  2926. "g": 255,
  2927. "b": 255,
  2928. "a": 255
  2929. },
  2930. "_spriteFrame": {
  2931. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2932. "__expectedType__": "cc.SpriteFrame"
  2933. },
  2934. "_type": 1,
  2935. "_fillType": 0,
  2936. "_sizeMode": 0,
  2937. "_fillCenter": {
  2938. "__type__": "cc.Vec2",
  2939. "x": 0,
  2940. "y": 0
  2941. },
  2942. "_fillStart": 0,
  2943. "_fillRange": 0,
  2944. "_isTrimmedMode": true,
  2945. "_useGrayscale": false,
  2946. "_atlas": null,
  2947. "_id": "2e665uFOdBpaRo4xdPVpXl"
  2948. },
  2949. {
  2950. "__type__": "cc.Button",
  2951. "_name": "",
  2952. "_objFlags": 0,
  2953. "__editorExtras__": {},
  2954. "node": {
  2955. "__id__": 82
  2956. },
  2957. "_enabled": true,
  2958. "__prefab": null,
  2959. "clickEvents": [],
  2960. "_interactable": true,
  2961. "_transition": 2,
  2962. "_normalColor": {
  2963. "__type__": "cc.Color",
  2964. "r": 214,
  2965. "g": 214,
  2966. "b": 214,
  2967. "a": 255
  2968. },
  2969. "_hoverColor": {
  2970. "__type__": "cc.Color",
  2971. "r": 211,
  2972. "g": 211,
  2973. "b": 211,
  2974. "a": 255
  2975. },
  2976. "_pressedColor": {
  2977. "__type__": "cc.Color",
  2978. "r": 255,
  2979. "g": 255,
  2980. "b": 255,
  2981. "a": 255
  2982. },
  2983. "_disabledColor": {
  2984. "__type__": "cc.Color",
  2985. "r": 124,
  2986. "g": 124,
  2987. "b": 124,
  2988. "a": 255
  2989. },
  2990. "_normalSprite": {
  2991. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2992. "__expectedType__": "cc.SpriteFrame"
  2993. },
  2994. "_hoverSprite": {
  2995. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2996. "__expectedType__": "cc.SpriteFrame"
  2997. },
  2998. "_pressedSprite": {
  2999. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3000. "__expectedType__": "cc.SpriteFrame"
  3001. },
  3002. "_disabledSprite": {
  3003. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3004. "__expectedType__": "cc.SpriteFrame"
  3005. },
  3006. "_duration": 0.1,
  3007. "_zoomScale": 1.2,
  3008. "_target": {
  3009. "__id__": 82
  3010. },
  3011. "_id": "e67PYPjVhFRbq8YMNymK6L"
  3012. },
  3013. {
  3014. "__type__": "cc.Node",
  3015. "_name": "btn_back",
  3016. "_objFlags": 0,
  3017. "__editorExtras__": {},
  3018. "_parent": {
  3019. "__id__": 81
  3020. },
  3021. "_children": [
  3022. {
  3023. "__id__": 90
  3024. }
  3025. ],
  3026. "_active": true,
  3027. "_components": [
  3028. {
  3029. "__id__": 93
  3030. },
  3031. {
  3032. "__id__": 94
  3033. },
  3034. {
  3035. "__id__": 95
  3036. }
  3037. ],
  3038. "_prefab": null,
  3039. "_lpos": {
  3040. "__type__": "cc.Vec3",
  3041. "x": 1600,
  3042. "y": 540,
  3043. "z": 0
  3044. },
  3045. "_lrot": {
  3046. "__type__": "cc.Quat",
  3047. "x": 0,
  3048. "y": 0,
  3049. "z": 0,
  3050. "w": 1
  3051. },
  3052. "_lscale": {
  3053. "__type__": "cc.Vec3",
  3054. "x": 1,
  3055. "y": 1,
  3056. "z": 1
  3057. },
  3058. "_mobility": 0,
  3059. "_layer": 33554432,
  3060. "_euler": {
  3061. "__type__": "cc.Vec3",
  3062. "x": 0,
  3063. "y": 0,
  3064. "z": 0
  3065. },
  3066. "_id": "dbkVn27YxGfZg6p2GLWlja"
  3067. },
  3068. {
  3069. "__type__": "cc.Node",
  3070. "_name": "Label",
  3071. "_objFlags": 0,
  3072. "__editorExtras__": {},
  3073. "_parent": {
  3074. "__id__": 89
  3075. },
  3076. "_children": [],
  3077. "_active": true,
  3078. "_components": [
  3079. {
  3080. "__id__": 91
  3081. },
  3082. {
  3083. "__id__": 92
  3084. }
  3085. ],
  3086. "_prefab": null,
  3087. "_lpos": {
  3088. "__type__": "cc.Vec3",
  3089. "x": 0,
  3090. "y": 0,
  3091. "z": 0
  3092. },
  3093. "_lrot": {
  3094. "__type__": "cc.Quat",
  3095. "x": 0,
  3096. "y": 0,
  3097. "z": 0,
  3098. "w": 1
  3099. },
  3100. "_lscale": {
  3101. "__type__": "cc.Vec3",
  3102. "x": 1,
  3103. "y": 1,
  3104. "z": 1
  3105. },
  3106. "_mobility": 0,
  3107. "_layer": 33554432,
  3108. "_euler": {
  3109. "__type__": "cc.Vec3",
  3110. "x": 0,
  3111. "y": 0,
  3112. "z": 0
  3113. },
  3114. "_id": "4d7FEJgKdK77/xqrQD6dWd"
  3115. },
  3116. {
  3117. "__type__": "cc.UITransform",
  3118. "_name": "",
  3119. "_objFlags": 0,
  3120. "__editorExtras__": {},
  3121. "node": {
  3122. "__id__": 90
  3123. },
  3124. "_enabled": true,
  3125. "__prefab": null,
  3126. "_contentSize": {
  3127. "__type__": "cc.Size",
  3128. "width": 100,
  3129. "height": 40
  3130. },
  3131. "_anchorPoint": {
  3132. "__type__": "cc.Vec2",
  3133. "x": 0.5,
  3134. "y": 0.5
  3135. },
  3136. "_id": "b4Dfobv1ZOnJXfk1rVKo4P"
  3137. },
  3138. {
  3139. "__type__": "cc.Label",
  3140. "_name": "",
  3141. "_objFlags": 0,
  3142. "__editorExtras__": {},
  3143. "node": {
  3144. "__id__": 90
  3145. },
  3146. "_enabled": true,
  3147. "__prefab": null,
  3148. "_customMaterial": null,
  3149. "_srcBlendFactor": 2,
  3150. "_dstBlendFactor": 4,
  3151. "_color": {
  3152. "__type__": "cc.Color",
  3153. "r": 0,
  3154. "g": 0,
  3155. "b": 0,
  3156. "a": 255
  3157. },
  3158. "_string": "返回",
  3159. "_horizontalAlign": 1,
  3160. "_verticalAlign": 1,
  3161. "_actualFontSize": 20,
  3162. "_fontSize": 20,
  3163. "_fontFamily": "Arial",
  3164. "_lineHeight": 40,
  3165. "_overflow": 1,
  3166. "_enableWrapText": false,
  3167. "_font": null,
  3168. "_isSystemFontUsed": true,
  3169. "_spacingX": 0,
  3170. "_isItalic": false,
  3171. "_isBold": false,
  3172. "_isUnderline": false,
  3173. "_underlineHeight": 2,
  3174. "_cacheMode": 0,
  3175. "_id": "e8FyG/qw5Gr71Z9+u5ejR9"
  3176. },
  3177. {
  3178. "__type__": "cc.UITransform",
  3179. "_name": "",
  3180. "_objFlags": 0,
  3181. "__editorExtras__": {},
  3182. "node": {
  3183. "__id__": 89
  3184. },
  3185. "_enabled": true,
  3186. "__prefab": null,
  3187. "_contentSize": {
  3188. "__type__": "cc.Size",
  3189. "width": 200,
  3190. "height": 100
  3191. },
  3192. "_anchorPoint": {
  3193. "__type__": "cc.Vec2",
  3194. "x": 0.5,
  3195. "y": 0.5
  3196. },
  3197. "_id": "2eUifMPEJOx5JHlXJ8sl3G"
  3198. },
  3199. {
  3200. "__type__": "cc.Sprite",
  3201. "_name": "",
  3202. "_objFlags": 0,
  3203. "__editorExtras__": {},
  3204. "node": {
  3205. "__id__": 89
  3206. },
  3207. "_enabled": true,
  3208. "__prefab": null,
  3209. "_customMaterial": null,
  3210. "_srcBlendFactor": 2,
  3211. "_dstBlendFactor": 4,
  3212. "_color": {
  3213. "__type__": "cc.Color",
  3214. "r": 255,
  3215. "g": 255,
  3216. "b": 255,
  3217. "a": 255
  3218. },
  3219. "_spriteFrame": {
  3220. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3221. "__expectedType__": "cc.SpriteFrame"
  3222. },
  3223. "_type": 1,
  3224. "_fillType": 0,
  3225. "_sizeMode": 0,
  3226. "_fillCenter": {
  3227. "__type__": "cc.Vec2",
  3228. "x": 0,
  3229. "y": 0
  3230. },
  3231. "_fillStart": 0,
  3232. "_fillRange": 0,
  3233. "_isTrimmedMode": true,
  3234. "_useGrayscale": false,
  3235. "_atlas": null,
  3236. "_id": "cc0mJRrWJAXblYwYktKoAL"
  3237. },
  3238. {
  3239. "__type__": "cc.Button",
  3240. "_name": "",
  3241. "_objFlags": 0,
  3242. "__editorExtras__": {},
  3243. "node": {
  3244. "__id__": 89
  3245. },
  3246. "_enabled": true,
  3247. "__prefab": null,
  3248. "clickEvents": [],
  3249. "_interactable": true,
  3250. "_transition": 2,
  3251. "_normalColor": {
  3252. "__type__": "cc.Color",
  3253. "r": 214,
  3254. "g": 214,
  3255. "b": 214,
  3256. "a": 255
  3257. },
  3258. "_hoverColor": {
  3259. "__type__": "cc.Color",
  3260. "r": 211,
  3261. "g": 211,
  3262. "b": 211,
  3263. "a": 255
  3264. },
  3265. "_pressedColor": {
  3266. "__type__": "cc.Color",
  3267. "r": 255,
  3268. "g": 255,
  3269. "b": 255,
  3270. "a": 255
  3271. },
  3272. "_disabledColor": {
  3273. "__type__": "cc.Color",
  3274. "r": 124,
  3275. "g": 124,
  3276. "b": 124,
  3277. "a": 255
  3278. },
  3279. "_normalSprite": {
  3280. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3281. "__expectedType__": "cc.SpriteFrame"
  3282. },
  3283. "_hoverSprite": {
  3284. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3285. "__expectedType__": "cc.SpriteFrame"
  3286. },
  3287. "_pressedSprite": {
  3288. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3289. "__expectedType__": "cc.SpriteFrame"
  3290. },
  3291. "_disabledSprite": {
  3292. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3293. "__expectedType__": "cc.SpriteFrame"
  3294. },
  3295. "_duration": 0.1,
  3296. "_zoomScale": 1.2,
  3297. "_target": {
  3298. "__id__": 89
  3299. },
  3300. "_id": "c3vI9wAjpHaL2beNx+QBZy"
  3301. },
  3302. {
  3303. "__type__": "cc.Node",
  3304. "_name": "btn_save",
  3305. "_objFlags": 0,
  3306. "__editorExtras__": {},
  3307. "_parent": {
  3308. "__id__": 81
  3309. },
  3310. "_children": [
  3311. {
  3312. "__id__": 97
  3313. }
  3314. ],
  3315. "_active": true,
  3316. "_components": [
  3317. {
  3318. "__id__": 100
  3319. },
  3320. {
  3321. "__id__": 101
  3322. },
  3323. {
  3324. "__id__": 102
  3325. }
  3326. ],
  3327. "_prefab": null,
  3328. "_lpos": {
  3329. "__type__": "cc.Vec3",
  3330. "x": 1600,
  3331. "y": 760,
  3332. "z": 0
  3333. },
  3334. "_lrot": {
  3335. "__type__": "cc.Quat",
  3336. "x": 0,
  3337. "y": 0,
  3338. "z": 0,
  3339. "w": 1
  3340. },
  3341. "_lscale": {
  3342. "__type__": "cc.Vec3",
  3343. "x": 1,
  3344. "y": 1,
  3345. "z": 1
  3346. },
  3347. "_mobility": 0,
  3348. "_layer": 33554432,
  3349. "_euler": {
  3350. "__type__": "cc.Vec3",
  3351. "x": 0,
  3352. "y": 0,
  3353. "z": 0
  3354. },
  3355. "_id": "6eF0C/rjJEIbmylxGpM35i"
  3356. },
  3357. {
  3358. "__type__": "cc.Node",
  3359. "_name": "Label",
  3360. "_objFlags": 0,
  3361. "__editorExtras__": {},
  3362. "_parent": {
  3363. "__id__": 96
  3364. },
  3365. "_children": [],
  3366. "_active": true,
  3367. "_components": [
  3368. {
  3369. "__id__": 98
  3370. },
  3371. {
  3372. "__id__": 99
  3373. }
  3374. ],
  3375. "_prefab": null,
  3376. "_lpos": {
  3377. "__type__": "cc.Vec3",
  3378. "x": 0,
  3379. "y": 0,
  3380. "z": 0
  3381. },
  3382. "_lrot": {
  3383. "__type__": "cc.Quat",
  3384. "x": 0,
  3385. "y": 0,
  3386. "z": 0,
  3387. "w": 1
  3388. },
  3389. "_lscale": {
  3390. "__type__": "cc.Vec3",
  3391. "x": 1,
  3392. "y": 1,
  3393. "z": 1
  3394. },
  3395. "_mobility": 0,
  3396. "_layer": 33554432,
  3397. "_euler": {
  3398. "__type__": "cc.Vec3",
  3399. "x": 0,
  3400. "y": 0,
  3401. "z": 0
  3402. },
  3403. "_id": "80pCqfTRZCKaRwG1Q1uAnC"
  3404. },
  3405. {
  3406. "__type__": "cc.UITransform",
  3407. "_name": "",
  3408. "_objFlags": 0,
  3409. "__editorExtras__": {},
  3410. "node": {
  3411. "__id__": 97
  3412. },
  3413. "_enabled": true,
  3414. "__prefab": null,
  3415. "_contentSize": {
  3416. "__type__": "cc.Size",
  3417. "width": 100,
  3418. "height": 40
  3419. },
  3420. "_anchorPoint": {
  3421. "__type__": "cc.Vec2",
  3422. "x": 0.5,
  3423. "y": 0.5
  3424. },
  3425. "_id": "76j034ZsRISbkdYXy5nTER"
  3426. },
  3427. {
  3428. "__type__": "cc.Label",
  3429. "_name": "",
  3430. "_objFlags": 0,
  3431. "__editorExtras__": {},
  3432. "node": {
  3433. "__id__": 97
  3434. },
  3435. "_enabled": true,
  3436. "__prefab": null,
  3437. "_customMaterial": null,
  3438. "_srcBlendFactor": 2,
  3439. "_dstBlendFactor": 4,
  3440. "_color": {
  3441. "__type__": "cc.Color",
  3442. "r": 0,
  3443. "g": 0,
  3444. "b": 0,
  3445. "a": 255
  3446. },
  3447. "_string": "保存",
  3448. "_horizontalAlign": 1,
  3449. "_verticalAlign": 1,
  3450. "_actualFontSize": 20,
  3451. "_fontSize": 20,
  3452. "_fontFamily": "Arial",
  3453. "_lineHeight": 40,
  3454. "_overflow": 1,
  3455. "_enableWrapText": false,
  3456. "_font": null,
  3457. "_isSystemFontUsed": true,
  3458. "_spacingX": 0,
  3459. "_isItalic": false,
  3460. "_isBold": false,
  3461. "_isUnderline": false,
  3462. "_underlineHeight": 2,
  3463. "_cacheMode": 0,
  3464. "_id": "59enzo62FOkocqGe0XvDYb"
  3465. },
  3466. {
  3467. "__type__": "cc.UITransform",
  3468. "_name": "",
  3469. "_objFlags": 0,
  3470. "__editorExtras__": {},
  3471. "node": {
  3472. "__id__": 96
  3473. },
  3474. "_enabled": true,
  3475. "__prefab": null,
  3476. "_contentSize": {
  3477. "__type__": "cc.Size",
  3478. "width": 200,
  3479. "height": 100
  3480. },
  3481. "_anchorPoint": {
  3482. "__type__": "cc.Vec2",
  3483. "x": 0.5,
  3484. "y": 0.5
  3485. },
  3486. "_id": "2ajV+FzHhAVYnIluYEFNBX"
  3487. },
  3488. {
  3489. "__type__": "cc.Sprite",
  3490. "_name": "",
  3491. "_objFlags": 0,
  3492. "__editorExtras__": {},
  3493. "node": {
  3494. "__id__": 96
  3495. },
  3496. "_enabled": true,
  3497. "__prefab": null,
  3498. "_customMaterial": null,
  3499. "_srcBlendFactor": 2,
  3500. "_dstBlendFactor": 4,
  3501. "_color": {
  3502. "__type__": "cc.Color",
  3503. "r": 255,
  3504. "g": 255,
  3505. "b": 255,
  3506. "a": 255
  3507. },
  3508. "_spriteFrame": {
  3509. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3510. "__expectedType__": "cc.SpriteFrame"
  3511. },
  3512. "_type": 1,
  3513. "_fillType": 0,
  3514. "_sizeMode": 0,
  3515. "_fillCenter": {
  3516. "__type__": "cc.Vec2",
  3517. "x": 0,
  3518. "y": 0
  3519. },
  3520. "_fillStart": 0,
  3521. "_fillRange": 0,
  3522. "_isTrimmedMode": true,
  3523. "_useGrayscale": false,
  3524. "_atlas": null,
  3525. "_id": "922W2A04JKjKmmqu+Jvyxp"
  3526. },
  3527. {
  3528. "__type__": "cc.Button",
  3529. "_name": "",
  3530. "_objFlags": 0,
  3531. "__editorExtras__": {},
  3532. "node": {
  3533. "__id__": 96
  3534. },
  3535. "_enabled": true,
  3536. "__prefab": null,
  3537. "clickEvents": [],
  3538. "_interactable": true,
  3539. "_transition": 2,
  3540. "_normalColor": {
  3541. "__type__": "cc.Color",
  3542. "r": 214,
  3543. "g": 214,
  3544. "b": 214,
  3545. "a": 255
  3546. },
  3547. "_hoverColor": {
  3548. "__type__": "cc.Color",
  3549. "r": 211,
  3550. "g": 211,
  3551. "b": 211,
  3552. "a": 255
  3553. },
  3554. "_pressedColor": {
  3555. "__type__": "cc.Color",
  3556. "r": 255,
  3557. "g": 255,
  3558. "b": 255,
  3559. "a": 255
  3560. },
  3561. "_disabledColor": {
  3562. "__type__": "cc.Color",
  3563. "r": 124,
  3564. "g": 124,
  3565. "b": 124,
  3566. "a": 255
  3567. },
  3568. "_normalSprite": {
  3569. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3570. "__expectedType__": "cc.SpriteFrame"
  3571. },
  3572. "_hoverSprite": {
  3573. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3574. "__expectedType__": "cc.SpriteFrame"
  3575. },
  3576. "_pressedSprite": {
  3577. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3578. "__expectedType__": "cc.SpriteFrame"
  3579. },
  3580. "_disabledSprite": {
  3581. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3582. "__expectedType__": "cc.SpriteFrame"
  3583. },
  3584. "_duration": 0.1,
  3585. "_zoomScale": 1.2,
  3586. "_target": {
  3587. "__id__": 96
  3588. },
  3589. "_id": "b3krkcC2lOVI2JvqgVcTAC"
  3590. },
  3591. {
  3592. "__type__": "cc.Node",
  3593. "_name": "img",
  3594. "_objFlags": 0,
  3595. "__editorExtras__": {},
  3596. "_parent": {
  3597. "__id__": 81
  3598. },
  3599. "_children": [],
  3600. "_active": true,
  3601. "_components": [
  3602. {
  3603. "__id__": 104
  3604. },
  3605. {
  3606. "__id__": 105
  3607. }
  3608. ],
  3609. "_prefab": null,
  3610. "_lpos": {
  3611. "__type__": "cc.Vec3",
  3612. "x": 650,
  3613. "y": 149.768,
  3614. "z": 0
  3615. },
  3616. "_lrot": {
  3617. "__type__": "cc.Quat",
  3618. "x": 0,
  3619. "y": 0,
  3620. "z": 0,
  3621. "w": 1
  3622. },
  3623. "_lscale": {
  3624. "__type__": "cc.Vec3",
  3625. "x": 1.7,
  3626. "y": 1.7,
  3627. "z": 1
  3628. },
  3629. "_mobility": 0,
  3630. "_layer": 33554432,
  3631. "_euler": {
  3632. "__type__": "cc.Vec3",
  3633. "x": 0,
  3634. "y": 0,
  3635. "z": 0
  3636. },
  3637. "_id": "81YKjswd5Ni4fNe2iuvhep"
  3638. },
  3639. {
  3640. "__type__": "cc.UITransform",
  3641. "_name": "",
  3642. "_objFlags": 0,
  3643. "__editorExtras__": {},
  3644. "node": {
  3645. "__id__": 103
  3646. },
  3647. "_enabled": true,
  3648. "__prefab": null,
  3649. "_contentSize": {
  3650. "__type__": "cc.Size",
  3651. "width": 345,
  3652. "height": 480
  3653. },
  3654. "_anchorPoint": {
  3655. "__type__": "cc.Vec2",
  3656. "x": 0,
  3657. "y": 0
  3658. },
  3659. "_id": "a2rgJwWy9L3Ii2OL9KEcoC"
  3660. },
  3661. {
  3662. "__type__": "cc.Sprite",
  3663. "_name": "",
  3664. "_objFlags": 0,
  3665. "__editorExtras__": {},
  3666. "node": {
  3667. "__id__": 103
  3668. },
  3669. "_enabled": true,
  3670. "__prefab": null,
  3671. "_customMaterial": null,
  3672. "_srcBlendFactor": 2,
  3673. "_dstBlendFactor": 4,
  3674. "_color": {
  3675. "__type__": "cc.Color",
  3676. "r": 255,
  3677. "g": 255,
  3678. "b": 255,
  3679. "a": 255
  3680. },
  3681. "_spriteFrame": {
  3682. "__uuid__": "e434a981-5656-4d76-9641-4938a0828ce7@f9941",
  3683. "__expectedType__": "cc.SpriteFrame"
  3684. },
  3685. "_type": 0,
  3686. "_fillType": 0,
  3687. "_sizeMode": 0,
  3688. "_fillCenter": {
  3689. "__type__": "cc.Vec2",
  3690. "x": 0,
  3691. "y": 0
  3692. },
  3693. "_fillStart": 0,
  3694. "_fillRange": 0,
  3695. "_isTrimmedMode": true,
  3696. "_useGrayscale": false,
  3697. "_atlas": null,
  3698. "_id": "08a7xiMlVJba8tsE64JAvt"
  3699. },
  3700. {
  3701. "__type__": "cc.Node",
  3702. "_name": "circle",
  3703. "_objFlags": 0,
  3704. "__editorExtras__": {},
  3705. "_parent": {
  3706. "__id__": 81
  3707. },
  3708. "_children": [
  3709. {
  3710. "__id__": 107
  3711. },
  3712. {
  3713. "__id__": 114
  3714. },
  3715. {
  3716. "__id__": 121
  3717. }
  3718. ],
  3719. "_active": true,
  3720. "_components": [
  3721. {
  3722. "__id__": 124
  3723. },
  3724. {
  3725. "__id__": 125
  3726. },
  3727. {
  3728. "__id__": 126
  3729. }
  3730. ],
  3731. "_prefab": null,
  3732. "_lpos": {
  3733. "__type__": "cc.Vec3",
  3734. "x": 1600,
  3735. "y": 900,
  3736. "z": 0
  3737. },
  3738. "_lrot": {
  3739. "__type__": "cc.Quat",
  3740. "x": 0,
  3741. "y": 0,
  3742. "z": 0,
  3743. "w": 1
  3744. },
  3745. "_lscale": {
  3746. "__type__": "cc.Vec3",
  3747. "x": 1,
  3748. "y": 1,
  3749. "z": 1
  3750. },
  3751. "_mobility": 0,
  3752. "_layer": 33554432,
  3753. "_euler": {
  3754. "__type__": "cc.Vec3",
  3755. "x": 0,
  3756. "y": 0,
  3757. "z": 0
  3758. },
  3759. "_id": "49tszpUndOsKnUEvHq4gyF"
  3760. },
  3761. {
  3762. "__type__": "cc.Node",
  3763. "_name": "btn_cancel",
  3764. "_objFlags": 0,
  3765. "__editorExtras__": {},
  3766. "_parent": {
  3767. "__id__": 106
  3768. },
  3769. "_children": [
  3770. {
  3771. "__id__": 108
  3772. }
  3773. ],
  3774. "_active": true,
  3775. "_components": [
  3776. {
  3777. "__id__": 111
  3778. },
  3779. {
  3780. "__id__": 112
  3781. },
  3782. {
  3783. "__id__": 113
  3784. }
  3785. ],
  3786. "_prefab": null,
  3787. "_lpos": {
  3788. "__type__": "cc.Vec3",
  3789. "x": -52.444,
  3790. "y": 0,
  3791. "z": 0
  3792. },
  3793. "_lrot": {
  3794. "__type__": "cc.Quat",
  3795. "x": 0,
  3796. "y": 0,
  3797. "z": 0,
  3798. "w": 1
  3799. },
  3800. "_lscale": {
  3801. "__type__": "cc.Vec3",
  3802. "x": 0.5,
  3803. "y": 0.5,
  3804. "z": 1
  3805. },
  3806. "_mobility": 0,
  3807. "_layer": 33554432,
  3808. "_euler": {
  3809. "__type__": "cc.Vec3",
  3810. "x": 0,
  3811. "y": 0,
  3812. "z": 0
  3813. },
  3814. "_id": "b1cxdL4n1I9LezGuHMon8O"
  3815. },
  3816. {
  3817. "__type__": "cc.Node",
  3818. "_name": "Label",
  3819. "_objFlags": 0,
  3820. "__editorExtras__": {},
  3821. "_parent": {
  3822. "__id__": 107
  3823. },
  3824. "_children": [],
  3825. "_active": true,
  3826. "_components": [
  3827. {
  3828. "__id__": 109
  3829. },
  3830. {
  3831. "__id__": 110
  3832. }
  3833. ],
  3834. "_prefab": null,
  3835. "_lpos": {
  3836. "__type__": "cc.Vec3",
  3837. "x": 0,
  3838. "y": 0,
  3839. "z": 0
  3840. },
  3841. "_lrot": {
  3842. "__type__": "cc.Quat",
  3843. "x": 0,
  3844. "y": 0,
  3845. "z": 0,
  3846. "w": 1
  3847. },
  3848. "_lscale": {
  3849. "__type__": "cc.Vec3",
  3850. "x": 1,
  3851. "y": 1,
  3852. "z": 1
  3853. },
  3854. "_mobility": 0,
  3855. "_layer": 33554432,
  3856. "_euler": {
  3857. "__type__": "cc.Vec3",
  3858. "x": 0,
  3859. "y": 0,
  3860. "z": 0
  3861. },
  3862. "_id": "aa3mnCcTtAF5xe1xj0VB4m"
  3863. },
  3864. {
  3865. "__type__": "cc.UITransform",
  3866. "_name": "",
  3867. "_objFlags": 0,
  3868. "__editorExtras__": {},
  3869. "node": {
  3870. "__id__": 108
  3871. },
  3872. "_enabled": true,
  3873. "__prefab": null,
  3874. "_contentSize": {
  3875. "__type__": "cc.Size",
  3876. "width": 100,
  3877. "height": 40
  3878. },
  3879. "_anchorPoint": {
  3880. "__type__": "cc.Vec2",
  3881. "x": 0.5,
  3882. "y": 0.5
  3883. },
  3884. "_id": "6cRyCSJ/dIm5iX+yVKKXUa"
  3885. },
  3886. {
  3887. "__type__": "cc.Label",
  3888. "_name": "",
  3889. "_objFlags": 0,
  3890. "__editorExtras__": {},
  3891. "node": {
  3892. "__id__": 108
  3893. },
  3894. "_enabled": true,
  3895. "__prefab": null,
  3896. "_customMaterial": null,
  3897. "_srcBlendFactor": 2,
  3898. "_dstBlendFactor": 4,
  3899. "_color": {
  3900. "__type__": "cc.Color",
  3901. "r": 0,
  3902. "g": 0,
  3903. "b": 0,
  3904. "a": 255
  3905. },
  3906. "_string": "取消",
  3907. "_horizontalAlign": 1,
  3908. "_verticalAlign": 1,
  3909. "_actualFontSize": 20,
  3910. "_fontSize": 20,
  3911. "_fontFamily": "Arial",
  3912. "_lineHeight": 40,
  3913. "_overflow": 1,
  3914. "_enableWrapText": false,
  3915. "_font": null,
  3916. "_isSystemFontUsed": true,
  3917. "_spacingX": 0,
  3918. "_isItalic": false,
  3919. "_isBold": false,
  3920. "_isUnderline": false,
  3921. "_underlineHeight": 2,
  3922. "_cacheMode": 0,
  3923. "_id": "1fmxErxR9EX6u1/cSp2Lh1"
  3924. },
  3925. {
  3926. "__type__": "cc.UITransform",
  3927. "_name": "",
  3928. "_objFlags": 0,
  3929. "__editorExtras__": {},
  3930. "node": {
  3931. "__id__": 107
  3932. },
  3933. "_enabled": true,
  3934. "__prefab": null,
  3935. "_contentSize": {
  3936. "__type__": "cc.Size",
  3937. "width": 100,
  3938. "height": 40
  3939. },
  3940. "_anchorPoint": {
  3941. "__type__": "cc.Vec2",
  3942. "x": 0.5,
  3943. "y": 0.5
  3944. },
  3945. "_id": "12KlRqcFJLvZU+xHyBop6K"
  3946. },
  3947. {
  3948. "__type__": "cc.Sprite",
  3949. "_name": "",
  3950. "_objFlags": 0,
  3951. "__editorExtras__": {},
  3952. "node": {
  3953. "__id__": 107
  3954. },
  3955. "_enabled": true,
  3956. "__prefab": null,
  3957. "_customMaterial": null,
  3958. "_srcBlendFactor": 2,
  3959. "_dstBlendFactor": 4,
  3960. "_color": {
  3961. "__type__": "cc.Color",
  3962. "r": 255,
  3963. "g": 255,
  3964. "b": 255,
  3965. "a": 255
  3966. },
  3967. "_spriteFrame": {
  3968. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3969. "__expectedType__": "cc.SpriteFrame"
  3970. },
  3971. "_type": 1,
  3972. "_fillType": 0,
  3973. "_sizeMode": 0,
  3974. "_fillCenter": {
  3975. "__type__": "cc.Vec2",
  3976. "x": 0,
  3977. "y": 0
  3978. },
  3979. "_fillStart": 0,
  3980. "_fillRange": 0,
  3981. "_isTrimmedMode": true,
  3982. "_useGrayscale": false,
  3983. "_atlas": null,
  3984. "_id": "52YkG0mh5JJo0oIVGCsT4u"
  3985. },
  3986. {
  3987. "__type__": "cc.Button",
  3988. "_name": "",
  3989. "_objFlags": 0,
  3990. "__editorExtras__": {},
  3991. "node": {
  3992. "__id__": 107
  3993. },
  3994. "_enabled": true,
  3995. "__prefab": null,
  3996. "clickEvents": [],
  3997. "_interactable": true,
  3998. "_transition": 2,
  3999. "_normalColor": {
  4000. "__type__": "cc.Color",
  4001. "r": 214,
  4002. "g": 214,
  4003. "b": 214,
  4004. "a": 255
  4005. },
  4006. "_hoverColor": {
  4007. "__type__": "cc.Color",
  4008. "r": 211,
  4009. "g": 211,
  4010. "b": 211,
  4011. "a": 255
  4012. },
  4013. "_pressedColor": {
  4014. "__type__": "cc.Color",
  4015. "r": 255,
  4016. "g": 255,
  4017. "b": 255,
  4018. "a": 255
  4019. },
  4020. "_disabledColor": {
  4021. "__type__": "cc.Color",
  4022. "r": 124,
  4023. "g": 124,
  4024. "b": 124,
  4025. "a": 255
  4026. },
  4027. "_normalSprite": {
  4028. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4029. "__expectedType__": "cc.SpriteFrame"
  4030. },
  4031. "_hoverSprite": {
  4032. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4033. "__expectedType__": "cc.SpriteFrame"
  4034. },
  4035. "_pressedSprite": {
  4036. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  4037. "__expectedType__": "cc.SpriteFrame"
  4038. },
  4039. "_disabledSprite": {
  4040. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  4041. "__expectedType__": "cc.SpriteFrame"
  4042. },
  4043. "_duration": 0.1,
  4044. "_zoomScale": 1.2,
  4045. "_target": {
  4046. "__id__": 107
  4047. },
  4048. "_id": "9d7ZTKhH1Hw6I3N/lBHd6u"
  4049. },
  4050. {
  4051. "__type__": "cc.Node",
  4052. "_name": "btn_delete",
  4053. "_objFlags": 0,
  4054. "__editorExtras__": {},
  4055. "_parent": {
  4056. "__id__": 106
  4057. },
  4058. "_children": [
  4059. {
  4060. "__id__": 115
  4061. }
  4062. ],
  4063. "_active": true,
  4064. "_components": [
  4065. {
  4066. "__id__": 118
  4067. },
  4068. {
  4069. "__id__": 119
  4070. },
  4071. {
  4072. "__id__": 120
  4073. }
  4074. ],
  4075. "_prefab": null,
  4076. "_lpos": {
  4077. "__type__": "cc.Vec3",
  4078. "x": 53.858,
  4079. "y": 0,
  4080. "z": 0
  4081. },
  4082. "_lrot": {
  4083. "__type__": "cc.Quat",
  4084. "x": 0,
  4085. "y": 0,
  4086. "z": 0,
  4087. "w": 1
  4088. },
  4089. "_lscale": {
  4090. "__type__": "cc.Vec3",
  4091. "x": 0.5,
  4092. "y": 0.5,
  4093. "z": 1
  4094. },
  4095. "_mobility": 0,
  4096. "_layer": 33554432,
  4097. "_euler": {
  4098. "__type__": "cc.Vec3",
  4099. "x": 0,
  4100. "y": 0,
  4101. "z": 0
  4102. },
  4103. "_id": "8cpASfZbdBipd8Xcc9rw63"
  4104. },
  4105. {
  4106. "__type__": "cc.Node",
  4107. "_name": "Label",
  4108. "_objFlags": 0,
  4109. "__editorExtras__": {},
  4110. "_parent": {
  4111. "__id__": 114
  4112. },
  4113. "_children": [],
  4114. "_active": true,
  4115. "_components": [
  4116. {
  4117. "__id__": 116
  4118. },
  4119. {
  4120. "__id__": 117
  4121. }
  4122. ],
  4123. "_prefab": null,
  4124. "_lpos": {
  4125. "__type__": "cc.Vec3",
  4126. "x": 0,
  4127. "y": 0,
  4128. "z": 0
  4129. },
  4130. "_lrot": {
  4131. "__type__": "cc.Quat",
  4132. "x": 0,
  4133. "y": 0,
  4134. "z": 0,
  4135. "w": 1
  4136. },
  4137. "_lscale": {
  4138. "__type__": "cc.Vec3",
  4139. "x": 1,
  4140. "y": 1,
  4141. "z": 1
  4142. },
  4143. "_mobility": 0,
  4144. "_layer": 33554432,
  4145. "_euler": {
  4146. "__type__": "cc.Vec3",
  4147. "x": 0,
  4148. "y": 0,
  4149. "z": 0
  4150. },
  4151. "_id": "52hmIfMeZKKoMUDti+v2g8"
  4152. },
  4153. {
  4154. "__type__": "cc.UITransform",
  4155. "_name": "",
  4156. "_objFlags": 0,
  4157. "__editorExtras__": {},
  4158. "node": {
  4159. "__id__": 115
  4160. },
  4161. "_enabled": true,
  4162. "__prefab": null,
  4163. "_contentSize": {
  4164. "__type__": "cc.Size",
  4165. "width": 100,
  4166. "height": 40
  4167. },
  4168. "_anchorPoint": {
  4169. "__type__": "cc.Vec2",
  4170. "x": 0.5,
  4171. "y": 0.5
  4172. },
  4173. "_id": "fa8L/Zat5Jsp0XUTjhW1oV"
  4174. },
  4175. {
  4176. "__type__": "cc.Label",
  4177. "_name": "",
  4178. "_objFlags": 0,
  4179. "__editorExtras__": {},
  4180. "node": {
  4181. "__id__": 115
  4182. },
  4183. "_enabled": true,
  4184. "__prefab": null,
  4185. "_customMaterial": null,
  4186. "_srcBlendFactor": 2,
  4187. "_dstBlendFactor": 4,
  4188. "_color": {
  4189. "__type__": "cc.Color",
  4190. "r": 0,
  4191. "g": 0,
  4192. "b": 0,
  4193. "a": 255
  4194. },
  4195. "_string": "删除",
  4196. "_horizontalAlign": 1,
  4197. "_verticalAlign": 1,
  4198. "_actualFontSize": 20,
  4199. "_fontSize": 20,
  4200. "_fontFamily": "Arial",
  4201. "_lineHeight": 40,
  4202. "_overflow": 1,
  4203. "_enableWrapText": false,
  4204. "_font": null,
  4205. "_isSystemFontUsed": true,
  4206. "_spacingX": 0,
  4207. "_isItalic": false,
  4208. "_isBold": false,
  4209. "_isUnderline": false,
  4210. "_underlineHeight": 2,
  4211. "_cacheMode": 0,
  4212. "_id": "d88Ry031dCgJphwtMCL4S2"
  4213. },
  4214. {
  4215. "__type__": "cc.UITransform",
  4216. "_name": "",
  4217. "_objFlags": 0,
  4218. "__editorExtras__": {},
  4219. "node": {
  4220. "__id__": 114
  4221. },
  4222. "_enabled": true,
  4223. "__prefab": null,
  4224. "_contentSize": {
  4225. "__type__": "cc.Size",
  4226. "width": 100,
  4227. "height": 40
  4228. },
  4229. "_anchorPoint": {
  4230. "__type__": "cc.Vec2",
  4231. "x": 0.5,
  4232. "y": 0.5
  4233. },
  4234. "_id": "e0/2azRSlPPa/D2g+St/7M"
  4235. },
  4236. {
  4237. "__type__": "cc.Sprite",
  4238. "_name": "",
  4239. "_objFlags": 0,
  4240. "__editorExtras__": {},
  4241. "node": {
  4242. "__id__": 114
  4243. },
  4244. "_enabled": true,
  4245. "__prefab": null,
  4246. "_customMaterial": null,
  4247. "_srcBlendFactor": 2,
  4248. "_dstBlendFactor": 4,
  4249. "_color": {
  4250. "__type__": "cc.Color",
  4251. "r": 255,
  4252. "g": 255,
  4253. "b": 255,
  4254. "a": 255
  4255. },
  4256. "_spriteFrame": {
  4257. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4258. "__expectedType__": "cc.SpriteFrame"
  4259. },
  4260. "_type": 1,
  4261. "_fillType": 0,
  4262. "_sizeMode": 0,
  4263. "_fillCenter": {
  4264. "__type__": "cc.Vec2",
  4265. "x": 0,
  4266. "y": 0
  4267. },
  4268. "_fillStart": 0,
  4269. "_fillRange": 0,
  4270. "_isTrimmedMode": true,
  4271. "_useGrayscale": false,
  4272. "_atlas": null,
  4273. "_id": "28jw4/Rt9LtKIO6mb7kLKD"
  4274. },
  4275. {
  4276. "__type__": "cc.Button",
  4277. "_name": "",
  4278. "_objFlags": 0,
  4279. "__editorExtras__": {},
  4280. "node": {
  4281. "__id__": 114
  4282. },
  4283. "_enabled": true,
  4284. "__prefab": null,
  4285. "clickEvents": [],
  4286. "_interactable": true,
  4287. "_transition": 2,
  4288. "_normalColor": {
  4289. "__type__": "cc.Color",
  4290. "r": 214,
  4291. "g": 214,
  4292. "b": 214,
  4293. "a": 255
  4294. },
  4295. "_hoverColor": {
  4296. "__type__": "cc.Color",
  4297. "r": 211,
  4298. "g": 211,
  4299. "b": 211,
  4300. "a": 255
  4301. },
  4302. "_pressedColor": {
  4303. "__type__": "cc.Color",
  4304. "r": 255,
  4305. "g": 255,
  4306. "b": 255,
  4307. "a": 255
  4308. },
  4309. "_disabledColor": {
  4310. "__type__": "cc.Color",
  4311. "r": 124,
  4312. "g": 124,
  4313. "b": 124,
  4314. "a": 255
  4315. },
  4316. "_normalSprite": {
  4317. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4318. "__expectedType__": "cc.SpriteFrame"
  4319. },
  4320. "_hoverSprite": {
  4321. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4322. "__expectedType__": "cc.SpriteFrame"
  4323. },
  4324. "_pressedSprite": {
  4325. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  4326. "__expectedType__": "cc.SpriteFrame"
  4327. },
  4328. "_disabledSprite": {
  4329. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  4330. "__expectedType__": "cc.SpriteFrame"
  4331. },
  4332. "_duration": 0.1,
  4333. "_zoomScale": 1.2,
  4334. "_target": {
  4335. "__id__": 114
  4336. },
  4337. "_id": "368y6m4d5JromK+ayhydnq"
  4338. },
  4339. {
  4340. "__type__": "cc.Node",
  4341. "_name": "Sprite",
  4342. "_objFlags": 0,
  4343. "__editorExtras__": {},
  4344. "_parent": {
  4345. "__id__": 106
  4346. },
  4347. "_children": [],
  4348. "_active": true,
  4349. "_components": [
  4350. {
  4351. "__id__": 122
  4352. },
  4353. {
  4354. "__id__": 123
  4355. }
  4356. ],
  4357. "_prefab": null,
  4358. "_lpos": {
  4359. "__type__": "cc.Vec3",
  4360. "x": 0,
  4361. "y": 0,
  4362. "z": 0
  4363. },
  4364. "_lrot": {
  4365. "__type__": "cc.Quat",
  4366. "x": 0,
  4367. "y": 0,
  4368. "z": 0,
  4369. "w": 1
  4370. },
  4371. "_lscale": {
  4372. "__type__": "cc.Vec3",
  4373. "x": 1,
  4374. "y": 1,
  4375. "z": 1
  4376. },
  4377. "_mobility": 0,
  4378. "_layer": 33554432,
  4379. "_euler": {
  4380. "__type__": "cc.Vec3",
  4381. "x": 0,
  4382. "y": 0,
  4383. "z": 0
  4384. },
  4385. "_id": "e67ZNNZiZNKqFUp894Ck3b"
  4386. },
  4387. {
  4388. "__type__": "cc.UITransform",
  4389. "_name": "",
  4390. "_objFlags": 0,
  4391. "__editorExtras__": {},
  4392. "node": {
  4393. "__id__": 121
  4394. },
  4395. "_enabled": true,
  4396. "__prefab": null,
  4397. "_contentSize": {
  4398. "__type__": "cc.Size",
  4399. "width": 40,
  4400. "height": 36
  4401. },
  4402. "_anchorPoint": {
  4403. "__type__": "cc.Vec2",
  4404. "x": 0.5,
  4405. "y": 0.5
  4406. },
  4407. "_id": "cc/4kfFO1EQJOpSFqqadB0"
  4408. },
  4409. {
  4410. "__type__": "cc.Sprite",
  4411. "_name": "",
  4412. "_objFlags": 0,
  4413. "__editorExtras__": {},
  4414. "node": {
  4415. "__id__": 121
  4416. },
  4417. "_enabled": true,
  4418. "__prefab": null,
  4419. "_customMaterial": null,
  4420. "_srcBlendFactor": 2,
  4421. "_dstBlendFactor": 4,
  4422. "_color": {
  4423. "__type__": "cc.Color",
  4424. "r": 255,
  4425. "g": 255,
  4426. "b": 255,
  4427. "a": 255
  4428. },
  4429. "_spriteFrame": null,
  4430. "_type": 0,
  4431. "_fillType": 0,
  4432. "_sizeMode": 0,
  4433. "_fillCenter": {
  4434. "__type__": "cc.Vec2",
  4435. "x": 0,
  4436. "y": 0
  4437. },
  4438. "_fillStart": 0,
  4439. "_fillRange": 0,
  4440. "_isTrimmedMode": true,
  4441. "_useGrayscale": false,
  4442. "_atlas": null,
  4443. "_id": "3fGw0CQGFPqoPHotRGnoE5"
  4444. },
  4445. {
  4446. "__type__": "cc.UITransform",
  4447. "_name": "",
  4448. "_objFlags": 0,
  4449. "__editorExtras__": {},
  4450. "node": {
  4451. "__id__": 106
  4452. },
  4453. "_enabled": true,
  4454. "__prefab": null,
  4455. "_contentSize": {
  4456. "__type__": "cc.Size",
  4457. "width": 102,
  4458. "height": 102
  4459. },
  4460. "_anchorPoint": {
  4461. "__type__": "cc.Vec2",
  4462. "x": 0.5,
  4463. "y": 0.5
  4464. },
  4465. "_id": "4bLlZhMmFIy6olFl+tdP8f"
  4466. },
  4467. {
  4468. "__type__": "cc.Sprite",
  4469. "_name": "",
  4470. "_objFlags": 0,
  4471. "__editorExtras__": {},
  4472. "node": {
  4473. "__id__": 106
  4474. },
  4475. "_enabled": true,
  4476. "__prefab": null,
  4477. "_customMaterial": null,
  4478. "_srcBlendFactor": 2,
  4479. "_dstBlendFactor": 4,
  4480. "_color": {
  4481. "__type__": "cc.Color",
  4482. "r": 255,
  4483. "g": 255,
  4484. "b": 255,
  4485. "a": 255
  4486. },
  4487. "_spriteFrame": {
  4488. "__uuid__": "0135c9bc-71b8-484b-8c91-39e882267f7c@f9941",
  4489. "__expectedType__": "cc.SpriteFrame"
  4490. },
  4491. "_type": 0,
  4492. "_fillType": 0,
  4493. "_sizeMode": 0,
  4494. "_fillCenter": {
  4495. "__type__": "cc.Vec2",
  4496. "x": 0,
  4497. "y": 0
  4498. },
  4499. "_fillStart": 0,
  4500. "_fillRange": 0,
  4501. "_isTrimmedMode": true,
  4502. "_useGrayscale": false,
  4503. "_atlas": null,
  4504. "_id": "3a5OFOOLVJqJkHohpNuRBD"
  4505. },
  4506. {
  4507. "__type__": "bfa3eNzx1NEsJHhkkLKx/dh",
  4508. "_name": "",
  4509. "_objFlags": 0,
  4510. "__editorExtras__": {},
  4511. "node": {
  4512. "__id__": 106
  4513. },
  4514. "_enabled": true,
  4515. "__prefab": null,
  4516. "btn_cancel": {
  4517. "__id__": 107
  4518. },
  4519. "btn_delete": {
  4520. "__id__": 114
  4521. },
  4522. "sf": {
  4523. "__id__": 121
  4524. },
  4525. "_id": "0aTRvV4oJCSYjfgjXSSf7S"
  4526. },
  4527. {
  4528. "__type__": "cc.Node",
  4529. "_name": "Label-001",
  4530. "_objFlags": 0,
  4531. "__editorExtras__": {},
  4532. "_parent": {
  4533. "__id__": 81
  4534. },
  4535. "_children": [],
  4536. "_active": true,
  4537. "_components": [
  4538. {
  4539. "__id__": 128
  4540. },
  4541. {
  4542. "__id__": 129
  4543. }
  4544. ],
  4545. "_prefab": null,
  4546. "_lpos": {
  4547. "__type__": "cc.Vec3",
  4548. "x": 1600,
  4549. "y": 450,
  4550. "z": 0
  4551. },
  4552. "_lrot": {
  4553. "__type__": "cc.Quat",
  4554. "x": 0,
  4555. "y": 0,
  4556. "z": 0,
  4557. "w": 1
  4558. },
  4559. "_lscale": {
  4560. "__type__": "cc.Vec3",
  4561. "x": 1,
  4562. "y": 1,
  4563. "z": 1
  4564. },
  4565. "_mobility": 0,
  4566. "_layer": 33554432,
  4567. "_euler": {
  4568. "__type__": "cc.Vec3",
  4569. "x": 0,
  4570. "y": 0,
  4571. "z": 0
  4572. },
  4573. "_id": "5eSkCF5SVH1bEtsZg3eecd"
  4574. },
  4575. {
  4576. "__type__": "cc.UITransform",
  4577. "_name": "",
  4578. "_objFlags": 0,
  4579. "__editorExtras__": {},
  4580. "node": {
  4581. "__id__": 127
  4582. },
  4583. "_enabled": true,
  4584. "__prefab": null,
  4585. "_contentSize": {
  4586. "__type__": "cc.Size",
  4587. "width": 103.359375,
  4588. "height": 50.4
  4589. },
  4590. "_anchorPoint": {
  4591. "__type__": "cc.Vec2",
  4592. "x": 0.5,
  4593. "y": 0.5
  4594. },
  4595. "_id": "ec4yFVP+VPLYAQxRNbnc1a"
  4596. },
  4597. {
  4598. "__type__": "cc.Label",
  4599. "_name": "",
  4600. "_objFlags": 0,
  4601. "__editorExtras__": {},
  4602. "node": {
  4603. "__id__": 127
  4604. },
  4605. "_enabled": true,
  4606. "__prefab": null,
  4607. "_customMaterial": null,
  4608. "_srcBlendFactor": 2,
  4609. "_dstBlendFactor": 4,
  4610. "_color": {
  4611. "__type__": "cc.Color",
  4612. "r": 255,
  4613. "g": 255,
  4614. "b": 255,
  4615. "a": 255
  4616. },
  4617. "_string": "<关卡名称>",
  4618. "_horizontalAlign": 1,
  4619. "_verticalAlign": 1,
  4620. "_actualFontSize": 20,
  4621. "_fontSize": 20,
  4622. "_fontFamily": "Arial",
  4623. "_lineHeight": 40,
  4624. "_overflow": 0,
  4625. "_enableWrapText": true,
  4626. "_font": null,
  4627. "_isSystemFontUsed": true,
  4628. "_spacingX": 0,
  4629. "_isItalic": false,
  4630. "_isBold": false,
  4631. "_isUnderline": false,
  4632. "_underlineHeight": 2,
  4633. "_cacheMode": 0,
  4634. "_id": "3aExpmu41BBLi2OLUPu1d9"
  4635. },
  4636. {
  4637. "__type__": "cc.Node",
  4638. "_objFlags": 0,
  4639. "_parent": {
  4640. "__id__": 81
  4641. },
  4642. "_prefab": {
  4643. "__id__": 131
  4644. },
  4645. "__editorExtras__": {}
  4646. },
  4647. {
  4648. "__type__": "cc.PrefabInfo",
  4649. "root": {
  4650. "__id__": 130
  4651. },
  4652. "asset": {
  4653. "__uuid__": "1e9e31bd-4dd6-42cf-bea5-9142225d4524",
  4654. "__expectedType__": "cc.Prefab"
  4655. },
  4656. "fileId": "e2Js/PfCRCoK/ZvwUwCNQt",
  4657. "instance": {
  4658. "__id__": 132
  4659. },
  4660. "targetOverrides": [],
  4661. "nestedPrefabInstanceRoots": null
  4662. },
  4663. {
  4664. "__type__": "cc.PrefabInstance",
  4665. "fileId": "16YQjYYglIvKpmoqk3sY+g",
  4666. "prefabRootNode": null,
  4667. "mountedChildren": [],
  4668. "mountedComponents": [],
  4669. "propertyOverrides": [
  4670. {
  4671. "__id__": 133
  4672. },
  4673. {
  4674. "__id__": 135
  4675. },
  4676. {
  4677. "__id__": 136
  4678. },
  4679. {
  4680. "__id__": 137
  4681. },
  4682. {
  4683. "__id__": 138
  4684. },
  4685. {
  4686. "__id__": 175
  4687. }
  4688. ],
  4689. "removedComponents": []
  4690. },
  4691. {
  4692. "__type__": "CCPropertyOverrideInfo",
  4693. "targetInfo": {
  4694. "__id__": 134
  4695. },
  4696. "propertyPath": [
  4697. "_name"
  4698. ],
  4699. "value": "level_list"
  4700. },
  4701. {
  4702. "__type__": "cc.TargetInfo",
  4703. "localID": [
  4704. "e2Js/PfCRCoK/ZvwUwCNQt"
  4705. ]
  4706. },
  4707. {
  4708. "__type__": "CCPropertyOverrideInfo",
  4709. "targetInfo": {
  4710. "__id__": 134
  4711. },
  4712. "propertyPath": [
  4713. "_lpos"
  4714. ],
  4715. "value": {
  4716. "__type__": "cc.Vec3",
  4717. "x": 0,
  4718. "y": 0,
  4719. "z": 0
  4720. }
  4721. },
  4722. {
  4723. "__type__": "CCPropertyOverrideInfo",
  4724. "targetInfo": {
  4725. "__id__": 134
  4726. },
  4727. "propertyPath": [
  4728. "_lrot"
  4729. ],
  4730. "value": {
  4731. "__type__": "cc.Quat",
  4732. "x": 0,
  4733. "y": 0,
  4734. "z": 0,
  4735. "w": 1
  4736. }
  4737. },
  4738. {
  4739. "__type__": "CCPropertyOverrideInfo",
  4740. "targetInfo": {
  4741. "__id__": 134
  4742. },
  4743. "propertyPath": [
  4744. "_euler"
  4745. ],
  4746. "value": {
  4747. "__type__": "cc.Vec3",
  4748. "x": 0,
  4749. "y": 0,
  4750. "z": 0
  4751. }
  4752. },
  4753. {
  4754. "__type__": "CCPropertyOverrideInfo",
  4755. "targetInfo": {
  4756. "__id__": 139
  4757. },
  4758. "propertyPath": [
  4759. "game_page"
  4760. ],
  4761. "value": {
  4762. "__id__": 140
  4763. }
  4764. },
  4765. {
  4766. "__type__": "cc.TargetInfo",
  4767. "localID": [
  4768. "c0jCcjGjBGNokGQItd4ax/"
  4769. ]
  4770. },
  4771. {
  4772. "__type__": "3e81b6hw2NFdoWPWIy8Vq/3",
  4773. "_name": "",
  4774. "_objFlags": 0,
  4775. "__editorExtras__": {},
  4776. "node": {
  4777. "__id__": 81
  4778. },
  4779. "_enabled": true,
  4780. "__prefab": null,
  4781. "level_list": null,
  4782. "btn_cancel": {
  4783. "__id__": 89
  4784. },
  4785. "btn_save": {
  4786. "__id__": 96
  4787. },
  4788. "btn_select_level": {
  4789. "__id__": 82
  4790. },
  4791. "cur_spr": {
  4792. "__id__": 103
  4793. },
  4794. "item_prefab": {
  4795. "__uuid__": "e9527b58-d08d-40e9-bb2f-ed989a90cbe0",
  4796. "__expectedType__": "cc.Prefab"
  4797. },
  4798. "circle": {
  4799. "__id__": 106
  4800. },
  4801. "select_com": {
  4802. "__id__": 141
  4803. },
  4804. "lab_title": {
  4805. "__id__": 127
  4806. },
  4807. "_id": "a9RFsxMY5JpJpJaYfsT3R7"
  4808. },
  4809. {
  4810. "__type__": "cc.Node",
  4811. "_name": "select_com",
  4812. "_objFlags": 0,
  4813. "__editorExtras__": {},
  4814. "_parent": {
  4815. "__id__": 81
  4816. },
  4817. "_children": [
  4818. {
  4819. "__id__": 142
  4820. },
  4821. {
  4822. "__id__": 146
  4823. },
  4824. {
  4825. "__id__": 149
  4826. },
  4827. {
  4828. "__id__": 156
  4829. },
  4830. {
  4831. "__id__": 163
  4832. }
  4833. ],
  4834. "_active": false,
  4835. "_components": [
  4836. {
  4837. "__id__": 170
  4838. },
  4839. {
  4840. "__id__": 171
  4841. },
  4842. {
  4843. "__id__": 172
  4844. },
  4845. {
  4846. "__id__": 173
  4847. },
  4848. {
  4849. "__id__": 174
  4850. }
  4851. ],
  4852. "_prefab": null,
  4853. "_lpos": {
  4854. "__type__": "cc.Vec3",
  4855. "x": 960,
  4856. "y": 540,
  4857. "z": 0
  4858. },
  4859. "_lrot": {
  4860. "__type__": "cc.Quat",
  4861. "x": 0,
  4862. "y": 0,
  4863. "z": 0,
  4864. "w": 1
  4865. },
  4866. "_lscale": {
  4867. "__type__": "cc.Vec3",
  4868. "x": 1,
  4869. "y": 1,
  4870. "z": 1
  4871. },
  4872. "_mobility": 0,
  4873. "_layer": 33554432,
  4874. "_euler": {
  4875. "__type__": "cc.Vec3",
  4876. "x": 0,
  4877. "y": 0,
  4878. "z": 0
  4879. },
  4880. "_id": "61uaT4/P1NJKpYW1+Sed6K"
  4881. },
  4882. {
  4883. "__type__": "cc.Node",
  4884. "_name": "mask",
  4885. "_objFlags": 0,
  4886. "__editorExtras__": {},
  4887. "_parent": {
  4888. "__id__": 141
  4889. },
  4890. "_children": [],
  4891. "_active": true,
  4892. "_components": [
  4893. {
  4894. "__id__": 143
  4895. },
  4896. {
  4897. "__id__": 144
  4898. },
  4899. {
  4900. "__id__": 145
  4901. }
  4902. ],
  4903. "_prefab": null,
  4904. "_lpos": {
  4905. "__type__": "cc.Vec3",
  4906. "x": 0,
  4907. "y": 0,
  4908. "z": 0
  4909. },
  4910. "_lrot": {
  4911. "__type__": "cc.Quat",
  4912. "x": 0,
  4913. "y": 0,
  4914. "z": 0,
  4915. "w": 1
  4916. },
  4917. "_lscale": {
  4918. "__type__": "cc.Vec3",
  4919. "x": 1,
  4920. "y": 1,
  4921. "z": 1
  4922. },
  4923. "_mobility": 0,
  4924. "_layer": 33554432,
  4925. "_euler": {
  4926. "__type__": "cc.Vec3",
  4927. "x": 0,
  4928. "y": 0,
  4929. "z": 0
  4930. },
  4931. "_id": "0dye9AZ4pD/aWCkIz12K+E"
  4932. },
  4933. {
  4934. "__type__": "cc.UITransform",
  4935. "_name": "",
  4936. "_objFlags": 0,
  4937. "__editorExtras__": {},
  4938. "node": {
  4939. "__id__": 142
  4940. },
  4941. "_enabled": true,
  4942. "__prefab": null,
  4943. "_contentSize": {
  4944. "__type__": "cc.Size",
  4945. "width": 1920,
  4946. "height": 1080
  4947. },
  4948. "_anchorPoint": {
  4949. "__type__": "cc.Vec2",
  4950. "x": 0.5,
  4951. "y": 0.5
  4952. },
  4953. "_id": "acoDM4BW5KCa2+7/XPK1gq"
  4954. },
  4955. {
  4956. "__type__": "cc.Sprite",
  4957. "_name": "",
  4958. "_objFlags": 0,
  4959. "__editorExtras__": {},
  4960. "node": {
  4961. "__id__": 142
  4962. },
  4963. "_enabled": true,
  4964. "__prefab": null,
  4965. "_customMaterial": null,
  4966. "_srcBlendFactor": 2,
  4967. "_dstBlendFactor": 4,
  4968. "_color": {
  4969. "__type__": "cc.Color",
  4970. "r": 0,
  4971. "g": 0,
  4972. "b": 0,
  4973. "a": 107
  4974. },
  4975. "_spriteFrame": {
  4976. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4977. "__expectedType__": "cc.SpriteFrame"
  4978. },
  4979. "_type": 1,
  4980. "_fillType": 0,
  4981. "_sizeMode": 0,
  4982. "_fillCenter": {
  4983. "__type__": "cc.Vec2",
  4984. "x": 0,
  4985. "y": 0
  4986. },
  4987. "_fillStart": 0,
  4988. "_fillRange": 0,
  4989. "_isTrimmedMode": true,
  4990. "_useGrayscale": false,
  4991. "_atlas": null,
  4992. "_id": "49BlpuOLxBB7/cQmWFHMtr"
  4993. },
  4994. {
  4995. "__type__": "cc.Widget",
  4996. "_name": "",
  4997. "_objFlags": 0,
  4998. "__editorExtras__": {},
  4999. "node": {
  5000. "__id__": 142
  5001. },
  5002. "_enabled": true,
  5003. "__prefab": null,
  5004. "_alignFlags": 45,
  5005. "_target": null,
  5006. "_left": 0,
  5007. "_right": 0,
  5008. "_top": 0,
  5009. "_bottom": 0,
  5010. "_horizontalCenter": 0,
  5011. "_verticalCenter": 0,
  5012. "_isAbsLeft": true,
  5013. "_isAbsRight": true,
  5014. "_isAbsTop": true,
  5015. "_isAbsBottom": true,
  5016. "_isAbsHorizontalCenter": true,
  5017. "_isAbsVerticalCenter": true,
  5018. "_originalWidth": 40,
  5019. "_originalHeight": 40,
  5020. "_alignMode": 2,
  5021. "_lockFlags": 0,
  5022. "_id": "a14ZXMxEREd44y/pR+bKZg"
  5023. },
  5024. {
  5025. "__type__": "cc.Node",
  5026. "_name": "grid_list",
  5027. "_objFlags": 0,
  5028. "__editorExtras__": {},
  5029. "_parent": {
  5030. "__id__": 141
  5031. },
  5032. "_children": [],
  5033. "_active": true,
  5034. "_components": [
  5035. {
  5036. "__id__": 147
  5037. },
  5038. {
  5039. "__id__": 148
  5040. }
  5041. ],
  5042. "_prefab": null,
  5043. "_lpos": {
  5044. "__type__": "cc.Vec3",
  5045. "x": 300,
  5046. "y": 0,
  5047. "z": 0
  5048. },
  5049. "_lrot": {
  5050. "__type__": "cc.Quat",
  5051. "x": 0,
  5052. "y": 0,
  5053. "z": 0,
  5054. "w": 1
  5055. },
  5056. "_lscale": {
  5057. "__type__": "cc.Vec3",
  5058. "x": 1,
  5059. "y": 1,
  5060. "z": 1
  5061. },
  5062. "_mobility": 0,
  5063. "_layer": 33554432,
  5064. "_euler": {
  5065. "__type__": "cc.Vec3",
  5066. "x": 0,
  5067. "y": 0,
  5068. "z": 0
  5069. },
  5070. "_id": "f9Z3seCqFDnae2rd0X1nZj"
  5071. },
  5072. {
  5073. "__type__": "cc.UITransform",
  5074. "_name": "",
  5075. "_objFlags": 0,
  5076. "__editorExtras__": {},
  5077. "node": {
  5078. "__id__": 146
  5079. },
  5080. "_enabled": true,
  5081. "__prefab": null,
  5082. "_contentSize": {
  5083. "__type__": "cc.Size",
  5084. "width": 0,
  5085. "height": 0
  5086. },
  5087. "_anchorPoint": {
  5088. "__type__": "cc.Vec2",
  5089. "x": 0,
  5090. "y": 0
  5091. },
  5092. "_id": "1206uDtylBOaT4AkAwTGdE"
  5093. },
  5094. {
  5095. "__type__": "cc.Layout",
  5096. "_name": "",
  5097. "_objFlags": 0,
  5098. "__editorExtras__": {},
  5099. "node": {
  5100. "__id__": 146
  5101. },
  5102. "_enabled": true,
  5103. "__prefab": null,
  5104. "_resizeMode": 1,
  5105. "_layoutType": 3,
  5106. "_cellSize": {
  5107. "__type__": "cc.Size",
  5108. "width": 40,
  5109. "height": 40
  5110. },
  5111. "_startAxis": 0,
  5112. "_paddingLeft": 0,
  5113. "_paddingRight": 0,
  5114. "_paddingTop": 0,
  5115. "_paddingBottom": 0,
  5116. "_spacingX": 0,
  5117. "_spacingY": 0,
  5118. "_verticalDirection": 1,
  5119. "_horizontalDirection": 0,
  5120. "_constraint": 2,
  5121. "_constraintNum": 2,
  5122. "_affectedByScale": false,
  5123. "_isAlign": false,
  5124. "_id": "20nK+wcIJMtpOC59V71xYH"
  5125. },
  5126. {
  5127. "__type__": "cc.Node",
  5128. "_name": "btn_sure",
  5129. "_objFlags": 0,
  5130. "__editorExtras__": {},
  5131. "_parent": {
  5132. "__id__": 141
  5133. },
  5134. "_children": [
  5135. {
  5136. "__id__": 150
  5137. }
  5138. ],
  5139. "_active": true,
  5140. "_components": [
  5141. {
  5142. "__id__": 153
  5143. },
  5144. {
  5145. "__id__": 154
  5146. },
  5147. {
  5148. "__id__": 155
  5149. }
  5150. ],
  5151. "_prefab": null,
  5152. "_lpos": {
  5153. "__type__": "cc.Vec3",
  5154. "x": 364.43,
  5155. "y": -217.501,
  5156. "z": 0
  5157. },
  5158. "_lrot": {
  5159. "__type__": "cc.Quat",
  5160. "x": 0,
  5161. "y": 0,
  5162. "z": 0,
  5163. "w": 1
  5164. },
  5165. "_lscale": {
  5166. "__type__": "cc.Vec3",
  5167. "x": 1,
  5168. "y": 1,
  5169. "z": 1
  5170. },
  5171. "_mobility": 0,
  5172. "_layer": 33554432,
  5173. "_euler": {
  5174. "__type__": "cc.Vec3",
  5175. "x": 0,
  5176. "y": 0,
  5177. "z": 0
  5178. },
  5179. "_id": "93xcQtnTJB8peeI4d8IwXU"
  5180. },
  5181. {
  5182. "__type__": "cc.Node",
  5183. "_name": "Label",
  5184. "_objFlags": 0,
  5185. "__editorExtras__": {},
  5186. "_parent": {
  5187. "__id__": 149
  5188. },
  5189. "_children": [],
  5190. "_active": true,
  5191. "_components": [
  5192. {
  5193. "__id__": 151
  5194. },
  5195. {
  5196. "__id__": 152
  5197. }
  5198. ],
  5199. "_prefab": null,
  5200. "_lpos": {
  5201. "__type__": "cc.Vec3",
  5202. "x": 0,
  5203. "y": 0,
  5204. "z": 0
  5205. },
  5206. "_lrot": {
  5207. "__type__": "cc.Quat",
  5208. "x": 0,
  5209. "y": 0,
  5210. "z": 0,
  5211. "w": 1
  5212. },
  5213. "_lscale": {
  5214. "__type__": "cc.Vec3",
  5215. "x": 1,
  5216. "y": 1,
  5217. "z": 1
  5218. },
  5219. "_mobility": 0,
  5220. "_layer": 33554432,
  5221. "_euler": {
  5222. "__type__": "cc.Vec3",
  5223. "x": 0,
  5224. "y": 0,
  5225. "z": 0
  5226. },
  5227. "_id": "125pvDNxxDwIE8n+TIiMMU"
  5228. },
  5229. {
  5230. "__type__": "cc.UITransform",
  5231. "_name": "",
  5232. "_objFlags": 0,
  5233. "__editorExtras__": {},
  5234. "node": {
  5235. "__id__": 150
  5236. },
  5237. "_enabled": true,
  5238. "__prefab": null,
  5239. "_contentSize": {
  5240. "__type__": "cc.Size",
  5241. "width": 100,
  5242. "height": 40
  5243. },
  5244. "_anchorPoint": {
  5245. "__type__": "cc.Vec2",
  5246. "x": 0.5,
  5247. "y": 0.5
  5248. },
  5249. "_id": "d0/Qq9NFREoKv8NbhkI0jh"
  5250. },
  5251. {
  5252. "__type__": "cc.Label",
  5253. "_name": "",
  5254. "_objFlags": 0,
  5255. "__editorExtras__": {},
  5256. "node": {
  5257. "__id__": 150
  5258. },
  5259. "_enabled": true,
  5260. "__prefab": null,
  5261. "_customMaterial": null,
  5262. "_srcBlendFactor": 2,
  5263. "_dstBlendFactor": 4,
  5264. "_color": {
  5265. "__type__": "cc.Color",
  5266. "r": 0,
  5267. "g": 0,
  5268. "b": 0,
  5269. "a": 255
  5270. },
  5271. "_string": "确定",
  5272. "_horizontalAlign": 1,
  5273. "_verticalAlign": 1,
  5274. "_actualFontSize": 20,
  5275. "_fontSize": 20,
  5276. "_fontFamily": "Arial",
  5277. "_lineHeight": 40,
  5278. "_overflow": 1,
  5279. "_enableWrapText": false,
  5280. "_font": null,
  5281. "_isSystemFontUsed": true,
  5282. "_spacingX": 0,
  5283. "_isItalic": false,
  5284. "_isBold": false,
  5285. "_isUnderline": false,
  5286. "_underlineHeight": 2,
  5287. "_cacheMode": 0,
  5288. "_id": "986HKPYYlCHprilsroIQU2"
  5289. },
  5290. {
  5291. "__type__": "cc.UITransform",
  5292. "_name": "",
  5293. "_objFlags": 0,
  5294. "__editorExtras__": {},
  5295. "node": {
  5296. "__id__": 149
  5297. },
  5298. "_enabled": true,
  5299. "__prefab": null,
  5300. "_contentSize": {
  5301. "__type__": "cc.Size",
  5302. "width": 130,
  5303. "height": 60
  5304. },
  5305. "_anchorPoint": {
  5306. "__type__": "cc.Vec2",
  5307. "x": 0.5,
  5308. "y": 0.5
  5309. },
  5310. "_id": "66MSUXPeZLTagHhnqfKl79"
  5311. },
  5312. {
  5313. "__type__": "cc.Sprite",
  5314. "_name": "",
  5315. "_objFlags": 0,
  5316. "__editorExtras__": {},
  5317. "node": {
  5318. "__id__": 149
  5319. },
  5320. "_enabled": true,
  5321. "__prefab": null,
  5322. "_customMaterial": null,
  5323. "_srcBlendFactor": 2,
  5324. "_dstBlendFactor": 4,
  5325. "_color": {
  5326. "__type__": "cc.Color",
  5327. "r": 255,
  5328. "g": 255,
  5329. "b": 255,
  5330. "a": 255
  5331. },
  5332. "_spriteFrame": {
  5333. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5334. "__expectedType__": "cc.SpriteFrame"
  5335. },
  5336. "_type": 1,
  5337. "_fillType": 0,
  5338. "_sizeMode": 0,
  5339. "_fillCenter": {
  5340. "__type__": "cc.Vec2",
  5341. "x": 0,
  5342. "y": 0
  5343. },
  5344. "_fillStart": 0,
  5345. "_fillRange": 0,
  5346. "_isTrimmedMode": true,
  5347. "_useGrayscale": false,
  5348. "_atlas": null,
  5349. "_id": "56zjovPchNxouXXB73K7nx"
  5350. },
  5351. {
  5352. "__type__": "cc.Button",
  5353. "_name": "",
  5354. "_objFlags": 0,
  5355. "__editorExtras__": {},
  5356. "node": {
  5357. "__id__": 149
  5358. },
  5359. "_enabled": true,
  5360. "__prefab": null,
  5361. "clickEvents": [],
  5362. "_interactable": true,
  5363. "_transition": 2,
  5364. "_normalColor": {
  5365. "__type__": "cc.Color",
  5366. "r": 214,
  5367. "g": 214,
  5368. "b": 214,
  5369. "a": 255
  5370. },
  5371. "_hoverColor": {
  5372. "__type__": "cc.Color",
  5373. "r": 211,
  5374. "g": 211,
  5375. "b": 211,
  5376. "a": 255
  5377. },
  5378. "_pressedColor": {
  5379. "__type__": "cc.Color",
  5380. "r": 255,
  5381. "g": 255,
  5382. "b": 255,
  5383. "a": 255
  5384. },
  5385. "_disabledColor": {
  5386. "__type__": "cc.Color",
  5387. "r": 124,
  5388. "g": 124,
  5389. "b": 124,
  5390. "a": 255
  5391. },
  5392. "_normalSprite": {
  5393. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5394. "__expectedType__": "cc.SpriteFrame"
  5395. },
  5396. "_hoverSprite": {
  5397. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5398. "__expectedType__": "cc.SpriteFrame"
  5399. },
  5400. "_pressedSprite": {
  5401. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  5402. "__expectedType__": "cc.SpriteFrame"
  5403. },
  5404. "_disabledSprite": {
  5405. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  5406. "__expectedType__": "cc.SpriteFrame"
  5407. },
  5408. "_duration": 0.1,
  5409. "_zoomScale": 1.2,
  5410. "_target": {
  5411. "__id__": 149
  5412. },
  5413. "_id": "7dqNQt5fRGxZw5nddFP/NQ"
  5414. },
  5415. {
  5416. "__type__": "cc.Node",
  5417. "_name": "btn_cancel",
  5418. "_objFlags": 0,
  5419. "__editorExtras__": {},
  5420. "_parent": {
  5421. "__id__": 141
  5422. },
  5423. "_children": [
  5424. {
  5425. "__id__": 157
  5426. }
  5427. ],
  5428. "_active": true,
  5429. "_components": [
  5430. {
  5431. "__id__": 160
  5432. },
  5433. {
  5434. "__id__": 161
  5435. },
  5436. {
  5437. "__id__": 162
  5438. }
  5439. ],
  5440. "_prefab": null,
  5441. "_lpos": {
  5442. "__type__": "cc.Vec3",
  5443. "x": 364.43,
  5444. "y": -287.501,
  5445. "z": 0
  5446. },
  5447. "_lrot": {
  5448. "__type__": "cc.Quat",
  5449. "x": 0,
  5450. "y": 0,
  5451. "z": 0,
  5452. "w": 1
  5453. },
  5454. "_lscale": {
  5455. "__type__": "cc.Vec3",
  5456. "x": 1,
  5457. "y": 1,
  5458. "z": 1
  5459. },
  5460. "_mobility": 0,
  5461. "_layer": 33554432,
  5462. "_euler": {
  5463. "__type__": "cc.Vec3",
  5464. "x": 0,
  5465. "y": 0,
  5466. "z": 0
  5467. },
  5468. "_id": "5dbnYMPppGNpmhBN434cJq"
  5469. },
  5470. {
  5471. "__type__": "cc.Node",
  5472. "_name": "Label",
  5473. "_objFlags": 0,
  5474. "__editorExtras__": {},
  5475. "_parent": {
  5476. "__id__": 156
  5477. },
  5478. "_children": [],
  5479. "_active": true,
  5480. "_components": [
  5481. {
  5482. "__id__": 158
  5483. },
  5484. {
  5485. "__id__": 159
  5486. }
  5487. ],
  5488. "_prefab": null,
  5489. "_lpos": {
  5490. "__type__": "cc.Vec3",
  5491. "x": 0,
  5492. "y": 0,
  5493. "z": 0
  5494. },
  5495. "_lrot": {
  5496. "__type__": "cc.Quat",
  5497. "x": 0,
  5498. "y": 0,
  5499. "z": 0,
  5500. "w": 1
  5501. },
  5502. "_lscale": {
  5503. "__type__": "cc.Vec3",
  5504. "x": 1,
  5505. "y": 1,
  5506. "z": 1
  5507. },
  5508. "_mobility": 0,
  5509. "_layer": 33554432,
  5510. "_euler": {
  5511. "__type__": "cc.Vec3",
  5512. "x": 0,
  5513. "y": 0,
  5514. "z": 0
  5515. },
  5516. "_id": "52G8zZnN9MIKBH/kj4L/nW"
  5517. },
  5518. {
  5519. "__type__": "cc.UITransform",
  5520. "_name": "",
  5521. "_objFlags": 0,
  5522. "__editorExtras__": {},
  5523. "node": {
  5524. "__id__": 157
  5525. },
  5526. "_enabled": true,
  5527. "__prefab": null,
  5528. "_contentSize": {
  5529. "__type__": "cc.Size",
  5530. "width": 100,
  5531. "height": 40
  5532. },
  5533. "_anchorPoint": {
  5534. "__type__": "cc.Vec2",
  5535. "x": 0.5,
  5536. "y": 0.5
  5537. },
  5538. "_id": "39d1hf5ZdHK46qFk7HUJjm"
  5539. },
  5540. {
  5541. "__type__": "cc.Label",
  5542. "_name": "",
  5543. "_objFlags": 0,
  5544. "__editorExtras__": {},
  5545. "node": {
  5546. "__id__": 157
  5547. },
  5548. "_enabled": true,
  5549. "__prefab": null,
  5550. "_customMaterial": null,
  5551. "_srcBlendFactor": 2,
  5552. "_dstBlendFactor": 4,
  5553. "_color": {
  5554. "__type__": "cc.Color",
  5555. "r": 0,
  5556. "g": 0,
  5557. "b": 0,
  5558. "a": 255
  5559. },
  5560. "_string": "取消",
  5561. "_horizontalAlign": 1,
  5562. "_verticalAlign": 1,
  5563. "_actualFontSize": 20,
  5564. "_fontSize": 20,
  5565. "_fontFamily": "Arial",
  5566. "_lineHeight": 40,
  5567. "_overflow": 1,
  5568. "_enableWrapText": false,
  5569. "_font": null,
  5570. "_isSystemFontUsed": true,
  5571. "_spacingX": 0,
  5572. "_isItalic": false,
  5573. "_isBold": false,
  5574. "_isUnderline": false,
  5575. "_underlineHeight": 2,
  5576. "_cacheMode": 0,
  5577. "_id": "d6Ir//LxpK+qvBo+8cA+UA"
  5578. },
  5579. {
  5580. "__type__": "cc.UITransform",
  5581. "_name": "",
  5582. "_objFlags": 0,
  5583. "__editorExtras__": {},
  5584. "node": {
  5585. "__id__": 156
  5586. },
  5587. "_enabled": true,
  5588. "__prefab": null,
  5589. "_contentSize": {
  5590. "__type__": "cc.Size",
  5591. "width": 130,
  5592. "height": 60
  5593. },
  5594. "_anchorPoint": {
  5595. "__type__": "cc.Vec2",
  5596. "x": 0.5,
  5597. "y": 0.5
  5598. },
  5599. "_id": "99ugmXk9BMdKuS8exXwl99"
  5600. },
  5601. {
  5602. "__type__": "cc.Sprite",
  5603. "_name": "",
  5604. "_objFlags": 0,
  5605. "__editorExtras__": {},
  5606. "node": {
  5607. "__id__": 156
  5608. },
  5609. "_enabled": true,
  5610. "__prefab": null,
  5611. "_customMaterial": null,
  5612. "_srcBlendFactor": 2,
  5613. "_dstBlendFactor": 4,
  5614. "_color": {
  5615. "__type__": "cc.Color",
  5616. "r": 255,
  5617. "g": 255,
  5618. "b": 255,
  5619. "a": 255
  5620. },
  5621. "_spriteFrame": {
  5622. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5623. "__expectedType__": "cc.SpriteFrame"
  5624. },
  5625. "_type": 1,
  5626. "_fillType": 0,
  5627. "_sizeMode": 0,
  5628. "_fillCenter": {
  5629. "__type__": "cc.Vec2",
  5630. "x": 0,
  5631. "y": 0
  5632. },
  5633. "_fillStart": 0,
  5634. "_fillRange": 0,
  5635. "_isTrimmedMode": true,
  5636. "_useGrayscale": false,
  5637. "_atlas": null,
  5638. "_id": "f59GI2B1NAc6RqdVeKB9+W"
  5639. },
  5640. {
  5641. "__type__": "cc.Button",
  5642. "_name": "",
  5643. "_objFlags": 0,
  5644. "__editorExtras__": {},
  5645. "node": {
  5646. "__id__": 156
  5647. },
  5648. "_enabled": true,
  5649. "__prefab": null,
  5650. "clickEvents": [],
  5651. "_interactable": true,
  5652. "_transition": 2,
  5653. "_normalColor": {
  5654. "__type__": "cc.Color",
  5655. "r": 214,
  5656. "g": 214,
  5657. "b": 214,
  5658. "a": 255
  5659. },
  5660. "_hoverColor": {
  5661. "__type__": "cc.Color",
  5662. "r": 211,
  5663. "g": 211,
  5664. "b": 211,
  5665. "a": 255
  5666. },
  5667. "_pressedColor": {
  5668. "__type__": "cc.Color",
  5669. "r": 255,
  5670. "g": 255,
  5671. "b": 255,
  5672. "a": 255
  5673. },
  5674. "_disabledColor": {
  5675. "__type__": "cc.Color",
  5676. "r": 124,
  5677. "g": 124,
  5678. "b": 124,
  5679. "a": 255
  5680. },
  5681. "_normalSprite": {
  5682. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5683. "__expectedType__": "cc.SpriteFrame"
  5684. },
  5685. "_hoverSprite": {
  5686. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5687. "__expectedType__": "cc.SpriteFrame"
  5688. },
  5689. "_pressedSprite": {
  5690. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  5691. "__expectedType__": "cc.SpriteFrame"
  5692. },
  5693. "_disabledSprite": {
  5694. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  5695. "__expectedType__": "cc.SpriteFrame"
  5696. },
  5697. "_duration": 0.1,
  5698. "_zoomScale": 1.2,
  5699. "_target": {
  5700. "__id__": 156
  5701. },
  5702. "_id": "b8WCZQYBlCVqezwS6GwbGo"
  5703. },
  5704. {
  5705. "__type__": "cc.Node",
  5706. "_name": "btn_delete",
  5707. "_objFlags": 0,
  5708. "__editorExtras__": {},
  5709. "_parent": {
  5710. "__id__": 141
  5711. },
  5712. "_children": [
  5713. {
  5714. "__id__": 164
  5715. }
  5716. ],
  5717. "_active": true,
  5718. "_components": [
  5719. {
  5720. "__id__": 167
  5721. },
  5722. {
  5723. "__id__": 168
  5724. },
  5725. {
  5726. "__id__": 169
  5727. }
  5728. ],
  5729. "_prefab": null,
  5730. "_lpos": {
  5731. "__type__": "cc.Vec3",
  5732. "x": 364.43,
  5733. "y": -357.501,
  5734. "z": 0
  5735. },
  5736. "_lrot": {
  5737. "__type__": "cc.Quat",
  5738. "x": 0,
  5739. "y": 0,
  5740. "z": 0,
  5741. "w": 1
  5742. },
  5743. "_lscale": {
  5744. "__type__": "cc.Vec3",
  5745. "x": 1,
  5746. "y": 1,
  5747. "z": 1
  5748. },
  5749. "_mobility": 0,
  5750. "_layer": 33554432,
  5751. "_euler": {
  5752. "__type__": "cc.Vec3",
  5753. "x": 0,
  5754. "y": 0,
  5755. "z": 0
  5756. },
  5757. "_id": "55cdp/DM5C/oFC0gdDJMAO"
  5758. },
  5759. {
  5760. "__type__": "cc.Node",
  5761. "_name": "Label",
  5762. "_objFlags": 0,
  5763. "__editorExtras__": {},
  5764. "_parent": {
  5765. "__id__": 163
  5766. },
  5767. "_children": [],
  5768. "_active": true,
  5769. "_components": [
  5770. {
  5771. "__id__": 165
  5772. },
  5773. {
  5774. "__id__": 166
  5775. }
  5776. ],
  5777. "_prefab": null,
  5778. "_lpos": {
  5779. "__type__": "cc.Vec3",
  5780. "x": 0,
  5781. "y": 0,
  5782. "z": 0
  5783. },
  5784. "_lrot": {
  5785. "__type__": "cc.Quat",
  5786. "x": 0,
  5787. "y": 0,
  5788. "z": 0,
  5789. "w": 1
  5790. },
  5791. "_lscale": {
  5792. "__type__": "cc.Vec3",
  5793. "x": 1,
  5794. "y": 1,
  5795. "z": 1
  5796. },
  5797. "_mobility": 0,
  5798. "_layer": 33554432,
  5799. "_euler": {
  5800. "__type__": "cc.Vec3",
  5801. "x": 0,
  5802. "y": 0,
  5803. "z": 0
  5804. },
  5805. "_id": "ebwtbLMRNDNJj1LyriuQqP"
  5806. },
  5807. {
  5808. "__type__": "cc.UITransform",
  5809. "_name": "",
  5810. "_objFlags": 0,
  5811. "__editorExtras__": {},
  5812. "node": {
  5813. "__id__": 164
  5814. },
  5815. "_enabled": true,
  5816. "__prefab": null,
  5817. "_contentSize": {
  5818. "__type__": "cc.Size",
  5819. "width": 130,
  5820. "height": 40
  5821. },
  5822. "_anchorPoint": {
  5823. "__type__": "cc.Vec2",
  5824. "x": 0.5,
  5825. "y": 0.5
  5826. },
  5827. "_id": "5c9TbYhKBHS5PI9omqi+q3"
  5828. },
  5829. {
  5830. "__type__": "cc.Label",
  5831. "_name": "",
  5832. "_objFlags": 0,
  5833. "__editorExtras__": {},
  5834. "node": {
  5835. "__id__": 164
  5836. },
  5837. "_enabled": true,
  5838. "__prefab": null,
  5839. "_customMaterial": null,
  5840. "_srcBlendFactor": 2,
  5841. "_dstBlendFactor": 4,
  5842. "_color": {
  5843. "__type__": "cc.Color",
  5844. "r": 0,
  5845. "g": 0,
  5846. "b": 0,
  5847. "a": 255
  5848. },
  5849. "_string": "删除",
  5850. "_horizontalAlign": 1,
  5851. "_verticalAlign": 1,
  5852. "_actualFontSize": 20,
  5853. "_fontSize": 20,
  5854. "_fontFamily": "Arial",
  5855. "_lineHeight": 40,
  5856. "_overflow": 1,
  5857. "_enableWrapText": false,
  5858. "_font": null,
  5859. "_isSystemFontUsed": true,
  5860. "_spacingX": 0,
  5861. "_isItalic": false,
  5862. "_isBold": false,
  5863. "_isUnderline": false,
  5864. "_underlineHeight": 2,
  5865. "_cacheMode": 0,
  5866. "_id": "4a5G3pwKNLXa+aec/IuIr3"
  5867. },
  5868. {
  5869. "__type__": "cc.UITransform",
  5870. "_name": "",
  5871. "_objFlags": 0,
  5872. "__editorExtras__": {},
  5873. "node": {
  5874. "__id__": 163
  5875. },
  5876. "_enabled": true,
  5877. "__prefab": null,
  5878. "_contentSize": {
  5879. "__type__": "cc.Size",
  5880. "width": 130,
  5881. "height": 60
  5882. },
  5883. "_anchorPoint": {
  5884. "__type__": "cc.Vec2",
  5885. "x": 0.5,
  5886. "y": 0.5
  5887. },
  5888. "_id": "1d/VSxIKhAmbwSnEq7Vipe"
  5889. },
  5890. {
  5891. "__type__": "cc.Sprite",
  5892. "_name": "",
  5893. "_objFlags": 0,
  5894. "__editorExtras__": {},
  5895. "node": {
  5896. "__id__": 163
  5897. },
  5898. "_enabled": true,
  5899. "__prefab": null,
  5900. "_customMaterial": null,
  5901. "_srcBlendFactor": 2,
  5902. "_dstBlendFactor": 4,
  5903. "_color": {
  5904. "__type__": "cc.Color",
  5905. "r": 255,
  5906. "g": 255,
  5907. "b": 255,
  5908. "a": 255
  5909. },
  5910. "_spriteFrame": {
  5911. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5912. "__expectedType__": "cc.SpriteFrame"
  5913. },
  5914. "_type": 1,
  5915. "_fillType": 0,
  5916. "_sizeMode": 0,
  5917. "_fillCenter": {
  5918. "__type__": "cc.Vec2",
  5919. "x": 0,
  5920. "y": 0
  5921. },
  5922. "_fillStart": 0,
  5923. "_fillRange": 0,
  5924. "_isTrimmedMode": true,
  5925. "_useGrayscale": false,
  5926. "_atlas": null,
  5927. "_id": "deuHrCrzFGaaVRsIkDR5Pv"
  5928. },
  5929. {
  5930. "__type__": "cc.Button",
  5931. "_name": "",
  5932. "_objFlags": 0,
  5933. "__editorExtras__": {},
  5934. "node": {
  5935. "__id__": 163
  5936. },
  5937. "_enabled": true,
  5938. "__prefab": null,
  5939. "clickEvents": [],
  5940. "_interactable": true,
  5941. "_transition": 2,
  5942. "_normalColor": {
  5943. "__type__": "cc.Color",
  5944. "r": 214,
  5945. "g": 214,
  5946. "b": 214,
  5947. "a": 255
  5948. },
  5949. "_hoverColor": {
  5950. "__type__": "cc.Color",
  5951. "r": 211,
  5952. "g": 211,
  5953. "b": 211,
  5954. "a": 255
  5955. },
  5956. "_pressedColor": {
  5957. "__type__": "cc.Color",
  5958. "r": 255,
  5959. "g": 255,
  5960. "b": 255,
  5961. "a": 255
  5962. },
  5963. "_disabledColor": {
  5964. "__type__": "cc.Color",
  5965. "r": 124,
  5966. "g": 124,
  5967. "b": 124,
  5968. "a": 255
  5969. },
  5970. "_normalSprite": {
  5971. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5972. "__expectedType__": "cc.SpriteFrame"
  5973. },
  5974. "_hoverSprite": {
  5975. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5976. "__expectedType__": "cc.SpriteFrame"
  5977. },
  5978. "_pressedSprite": {
  5979. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  5980. "__expectedType__": "cc.SpriteFrame"
  5981. },
  5982. "_disabledSprite": {
  5983. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  5984. "__expectedType__": "cc.SpriteFrame"
  5985. },
  5986. "_duration": 0.1,
  5987. "_zoomScale": 1.2,
  5988. "_target": {
  5989. "__id__": 163
  5990. },
  5991. "_id": "51RJacBVtOa6iZzOBmVtcf"
  5992. },
  5993. {
  5994. "__type__": "cc.UITransform",
  5995. "_name": "",
  5996. "_objFlags": 0,
  5997. "__editorExtras__": {},
  5998. "node": {
  5999. "__id__": 141
  6000. },
  6001. "_enabled": true,
  6002. "__prefab": null,
  6003. "_contentSize": {
  6004. "__type__": "cc.Size",
  6005. "width": 1920,
  6006. "height": 1080
  6007. },
  6008. "_anchorPoint": {
  6009. "__type__": "cc.Vec2",
  6010. "x": 0.5,
  6011. "y": 0.5
  6012. },
  6013. "_id": "b6VbN5hFZMUbRPLc8cXPQf"
  6014. },
  6015. {
  6016. "__type__": "cc.Sprite",
  6017. "_name": "",
  6018. "_objFlags": 0,
  6019. "__editorExtras__": {},
  6020. "node": {
  6021. "__id__": 141
  6022. },
  6023. "_enabled": false,
  6024. "__prefab": null,
  6025. "_customMaterial": null,
  6026. "_srcBlendFactor": 2,
  6027. "_dstBlendFactor": 4,
  6028. "_color": {
  6029. "__type__": "cc.Color",
  6030. "r": 255,
  6031. "g": 255,
  6032. "b": 255,
  6033. "a": 255
  6034. },
  6035. "_spriteFrame": {
  6036. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6037. "__expectedType__": "cc.SpriteFrame"
  6038. },
  6039. "_type": 1,
  6040. "_fillType": 0,
  6041. "_sizeMode": 0,
  6042. "_fillCenter": {
  6043. "__type__": "cc.Vec2",
  6044. "x": 0,
  6045. "y": 0
  6046. },
  6047. "_fillStart": 0,
  6048. "_fillRange": 0,
  6049. "_isTrimmedMode": true,
  6050. "_useGrayscale": false,
  6051. "_atlas": null,
  6052. "_id": "8dVz57g1pLM60gkgbz644q"
  6053. },
  6054. {
  6055. "__type__": "cc.Widget",
  6056. "_name": "",
  6057. "_objFlags": 0,
  6058. "__editorExtras__": {},
  6059. "node": {
  6060. "__id__": 141
  6061. },
  6062. "_enabled": true,
  6063. "__prefab": null,
  6064. "_alignFlags": 45,
  6065. "_target": null,
  6066. "_left": 0,
  6067. "_right": 0,
  6068. "_top": 0,
  6069. "_bottom": 0,
  6070. "_horizontalCenter": 0,
  6071. "_verticalCenter": 0,
  6072. "_isAbsLeft": true,
  6073. "_isAbsRight": true,
  6074. "_isAbsTop": true,
  6075. "_isAbsBottom": true,
  6076. "_isAbsHorizontalCenter": true,
  6077. "_isAbsVerticalCenter": true,
  6078. "_originalWidth": 40,
  6079. "_originalHeight": 40,
  6080. "_alignMode": 2,
  6081. "_lockFlags": 0,
  6082. "_id": "10nZPD94NHD6smc8Ai2CFu"
  6083. },
  6084. {
  6085. "__type__": "c4a50uwC5tKvqrriC8D+BlF",
  6086. "_name": "",
  6087. "_objFlags": 0,
  6088. "__editorExtras__": {},
  6089. "node": {
  6090. "__id__": 141
  6091. },
  6092. "_enabled": true,
  6093. "__prefab": null,
  6094. "grid_list": {
  6095. "__id__": 146
  6096. },
  6097. "btn_cancel": {
  6098. "__id__": 156
  6099. },
  6100. "btn_sure": {
  6101. "__id__": 149
  6102. },
  6103. "btn_delete": {
  6104. "__id__": 163
  6105. },
  6106. "_id": "e06FhCgytAbrgNLW2AZwP+"
  6107. },
  6108. {
  6109. "__type__": "cc.BlockInputEvents",
  6110. "_name": "",
  6111. "_objFlags": 0,
  6112. "__editorExtras__": {},
  6113. "node": {
  6114. "__id__": 141
  6115. },
  6116. "_enabled": true,
  6117. "__prefab": null,
  6118. "_id": "3f0j9jIOVJdZgDMNUe1AzW"
  6119. },
  6120. {
  6121. "__type__": "CCPropertyOverrideInfo",
  6122. "targetInfo": {
  6123. "__id__": 134
  6124. },
  6125. "propertyPath": [
  6126. "_active"
  6127. ],
  6128. "value": false
  6129. },
  6130. {
  6131. "__type__": "cc.UITransform",
  6132. "_name": "",
  6133. "_objFlags": 0,
  6134. "__editorExtras__": {},
  6135. "node": {
  6136. "__id__": 81
  6137. },
  6138. "_enabled": true,
  6139. "__prefab": null,
  6140. "_contentSize": {
  6141. "__type__": "cc.Size",
  6142. "width": 1920,
  6143. "height": 1080
  6144. },
  6145. "_anchorPoint": {
  6146. "__type__": "cc.Vec2",
  6147. "x": 0,
  6148. "y": 0
  6149. },
  6150. "_id": "91VzphD41J5riSicq4lIaD"
  6151. },
  6152. {
  6153. "__type__": "cc.Widget",
  6154. "_name": "",
  6155. "_objFlags": 0,
  6156. "__editorExtras__": {},
  6157. "node": {
  6158. "__id__": 81
  6159. },
  6160. "_enabled": true,
  6161. "__prefab": null,
  6162. "_alignFlags": 45,
  6163. "_target": null,
  6164. "_left": 0,
  6165. "_right": 0,
  6166. "_top": 0,
  6167. "_bottom": 0,
  6168. "_horizontalCenter": 0,
  6169. "_verticalCenter": 0,
  6170. "_isAbsLeft": true,
  6171. "_isAbsRight": true,
  6172. "_isAbsTop": true,
  6173. "_isAbsBottom": true,
  6174. "_isAbsHorizontalCenter": true,
  6175. "_isAbsVerticalCenter": true,
  6176. "_originalWidth": 100,
  6177. "_originalHeight": 100,
  6178. "_alignMode": 2,
  6179. "_lockFlags": 0,
  6180. "_id": "05bQjGOqtCY7WHxMYCVyXe"
  6181. },
  6182. {
  6183. "__type__": "cc.Sprite",
  6184. "_name": "",
  6185. "_objFlags": 0,
  6186. "__editorExtras__": {},
  6187. "node": {
  6188. "__id__": 81
  6189. },
  6190. "_enabled": true,
  6191. "__prefab": null,
  6192. "_customMaterial": null,
  6193. "_srcBlendFactor": 2,
  6194. "_dstBlendFactor": 4,
  6195. "_color": {
  6196. "__type__": "cc.Color",
  6197. "r": 255,
  6198. "g": 255,
  6199. "b": 255,
  6200. "a": 255
  6201. },
  6202. "_spriteFrame": {
  6203. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  6204. "__expectedType__": "cc.SpriteFrame"
  6205. },
  6206. "_type": 1,
  6207. "_fillType": 0,
  6208. "_sizeMode": 0,
  6209. "_fillCenter": {
  6210. "__type__": "cc.Vec2",
  6211. "x": 0,
  6212. "y": 0
  6213. },
  6214. "_fillStart": 0,
  6215. "_fillRange": 0,
  6216. "_isTrimmedMode": true,
  6217. "_useGrayscale": false,
  6218. "_atlas": null,
  6219. "_id": "dbN4mPn7VFuaVUe5nmuLcu"
  6220. },
  6221. {
  6222. "__type__": "cc.Node",
  6223. "_name": "game_font",
  6224. "_objFlags": 0,
  6225. "__editorExtras__": {},
  6226. "_parent": {
  6227. "__id__": 2
  6228. },
  6229. "_children": [
  6230. {
  6231. "__id__": 180
  6232. },
  6233. {
  6234. "__id__": 183
  6235. },
  6236. {
  6237. "__id__": 190
  6238. },
  6239. {
  6240. "__id__": 197
  6241. },
  6242. {
  6243. "__id__": 204
  6244. },
  6245. {
  6246. "__id__": 207
  6247. }
  6248. ],
  6249. "_active": false,
  6250. "_components": [
  6251. {
  6252. "__id__": 219
  6253. },
  6254. {
  6255. "__id__": 220
  6256. },
  6257. {
  6258. "__id__": 221
  6259. },
  6260. {
  6261. "__id__": 218
  6262. }
  6263. ],
  6264. "_prefab": null,
  6265. "_lpos": {
  6266. "__type__": "cc.Vec3",
  6267. "x": 0,
  6268. "y": 0,
  6269. "z": 0
  6270. },
  6271. "_lrot": {
  6272. "__type__": "cc.Quat",
  6273. "x": 0,
  6274. "y": 0,
  6275. "z": 0,
  6276. "w": 1
  6277. },
  6278. "_lscale": {
  6279. "__type__": "cc.Vec3",
  6280. "x": 1,
  6281. "y": 1,
  6282. "z": 1
  6283. },
  6284. "_mobility": 0,
  6285. "_layer": 33554432,
  6286. "_euler": {
  6287. "__type__": "cc.Vec3",
  6288. "x": 0,
  6289. "y": 0,
  6290. "z": 0
  6291. },
  6292. "_id": "39ZoIya6hBH762aJ+PauqT"
  6293. },
  6294. {
  6295. "__type__": "cc.Node",
  6296. "_name": "grid_list",
  6297. "_objFlags": 0,
  6298. "__editorExtras__": {},
  6299. "_parent": {
  6300. "__id__": 179
  6301. },
  6302. "_children": [],
  6303. "_active": true,
  6304. "_components": [
  6305. {
  6306. "__id__": 181
  6307. },
  6308. {
  6309. "__id__": 182
  6310. }
  6311. ],
  6312. "_prefab": null,
  6313. "_lpos": {
  6314. "__type__": "cc.Vec3",
  6315. "x": 200,
  6316. "y": -300,
  6317. "z": 0
  6318. },
  6319. "_lrot": {
  6320. "__type__": "cc.Quat",
  6321. "x": 0,
  6322. "y": 0,
  6323. "z": 0,
  6324. "w": 1
  6325. },
  6326. "_lscale": {
  6327. "__type__": "cc.Vec3",
  6328. "x": 1,
  6329. "y": 1,
  6330. "z": 1
  6331. },
  6332. "_mobility": 0,
  6333. "_layer": 33554432,
  6334. "_euler": {
  6335. "__type__": "cc.Vec3",
  6336. "x": 0,
  6337. "y": 0,
  6338. "z": 0
  6339. },
  6340. "_id": "318WfJMrZDA47b/sjVlI9D"
  6341. },
  6342. {
  6343. "__type__": "cc.UITransform",
  6344. "_name": "",
  6345. "_objFlags": 0,
  6346. "__editorExtras__": {},
  6347. "node": {
  6348. "__id__": 180
  6349. },
  6350. "_enabled": true,
  6351. "__prefab": null,
  6352. "_contentSize": {
  6353. "__type__": "cc.Size",
  6354. "width": 90,
  6355. "height": 0
  6356. },
  6357. "_anchorPoint": {
  6358. "__type__": "cc.Vec2",
  6359. "x": 1,
  6360. "y": 0
  6361. },
  6362. "_id": "0a9y9KsnhOnoSjvJb2vzGC"
  6363. },
  6364. {
  6365. "__type__": "cc.Layout",
  6366. "_name": "",
  6367. "_objFlags": 0,
  6368. "__editorExtras__": {},
  6369. "node": {
  6370. "__id__": 180
  6371. },
  6372. "_enabled": true,
  6373. "__prefab": null,
  6374. "_resizeMode": 1,
  6375. "_layoutType": 3,
  6376. "_cellSize": {
  6377. "__type__": "cc.Size",
  6378. "width": 40,
  6379. "height": 40
  6380. },
  6381. "_startAxis": 0,
  6382. "_paddingLeft": 0,
  6383. "_paddingRight": 0,
  6384. "_paddingTop": 0,
  6385. "_paddingBottom": 0,
  6386. "_spacingX": 0,
  6387. "_spacingY": 0,
  6388. "_verticalDirection": 0,
  6389. "_horizontalDirection": 1,
  6390. "_constraint": 2,
  6391. "_constraintNum": 11,
  6392. "_affectedByScale": false,
  6393. "_isAlign": false,
  6394. "_id": "f0eHOHEohGV76IVH2W+Is0"
  6395. },
  6396. {
  6397. "__type__": "cc.Node",
  6398. "_name": "btn_select_level",
  6399. "_objFlags": 0,
  6400. "__editorExtras__": {},
  6401. "_parent": {
  6402. "__id__": 179
  6403. },
  6404. "_children": [
  6405. {
  6406. "__id__": 184
  6407. }
  6408. ],
  6409. "_active": true,
  6410. "_components": [
  6411. {
  6412. "__id__": 187
  6413. },
  6414. {
  6415. "__id__": 188
  6416. },
  6417. {
  6418. "__id__": 189
  6419. }
  6420. ],
  6421. "_prefab": null,
  6422. "_lpos": {
  6423. "__type__": "cc.Vec3",
  6424. "x": 620,
  6425. "y": 100,
  6426. "z": 0
  6427. },
  6428. "_lrot": {
  6429. "__type__": "cc.Quat",
  6430. "x": 0,
  6431. "y": 0,
  6432. "z": 0,
  6433. "w": 1
  6434. },
  6435. "_lscale": {
  6436. "__type__": "cc.Vec3",
  6437. "x": 1,
  6438. "y": 1,
  6439. "z": 1
  6440. },
  6441. "_mobility": 0,
  6442. "_layer": 33554432,
  6443. "_euler": {
  6444. "__type__": "cc.Vec3",
  6445. "x": 0,
  6446. "y": 0,
  6447. "z": 0
  6448. },
  6449. "_id": "ffHbmccnpDrqrlZTK4pADH"
  6450. },
  6451. {
  6452. "__type__": "cc.Node",
  6453. "_name": "Label",
  6454. "_objFlags": 0,
  6455. "__editorExtras__": {},
  6456. "_parent": {
  6457. "__id__": 183
  6458. },
  6459. "_children": [],
  6460. "_active": true,
  6461. "_components": [
  6462. {
  6463. "__id__": 185
  6464. },
  6465. {
  6466. "__id__": 186
  6467. }
  6468. ],
  6469. "_prefab": null,
  6470. "_lpos": {
  6471. "__type__": "cc.Vec3",
  6472. "x": 0,
  6473. "y": 0,
  6474. "z": 0
  6475. },
  6476. "_lrot": {
  6477. "__type__": "cc.Quat",
  6478. "x": 0,
  6479. "y": 0,
  6480. "z": 0,
  6481. "w": 1
  6482. },
  6483. "_lscale": {
  6484. "__type__": "cc.Vec3",
  6485. "x": 1,
  6486. "y": 1,
  6487. "z": 1
  6488. },
  6489. "_mobility": 0,
  6490. "_layer": 33554432,
  6491. "_euler": {
  6492. "__type__": "cc.Vec3",
  6493. "x": 0,
  6494. "y": 0,
  6495. "z": 0
  6496. },
  6497. "_id": "c4QLn5fPRAGLWjhS+nvkkM"
  6498. },
  6499. {
  6500. "__type__": "cc.UITransform",
  6501. "_name": "",
  6502. "_objFlags": 0,
  6503. "__editorExtras__": {},
  6504. "node": {
  6505. "__id__": 184
  6506. },
  6507. "_enabled": true,
  6508. "__prefab": null,
  6509. "_contentSize": {
  6510. "__type__": "cc.Size",
  6511. "width": 100,
  6512. "height": 40
  6513. },
  6514. "_anchorPoint": {
  6515. "__type__": "cc.Vec2",
  6516. "x": 0.5,
  6517. "y": 0.5
  6518. },
  6519. "_id": "b8KqJzUZBHd58lhexzfYL8"
  6520. },
  6521. {
  6522. "__type__": "cc.Label",
  6523. "_name": "",
  6524. "_objFlags": 0,
  6525. "__editorExtras__": {},
  6526. "node": {
  6527. "__id__": 184
  6528. },
  6529. "_enabled": true,
  6530. "__prefab": null,
  6531. "_customMaterial": null,
  6532. "_srcBlendFactor": 2,
  6533. "_dstBlendFactor": 4,
  6534. "_color": {
  6535. "__type__": "cc.Color",
  6536. "r": 0,
  6537. "g": 0,
  6538. "b": 0,
  6539. "a": 255
  6540. },
  6541. "_string": "关卡选择",
  6542. "_horizontalAlign": 1,
  6543. "_verticalAlign": 1,
  6544. "_actualFontSize": 20,
  6545. "_fontSize": 20,
  6546. "_fontFamily": "Arial",
  6547. "_lineHeight": 40,
  6548. "_overflow": 1,
  6549. "_enableWrapText": false,
  6550. "_font": null,
  6551. "_isSystemFontUsed": true,
  6552. "_spacingX": 0,
  6553. "_isItalic": false,
  6554. "_isBold": false,
  6555. "_isUnderline": false,
  6556. "_underlineHeight": 2,
  6557. "_cacheMode": 0,
  6558. "_id": "b568/W2YxHQ7B6uWJ9dLLZ"
  6559. },
  6560. {
  6561. "__type__": "cc.UITransform",
  6562. "_name": "",
  6563. "_objFlags": 0,
  6564. "__editorExtras__": {},
  6565. "node": {
  6566. "__id__": 183
  6567. },
  6568. "_enabled": true,
  6569. "__prefab": null,
  6570. "_contentSize": {
  6571. "__type__": "cc.Size",
  6572. "width": 200,
  6573. "height": 100
  6574. },
  6575. "_anchorPoint": {
  6576. "__type__": "cc.Vec2",
  6577. "x": 0.5,
  6578. "y": 0.5
  6579. },
  6580. "_id": "0f+8bMDFlCvKkdm2kfrPH6"
  6581. },
  6582. {
  6583. "__type__": "cc.Sprite",
  6584. "_name": "",
  6585. "_objFlags": 0,
  6586. "__editorExtras__": {},
  6587. "node": {
  6588. "__id__": 183
  6589. },
  6590. "_enabled": true,
  6591. "__prefab": null,
  6592. "_customMaterial": null,
  6593. "_srcBlendFactor": 2,
  6594. "_dstBlendFactor": 4,
  6595. "_color": {
  6596. "__type__": "cc.Color",
  6597. "r": 255,
  6598. "g": 255,
  6599. "b": 255,
  6600. "a": 255
  6601. },
  6602. "_spriteFrame": {
  6603. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6604. "__expectedType__": "cc.SpriteFrame"
  6605. },
  6606. "_type": 1,
  6607. "_fillType": 0,
  6608. "_sizeMode": 0,
  6609. "_fillCenter": {
  6610. "__type__": "cc.Vec2",
  6611. "x": 0,
  6612. "y": 0
  6613. },
  6614. "_fillStart": 0,
  6615. "_fillRange": 0,
  6616. "_isTrimmedMode": true,
  6617. "_useGrayscale": false,
  6618. "_atlas": null,
  6619. "_id": "1eocAB4NhLBYEnbbsStedu"
  6620. },
  6621. {
  6622. "__type__": "cc.Button",
  6623. "_name": "",
  6624. "_objFlags": 0,
  6625. "__editorExtras__": {},
  6626. "node": {
  6627. "__id__": 183
  6628. },
  6629. "_enabled": true,
  6630. "__prefab": null,
  6631. "clickEvents": [],
  6632. "_interactable": true,
  6633. "_transition": 2,
  6634. "_normalColor": {
  6635. "__type__": "cc.Color",
  6636. "r": 214,
  6637. "g": 214,
  6638. "b": 214,
  6639. "a": 255
  6640. },
  6641. "_hoverColor": {
  6642. "__type__": "cc.Color",
  6643. "r": 211,
  6644. "g": 211,
  6645. "b": 211,
  6646. "a": 255
  6647. },
  6648. "_pressedColor": {
  6649. "__type__": "cc.Color",
  6650. "r": 255,
  6651. "g": 255,
  6652. "b": 255,
  6653. "a": 255
  6654. },
  6655. "_disabledColor": {
  6656. "__type__": "cc.Color",
  6657. "r": 124,
  6658. "g": 124,
  6659. "b": 124,
  6660. "a": 255
  6661. },
  6662. "_normalSprite": {
  6663. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6664. "__expectedType__": "cc.SpriteFrame"
  6665. },
  6666. "_hoverSprite": {
  6667. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6668. "__expectedType__": "cc.SpriteFrame"
  6669. },
  6670. "_pressedSprite": {
  6671. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  6672. "__expectedType__": "cc.SpriteFrame"
  6673. },
  6674. "_disabledSprite": {
  6675. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  6676. "__expectedType__": "cc.SpriteFrame"
  6677. },
  6678. "_duration": 0.1,
  6679. "_zoomScale": 1.2,
  6680. "_target": {
  6681. "__id__": 183
  6682. },
  6683. "_id": "adb64vepBPlp7BlfPXp2f1"
  6684. },
  6685. {
  6686. "__type__": "cc.Node",
  6687. "_name": "btn_save",
  6688. "_objFlags": 0,
  6689. "__editorExtras__": {},
  6690. "_parent": {
  6691. "__id__": 179
  6692. },
  6693. "_children": [
  6694. {
  6695. "__id__": 191
  6696. }
  6697. ],
  6698. "_active": true,
  6699. "_components": [
  6700. {
  6701. "__id__": 194
  6702. },
  6703. {
  6704. "__id__": 195
  6705. },
  6706. {
  6707. "__id__": 196
  6708. }
  6709. ],
  6710. "_prefab": null,
  6711. "_lpos": {
  6712. "__type__": "cc.Vec3",
  6713. "x": 620,
  6714. "y": 210,
  6715. "z": 0
  6716. },
  6717. "_lrot": {
  6718. "__type__": "cc.Quat",
  6719. "x": 0,
  6720. "y": 0,
  6721. "z": 0,
  6722. "w": 1
  6723. },
  6724. "_lscale": {
  6725. "__type__": "cc.Vec3",
  6726. "x": 1,
  6727. "y": 1,
  6728. "z": 1
  6729. },
  6730. "_mobility": 0,
  6731. "_layer": 33554432,
  6732. "_euler": {
  6733. "__type__": "cc.Vec3",
  6734. "x": 0,
  6735. "y": 0,
  6736. "z": 0
  6737. },
  6738. "_id": "f6zfoqvnNEYINKQVfPPrJk"
  6739. },
  6740. {
  6741. "__type__": "cc.Node",
  6742. "_name": "Label",
  6743. "_objFlags": 0,
  6744. "__editorExtras__": {},
  6745. "_parent": {
  6746. "__id__": 190
  6747. },
  6748. "_children": [],
  6749. "_active": true,
  6750. "_components": [
  6751. {
  6752. "__id__": 192
  6753. },
  6754. {
  6755. "__id__": 193
  6756. }
  6757. ],
  6758. "_prefab": null,
  6759. "_lpos": {
  6760. "__type__": "cc.Vec3",
  6761. "x": 0,
  6762. "y": 0,
  6763. "z": 0
  6764. },
  6765. "_lrot": {
  6766. "__type__": "cc.Quat",
  6767. "x": 0,
  6768. "y": 0,
  6769. "z": 0,
  6770. "w": 1
  6771. },
  6772. "_lscale": {
  6773. "__type__": "cc.Vec3",
  6774. "x": 1,
  6775. "y": 1,
  6776. "z": 1
  6777. },
  6778. "_mobility": 0,
  6779. "_layer": 33554432,
  6780. "_euler": {
  6781. "__type__": "cc.Vec3",
  6782. "x": 0,
  6783. "y": 0,
  6784. "z": 0
  6785. },
  6786. "_id": "a3/gqchuJJUIM5x+Zo2UOy"
  6787. },
  6788. {
  6789. "__type__": "cc.UITransform",
  6790. "_name": "",
  6791. "_objFlags": 0,
  6792. "__editorExtras__": {},
  6793. "node": {
  6794. "__id__": 191
  6795. },
  6796. "_enabled": true,
  6797. "__prefab": null,
  6798. "_contentSize": {
  6799. "__type__": "cc.Size",
  6800. "width": 100,
  6801. "height": 40
  6802. },
  6803. "_anchorPoint": {
  6804. "__type__": "cc.Vec2",
  6805. "x": 0.5,
  6806. "y": 0.5
  6807. },
  6808. "_id": "44fuSt5ehN07qt0uRFsKOX"
  6809. },
  6810. {
  6811. "__type__": "cc.Label",
  6812. "_name": "",
  6813. "_objFlags": 0,
  6814. "__editorExtras__": {},
  6815. "node": {
  6816. "__id__": 191
  6817. },
  6818. "_enabled": true,
  6819. "__prefab": null,
  6820. "_customMaterial": null,
  6821. "_srcBlendFactor": 2,
  6822. "_dstBlendFactor": 4,
  6823. "_color": {
  6824. "__type__": "cc.Color",
  6825. "r": 0,
  6826. "g": 0,
  6827. "b": 0,
  6828. "a": 255
  6829. },
  6830. "_string": "保存",
  6831. "_horizontalAlign": 1,
  6832. "_verticalAlign": 1,
  6833. "_actualFontSize": 20,
  6834. "_fontSize": 20,
  6835. "_fontFamily": "Arial",
  6836. "_lineHeight": 40,
  6837. "_overflow": 1,
  6838. "_enableWrapText": false,
  6839. "_font": null,
  6840. "_isSystemFontUsed": true,
  6841. "_spacingX": 0,
  6842. "_isItalic": false,
  6843. "_isBold": false,
  6844. "_isUnderline": false,
  6845. "_underlineHeight": 2,
  6846. "_cacheMode": 0,
  6847. "_id": "16DkYBlndMzoCO1oagUuAY"
  6848. },
  6849. {
  6850. "__type__": "cc.UITransform",
  6851. "_name": "",
  6852. "_objFlags": 0,
  6853. "__editorExtras__": {},
  6854. "node": {
  6855. "__id__": 190
  6856. },
  6857. "_enabled": true,
  6858. "__prefab": null,
  6859. "_contentSize": {
  6860. "__type__": "cc.Size",
  6861. "width": 200,
  6862. "height": 100
  6863. },
  6864. "_anchorPoint": {
  6865. "__type__": "cc.Vec2",
  6866. "x": 0.5,
  6867. "y": 0.5
  6868. },
  6869. "_id": "79u6JUj0FGybb1lJmNMD0M"
  6870. },
  6871. {
  6872. "__type__": "cc.Sprite",
  6873. "_name": "",
  6874. "_objFlags": 0,
  6875. "__editorExtras__": {},
  6876. "node": {
  6877. "__id__": 190
  6878. },
  6879. "_enabled": true,
  6880. "__prefab": null,
  6881. "_customMaterial": null,
  6882. "_srcBlendFactor": 2,
  6883. "_dstBlendFactor": 4,
  6884. "_color": {
  6885. "__type__": "cc.Color",
  6886. "r": 255,
  6887. "g": 255,
  6888. "b": 255,
  6889. "a": 255
  6890. },
  6891. "_spriteFrame": {
  6892. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6893. "__expectedType__": "cc.SpriteFrame"
  6894. },
  6895. "_type": 1,
  6896. "_fillType": 0,
  6897. "_sizeMode": 0,
  6898. "_fillCenter": {
  6899. "__type__": "cc.Vec2",
  6900. "x": 0,
  6901. "y": 0
  6902. },
  6903. "_fillStart": 0,
  6904. "_fillRange": 0,
  6905. "_isTrimmedMode": true,
  6906. "_useGrayscale": false,
  6907. "_atlas": null,
  6908. "_id": "f6lNNqbj9OiL+ztd47iea9"
  6909. },
  6910. {
  6911. "__type__": "cc.Button",
  6912. "_name": "",
  6913. "_objFlags": 0,
  6914. "__editorExtras__": {},
  6915. "node": {
  6916. "__id__": 190
  6917. },
  6918. "_enabled": true,
  6919. "__prefab": null,
  6920. "clickEvents": [],
  6921. "_interactable": true,
  6922. "_transition": 2,
  6923. "_normalColor": {
  6924. "__type__": "cc.Color",
  6925. "r": 214,
  6926. "g": 214,
  6927. "b": 214,
  6928. "a": 255
  6929. },
  6930. "_hoverColor": {
  6931. "__type__": "cc.Color",
  6932. "r": 211,
  6933. "g": 211,
  6934. "b": 211,
  6935. "a": 255
  6936. },
  6937. "_pressedColor": {
  6938. "__type__": "cc.Color",
  6939. "r": 255,
  6940. "g": 255,
  6941. "b": 255,
  6942. "a": 255
  6943. },
  6944. "_disabledColor": {
  6945. "__type__": "cc.Color",
  6946. "r": 124,
  6947. "g": 124,
  6948. "b": 124,
  6949. "a": 255
  6950. },
  6951. "_normalSprite": {
  6952. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6953. "__expectedType__": "cc.SpriteFrame"
  6954. },
  6955. "_hoverSprite": {
  6956. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  6957. "__expectedType__": "cc.SpriteFrame"
  6958. },
  6959. "_pressedSprite": {
  6960. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  6961. "__expectedType__": "cc.SpriteFrame"
  6962. },
  6963. "_disabledSprite": {
  6964. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  6965. "__expectedType__": "cc.SpriteFrame"
  6966. },
  6967. "_duration": 0.1,
  6968. "_zoomScale": 1.2,
  6969. "_target": {
  6970. "__id__": 190
  6971. },
  6972. "_id": "aaXboLyURFSKSM2sBZSxSj"
  6973. },
  6974. {
  6975. "__type__": "cc.Node",
  6976. "_name": "btn_back",
  6977. "_objFlags": 0,
  6978. "__editorExtras__": {},
  6979. "_parent": {
  6980. "__id__": 179
  6981. },
  6982. "_children": [
  6983. {
  6984. "__id__": 198
  6985. }
  6986. ],
  6987. "_active": true,
  6988. "_components": [
  6989. {
  6990. "__id__": 201
  6991. },
  6992. {
  6993. "__id__": 202
  6994. },
  6995. {
  6996. "__id__": 203
  6997. }
  6998. ],
  6999. "_prefab": null,
  7000. "_lpos": {
  7001. "__type__": "cc.Vec3",
  7002. "x": 620,
  7003. "y": -10,
  7004. "z": 0
  7005. },
  7006. "_lrot": {
  7007. "__type__": "cc.Quat",
  7008. "x": 0,
  7009. "y": 0,
  7010. "z": 0,
  7011. "w": 1
  7012. },
  7013. "_lscale": {
  7014. "__type__": "cc.Vec3",
  7015. "x": 1,
  7016. "y": 1,
  7017. "z": 1
  7018. },
  7019. "_mobility": 0,
  7020. "_layer": 33554432,
  7021. "_euler": {
  7022. "__type__": "cc.Vec3",
  7023. "x": 0,
  7024. "y": 0,
  7025. "z": 0
  7026. },
  7027. "_id": "58NlHQcUBF2pWsNBQtl//J"
  7028. },
  7029. {
  7030. "__type__": "cc.Node",
  7031. "_name": "Label",
  7032. "_objFlags": 0,
  7033. "__editorExtras__": {},
  7034. "_parent": {
  7035. "__id__": 197
  7036. },
  7037. "_children": [],
  7038. "_active": true,
  7039. "_components": [
  7040. {
  7041. "__id__": 199
  7042. },
  7043. {
  7044. "__id__": 200
  7045. }
  7046. ],
  7047. "_prefab": null,
  7048. "_lpos": {
  7049. "__type__": "cc.Vec3",
  7050. "x": 0,
  7051. "y": 0,
  7052. "z": 0
  7053. },
  7054. "_lrot": {
  7055. "__type__": "cc.Quat",
  7056. "x": 0,
  7057. "y": 0,
  7058. "z": 0,
  7059. "w": 1
  7060. },
  7061. "_lscale": {
  7062. "__type__": "cc.Vec3",
  7063. "x": 1,
  7064. "y": 1,
  7065. "z": 1
  7066. },
  7067. "_mobility": 0,
  7068. "_layer": 33554432,
  7069. "_euler": {
  7070. "__type__": "cc.Vec3",
  7071. "x": 0,
  7072. "y": 0,
  7073. "z": 0
  7074. },
  7075. "_id": "ecYijZKBVLOIhx0eb9dy/O"
  7076. },
  7077. {
  7078. "__type__": "cc.UITransform",
  7079. "_name": "",
  7080. "_objFlags": 0,
  7081. "__editorExtras__": {},
  7082. "node": {
  7083. "__id__": 198
  7084. },
  7085. "_enabled": true,
  7086. "__prefab": null,
  7087. "_contentSize": {
  7088. "__type__": "cc.Size",
  7089. "width": 100,
  7090. "height": 40
  7091. },
  7092. "_anchorPoint": {
  7093. "__type__": "cc.Vec2",
  7094. "x": 0.5,
  7095. "y": 0.5
  7096. },
  7097. "_id": "c7tDnKEsNLrI6Er1JcOAf6"
  7098. },
  7099. {
  7100. "__type__": "cc.Label",
  7101. "_name": "",
  7102. "_objFlags": 0,
  7103. "__editorExtras__": {},
  7104. "node": {
  7105. "__id__": 198
  7106. },
  7107. "_enabled": true,
  7108. "__prefab": null,
  7109. "_customMaterial": null,
  7110. "_srcBlendFactor": 2,
  7111. "_dstBlendFactor": 4,
  7112. "_color": {
  7113. "__type__": "cc.Color",
  7114. "r": 0,
  7115. "g": 0,
  7116. "b": 0,
  7117. "a": 255
  7118. },
  7119. "_string": "返回",
  7120. "_horizontalAlign": 1,
  7121. "_verticalAlign": 1,
  7122. "_actualFontSize": 20,
  7123. "_fontSize": 20,
  7124. "_fontFamily": "Arial",
  7125. "_lineHeight": 40,
  7126. "_overflow": 1,
  7127. "_enableWrapText": false,
  7128. "_font": null,
  7129. "_isSystemFontUsed": true,
  7130. "_spacingX": 0,
  7131. "_isItalic": false,
  7132. "_isBold": false,
  7133. "_isUnderline": false,
  7134. "_underlineHeight": 2,
  7135. "_cacheMode": 0,
  7136. "_id": "79Poap2mZHoq03OwwebcSk"
  7137. },
  7138. {
  7139. "__type__": "cc.UITransform",
  7140. "_name": "",
  7141. "_objFlags": 0,
  7142. "__editorExtras__": {},
  7143. "node": {
  7144. "__id__": 197
  7145. },
  7146. "_enabled": true,
  7147. "__prefab": null,
  7148. "_contentSize": {
  7149. "__type__": "cc.Size",
  7150. "width": 200,
  7151. "height": 100
  7152. },
  7153. "_anchorPoint": {
  7154. "__type__": "cc.Vec2",
  7155. "x": 0.5,
  7156. "y": 0.5
  7157. },
  7158. "_id": "65cLRCSzdH07DAzPO4hQln"
  7159. },
  7160. {
  7161. "__type__": "cc.Sprite",
  7162. "_name": "",
  7163. "_objFlags": 0,
  7164. "__editorExtras__": {},
  7165. "node": {
  7166. "__id__": 197
  7167. },
  7168. "_enabled": true,
  7169. "__prefab": null,
  7170. "_customMaterial": null,
  7171. "_srcBlendFactor": 2,
  7172. "_dstBlendFactor": 4,
  7173. "_color": {
  7174. "__type__": "cc.Color",
  7175. "r": 255,
  7176. "g": 255,
  7177. "b": 255,
  7178. "a": 255
  7179. },
  7180. "_spriteFrame": {
  7181. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7182. "__expectedType__": "cc.SpriteFrame"
  7183. },
  7184. "_type": 1,
  7185. "_fillType": 0,
  7186. "_sizeMode": 0,
  7187. "_fillCenter": {
  7188. "__type__": "cc.Vec2",
  7189. "x": 0,
  7190. "y": 0
  7191. },
  7192. "_fillStart": 0,
  7193. "_fillRange": 0,
  7194. "_isTrimmedMode": true,
  7195. "_useGrayscale": false,
  7196. "_atlas": null,
  7197. "_id": "09gDdUoSJNUpiL0jqERCCU"
  7198. },
  7199. {
  7200. "__type__": "cc.Button",
  7201. "_name": "",
  7202. "_objFlags": 0,
  7203. "__editorExtras__": {},
  7204. "node": {
  7205. "__id__": 197
  7206. },
  7207. "_enabled": true,
  7208. "__prefab": null,
  7209. "clickEvents": [],
  7210. "_interactable": true,
  7211. "_transition": 2,
  7212. "_normalColor": {
  7213. "__type__": "cc.Color",
  7214. "r": 214,
  7215. "g": 214,
  7216. "b": 214,
  7217. "a": 255
  7218. },
  7219. "_hoverColor": {
  7220. "__type__": "cc.Color",
  7221. "r": 211,
  7222. "g": 211,
  7223. "b": 211,
  7224. "a": 255
  7225. },
  7226. "_pressedColor": {
  7227. "__type__": "cc.Color",
  7228. "r": 255,
  7229. "g": 255,
  7230. "b": 255,
  7231. "a": 255
  7232. },
  7233. "_disabledColor": {
  7234. "__type__": "cc.Color",
  7235. "r": 124,
  7236. "g": 124,
  7237. "b": 124,
  7238. "a": 255
  7239. },
  7240. "_normalSprite": {
  7241. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7242. "__expectedType__": "cc.SpriteFrame"
  7243. },
  7244. "_hoverSprite": {
  7245. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7246. "__expectedType__": "cc.SpriteFrame"
  7247. },
  7248. "_pressedSprite": {
  7249. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  7250. "__expectedType__": "cc.SpriteFrame"
  7251. },
  7252. "_disabledSprite": {
  7253. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  7254. "__expectedType__": "cc.SpriteFrame"
  7255. },
  7256. "_duration": 0.1,
  7257. "_zoomScale": 1.2,
  7258. "_target": {
  7259. "__id__": 197
  7260. },
  7261. "_id": "70HavjExxJg7AfRyVINin+"
  7262. },
  7263. {
  7264. "__type__": "cc.Node",
  7265. "_name": "Sprite",
  7266. "_objFlags": 0,
  7267. "__editorExtras__": {},
  7268. "_parent": {
  7269. "__id__": 179
  7270. },
  7271. "_children": [],
  7272. "_active": true,
  7273. "_components": [
  7274. {
  7275. "__id__": 205
  7276. },
  7277. {
  7278. "__id__": 206
  7279. }
  7280. ],
  7281. "_prefab": null,
  7282. "_lpos": {
  7283. "__type__": "cc.Vec3",
  7284. "x": 620,
  7285. "y": 350,
  7286. "z": 0
  7287. },
  7288. "_lrot": {
  7289. "__type__": "cc.Quat",
  7290. "x": 0,
  7291. "y": 0,
  7292. "z": 0,
  7293. "w": 1
  7294. },
  7295. "_lscale": {
  7296. "__type__": "cc.Vec3",
  7297. "x": 1,
  7298. "y": 1,
  7299. "z": 1
  7300. },
  7301. "_mobility": 0,
  7302. "_layer": 33554432,
  7303. "_euler": {
  7304. "__type__": "cc.Vec3",
  7305. "x": 0,
  7306. "y": 0,
  7307. "z": 0
  7308. },
  7309. "_id": "f0N0ybQChCmrGVfCNlyCyL"
  7310. },
  7311. {
  7312. "__type__": "cc.UITransform",
  7313. "_name": "",
  7314. "_objFlags": 0,
  7315. "__editorExtras__": {},
  7316. "node": {
  7317. "__id__": 204
  7318. },
  7319. "_enabled": true,
  7320. "__prefab": null,
  7321. "_contentSize": {
  7322. "__type__": "cc.Size",
  7323. "width": 100,
  7324. "height": 100
  7325. },
  7326. "_anchorPoint": {
  7327. "__type__": "cc.Vec2",
  7328. "x": 0.5,
  7329. "y": 0.5
  7330. },
  7331. "_id": "37H8/fRB9N2L3P1o/Da7eR"
  7332. },
  7333. {
  7334. "__type__": "cc.Sprite",
  7335. "_name": "",
  7336. "_objFlags": 0,
  7337. "__editorExtras__": {},
  7338. "node": {
  7339. "__id__": 204
  7340. },
  7341. "_enabled": true,
  7342. "__prefab": null,
  7343. "_customMaterial": null,
  7344. "_srcBlendFactor": 2,
  7345. "_dstBlendFactor": 4,
  7346. "_color": {
  7347. "__type__": "cc.Color",
  7348. "r": 255,
  7349. "g": 255,
  7350. "b": 255,
  7351. "a": 255
  7352. },
  7353. "_spriteFrame": {
  7354. "__uuid__": "653aff99-e146-434c-804f-49ca179db627@f9941",
  7355. "__expectedType__": "cc.SpriteFrame"
  7356. },
  7357. "_type": 0,
  7358. "_fillType": 0,
  7359. "_sizeMode": 0,
  7360. "_fillCenter": {
  7361. "__type__": "cc.Vec2",
  7362. "x": 0,
  7363. "y": 0
  7364. },
  7365. "_fillStart": 0,
  7366. "_fillRange": 0,
  7367. "_isTrimmedMode": true,
  7368. "_useGrayscale": false,
  7369. "_atlas": null,
  7370. "_id": "6cKoKfQc5ATb2WzqP+kBco"
  7371. },
  7372. {
  7373. "__type__": "cc.Node",
  7374. "_objFlags": 0,
  7375. "_parent": {
  7376. "__id__": 179
  7377. },
  7378. "_prefab": {
  7379. "__id__": 208
  7380. },
  7381. "__editorExtras__": {}
  7382. },
  7383. {
  7384. "__type__": "cc.PrefabInfo",
  7385. "root": {
  7386. "__id__": 207
  7387. },
  7388. "asset": {
  7389. "__uuid__": "1e9e31bd-4dd6-42cf-bea5-9142225d4524",
  7390. "__expectedType__": "cc.Prefab"
  7391. },
  7392. "fileId": "e2Js/PfCRCoK/ZvwUwCNQt",
  7393. "instance": {
  7394. "__id__": 209
  7395. },
  7396. "targetOverrides": [],
  7397. "nestedPrefabInstanceRoots": null
  7398. },
  7399. {
  7400. "__type__": "cc.PrefabInstance",
  7401. "fileId": "efc6++2WRLloiMWzx7ccob",
  7402. "prefabRootNode": null,
  7403. "mountedChildren": [],
  7404. "mountedComponents": [],
  7405. "propertyOverrides": [
  7406. {
  7407. "__id__": 210
  7408. },
  7409. {
  7410. "__id__": 212
  7411. },
  7412. {
  7413. "__id__": 213
  7414. },
  7415. {
  7416. "__id__": 214
  7417. },
  7418. {
  7419. "__id__": 215
  7420. },
  7421. {
  7422. "__id__": 216
  7423. }
  7424. ],
  7425. "removedComponents": []
  7426. },
  7427. {
  7428. "__type__": "CCPropertyOverrideInfo",
  7429. "targetInfo": {
  7430. "__id__": 211
  7431. },
  7432. "propertyPath": [
  7433. "_name"
  7434. ],
  7435. "value": "level_list"
  7436. },
  7437. {
  7438. "__type__": "cc.TargetInfo",
  7439. "localID": [
  7440. "e2Js/PfCRCoK/ZvwUwCNQt"
  7441. ]
  7442. },
  7443. {
  7444. "__type__": "CCPropertyOverrideInfo",
  7445. "targetInfo": {
  7446. "__id__": 211
  7447. },
  7448. "propertyPath": [
  7449. "_lpos"
  7450. ],
  7451. "value": {
  7452. "__type__": "cc.Vec3",
  7453. "x": 0,
  7454. "y": 0,
  7455. "z": 0
  7456. }
  7457. },
  7458. {
  7459. "__type__": "CCPropertyOverrideInfo",
  7460. "targetInfo": {
  7461. "__id__": 211
  7462. },
  7463. "propertyPath": [
  7464. "_lrot"
  7465. ],
  7466. "value": {
  7467. "__type__": "cc.Quat",
  7468. "x": 0,
  7469. "y": 0,
  7470. "z": 0,
  7471. "w": 1
  7472. }
  7473. },
  7474. {
  7475. "__type__": "CCPropertyOverrideInfo",
  7476. "targetInfo": {
  7477. "__id__": 211
  7478. },
  7479. "propertyPath": [
  7480. "_euler"
  7481. ],
  7482. "value": {
  7483. "__type__": "cc.Vec3",
  7484. "x": 0,
  7485. "y": 0,
  7486. "z": 0
  7487. }
  7488. },
  7489. {
  7490. "__type__": "CCPropertyOverrideInfo",
  7491. "targetInfo": {
  7492. "__id__": 211
  7493. },
  7494. "propertyPath": [
  7495. "_active"
  7496. ],
  7497. "value": false
  7498. },
  7499. {
  7500. "__type__": "CCPropertyOverrideInfo",
  7501. "targetInfo": {
  7502. "__id__": 217
  7503. },
  7504. "propertyPath": [
  7505. "game_page"
  7506. ],
  7507. "value": {
  7508. "__id__": 218
  7509. }
  7510. },
  7511. {
  7512. "__type__": "cc.TargetInfo",
  7513. "localID": [
  7514. "c0jCcjGjBGNokGQItd4ax/"
  7515. ]
  7516. },
  7517. {
  7518. "__type__": "ebe8c9wq+tICJNGfsVi/5DI",
  7519. "_name": "",
  7520. "_objFlags": 0,
  7521. "__editorExtras__": {},
  7522. "node": {
  7523. "__id__": 179
  7524. },
  7525. "_enabled": true,
  7526. "__prefab": null,
  7527. "level_list": null,
  7528. "btn_cancel": {
  7529. "__id__": 197
  7530. },
  7531. "btn_save": {
  7532. "__id__": 190
  7533. },
  7534. "btn_select_level": {
  7535. "__id__": 183
  7536. },
  7537. "grid_list": {
  7538. "__id__": 180
  7539. },
  7540. "insert_spr": {
  7541. "__id__": 204
  7542. },
  7543. "item_prefab": {
  7544. "__uuid__": "d4588d07-a5d4-4dfa-9704-c8aea466b7eb",
  7545. "__expectedType__": "cc.Prefab"
  7546. },
  7547. "sf_1": {
  7548. "__uuid__": "7e6f4e65-6a92-4ff8-8eac-ddf2498e2b55@f9941",
  7549. "__expectedType__": "cc.SpriteFrame"
  7550. },
  7551. "sf_2": {
  7552. "__uuid__": "653aff99-e146-434c-804f-49ca179db627@f9941",
  7553. "__expectedType__": "cc.SpriteFrame"
  7554. },
  7555. "_id": "3b2/vEuHtBFITlB4YZ1E1D"
  7556. },
  7557. {
  7558. "__type__": "cc.UITransform",
  7559. "_name": "",
  7560. "_objFlags": 0,
  7561. "__editorExtras__": {},
  7562. "node": {
  7563. "__id__": 179
  7564. },
  7565. "_enabled": true,
  7566. "__prefab": null,
  7567. "_contentSize": {
  7568. "__type__": "cc.Size",
  7569. "width": 1920,
  7570. "height": 1080
  7571. },
  7572. "_anchorPoint": {
  7573. "__type__": "cc.Vec2",
  7574. "x": 0.5,
  7575. "y": 0.5
  7576. },
  7577. "_id": "1fW/yAwqNHMbpVoKL2ylwS"
  7578. },
  7579. {
  7580. "__type__": "cc.Widget",
  7581. "_name": "",
  7582. "_objFlags": 0,
  7583. "__editorExtras__": {},
  7584. "node": {
  7585. "__id__": 179
  7586. },
  7587. "_enabled": true,
  7588. "__prefab": null,
  7589. "_alignFlags": 45,
  7590. "_target": null,
  7591. "_left": 0,
  7592. "_right": 0,
  7593. "_top": 0,
  7594. "_bottom": 0,
  7595. "_horizontalCenter": 0,
  7596. "_verticalCenter": 0,
  7597. "_isAbsLeft": true,
  7598. "_isAbsRight": true,
  7599. "_isAbsTop": true,
  7600. "_isAbsBottom": true,
  7601. "_isAbsHorizontalCenter": true,
  7602. "_isAbsVerticalCenter": true,
  7603. "_originalWidth": 100,
  7604. "_originalHeight": 100,
  7605. "_alignMode": 2,
  7606. "_lockFlags": 0,
  7607. "_id": "c9OQR+LE1BSafTlNIBK9gB"
  7608. },
  7609. {
  7610. "__type__": "cc.Sprite",
  7611. "_name": "",
  7612. "_objFlags": 0,
  7613. "__editorExtras__": {},
  7614. "node": {
  7615. "__id__": 179
  7616. },
  7617. "_enabled": true,
  7618. "__prefab": null,
  7619. "_customMaterial": null,
  7620. "_srcBlendFactor": 2,
  7621. "_dstBlendFactor": 4,
  7622. "_color": {
  7623. "__type__": "cc.Color",
  7624. "r": 194,
  7625. "g": 255,
  7626. "b": 223,
  7627. "a": 255
  7628. },
  7629. "_spriteFrame": {
  7630. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7631. "__expectedType__": "cc.SpriteFrame"
  7632. },
  7633. "_type": 1,
  7634. "_fillType": 0,
  7635. "_sizeMode": 0,
  7636. "_fillCenter": {
  7637. "__type__": "cc.Vec2",
  7638. "x": 0,
  7639. "y": 0
  7640. },
  7641. "_fillStart": 0,
  7642. "_fillRange": 0,
  7643. "_isTrimmedMode": true,
  7644. "_useGrayscale": false,
  7645. "_atlas": null,
  7646. "_id": "f4bw2ofYVA17or91XRahrn"
  7647. },
  7648. {
  7649. "__type__": "cc.Node",
  7650. "_name": "game_edit_list",
  7651. "_objFlags": 0,
  7652. "__editorExtras__": {},
  7653. "_parent": {
  7654. "__id__": 2
  7655. },
  7656. "_children": [
  7657. {
  7658. "__id__": 223
  7659. },
  7660. {
  7661. "__id__": 227
  7662. }
  7663. ],
  7664. "_active": true,
  7665. "_components": [
  7666. {
  7667. "__id__": 248
  7668. },
  7669. {
  7670. "__id__": 249
  7671. },
  7672. {
  7673. "__id__": 250
  7674. }
  7675. ],
  7676. "_prefab": null,
  7677. "_lpos": {
  7678. "__type__": "cc.Vec3",
  7679. "x": 0,
  7680. "y": 0,
  7681. "z": 0
  7682. },
  7683. "_lrot": {
  7684. "__type__": "cc.Quat",
  7685. "x": 0,
  7686. "y": 0,
  7687. "z": 0,
  7688. "w": 1
  7689. },
  7690. "_lscale": {
  7691. "__type__": "cc.Vec3",
  7692. "x": 1,
  7693. "y": 1,
  7694. "z": 1
  7695. },
  7696. "_mobility": 0,
  7697. "_layer": 33554432,
  7698. "_euler": {
  7699. "__type__": "cc.Vec3",
  7700. "x": 0,
  7701. "y": 0,
  7702. "z": 0
  7703. },
  7704. "_id": "58Dvv7cDRBML8YJG4ypxRa"
  7705. },
  7706. {
  7707. "__type__": "cc.Node",
  7708. "_name": "Sprite",
  7709. "_objFlags": 0,
  7710. "__editorExtras__": {},
  7711. "_parent": {
  7712. "__id__": 222
  7713. },
  7714. "_children": [],
  7715. "_active": true,
  7716. "_components": [
  7717. {
  7718. "__id__": 224
  7719. },
  7720. {
  7721. "__id__": 225
  7722. },
  7723. {
  7724. "__id__": 226
  7725. }
  7726. ],
  7727. "_prefab": null,
  7728. "_lpos": {
  7729. "__type__": "cc.Vec3",
  7730. "x": 0,
  7731. "y": 0,
  7732. "z": 0
  7733. },
  7734. "_lrot": {
  7735. "__type__": "cc.Quat",
  7736. "x": 0,
  7737. "y": 0,
  7738. "z": 0,
  7739. "w": 1
  7740. },
  7741. "_lscale": {
  7742. "__type__": "cc.Vec3",
  7743. "x": 1,
  7744. "y": 1,
  7745. "z": 1
  7746. },
  7747. "_mobility": 0,
  7748. "_layer": 33554432,
  7749. "_euler": {
  7750. "__type__": "cc.Vec3",
  7751. "x": 0,
  7752. "y": 0,
  7753. "z": 0
  7754. },
  7755. "_id": "bcChaDDpFFVIZfIoqtf6sn"
  7756. },
  7757. {
  7758. "__type__": "cc.UITransform",
  7759. "_name": "",
  7760. "_objFlags": 0,
  7761. "__editorExtras__": {},
  7762. "node": {
  7763. "__id__": 223
  7764. },
  7765. "_enabled": true,
  7766. "__prefab": null,
  7767. "_contentSize": {
  7768. "__type__": "cc.Size",
  7769. "width": 1920.0000000000002,
  7770. "height": 1080
  7771. },
  7772. "_anchorPoint": {
  7773. "__type__": "cc.Vec2",
  7774. "x": 0.5,
  7775. "y": 0.5
  7776. },
  7777. "_id": "90MDea/iVEeb44NjNab1q5"
  7778. },
  7779. {
  7780. "__type__": "cc.Sprite",
  7781. "_name": "",
  7782. "_objFlags": 0,
  7783. "__editorExtras__": {},
  7784. "node": {
  7785. "__id__": 223
  7786. },
  7787. "_enabled": true,
  7788. "__prefab": null,
  7789. "_customMaterial": null,
  7790. "_srcBlendFactor": 2,
  7791. "_dstBlendFactor": 4,
  7792. "_color": {
  7793. "__type__": "cc.Color",
  7794. "r": 63,
  7795. "g": 63,
  7796. "b": 63,
  7797. "a": 255
  7798. },
  7799. "_spriteFrame": {
  7800. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  7801. "__expectedType__": "cc.SpriteFrame"
  7802. },
  7803. "_type": 0,
  7804. "_fillType": 0,
  7805. "_sizeMode": 0,
  7806. "_fillCenter": {
  7807. "__type__": "cc.Vec2",
  7808. "x": 0,
  7809. "y": 0
  7810. },
  7811. "_fillStart": 0,
  7812. "_fillRange": 0,
  7813. "_isTrimmedMode": true,
  7814. "_useGrayscale": false,
  7815. "_atlas": null,
  7816. "_id": "abPGCyBhdIkY9IHfbIXneT"
  7817. },
  7818. {
  7819. "__type__": "cc.Widget",
  7820. "_name": "",
  7821. "_objFlags": 0,
  7822. "__editorExtras__": {},
  7823. "node": {
  7824. "__id__": 223
  7825. },
  7826. "_enabled": true,
  7827. "__prefab": null,
  7828. "_alignFlags": 45,
  7829. "_target": null,
  7830. "_left": 0,
  7831. "_right": 0,
  7832. "_top": 0,
  7833. "_bottom": 0,
  7834. "_horizontalCenter": 0,
  7835. "_verticalCenter": 0,
  7836. "_isAbsLeft": true,
  7837. "_isAbsRight": true,
  7838. "_isAbsTop": true,
  7839. "_isAbsBottom": true,
  7840. "_isAbsHorizontalCenter": true,
  7841. "_isAbsVerticalCenter": true,
  7842. "_originalWidth": 2,
  7843. "_originalHeight": 2,
  7844. "_alignMode": 2,
  7845. "_lockFlags": 0,
  7846. "_id": "79MJpZzNlICaKVrd3Ctg5J"
  7847. },
  7848. {
  7849. "__type__": "cc.Node",
  7850. "_name": "ScrollView",
  7851. "_objFlags": 0,
  7852. "__editorExtras__": {},
  7853. "_parent": {
  7854. "__id__": 222
  7855. },
  7856. "_children": [
  7857. {
  7858. "__id__": 228
  7859. },
  7860. {
  7861. "__id__": 238
  7862. }
  7863. ],
  7864. "_active": true,
  7865. "_components": [
  7866. {
  7867. "__id__": 245
  7868. },
  7869. {
  7870. "__id__": 246
  7871. },
  7872. {
  7873. "__id__": 236
  7874. },
  7875. {
  7876. "__id__": 247
  7877. }
  7878. ],
  7879. "_prefab": null,
  7880. "_lpos": {
  7881. "__type__": "cc.Vec3",
  7882. "x": 0,
  7883. "y": 0,
  7884. "z": 0
  7885. },
  7886. "_lrot": {
  7887. "__type__": "cc.Quat",
  7888. "x": 0,
  7889. "y": 0,
  7890. "z": 0,
  7891. "w": 1
  7892. },
  7893. "_lscale": {
  7894. "__type__": "cc.Vec3",
  7895. "x": 1,
  7896. "y": 1,
  7897. "z": 1
  7898. },
  7899. "_mobility": 0,
  7900. "_layer": 33554432,
  7901. "_euler": {
  7902. "__type__": "cc.Vec3",
  7903. "x": 0,
  7904. "y": 0,
  7905. "z": 0
  7906. },
  7907. "_id": "a4LCJgWEFBl4EzihiPT7OI"
  7908. },
  7909. {
  7910. "__type__": "cc.Node",
  7911. "_name": "scrollBar",
  7912. "_objFlags": 0,
  7913. "__editorExtras__": {},
  7914. "_parent": {
  7915. "__id__": 227
  7916. },
  7917. "_children": [
  7918. {
  7919. "__id__": 229
  7920. }
  7921. ],
  7922. "_active": true,
  7923. "_components": [
  7924. {
  7925. "__id__": 232
  7926. },
  7927. {
  7928. "__id__": 233
  7929. },
  7930. {
  7931. "__id__": 234
  7932. },
  7933. {
  7934. "__id__": 235
  7935. }
  7936. ],
  7937. "_prefab": null,
  7938. "_lpos": {
  7939. "__type__": "cc.Vec3",
  7940. "x": 960.0000000000001,
  7941. "y": 0,
  7942. "z": 0
  7943. },
  7944. "_lrot": {
  7945. "__type__": "cc.Quat",
  7946. "x": 0,
  7947. "y": 0,
  7948. "z": 0,
  7949. "w": 1
  7950. },
  7951. "_lscale": {
  7952. "__type__": "cc.Vec3",
  7953. "x": 1,
  7954. "y": 1,
  7955. "z": 1
  7956. },
  7957. "_mobility": 0,
  7958. "_layer": 33554432,
  7959. "_euler": {
  7960. "__type__": "cc.Vec3",
  7961. "x": 0,
  7962. "y": 0,
  7963. "z": 0
  7964. },
  7965. "_id": "d9nKhiQ2BEYLHqL4SoNv7W"
  7966. },
  7967. {
  7968. "__type__": "cc.Node",
  7969. "_name": "bar",
  7970. "_objFlags": 0,
  7971. "__editorExtras__": {},
  7972. "_parent": {
  7973. "__id__": 228
  7974. },
  7975. "_children": [],
  7976. "_active": true,
  7977. "_components": [
  7978. {
  7979. "__id__": 230
  7980. },
  7981. {
  7982. "__id__": 231
  7983. }
  7984. ],
  7985. "_prefab": null,
  7986. "_lpos": {
  7987. "__type__": "cc.Vec3",
  7988. "x": -11,
  7989. "y": -31.25,
  7990. "z": 0
  7991. },
  7992. "_lrot": {
  7993. "__type__": "cc.Quat",
  7994. "x": 0,
  7995. "y": 0,
  7996. "z": 0,
  7997. "w": 1
  7998. },
  7999. "_lscale": {
  8000. "__type__": "cc.Vec3",
  8001. "x": 1,
  8002. "y": 1,
  8003. "z": 1
  8004. },
  8005. "_mobility": 0,
  8006. "_layer": 33554432,
  8007. "_euler": {
  8008. "__type__": "cc.Vec3",
  8009. "x": 0,
  8010. "y": 0,
  8011. "z": 0
  8012. },
  8013. "_id": "84Tha1u5lMBIcfl8iiPvF4"
  8014. },
  8015. {
  8016. "__type__": "cc.UITransform",
  8017. "_name": "",
  8018. "_objFlags": 0,
  8019. "__editorExtras__": {},
  8020. "node": {
  8021. "__id__": 229
  8022. },
  8023. "_enabled": true,
  8024. "__prefab": null,
  8025. "_contentSize": {
  8026. "__type__": "cc.Size",
  8027. "width": 10,
  8028. "height": 156.25
  8029. },
  8030. "_anchorPoint": {
  8031. "__type__": "cc.Vec2",
  8032. "x": 0,
  8033. "y": 0
  8034. },
  8035. "_id": "f85k1xa2ZAwa+Z7ePTFZLL"
  8036. },
  8037. {
  8038. "__type__": "cc.Sprite",
  8039. "_name": "",
  8040. "_objFlags": 0,
  8041. "__editorExtras__": {},
  8042. "node": {
  8043. "__id__": 229
  8044. },
  8045. "_enabled": true,
  8046. "__prefab": null,
  8047. "_customMaterial": null,
  8048. "_srcBlendFactor": 2,
  8049. "_dstBlendFactor": 4,
  8050. "_color": {
  8051. "__type__": "cc.Color",
  8052. "r": 255,
  8053. "g": 255,
  8054. "b": 255,
  8055. "a": 255
  8056. },
  8057. "_spriteFrame": {
  8058. "__uuid__": "afc47931-f066-46b0-90be-9fe61f213428@f9941",
  8059. "__expectedType__": "cc.SpriteFrame"
  8060. },
  8061. "_type": 1,
  8062. "_fillType": 0,
  8063. "_sizeMode": 0,
  8064. "_fillCenter": {
  8065. "__type__": "cc.Vec2",
  8066. "x": 0,
  8067. "y": 0
  8068. },
  8069. "_fillStart": 0,
  8070. "_fillRange": 0,
  8071. "_isTrimmedMode": true,
  8072. "_useGrayscale": false,
  8073. "_atlas": null,
  8074. "_id": "56+2A9kN5Ja63gGrjpUbGy"
  8075. },
  8076. {
  8077. "__type__": "cc.UITransform",
  8078. "_name": "",
  8079. "_objFlags": 0,
  8080. "__editorExtras__": {},
  8081. "node": {
  8082. "__id__": 228
  8083. },
  8084. "_enabled": true,
  8085. "__prefab": null,
  8086. "_contentSize": {
  8087. "__type__": "cc.Size",
  8088. "width": 12,
  8089. "height": 1080
  8090. },
  8091. "_anchorPoint": {
  8092. "__type__": "cc.Vec2",
  8093. "x": 1,
  8094. "y": 0.5
  8095. },
  8096. "_id": "abvmEAbmNLvo1Jam5nQqyV"
  8097. },
  8098. {
  8099. "__type__": "cc.Sprite",
  8100. "_name": "",
  8101. "_objFlags": 0,
  8102. "__editorExtras__": {},
  8103. "node": {
  8104. "__id__": 228
  8105. },
  8106. "_enabled": true,
  8107. "__prefab": null,
  8108. "_customMaterial": null,
  8109. "_srcBlendFactor": 2,
  8110. "_dstBlendFactor": 4,
  8111. "_color": {
  8112. "__type__": "cc.Color",
  8113. "r": 255,
  8114. "g": 255,
  8115. "b": 255,
  8116. "a": 255
  8117. },
  8118. "_spriteFrame": {
  8119. "__uuid__": "ffb88a8f-af62-48f4-8f1d-3cb606443a43@f9941",
  8120. "__expectedType__": "cc.SpriteFrame"
  8121. },
  8122. "_type": 1,
  8123. "_fillType": 0,
  8124. "_sizeMode": 0,
  8125. "_fillCenter": {
  8126. "__type__": "cc.Vec2",
  8127. "x": 0,
  8128. "y": 0
  8129. },
  8130. "_fillStart": 0,
  8131. "_fillRange": 0,
  8132. "_isTrimmedMode": true,
  8133. "_useGrayscale": false,
  8134. "_atlas": null,
  8135. "_id": "26wx7iWG5Nd4sJ+LXL1/91"
  8136. },
  8137. {
  8138. "__type__": "cc.Widget",
  8139. "_name": "",
  8140. "_objFlags": 0,
  8141. "__editorExtras__": {},
  8142. "node": {
  8143. "__id__": 228
  8144. },
  8145. "_enabled": true,
  8146. "__prefab": null,
  8147. "_alignFlags": 37,
  8148. "_target": null,
  8149. "_left": 0,
  8150. "_right": 0,
  8151. "_top": 0,
  8152. "_bottom": 0,
  8153. "_horizontalCenter": 0,
  8154. "_verticalCenter": 0,
  8155. "_isAbsLeft": true,
  8156. "_isAbsRight": true,
  8157. "_isAbsTop": true,
  8158. "_isAbsBottom": true,
  8159. "_isAbsHorizontalCenter": true,
  8160. "_isAbsVerticalCenter": true,
  8161. "_originalWidth": 0,
  8162. "_originalHeight": 250,
  8163. "_alignMode": 1,
  8164. "_lockFlags": 0,
  8165. "_id": "1aXm9mZ0BLY745Inb8gmVm"
  8166. },
  8167. {
  8168. "__type__": "cc.ScrollBar",
  8169. "_name": "",
  8170. "_objFlags": 0,
  8171. "__editorExtras__": {},
  8172. "node": {
  8173. "__id__": 228
  8174. },
  8175. "_enabled": true,
  8176. "__prefab": null,
  8177. "_scrollView": {
  8178. "__id__": 236
  8179. },
  8180. "_handle": {
  8181. "__id__": 231
  8182. },
  8183. "_direction": 1,
  8184. "_enableAutoHide": false,
  8185. "_autoHideTime": 1,
  8186. "_id": "67menqWARFLoA92KgAgPVw"
  8187. },
  8188. {
  8189. "__type__": "cc.ScrollView",
  8190. "_name": "",
  8191. "_objFlags": 0,
  8192. "__editorExtras__": {},
  8193. "node": {
  8194. "__id__": 227
  8195. },
  8196. "_enabled": true,
  8197. "__prefab": null,
  8198. "bounceDuration": 0.23,
  8199. "brake": 0.75,
  8200. "elastic": true,
  8201. "inertia": true,
  8202. "horizontal": false,
  8203. "vertical": true,
  8204. "cancelInnerEvents": true,
  8205. "scrollEvents": [],
  8206. "_content": {
  8207. "__id__": 237
  8208. },
  8209. "_horizontalScrollBar": null,
  8210. "_verticalScrollBar": {
  8211. "__id__": 235
  8212. },
  8213. "_id": "ca7xP9xidN+roasx36toNZ"
  8214. },
  8215. {
  8216. "__type__": "cc.Node",
  8217. "_name": "content",
  8218. "_objFlags": 0,
  8219. "__editorExtras__": {},
  8220. "_parent": {
  8221. "__id__": 238
  8222. },
  8223. "_children": [],
  8224. "_active": true,
  8225. "_components": [
  8226. {
  8227. "__id__": 243
  8228. },
  8229. {
  8230. "__id__": 244
  8231. }
  8232. ],
  8233. "_prefab": null,
  8234. "_lpos": {
  8235. "__type__": "cc.Vec3",
  8236. "x": 0,
  8237. "y": 395.06,
  8238. "z": 0
  8239. },
  8240. "_lrot": {
  8241. "__type__": "cc.Quat",
  8242. "x": 0,
  8243. "y": 0,
  8244. "z": 0,
  8245. "w": 1
  8246. },
  8247. "_lscale": {
  8248. "__type__": "cc.Vec3",
  8249. "x": 1,
  8250. "y": 1,
  8251. "z": 1
  8252. },
  8253. "_mobility": 0,
  8254. "_layer": 33554432,
  8255. "_euler": {
  8256. "__type__": "cc.Vec3",
  8257. "x": 0,
  8258. "y": 0,
  8259. "z": 0
  8260. },
  8261. "_id": "0aG2I7fnZA6JBc2VabfGX7"
  8262. },
  8263. {
  8264. "__type__": "cc.Node",
  8265. "_name": "view",
  8266. "_objFlags": 0,
  8267. "__editorExtras__": {},
  8268. "_parent": {
  8269. "__id__": 227
  8270. },
  8271. "_children": [
  8272. {
  8273. "__id__": 237
  8274. }
  8275. ],
  8276. "_active": true,
  8277. "_components": [
  8278. {
  8279. "__id__": 239
  8280. },
  8281. {
  8282. "__id__": 240
  8283. },
  8284. {
  8285. "__id__": 241
  8286. },
  8287. {
  8288. "__id__": 242
  8289. }
  8290. ],
  8291. "_prefab": null,
  8292. "_lpos": {
  8293. "__type__": "cc.Vec3",
  8294. "x": 0,
  8295. "y": 0,
  8296. "z": 0
  8297. },
  8298. "_lrot": {
  8299. "__type__": "cc.Quat",
  8300. "x": 0,
  8301. "y": 0,
  8302. "z": 0,
  8303. "w": 1
  8304. },
  8305. "_lscale": {
  8306. "__type__": "cc.Vec3",
  8307. "x": 1,
  8308. "y": 1,
  8309. "z": 1
  8310. },
  8311. "_mobility": 0,
  8312. "_layer": 33554432,
  8313. "_euler": {
  8314. "__type__": "cc.Vec3",
  8315. "x": 0,
  8316. "y": 0,
  8317. "z": 0
  8318. },
  8319. "_id": "5ddQPYN7xKapPCN2Yjkvoq"
  8320. },
  8321. {
  8322. "__type__": "cc.UITransform",
  8323. "_name": "",
  8324. "_objFlags": 0,
  8325. "__editorExtras__": {},
  8326. "node": {
  8327. "__id__": 238
  8328. },
  8329. "_enabled": true,
  8330. "__prefab": null,
  8331. "_contentSize": {
  8332. "__type__": "cc.Size",
  8333. "width": 1920.0000000000002,
  8334. "height": 1080
  8335. },
  8336. "_anchorPoint": {
  8337. "__type__": "cc.Vec2",
  8338. "x": 0.5,
  8339. "y": 0.5
  8340. },
  8341. "_id": "38RySv9MpJxrW/ox2klp+3"
  8342. },
  8343. {
  8344. "__type__": "cc.Mask",
  8345. "_name": "",
  8346. "_objFlags": 0,
  8347. "__editorExtras__": {},
  8348. "node": {
  8349. "__id__": 238
  8350. },
  8351. "_enabled": true,
  8352. "__prefab": null,
  8353. "_type": 0,
  8354. "_inverted": false,
  8355. "_segments": 64,
  8356. "_alphaThreshold": 0.1,
  8357. "_id": "35fskNeFtAe6PSMQgLdcbU"
  8358. },
  8359. {
  8360. "__type__": "cc.Graphics",
  8361. "_name": "",
  8362. "_objFlags": 0,
  8363. "__editorExtras__": {},
  8364. "node": {
  8365. "__id__": 238
  8366. },
  8367. "_enabled": true,
  8368. "__prefab": null,
  8369. "_customMaterial": null,
  8370. "_srcBlendFactor": 2,
  8371. "_dstBlendFactor": 4,
  8372. "_color": {
  8373. "__type__": "cc.Color",
  8374. "r": 255,
  8375. "g": 255,
  8376. "b": 255,
  8377. "a": 255
  8378. },
  8379. "_lineWidth": 1,
  8380. "_strokeColor": {
  8381. "__type__": "cc.Color",
  8382. "r": 0,
  8383. "g": 0,
  8384. "b": 0,
  8385. "a": 255
  8386. },
  8387. "_lineJoin": 2,
  8388. "_lineCap": 0,
  8389. "_fillColor": {
  8390. "__type__": "cc.Color",
  8391. "r": 255,
  8392. "g": 255,
  8393. "b": 255,
  8394. "a": 0
  8395. },
  8396. "_miterLimit": 10,
  8397. "_id": "16Gna7ZrdJa7cLhp3FVTtb"
  8398. },
  8399. {
  8400. "__type__": "cc.Widget",
  8401. "_name": "",
  8402. "_objFlags": 0,
  8403. "__editorExtras__": {},
  8404. "node": {
  8405. "__id__": 238
  8406. },
  8407. "_enabled": true,
  8408. "__prefab": null,
  8409. "_alignFlags": 45,
  8410. "_target": null,
  8411. "_left": 0,
  8412. "_right": 0,
  8413. "_top": 0,
  8414. "_bottom": 0,
  8415. "_horizontalCenter": 0,
  8416. "_verticalCenter": 0,
  8417. "_isAbsLeft": true,
  8418. "_isAbsRight": true,
  8419. "_isAbsTop": true,
  8420. "_isAbsBottom": true,
  8421. "_isAbsHorizontalCenter": true,
  8422. "_isAbsVerticalCenter": true,
  8423. "_originalWidth": 240,
  8424. "_originalHeight": 250,
  8425. "_alignMode": 2,
  8426. "_lockFlags": 0,
  8427. "_id": "49PORtr4BHrb1TbF8fQ4DV"
  8428. },
  8429. {
  8430. "__type__": "cc.UITransform",
  8431. "_name": "",
  8432. "_objFlags": 0,
  8433. "__editorExtras__": {},
  8434. "node": {
  8435. "__id__": 237
  8436. },
  8437. "_enabled": true,
  8438. "__prefab": null,
  8439. "_contentSize": {
  8440. "__type__": "cc.Size",
  8441. "width": 220,
  8442. "height": -20
  8443. },
  8444. "_anchorPoint": {
  8445. "__type__": "cc.Vec2",
  8446. "x": 0.5,
  8447. "y": 1
  8448. },
  8449. "_id": "2cCUBbjUBHCbi14BS7Mtvb"
  8450. },
  8451. {
  8452. "__type__": "cc.Layout",
  8453. "_name": "",
  8454. "_objFlags": 0,
  8455. "__editorExtras__": {},
  8456. "node": {
  8457. "__id__": 237
  8458. },
  8459. "_enabled": true,
  8460. "__prefab": null,
  8461. "_resizeMode": 1,
  8462. "_layoutType": 2,
  8463. "_cellSize": {
  8464. "__type__": "cc.Size",
  8465. "width": 40,
  8466. "height": 40
  8467. },
  8468. "_startAxis": 0,
  8469. "_paddingLeft": 0,
  8470. "_paddingRight": 0,
  8471. "_paddingTop": 0,
  8472. "_paddingBottom": 0,
  8473. "_spacingX": 0,
  8474. "_spacingY": 20,
  8475. "_verticalDirection": 1,
  8476. "_horizontalDirection": 0,
  8477. "_constraint": 0,
  8478. "_constraintNum": 2,
  8479. "_affectedByScale": false,
  8480. "_isAlign": false,
  8481. "_id": "3cRrldYUZE8KuGh+OLzgl/"
  8482. },
  8483. {
  8484. "__type__": "cc.UITransform",
  8485. "_name": "",
  8486. "_objFlags": 0,
  8487. "__editorExtras__": {},
  8488. "node": {
  8489. "__id__": 227
  8490. },
  8491. "_enabled": true,
  8492. "__prefab": null,
  8493. "_contentSize": {
  8494. "__type__": "cc.Size",
  8495. "width": 1920.0000000000002,
  8496. "height": 1080
  8497. },
  8498. "_anchorPoint": {
  8499. "__type__": "cc.Vec2",
  8500. "x": 0.5,
  8501. "y": 0.5
  8502. },
  8503. "_id": "99/qzUmulLHbJlZxqPJA/h"
  8504. },
  8505. {
  8506. "__type__": "cc.Sprite",
  8507. "_name": "",
  8508. "_objFlags": 0,
  8509. "__editorExtras__": {},
  8510. "node": {
  8511. "__id__": 227
  8512. },
  8513. "_enabled": true,
  8514. "__prefab": null,
  8515. "_customMaterial": null,
  8516. "_srcBlendFactor": 2,
  8517. "_dstBlendFactor": 4,
  8518. "_color": {
  8519. "__type__": "cc.Color",
  8520. "r": 255,
  8521. "g": 255,
  8522. "b": 255,
  8523. "a": 255
  8524. },
  8525. "_spriteFrame": {
  8526. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  8527. "__expectedType__": "cc.SpriteFrame"
  8528. },
  8529. "_type": 1,
  8530. "_fillType": 0,
  8531. "_sizeMode": 0,
  8532. "_fillCenter": {
  8533. "__type__": "cc.Vec2",
  8534. "x": 0,
  8535. "y": 0
  8536. },
  8537. "_fillStart": 0,
  8538. "_fillRange": 0,
  8539. "_isTrimmedMode": true,
  8540. "_useGrayscale": false,
  8541. "_atlas": null,
  8542. "_id": "38Y0FphBBD4akQLKPWkUyN"
  8543. },
  8544. {
  8545. "__type__": "cc.Widget",
  8546. "_name": "",
  8547. "_objFlags": 0,
  8548. "__editorExtras__": {},
  8549. "node": {
  8550. "__id__": 227
  8551. },
  8552. "_enabled": true,
  8553. "__prefab": null,
  8554. "_alignFlags": 45,
  8555. "_target": null,
  8556. "_left": 0,
  8557. "_right": 0,
  8558. "_top": 0,
  8559. "_bottom": 0,
  8560. "_horizontalCenter": 0,
  8561. "_verticalCenter": 0,
  8562. "_isAbsLeft": true,
  8563. "_isAbsRight": true,
  8564. "_isAbsTop": true,
  8565. "_isAbsBottom": true,
  8566. "_isAbsHorizontalCenter": true,
  8567. "_isAbsVerticalCenter": true,
  8568. "_originalWidth": 240,
  8569. "_originalHeight": 250,
  8570. "_alignMode": 2,
  8571. "_lockFlags": 0,
  8572. "_id": "6dEDQNRvdNHrcXEMmJtygW"
  8573. },
  8574. {
  8575. "__type__": "cc.UITransform",
  8576. "_name": "",
  8577. "_objFlags": 0,
  8578. "__editorExtras__": {},
  8579. "node": {
  8580. "__id__": 222
  8581. },
  8582. "_enabled": false,
  8583. "__prefab": null,
  8584. "_contentSize": {
  8585. "__type__": "cc.Size",
  8586. "width": 1920.0000000000002,
  8587. "height": 1080
  8588. },
  8589. "_anchorPoint": {
  8590. "__type__": "cc.Vec2",
  8591. "x": 0.5,
  8592. "y": 0.5
  8593. },
  8594. "_id": "81Zfm3pPJFRpaWalX3I1DI"
  8595. },
  8596. {
  8597. "__type__": "efd112GEjhLsqiQhegJheCe",
  8598. "_name": "",
  8599. "_objFlags": 0,
  8600. "__editorExtras__": {},
  8601. "node": {
  8602. "__id__": 222
  8603. },
  8604. "_enabled": true,
  8605. "__prefab": null,
  8606. "item_prefab": {
  8607. "__uuid__": "a1dc977e-da6f-4743-9077-4006f54b7bc0",
  8608. "__expectedType__": "cc.Prefab"
  8609. },
  8610. "content": {
  8611. "__id__": 237
  8612. },
  8613. "game_1": {
  8614. "__id__": 5
  8615. },
  8616. "game_font": {
  8617. "__id__": 179
  8618. },
  8619. "game_detail": {
  8620. "__id__": 81
  8621. },
  8622. "_id": "2dSJX6cEVAwaMiKsgatCDY"
  8623. },
  8624. {
  8625. "__type__": "cc.Widget",
  8626. "_name": "",
  8627. "_objFlags": 0,
  8628. "__editorExtras__": {},
  8629. "node": {
  8630. "__id__": 222
  8631. },
  8632. "_enabled": true,
  8633. "__prefab": null,
  8634. "_alignFlags": 45,
  8635. "_target": null,
  8636. "_left": 0,
  8637. "_right": 0,
  8638. "_top": 0,
  8639. "_bottom": 0,
  8640. "_horizontalCenter": 0,
  8641. "_verticalCenter": 0,
  8642. "_isAbsLeft": true,
  8643. "_isAbsRight": true,
  8644. "_isAbsTop": true,
  8645. "_isAbsBottom": true,
  8646. "_isAbsHorizontalCenter": true,
  8647. "_isAbsVerticalCenter": true,
  8648. "_originalWidth": 375,
  8649. "_originalHeight": 812,
  8650. "_alignMode": 2,
  8651. "_lockFlags": 0,
  8652. "_id": "7c9cyKkYJLZ7CS13/9TsDV"
  8653. },
  8654. {
  8655. "__type__": "cc.UITransform",
  8656. "_name": "",
  8657. "_objFlags": 0,
  8658. "__editorExtras__": {},
  8659. "node": {
  8660. "__id__": 2
  8661. },
  8662. "_enabled": true,
  8663. "__prefab": null,
  8664. "_contentSize": {
  8665. "__type__": "cc.Size",
  8666. "width": 1920,
  8667. "height": 1080
  8668. },
  8669. "_anchorPoint": {
  8670. "__type__": "cc.Vec2",
  8671. "x": 0.5,
  8672. "y": 0.5
  8673. },
  8674. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  8675. },
  8676. {
  8677. "__type__": "cc.Canvas",
  8678. "_name": "",
  8679. "_objFlags": 0,
  8680. "__editorExtras__": {},
  8681. "node": {
  8682. "__id__": 2
  8683. },
  8684. "_enabled": true,
  8685. "__prefab": null,
  8686. "_cameraComponent": {
  8687. "__id__": 4
  8688. },
  8689. "_alignCanvasWithScreen": true,
  8690. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  8691. },
  8692. {
  8693. "__type__": "cc.Widget",
  8694. "_name": "",
  8695. "_objFlags": 0,
  8696. "__editorExtras__": {},
  8697. "node": {
  8698. "__id__": 2
  8699. },
  8700. "_enabled": true,
  8701. "__prefab": null,
  8702. "_alignFlags": 45,
  8703. "_target": null,
  8704. "_left": 1.4210854715202004e-13,
  8705. "_right": 1.4210854715202004e-13,
  8706. "_top": 5.684341886080802e-14,
  8707. "_bottom": 5.684341886080802e-14,
  8708. "_horizontalCenter": 0,
  8709. "_verticalCenter": 0,
  8710. "_isAbsLeft": true,
  8711. "_isAbsRight": true,
  8712. "_isAbsTop": true,
  8713. "_isAbsBottom": true,
  8714. "_isAbsHorizontalCenter": true,
  8715. "_isAbsVerticalCenter": true,
  8716. "_originalWidth": 0,
  8717. "_originalHeight": 0,
  8718. "_alignMode": 2,
  8719. "_lockFlags": 0,
  8720. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  8721. },
  8722. {
  8723. "__type__": "cc.PrefabInfo",
  8724. "root": null,
  8725. "asset": null,
  8726. "fileId": "1c9182fc-c6a7-4fca-a293-02b3051d1594",
  8727. "instance": null,
  8728. "targetOverrides": [
  8729. {
  8730. "__id__": 255
  8731. },
  8732. {
  8733. "__id__": 258
  8734. },
  8735. {
  8736. "__id__": 261
  8737. },
  8738. {
  8739. "__id__": 264
  8740. },
  8741. {
  8742. "__id__": 267
  8743. },
  8744. {
  8745. "__id__": 270
  8746. },
  8747. {
  8748. "__id__": 273
  8749. },
  8750. {
  8751. "__id__": 276
  8752. },
  8753. {
  8754. "__id__": 279
  8755. },
  8756. {
  8757. "__id__": 282
  8758. },
  8759. {
  8760. "__id__": 285
  8761. },
  8762. {
  8763. "__id__": 288
  8764. },
  8765. {
  8766. "__id__": 291
  8767. },
  8768. {
  8769. "__id__": 294
  8770. },
  8771. {
  8772. "__id__": 297
  8773. },
  8774. {
  8775. "__id__": 300
  8776. },
  8777. {
  8778. "__id__": 303
  8779. },
  8780. {
  8781. "__id__": 306
  8782. },
  8783. {
  8784. "__id__": 309
  8785. },
  8786. {
  8787. "__id__": 312
  8788. },
  8789. {
  8790. "__id__": 315
  8791. },
  8792. {
  8793. "__id__": 318
  8794. },
  8795. {
  8796. "__id__": 321
  8797. },
  8798. {
  8799. "__id__": 324
  8800. },
  8801. {
  8802. "__id__": 327
  8803. },
  8804. {
  8805. "__id__": 330
  8806. },
  8807. {
  8808. "__id__": 333
  8809. }
  8810. ],
  8811. "nestedPrefabInstanceRoots": [
  8812. {
  8813. "__id__": 57
  8814. },
  8815. {
  8816. "__id__": 130
  8817. },
  8818. {
  8819. "__id__": 207
  8820. }
  8821. ]
  8822. },
  8823. {
  8824. "__type__": "cc.TargetOverrideInfo",
  8825. "source": {
  8826. "__id__": 57
  8827. },
  8828. "sourceInfo": {
  8829. "__id__": 256
  8830. },
  8831. "propertyPath": [
  8832. "btn_cancel"
  8833. ],
  8834. "target": {
  8835. "__id__": 57
  8836. },
  8837. "targetInfo": {
  8838. "__id__": 257
  8839. }
  8840. },
  8841. {
  8842. "__type__": "cc.TargetInfo",
  8843. "localID": [
  8844. "c0jCcjGjBGNokGQItd4ax/"
  8845. ]
  8846. },
  8847. {
  8848. "__type__": "cc.TargetInfo",
  8849. "localID": [
  8850. "92+xHS+n9GE685TrmizwZF"
  8851. ]
  8852. },
  8853. {
  8854. "__type__": "cc.TargetOverrideInfo",
  8855. "source": {
  8856. "__id__": 57
  8857. },
  8858. "sourceInfo": {
  8859. "__id__": 259
  8860. },
  8861. "propertyPath": [
  8862. "btn_search"
  8863. ],
  8864. "target": {
  8865. "__id__": 57
  8866. },
  8867. "targetInfo": {
  8868. "__id__": 260
  8869. }
  8870. },
  8871. {
  8872. "__type__": "cc.TargetInfo",
  8873. "localID": [
  8874. "c0jCcjGjBGNokGQItd4ax/"
  8875. ]
  8876. },
  8877. {
  8878. "__type__": "cc.TargetInfo",
  8879. "localID": [
  8880. "97EtUUXwhFwa8qgywCoba9"
  8881. ]
  8882. },
  8883. {
  8884. "__type__": "cc.TargetOverrideInfo",
  8885. "source": {
  8886. "__id__": 57
  8887. },
  8888. "sourceInfo": {
  8889. "__id__": 262
  8890. },
  8891. "propertyPath": [
  8892. "btn_p"
  8893. ],
  8894. "target": {
  8895. "__id__": 57
  8896. },
  8897. "targetInfo": {
  8898. "__id__": 263
  8899. }
  8900. },
  8901. {
  8902. "__type__": "cc.TargetInfo",
  8903. "localID": [
  8904. "c0jCcjGjBGNokGQItd4ax/"
  8905. ]
  8906. },
  8907. {
  8908. "__type__": "cc.TargetInfo",
  8909. "localID": [
  8910. "913Xrlrj9CBI9jyNx7WFBZ"
  8911. ]
  8912. },
  8913. {
  8914. "__type__": "cc.TargetOverrideInfo",
  8915. "source": {
  8916. "__id__": 57
  8917. },
  8918. "sourceInfo": {
  8919. "__id__": 265
  8920. },
  8921. "propertyPath": [
  8922. "btn_n"
  8923. ],
  8924. "target": {
  8925. "__id__": 57
  8926. },
  8927. "targetInfo": {
  8928. "__id__": 266
  8929. }
  8930. },
  8931. {
  8932. "__type__": "cc.TargetInfo",
  8933. "localID": [
  8934. "c0jCcjGjBGNokGQItd4ax/"
  8935. ]
  8936. },
  8937. {
  8938. "__type__": "cc.TargetInfo",
  8939. "localID": [
  8940. "75685S4hROQbTZJVhNjXor"
  8941. ]
  8942. },
  8943. {
  8944. "__type__": "cc.TargetOverrideInfo",
  8945. "source": {
  8946. "__id__": 57
  8947. },
  8948. "sourceInfo": {
  8949. "__id__": 268
  8950. },
  8951. "propertyPath": [
  8952. "content"
  8953. ],
  8954. "target": {
  8955. "__id__": 57
  8956. },
  8957. "targetInfo": {
  8958. "__id__": 269
  8959. }
  8960. },
  8961. {
  8962. "__type__": "cc.TargetInfo",
  8963. "localID": [
  8964. "c0jCcjGjBGNokGQItd4ax/"
  8965. ]
  8966. },
  8967. {
  8968. "__type__": "cc.TargetInfo",
  8969. "localID": [
  8970. "e98zVhyoBFtIHvlM8dQWHd"
  8971. ]
  8972. },
  8973. {
  8974. "__type__": "cc.TargetOverrideInfo",
  8975. "source": {
  8976. "__id__": 57
  8977. },
  8978. "sourceInfo": {
  8979. "__id__": 271
  8980. },
  8981. "propertyPath": [
  8982. "lab_cur_page"
  8983. ],
  8984. "target": {
  8985. "__id__": 57
  8986. },
  8987. "targetInfo": {
  8988. "__id__": 272
  8989. }
  8990. },
  8991. {
  8992. "__type__": "cc.TargetInfo",
  8993. "localID": [
  8994. "c0jCcjGjBGNokGQItd4ax/"
  8995. ]
  8996. },
  8997. {
  8998. "__type__": "cc.TargetInfo",
  8999. "localID": [
  9000. "d3XH/Mn+5FPqGo909rO5nE"
  9001. ]
  9002. },
  9003. {
  9004. "__type__": "cc.TargetOverrideInfo",
  9005. "source": {
  9006. "__id__": 57
  9007. },
  9008. "sourceInfo": {
  9009. "__id__": 274
  9010. },
  9011. "propertyPath": [
  9012. "ed_lab"
  9013. ],
  9014. "target": {
  9015. "__id__": 57
  9016. },
  9017. "targetInfo": {
  9018. "__id__": 275
  9019. }
  9020. },
  9021. {
  9022. "__type__": "cc.TargetInfo",
  9023. "localID": [
  9024. "c0jCcjGjBGNokGQItd4ax/"
  9025. ]
  9026. },
  9027. {
  9028. "__type__": "cc.TargetInfo",
  9029. "localID": [
  9030. "716PrwwkVGSZl+m/bZZd4H"
  9031. ]
  9032. },
  9033. {
  9034. "__type__": "cc.TargetOverrideInfo",
  9035. "source": {
  9036. "__id__": 130
  9037. },
  9038. "sourceInfo": {
  9039. "__id__": 277
  9040. },
  9041. "propertyPath": [
  9042. "btn_cancel"
  9043. ],
  9044. "target": {
  9045. "__id__": 130
  9046. },
  9047. "targetInfo": {
  9048. "__id__": 278
  9049. }
  9050. },
  9051. {
  9052. "__type__": "cc.TargetInfo",
  9053. "localID": [
  9054. "c0jCcjGjBGNokGQItd4ax/"
  9055. ]
  9056. },
  9057. {
  9058. "__type__": "cc.TargetInfo",
  9059. "localID": [
  9060. "92+xHS+n9GE685TrmizwZF"
  9061. ]
  9062. },
  9063. {
  9064. "__type__": "cc.TargetOverrideInfo",
  9065. "source": {
  9066. "__id__": 130
  9067. },
  9068. "sourceInfo": {
  9069. "__id__": 280
  9070. },
  9071. "propertyPath": [
  9072. "btn_p"
  9073. ],
  9074. "target": {
  9075. "__id__": 130
  9076. },
  9077. "targetInfo": {
  9078. "__id__": 281
  9079. }
  9080. },
  9081. {
  9082. "__type__": "cc.TargetInfo",
  9083. "localID": [
  9084. "c0jCcjGjBGNokGQItd4ax/"
  9085. ]
  9086. },
  9087. {
  9088. "__type__": "cc.TargetInfo",
  9089. "localID": [
  9090. "913Xrlrj9CBI9jyNx7WFBZ"
  9091. ]
  9092. },
  9093. {
  9094. "__type__": "cc.TargetOverrideInfo",
  9095. "source": {
  9096. "__id__": 130
  9097. },
  9098. "sourceInfo": {
  9099. "__id__": 283
  9100. },
  9101. "propertyPath": [
  9102. "btn_n"
  9103. ],
  9104. "target": {
  9105. "__id__": 130
  9106. },
  9107. "targetInfo": {
  9108. "__id__": 284
  9109. }
  9110. },
  9111. {
  9112. "__type__": "cc.TargetInfo",
  9113. "localID": [
  9114. "c0jCcjGjBGNokGQItd4ax/"
  9115. ]
  9116. },
  9117. {
  9118. "__type__": "cc.TargetInfo",
  9119. "localID": [
  9120. "75685S4hROQbTZJVhNjXor"
  9121. ]
  9122. },
  9123. {
  9124. "__type__": "cc.TargetOverrideInfo",
  9125. "source": {
  9126. "__id__": 130
  9127. },
  9128. "sourceInfo": {
  9129. "__id__": 286
  9130. },
  9131. "propertyPath": [
  9132. "btn_first"
  9133. ],
  9134. "target": {
  9135. "__id__": 130
  9136. },
  9137. "targetInfo": {
  9138. "__id__": 287
  9139. }
  9140. },
  9141. {
  9142. "__type__": "cc.TargetInfo",
  9143. "localID": [
  9144. "c0jCcjGjBGNokGQItd4ax/"
  9145. ]
  9146. },
  9147. {
  9148. "__type__": "cc.TargetInfo",
  9149. "localID": [
  9150. "feqiyEqmlH9Zoq/4Tn6wBn"
  9151. ]
  9152. },
  9153. {
  9154. "__type__": "cc.TargetOverrideInfo",
  9155. "source": {
  9156. "__id__": 130
  9157. },
  9158. "sourceInfo": {
  9159. "__id__": 289
  9160. },
  9161. "propertyPath": [
  9162. "btn_last"
  9163. ],
  9164. "target": {
  9165. "__id__": 130
  9166. },
  9167. "targetInfo": {
  9168. "__id__": 290
  9169. }
  9170. },
  9171. {
  9172. "__type__": "cc.TargetInfo",
  9173. "localID": [
  9174. "c0jCcjGjBGNokGQItd4ax/"
  9175. ]
  9176. },
  9177. {
  9178. "__type__": "cc.TargetInfo",
  9179. "localID": [
  9180. "b1Wb0TTN9K5Y+7Mtp3bbFP"
  9181. ]
  9182. },
  9183. {
  9184. "__type__": "cc.TargetOverrideInfo",
  9185. "source": {
  9186. "__id__": 130
  9187. },
  9188. "sourceInfo": {
  9189. "__id__": 292
  9190. },
  9191. "propertyPath": [
  9192. "btn_search"
  9193. ],
  9194. "target": {
  9195. "__id__": 130
  9196. },
  9197. "targetInfo": {
  9198. "__id__": 293
  9199. }
  9200. },
  9201. {
  9202. "__type__": "cc.TargetInfo",
  9203. "localID": [
  9204. "c0jCcjGjBGNokGQItd4ax/"
  9205. ]
  9206. },
  9207. {
  9208. "__type__": "cc.TargetInfo",
  9209. "localID": [
  9210. "97EtUUXwhFwa8qgywCoba9"
  9211. ]
  9212. },
  9213. {
  9214. "__type__": "cc.TargetOverrideInfo",
  9215. "source": {
  9216. "__id__": 130
  9217. },
  9218. "sourceInfo": {
  9219. "__id__": 295
  9220. },
  9221. "propertyPath": [
  9222. "content"
  9223. ],
  9224. "target": {
  9225. "__id__": 130
  9226. },
  9227. "targetInfo": {
  9228. "__id__": 296
  9229. }
  9230. },
  9231. {
  9232. "__type__": "cc.TargetInfo",
  9233. "localID": [
  9234. "c0jCcjGjBGNokGQItd4ax/"
  9235. ]
  9236. },
  9237. {
  9238. "__type__": "cc.TargetInfo",
  9239. "localID": [
  9240. "e98zVhyoBFtIHvlM8dQWHd"
  9241. ]
  9242. },
  9243. {
  9244. "__type__": "cc.TargetOverrideInfo",
  9245. "source": {
  9246. "__id__": 130
  9247. },
  9248. "sourceInfo": {
  9249. "__id__": 298
  9250. },
  9251. "propertyPath": [
  9252. "lab_cur_page"
  9253. ],
  9254. "target": {
  9255. "__id__": 130
  9256. },
  9257. "targetInfo": {
  9258. "__id__": 299
  9259. }
  9260. },
  9261. {
  9262. "__type__": "cc.TargetInfo",
  9263. "localID": [
  9264. "c0jCcjGjBGNokGQItd4ax/"
  9265. ]
  9266. },
  9267. {
  9268. "__type__": "cc.TargetInfo",
  9269. "localID": [
  9270. "d3XH/Mn+5FPqGo909rO5nE"
  9271. ]
  9272. },
  9273. {
  9274. "__type__": "cc.TargetOverrideInfo",
  9275. "source": {
  9276. "__id__": 130
  9277. },
  9278. "sourceInfo": {
  9279. "__id__": 301
  9280. },
  9281. "propertyPath": [
  9282. "page_editbox"
  9283. ],
  9284. "target": {
  9285. "__id__": 130
  9286. },
  9287. "targetInfo": {
  9288. "__id__": 302
  9289. }
  9290. },
  9291. {
  9292. "__type__": "cc.TargetInfo",
  9293. "localID": [
  9294. "c0jCcjGjBGNokGQItd4ax/"
  9295. ]
  9296. },
  9297. {
  9298. "__type__": "cc.TargetInfo",
  9299. "localID": [
  9300. "716PrwwkVGSZl+m/bZZd4H"
  9301. ]
  9302. },
  9303. {
  9304. "__type__": "cc.TargetOverrideInfo",
  9305. "source": {
  9306. "__id__": 130
  9307. },
  9308. "sourceInfo": {
  9309. "__id__": 304
  9310. },
  9311. "propertyPath": [
  9312. "level_editbox"
  9313. ],
  9314. "target": {
  9315. "__id__": 130
  9316. },
  9317. "targetInfo": {
  9318. "__id__": 305
  9319. }
  9320. },
  9321. {
  9322. "__type__": "cc.TargetInfo",
  9323. "localID": [
  9324. "c0jCcjGjBGNokGQItd4ax/"
  9325. ]
  9326. },
  9327. {
  9328. "__type__": "cc.TargetInfo",
  9329. "localID": [
  9330. "6bpIOfVU9PhLr6wI2ktwx+"
  9331. ]
  9332. },
  9333. {
  9334. "__type__": "cc.TargetOverrideInfo",
  9335. "source": {
  9336. "__id__": 207
  9337. },
  9338. "sourceInfo": {
  9339. "__id__": 307
  9340. },
  9341. "propertyPath": [
  9342. "btn_cancel"
  9343. ],
  9344. "target": {
  9345. "__id__": 207
  9346. },
  9347. "targetInfo": {
  9348. "__id__": 308
  9349. }
  9350. },
  9351. {
  9352. "__type__": "cc.TargetInfo",
  9353. "localID": [
  9354. "c0jCcjGjBGNokGQItd4ax/"
  9355. ]
  9356. },
  9357. {
  9358. "__type__": "cc.TargetInfo",
  9359. "localID": [
  9360. "92+xHS+n9GE685TrmizwZF"
  9361. ]
  9362. },
  9363. {
  9364. "__type__": "cc.TargetOverrideInfo",
  9365. "source": {
  9366. "__id__": 207
  9367. },
  9368. "sourceInfo": {
  9369. "__id__": 310
  9370. },
  9371. "propertyPath": [
  9372. "btn_p"
  9373. ],
  9374. "target": {
  9375. "__id__": 207
  9376. },
  9377. "targetInfo": {
  9378. "__id__": 311
  9379. }
  9380. },
  9381. {
  9382. "__type__": "cc.TargetInfo",
  9383. "localID": [
  9384. "c0jCcjGjBGNokGQItd4ax/"
  9385. ]
  9386. },
  9387. {
  9388. "__type__": "cc.TargetInfo",
  9389. "localID": [
  9390. "913Xrlrj9CBI9jyNx7WFBZ"
  9391. ]
  9392. },
  9393. {
  9394. "__type__": "cc.TargetOverrideInfo",
  9395. "source": {
  9396. "__id__": 207
  9397. },
  9398. "sourceInfo": {
  9399. "__id__": 313
  9400. },
  9401. "propertyPath": [
  9402. "btn_n"
  9403. ],
  9404. "target": {
  9405. "__id__": 207
  9406. },
  9407. "targetInfo": {
  9408. "__id__": 314
  9409. }
  9410. },
  9411. {
  9412. "__type__": "cc.TargetInfo",
  9413. "localID": [
  9414. "c0jCcjGjBGNokGQItd4ax/"
  9415. ]
  9416. },
  9417. {
  9418. "__type__": "cc.TargetInfo",
  9419. "localID": [
  9420. "75685S4hROQbTZJVhNjXor"
  9421. ]
  9422. },
  9423. {
  9424. "__type__": "cc.TargetOverrideInfo",
  9425. "source": {
  9426. "__id__": 207
  9427. },
  9428. "sourceInfo": {
  9429. "__id__": 316
  9430. },
  9431. "propertyPath": [
  9432. "btn_first"
  9433. ],
  9434. "target": {
  9435. "__id__": 207
  9436. },
  9437. "targetInfo": {
  9438. "__id__": 317
  9439. }
  9440. },
  9441. {
  9442. "__type__": "cc.TargetInfo",
  9443. "localID": [
  9444. "c0jCcjGjBGNokGQItd4ax/"
  9445. ]
  9446. },
  9447. {
  9448. "__type__": "cc.TargetInfo",
  9449. "localID": [
  9450. "feqiyEqmlH9Zoq/4Tn6wBn"
  9451. ]
  9452. },
  9453. {
  9454. "__type__": "cc.TargetOverrideInfo",
  9455. "source": {
  9456. "__id__": 207
  9457. },
  9458. "sourceInfo": {
  9459. "__id__": 319
  9460. },
  9461. "propertyPath": [
  9462. "btn_last"
  9463. ],
  9464. "target": {
  9465. "__id__": 207
  9466. },
  9467. "targetInfo": {
  9468. "__id__": 320
  9469. }
  9470. },
  9471. {
  9472. "__type__": "cc.TargetInfo",
  9473. "localID": [
  9474. "c0jCcjGjBGNokGQItd4ax/"
  9475. ]
  9476. },
  9477. {
  9478. "__type__": "cc.TargetInfo",
  9479. "localID": [
  9480. "b1Wb0TTN9K5Y+7Mtp3bbFP"
  9481. ]
  9482. },
  9483. {
  9484. "__type__": "cc.TargetOverrideInfo",
  9485. "source": {
  9486. "__id__": 207
  9487. },
  9488. "sourceInfo": {
  9489. "__id__": 322
  9490. },
  9491. "propertyPath": [
  9492. "btn_search"
  9493. ],
  9494. "target": {
  9495. "__id__": 207
  9496. },
  9497. "targetInfo": {
  9498. "__id__": 323
  9499. }
  9500. },
  9501. {
  9502. "__type__": "cc.TargetInfo",
  9503. "localID": [
  9504. "c0jCcjGjBGNokGQItd4ax/"
  9505. ]
  9506. },
  9507. {
  9508. "__type__": "cc.TargetInfo",
  9509. "localID": [
  9510. "97EtUUXwhFwa8qgywCoba9"
  9511. ]
  9512. },
  9513. {
  9514. "__type__": "cc.TargetOverrideInfo",
  9515. "source": {
  9516. "__id__": 207
  9517. },
  9518. "sourceInfo": {
  9519. "__id__": 325
  9520. },
  9521. "propertyPath": [
  9522. "content"
  9523. ],
  9524. "target": {
  9525. "__id__": 207
  9526. },
  9527. "targetInfo": {
  9528. "__id__": 326
  9529. }
  9530. },
  9531. {
  9532. "__type__": "cc.TargetInfo",
  9533. "localID": [
  9534. "c0jCcjGjBGNokGQItd4ax/"
  9535. ]
  9536. },
  9537. {
  9538. "__type__": "cc.TargetInfo",
  9539. "localID": [
  9540. "e98zVhyoBFtIHvlM8dQWHd"
  9541. ]
  9542. },
  9543. {
  9544. "__type__": "cc.TargetOverrideInfo",
  9545. "source": {
  9546. "__id__": 207
  9547. },
  9548. "sourceInfo": {
  9549. "__id__": 328
  9550. },
  9551. "propertyPath": [
  9552. "lab_cur_page"
  9553. ],
  9554. "target": {
  9555. "__id__": 207
  9556. },
  9557. "targetInfo": {
  9558. "__id__": 329
  9559. }
  9560. },
  9561. {
  9562. "__type__": "cc.TargetInfo",
  9563. "localID": [
  9564. "c0jCcjGjBGNokGQItd4ax/"
  9565. ]
  9566. },
  9567. {
  9568. "__type__": "cc.TargetInfo",
  9569. "localID": [
  9570. "d3XH/Mn+5FPqGo909rO5nE"
  9571. ]
  9572. },
  9573. {
  9574. "__type__": "cc.TargetOverrideInfo",
  9575. "source": {
  9576. "__id__": 207
  9577. },
  9578. "sourceInfo": {
  9579. "__id__": 331
  9580. },
  9581. "propertyPath": [
  9582. "page_editbox"
  9583. ],
  9584. "target": {
  9585. "__id__": 207
  9586. },
  9587. "targetInfo": {
  9588. "__id__": 332
  9589. }
  9590. },
  9591. {
  9592. "__type__": "cc.TargetInfo",
  9593. "localID": [
  9594. "c0jCcjGjBGNokGQItd4ax/"
  9595. ]
  9596. },
  9597. {
  9598. "__type__": "cc.TargetInfo",
  9599. "localID": [
  9600. "716PrwwkVGSZl+m/bZZd4H"
  9601. ]
  9602. },
  9603. {
  9604. "__type__": "cc.TargetOverrideInfo",
  9605. "source": {
  9606. "__id__": 207
  9607. },
  9608. "sourceInfo": {
  9609. "__id__": 334
  9610. },
  9611. "propertyPath": [
  9612. "level_editbox"
  9613. ],
  9614. "target": {
  9615. "__id__": 207
  9616. },
  9617. "targetInfo": {
  9618. "__id__": 335
  9619. }
  9620. },
  9621. {
  9622. "__type__": "cc.TargetInfo",
  9623. "localID": [
  9624. "c0jCcjGjBGNokGQItd4ax/"
  9625. ]
  9626. },
  9627. {
  9628. "__type__": "cc.TargetInfo",
  9629. "localID": [
  9630. "6bpIOfVU9PhLr6wI2ktwx+"
  9631. ]
  9632. },
  9633. {
  9634. "__type__": "cc.SceneGlobals",
  9635. "ambient": {
  9636. "__id__": 337
  9637. },
  9638. "shadows": {
  9639. "__id__": 338
  9640. },
  9641. "_skybox": {
  9642. "__id__": 339
  9643. },
  9644. "fog": {
  9645. "__id__": 340
  9646. },
  9647. "octree": {
  9648. "__id__": 341
  9649. },
  9650. "skin": {
  9651. "__id__": 342
  9652. },
  9653. "lightProbeInfo": {
  9654. "__id__": 343
  9655. },
  9656. "bakedWithStationaryMainLight": false,
  9657. "bakedWithHighpLightmap": false
  9658. },
  9659. {
  9660. "__type__": "cc.AmbientInfo",
  9661. "_skyColorHDR": {
  9662. "__type__": "cc.Vec4",
  9663. "x": 0,
  9664. "y": 0,
  9665. "z": 0,
  9666. "w": 0.520833125
  9667. },
  9668. "_skyColor": {
  9669. "__type__": "cc.Vec4",
  9670. "x": 0,
  9671. "y": 0,
  9672. "z": 0,
  9673. "w": 0.520833125
  9674. },
  9675. "_skyIllumHDR": 20000,
  9676. "_skyIllum": 20000,
  9677. "_groundAlbedoHDR": {
  9678. "__type__": "cc.Vec4",
  9679. "x": 0,
  9680. "y": 0,
  9681. "z": 0,
  9682. "w": 0
  9683. },
  9684. "_groundAlbedo": {
  9685. "__type__": "cc.Vec4",
  9686. "x": 0,
  9687. "y": 0,
  9688. "z": 0,
  9689. "w": 0
  9690. },
  9691. "_skyColorLDR": {
  9692. "__type__": "cc.Vec4",
  9693. "x": 0.2,
  9694. "y": 0.5,
  9695. "z": 0.8,
  9696. "w": 1
  9697. },
  9698. "_skyIllumLDR": 20000,
  9699. "_groundAlbedoLDR": {
  9700. "__type__": "cc.Vec4",
  9701. "x": 0.2,
  9702. "y": 0.2,
  9703. "z": 0.2,
  9704. "w": 1
  9705. }
  9706. },
  9707. {
  9708. "__type__": "cc.ShadowsInfo",
  9709. "_enabled": false,
  9710. "_type": 0,
  9711. "_normal": {
  9712. "__type__": "cc.Vec3",
  9713. "x": 0,
  9714. "y": 1,
  9715. "z": 0
  9716. },
  9717. "_distance": 0,
  9718. "_shadowColor": {
  9719. "__type__": "cc.Color",
  9720. "r": 76,
  9721. "g": 76,
  9722. "b": 76,
  9723. "a": 255
  9724. },
  9725. "_maxReceived": 4,
  9726. "_size": {
  9727. "__type__": "cc.Vec2",
  9728. "x": 512,
  9729. "y": 512
  9730. }
  9731. },
  9732. {
  9733. "__type__": "cc.SkyboxInfo",
  9734. "_envLightingType": 0,
  9735. "_envmapHDR": null,
  9736. "_envmap": null,
  9737. "_envmapLDR": null,
  9738. "_diffuseMapHDR": null,
  9739. "_diffuseMapLDR": null,
  9740. "_enabled": false,
  9741. "_useHDR": true,
  9742. "_editableMaterial": null,
  9743. "_reflectionHDR": null,
  9744. "_reflectionLDR": null,
  9745. "_rotationAngle": 0
  9746. },
  9747. {
  9748. "__type__": "cc.FogInfo",
  9749. "_type": 0,
  9750. "_fogColor": {
  9751. "__type__": "cc.Color",
  9752. "r": 200,
  9753. "g": 200,
  9754. "b": 200,
  9755. "a": 255
  9756. },
  9757. "_enabled": false,
  9758. "_fogDensity": 0.3,
  9759. "_fogStart": 0.5,
  9760. "_fogEnd": 300,
  9761. "_fogAtten": 5,
  9762. "_fogTop": 1.5,
  9763. "_fogRange": 1.2,
  9764. "_accurate": false
  9765. },
  9766. {
  9767. "__type__": "cc.OctreeInfo",
  9768. "_enabled": false,
  9769. "_minPos": {
  9770. "__type__": "cc.Vec3",
  9771. "x": -1024,
  9772. "y": -1024,
  9773. "z": -1024
  9774. },
  9775. "_maxPos": {
  9776. "__type__": "cc.Vec3",
  9777. "x": 1024,
  9778. "y": 1024,
  9779. "z": 1024
  9780. },
  9781. "_depth": 8
  9782. },
  9783. {
  9784. "__type__": "cc.SkinInfo",
  9785. "_enabled": true,
  9786. "_blurRadius": 0.01,
  9787. "_sssIntensity": 3
  9788. },
  9789. {
  9790. "__type__": "cc.LightProbeInfo",
  9791. "_giScale": 1,
  9792. "_giSamples": 1024,
  9793. "_bounces": 2,
  9794. "_reduceRinging": 0,
  9795. "_showProbe": true,
  9796. "_showWireframe": true,
  9797. "_showConvex": false,
  9798. "_data": null,
  9799. "_lightProbeSphereVolume": 1
  9800. }
  9801. ]