102.prefab 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "102",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 5
  25. },
  26. {
  27. "__id__": 208
  28. },
  29. {
  30. "__id__": 259
  31. }
  32. ],
  33. "_active": true,
  34. "_components": [],
  35. "_prefab": {
  36. "__id__": 263
  37. },
  38. "_opacity": 255,
  39. "_color": {
  40. "__type__": "cc.Color",
  41. "r": 255,
  42. "g": 255,
  43. "b": 255,
  44. "a": 255
  45. },
  46. "_contentSize": {
  47. "__type__": "cc.Size",
  48. "width": 850,
  49. "height": 600
  50. },
  51. "_anchorPoint": {
  52. "__type__": "cc.Vec2",
  53. "x": 0.5,
  54. "y": 0.5
  55. },
  56. "_trs": {
  57. "__type__": "TypedArray",
  58. "ctor": "Float64Array",
  59. "array": [
  60. 0,
  61. 0,
  62. 0,
  63. 0,
  64. 0,
  65. 0,
  66. 1,
  67. 1,
  68. 1,
  69. 1
  70. ]
  71. },
  72. "_eulerAngles": {
  73. "__type__": "cc.Vec3",
  74. "x": 0,
  75. "y": 0,
  76. "z": 0
  77. },
  78. "_skewX": 0,
  79. "_skewY": 0,
  80. "_is3DNode": false,
  81. "_groupIndex": 0,
  82. "groupIndex": 0,
  83. "_id": ""
  84. },
  85. {
  86. "__type__": "cc.Node",
  87. "_name": "ZhuangBei_img_kuang",
  88. "_objFlags": 0,
  89. "_parent": {
  90. "__id__": 1
  91. },
  92. "_children": [],
  93. "_active": true,
  94. "_components": [
  95. {
  96. "__id__": 3
  97. }
  98. ],
  99. "_prefab": {
  100. "__id__": 4
  101. },
  102. "_opacity": 255,
  103. "_color": {
  104. "__type__": "cc.Color",
  105. "r": 255,
  106. "g": 255,
  107. "b": 255,
  108. "a": 255
  109. },
  110. "_contentSize": {
  111. "__type__": "cc.Size",
  112. "width": 850,
  113. "height": 600
  114. },
  115. "_anchorPoint": {
  116. "__type__": "cc.Vec2",
  117. "x": 0.5,
  118. "y": 0.5
  119. },
  120. "_trs": {
  121. "__type__": "TypedArray",
  122. "ctor": "Float64Array",
  123. "array": [
  124. 0,
  125. 0,
  126. 0,
  127. 0,
  128. 0,
  129. 0,
  130. 1,
  131. 1,
  132. 1,
  133. 1
  134. ]
  135. },
  136. "_eulerAngles": {
  137. "__type__": "cc.Vec3",
  138. "x": 0,
  139. "y": 0,
  140. "z": 0
  141. },
  142. "_skewX": 0,
  143. "_skewY": 0,
  144. "_is3DNode": false,
  145. "_groupIndex": 0,
  146. "groupIndex": 0,
  147. "_id": ""
  148. },
  149. {
  150. "__type__": "cc.Sprite",
  151. "_name": "",
  152. "_objFlags": 0,
  153. "node": {
  154. "__id__": 2
  155. },
  156. "_enabled": true,
  157. "_materials": [
  158. {
  159. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  160. }
  161. ],
  162. "_srcBlendFactor": 770,
  163. "_dstBlendFactor": 771,
  164. "_spriteFrame": {
  165. "__uuid__": "7ae6b329-dade-486e-b1ba-108bc1a0e8f5"
  166. },
  167. "_type": 1,
  168. "_sizeMode": 0,
  169. "_fillType": 0,
  170. "_fillCenter": {
  171. "__type__": "cc.Vec2",
  172. "x": 0,
  173. "y": 0
  174. },
  175. "_fillStart": 0,
  176. "_fillRange": 0,
  177. "_isTrimmedMode": true,
  178. "_atlas": null,
  179. "_id": ""
  180. },
  181. {
  182. "__type__": "cc.PrefabInfo",
  183. "root": {
  184. "__id__": 1
  185. },
  186. "asset": {
  187. "__uuid__": "b7cc1149-b4a1-4aa0-bbeb-12e4d6a911a6"
  188. },
  189. "fileId": "41t12CT9lF1IW4rrwn6yIm",
  190. "sync": false
  191. },
  192. {
  193. "__type__": "cc.Node",
  194. "_name": "New ScrollView",
  195. "_objFlags": 0,
  196. "_parent": {
  197. "__id__": 1
  198. },
  199. "_children": [
  200. {
  201. "__id__": 6
  202. }
  203. ],
  204. "_active": true,
  205. "_components": [
  206. {
  207. "__id__": 206
  208. }
  209. ],
  210. "_prefab": {
  211. "__id__": 207
  212. },
  213. "_opacity": 255,
  214. "_color": {
  215. "__type__": "cc.Color",
  216. "r": 255,
  217. "g": 255,
  218. "b": 255,
  219. "a": 255
  220. },
  221. "_contentSize": {
  222. "__type__": "cc.Size",
  223. "width": 840,
  224. "height": 550
  225. },
  226. "_anchorPoint": {
  227. "__type__": "cc.Vec2",
  228. "x": 0.5,
  229. "y": 0.5
  230. },
  231. "_trs": {
  232. "__type__": "TypedArray",
  233. "ctor": "Float64Array",
  234. "array": [
  235. 0,
  236. 0,
  237. 0,
  238. 0,
  239. 0,
  240. 0,
  241. 1,
  242. 1,
  243. 1,
  244. 1
  245. ]
  246. },
  247. "_eulerAngles": {
  248. "__type__": "cc.Vec3",
  249. "x": 0,
  250. "y": 0,
  251. "z": 0
  252. },
  253. "_skewX": 0,
  254. "_skewY": 0,
  255. "_is3DNode": false,
  256. "_groupIndex": 0,
  257. "groupIndex": 0,
  258. "_id": ""
  259. },
  260. {
  261. "__type__": "cc.Node",
  262. "_name": "view",
  263. "_objFlags": 0,
  264. "_parent": {
  265. "__id__": 5
  266. },
  267. "_children": [
  268. {
  269. "__id__": 7
  270. }
  271. ],
  272. "_active": true,
  273. "_components": [
  274. {
  275. "__id__": 204
  276. }
  277. ],
  278. "_prefab": {
  279. "__id__": 205
  280. },
  281. "_opacity": 255,
  282. "_color": {
  283. "__type__": "cc.Color",
  284. "r": 255,
  285. "g": 255,
  286. "b": 255,
  287. "a": 255
  288. },
  289. "_contentSize": {
  290. "__type__": "cc.Size",
  291. "width": 840,
  292. "height": 550
  293. },
  294. "_anchorPoint": {
  295. "__type__": "cc.Vec2",
  296. "x": 0.5,
  297. "y": 0.5
  298. },
  299. "_trs": {
  300. "__type__": "TypedArray",
  301. "ctor": "Float64Array",
  302. "array": [
  303. 0,
  304. 0,
  305. 0,
  306. 0,
  307. 0,
  308. 0,
  309. 1,
  310. 1,
  311. 1,
  312. 1
  313. ]
  314. },
  315. "_eulerAngles": {
  316. "__type__": "cc.Vec3",
  317. "x": 0,
  318. "y": 0,
  319. "z": 0
  320. },
  321. "_skewX": 0,
  322. "_skewY": 0,
  323. "_is3DNode": false,
  324. "_groupIndex": 0,
  325. "groupIndex": 0,
  326. "_id": ""
  327. },
  328. {
  329. "__type__": "cc.Node",
  330. "_name": "content",
  331. "_objFlags": 0,
  332. "_parent": {
  333. "__id__": 6
  334. },
  335. "_children": [
  336. {
  337. "__id__": 8
  338. }
  339. ],
  340. "_active": true,
  341. "_components": [],
  342. "_prefab": {
  343. "__id__": 203
  344. },
  345. "_opacity": 255,
  346. "_color": {
  347. "__type__": "cc.Color",
  348. "r": 255,
  349. "g": 255,
  350. "b": 255,
  351. "a": 255
  352. },
  353. "_contentSize": {
  354. "__type__": "cc.Size",
  355. "width": 840,
  356. "height": 550
  357. },
  358. "_anchorPoint": {
  359. "__type__": "cc.Vec2",
  360. "x": 0.5,
  361. "y": 0.98
  362. },
  363. "_trs": {
  364. "__type__": "TypedArray",
  365. "ctor": "Float64Array",
  366. "array": [
  367. 0,
  368. 264.204,
  369. 0,
  370. 0,
  371. 0,
  372. 0,
  373. 1,
  374. 1,
  375. 1,
  376. 1
  377. ]
  378. },
  379. "_eulerAngles": {
  380. "__type__": "cc.Vec3",
  381. "x": 0,
  382. "y": 0,
  383. "z": 0
  384. },
  385. "_skewX": 0,
  386. "_skewY": 0,
  387. "_is3DNode": false,
  388. "_groupIndex": 0,
  389. "groupIndex": 0,
  390. "_id": ""
  391. },
  392. {
  393. "__type__": "cc.Node",
  394. "_name": "New Node",
  395. "_objFlags": 0,
  396. "_parent": {
  397. "__id__": 7
  398. },
  399. "_children": [
  400. {
  401. "__id__": 9
  402. },
  403. {
  404. "__id__": 73
  405. },
  406. {
  407. "__id__": 137
  408. }
  409. ],
  410. "_active": true,
  411. "_components": [
  412. {
  413. "__id__": 201
  414. }
  415. ],
  416. "_prefab": {
  417. "__id__": 202
  418. },
  419. "_opacity": 255,
  420. "_color": {
  421. "__type__": "cc.Color",
  422. "r": 255,
  423. "g": 255,
  424. "b": 255,
  425. "a": 255
  426. },
  427. "_contentSize": {
  428. "__type__": "cc.Size",
  429. "width": 840,
  430. "height": 420
  431. },
  432. "_anchorPoint": {
  433. "__type__": "cc.Vec2",
  434. "x": 0.5,
  435. "y": 0.5
  436. },
  437. "_trs": {
  438. "__type__": "TypedArray",
  439. "ctor": "Float64Array",
  440. "array": [
  441. 0,
  442. -205.029,
  443. 0,
  444. 0,
  445. 0,
  446. 0,
  447. 1,
  448. 1,
  449. 1,
  450. 1
  451. ]
  452. },
  453. "_eulerAngles": {
  454. "__type__": "cc.Vec3",
  455. "x": 0,
  456. "y": 0,
  457. "z": 0
  458. },
  459. "_skewX": 0,
  460. "_skewY": 0,
  461. "_is3DNode": false,
  462. "_groupIndex": 0,
  463. "groupIndex": 0,
  464. "_id": ""
  465. },
  466. {
  467. "__type__": "cc.Node",
  468. "_name": "New Sprite",
  469. "_objFlags": 0,
  470. "_parent": {
  471. "__id__": 8
  472. },
  473. "_children": [
  474. {
  475. "__id__": 10
  476. },
  477. {
  478. "__id__": 14
  479. },
  480. {
  481. "__id__": 18
  482. },
  483. {
  484. "__id__": 21
  485. },
  486. {
  487. "__id__": 24
  488. },
  489. {
  490. "__id__": 28
  491. },
  492. {
  493. "__id__": 35
  494. },
  495. {
  496. "__id__": 39
  497. },
  498. {
  499. "__id__": 67
  500. }
  501. ],
  502. "_active": true,
  503. "_components": [
  504. {
  505. "__id__": 71
  506. }
  507. ],
  508. "_prefab": {
  509. "__id__": 72
  510. },
  511. "_opacity": 255,
  512. "_color": {
  513. "__type__": "cc.Color",
  514. "r": 255,
  515. "g": 255,
  516. "b": 255,
  517. "a": 255
  518. },
  519. "_contentSize": {
  520. "__type__": "cc.Size",
  521. "width": 260,
  522. "height": 450
  523. },
  524. "_anchorPoint": {
  525. "__type__": "cc.Vec2",
  526. "x": 0.5,
  527. "y": 0.5
  528. },
  529. "_trs": {
  530. "__type__": "TypedArray",
  531. "ctor": "Float64Array",
  532. "array": [
  533. -270,
  534. -15,
  535. 0,
  536. 0,
  537. 0,
  538. 0,
  539. 1,
  540. 1,
  541. 1,
  542. 1
  543. ]
  544. },
  545. "_eulerAngles": {
  546. "__type__": "cc.Vec3",
  547. "x": 0,
  548. "y": 0,
  549. "z": 0
  550. },
  551. "_skewX": 0,
  552. "_skewY": 0,
  553. "_is3DNode": false,
  554. "_groupIndex": 0,
  555. "groupIndex": 0,
  556. "_id": ""
  557. },
  558. {
  559. "__type__": "cc.Node",
  560. "_name": "New Label",
  561. "_objFlags": 0,
  562. "_parent": {
  563. "__id__": 9
  564. },
  565. "_children": [],
  566. "_active": true,
  567. "_components": [
  568. {
  569. "__id__": 11
  570. },
  571. {
  572. "__id__": 12
  573. }
  574. ],
  575. "_prefab": {
  576. "__id__": 13
  577. },
  578. "_opacity": 255,
  579. "_color": {
  580. "__type__": "cc.Color",
  581. "r": 75,
  582. "g": 43,
  583. "b": 0,
  584. "a": 255
  585. },
  586. "_contentSize": {
  587. "__type__": "cc.Size",
  588. "width": 175,
  589. "height": 37.8
  590. },
  591. "_anchorPoint": {
  592. "__type__": "cc.Vec2",
  593. "x": 0.5,
  594. "y": 0.5
  595. },
  596. "_trs": {
  597. "__type__": "TypedArray",
  598. "ctor": "Float64Array",
  599. "array": [
  600. 0,
  601. 197.001,
  602. 0,
  603. 0,
  604. 0,
  605. 0,
  606. 1,
  607. 1,
  608. 1,
  609. 1
  610. ]
  611. },
  612. "_eulerAngles": {
  613. "__type__": "cc.Vec3",
  614. "x": 0,
  615. "y": 0,
  616. "z": 0
  617. },
  618. "_skewX": 0,
  619. "_skewY": 0,
  620. "_is3DNode": false,
  621. "_groupIndex": 0,
  622. "groupIndex": 0,
  623. "_id": ""
  624. },
  625. {
  626. "__type__": "cc.Label",
  627. "_name": "",
  628. "_objFlags": 0,
  629. "node": {
  630. "__id__": 10
  631. },
  632. "_enabled": true,
  633. "_materials": [
  634. {
  635. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  636. }
  637. ],
  638. "_srcBlendFactor": 770,
  639. "_dstBlendFactor": 771,
  640. "_string": "英灵殿特别礼包",
  641. "_N$string": "英灵殿特别礼包",
  642. "_fontSize": 25,
  643. "_lineHeight": 30,
  644. "_enableWrapText": true,
  645. "_N$file": {
  646. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  647. },
  648. "_isSystemFontUsed": false,
  649. "_spacingX": 0,
  650. "_batchAsBitmap": false,
  651. "_styleFlags": 0,
  652. "_underlineHeight": 0,
  653. "_N$horizontalAlign": 1,
  654. "_N$verticalAlign": 1,
  655. "_N$fontFamily": "Arial",
  656. "_N$overflow": 0,
  657. "_N$cacheMode": 0,
  658. "_id": ""
  659. },
  660. {
  661. "__type__": "cc.LabelOutline",
  662. "_name": "",
  663. "_objFlags": 0,
  664. "node": {
  665. "__id__": 10
  666. },
  667. "_enabled": false,
  668. "_color": {
  669. "__type__": "cc.Color",
  670. "r": 8,
  671. "g": 5,
  672. "b": 5,
  673. "a": 255
  674. },
  675. "_width": 2,
  676. "_id": ""
  677. },
  678. {
  679. "__type__": "cc.PrefabInfo",
  680. "root": {
  681. "__id__": 5
  682. },
  683. "asset": null,
  684. "fileId": "15+PckfGxF7q+FSDzd4vmB",
  685. "sync": false
  686. },
  687. {
  688. "__type__": "cc.Node",
  689. "_name": "New Label",
  690. "_objFlags": 0,
  691. "_parent": {
  692. "__id__": 9
  693. },
  694. "_children": [],
  695. "_active": true,
  696. "_components": [
  697. {
  698. "__id__": 15
  699. },
  700. {
  701. "__id__": 16
  702. }
  703. ],
  704. "_prefab": {
  705. "__id__": 17
  706. },
  707. "_opacity": 255,
  708. "_color": {
  709. "__type__": "cc.Color",
  710. "r": 75,
  711. "g": 43,
  712. "b": 0,
  713. "a": 255
  714. },
  715. "_contentSize": {
  716. "__type__": "cc.Size",
  717. "width": 100,
  718. "height": 37.8
  719. },
  720. "_anchorPoint": {
  721. "__type__": "cc.Vec2",
  722. "x": 0.5,
  723. "y": 0.5
  724. },
  725. "_trs": {
  726. "__type__": "TypedArray",
  727. "ctor": "Float64Array",
  728. "array": [
  729. 0,
  730. 158.996,
  731. 0,
  732. 0,
  733. 0,
  734. 0,
  735. 1,
  736. 1,
  737. 1,
  738. 1
  739. ]
  740. },
  741. "_eulerAngles": {
  742. "__type__": "cc.Vec3",
  743. "x": 0,
  744. "y": 0,
  745. "z": 0
  746. },
  747. "_skewX": 0,
  748. "_skewY": 0,
  749. "_is3DNode": false,
  750. "_groupIndex": 0,
  751. "groupIndex": 0,
  752. "_id": ""
  753. },
  754. {
  755. "__type__": "cc.Label",
  756. "_name": "",
  757. "_objFlags": 0,
  758. "node": {
  759. "__id__": 14
  760. },
  761. "_enabled": true,
  762. "_materials": [
  763. {
  764. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  765. }
  766. ],
  767. "_srcBlendFactor": 770,
  768. "_dstBlendFactor": 771,
  769. "_string": "6天2小时",
  770. "_N$string": "6天2小时",
  771. "_fontSize": 25,
  772. "_lineHeight": 30,
  773. "_enableWrapText": true,
  774. "_N$file": {
  775. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  776. },
  777. "_isSystemFontUsed": false,
  778. "_spacingX": 0,
  779. "_batchAsBitmap": false,
  780. "_styleFlags": 0,
  781. "_underlineHeight": 0,
  782. "_N$horizontalAlign": 1,
  783. "_N$verticalAlign": 1,
  784. "_N$fontFamily": "Arial",
  785. "_N$overflow": 0,
  786. "_N$cacheMode": 0,
  787. "_id": ""
  788. },
  789. {
  790. "__type__": "cc.LabelOutline",
  791. "_name": "",
  792. "_objFlags": 0,
  793. "node": {
  794. "__id__": 14
  795. },
  796. "_enabled": false,
  797. "_color": {
  798. "__type__": "cc.Color",
  799. "r": 8,
  800. "g": 5,
  801. "b": 5,
  802. "a": 255
  803. },
  804. "_width": 2,
  805. "_id": ""
  806. },
  807. {
  808. "__type__": "cc.PrefabInfo",
  809. "root": {
  810. "__id__": 5
  811. },
  812. "asset": null,
  813. "fileId": "6bD8Bq/ixEHbWaZxtu7VkU",
  814. "sync": false
  815. },
  816. {
  817. "__type__": "cc.Node",
  818. "_name": "New Sprite",
  819. "_objFlags": 0,
  820. "_parent": {
  821. "__id__": 9
  822. },
  823. "_children": [],
  824. "_active": true,
  825. "_components": [
  826. {
  827. "__id__": 19
  828. }
  829. ],
  830. "_prefab": {
  831. "__id__": 20
  832. },
  833. "_opacity": 255,
  834. "_color": {
  835. "__type__": "cc.Color",
  836. "r": 255,
  837. "g": 255,
  838. "b": 255,
  839. "a": 255
  840. },
  841. "_contentSize": {
  842. "__type__": "cc.Size",
  843. "width": 200,
  844. "height": 50
  845. },
  846. "_anchorPoint": {
  847. "__type__": "cc.Vec2",
  848. "x": 0.5,
  849. "y": 0.5
  850. },
  851. "_trs": {
  852. "__type__": "TypedArray",
  853. "ctor": "Float64Array",
  854. "array": [
  855. 0,
  856. 101.706,
  857. 0,
  858. 0,
  859. 0,
  860. 0,
  861. 1,
  862. 1,
  863. 1,
  864. 1
  865. ]
  866. },
  867. "_eulerAngles": {
  868. "__type__": "cc.Vec3",
  869. "x": 0,
  870. "y": 0,
  871. "z": 0
  872. },
  873. "_skewX": 0,
  874. "_skewY": 0,
  875. "_is3DNode": false,
  876. "_groupIndex": 0,
  877. "groupIndex": 0,
  878. "_id": ""
  879. },
  880. {
  881. "__type__": "cc.Sprite",
  882. "_name": "",
  883. "_objFlags": 0,
  884. "node": {
  885. "__id__": 18
  886. },
  887. "_enabled": true,
  888. "_materials": [
  889. {
  890. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  891. }
  892. ],
  893. "_srcBlendFactor": 770,
  894. "_dstBlendFactor": 771,
  895. "_spriteFrame": {
  896. "__uuid__": "5822059a-8a96-4510-b4de-7adf1113f361"
  897. },
  898. "_type": 1,
  899. "_sizeMode": 0,
  900. "_fillType": 0,
  901. "_fillCenter": {
  902. "__type__": "cc.Vec2",
  903. "x": 0,
  904. "y": 0
  905. },
  906. "_fillStart": 0,
  907. "_fillRange": 0,
  908. "_isTrimmedMode": true,
  909. "_atlas": null,
  910. "_id": ""
  911. },
  912. {
  913. "__type__": "cc.PrefabInfo",
  914. "root": {
  915. "__id__": 5
  916. },
  917. "asset": null,
  918. "fileId": "bcZdiA/ntCO6qV5k2OiGn8",
  919. "sync": false
  920. },
  921. {
  922. "__type__": "cc.Node",
  923. "_name": "New Sprite",
  924. "_objFlags": 0,
  925. "_parent": {
  926. "__id__": 9
  927. },
  928. "_children": [],
  929. "_active": true,
  930. "_components": [
  931. {
  932. "__id__": 22
  933. }
  934. ],
  935. "_prefab": {
  936. "__id__": 23
  937. },
  938. "_opacity": 255,
  939. "_color": {
  940. "__type__": "cc.Color",
  941. "r": 255,
  942. "g": 255,
  943. "b": 255,
  944. "a": 255
  945. },
  946. "_contentSize": {
  947. "__type__": "cc.Size",
  948. "width": 34,
  949. "height": 36
  950. },
  951. "_anchorPoint": {
  952. "__type__": "cc.Vec2",
  953. "x": 0.5,
  954. "y": 0.5
  955. },
  956. "_trs": {
  957. "__type__": "TypedArray",
  958. "ctor": "Float64Array",
  959. "array": [
  960. 46.524,
  961. 100.482,
  962. 0,
  963. 0,
  964. 0,
  965. 0,
  966. 1,
  967. 1,
  968. 1,
  969. 2
  970. ]
  971. },
  972. "_eulerAngles": {
  973. "__type__": "cc.Vec3",
  974. "x": 0,
  975. "y": 0,
  976. "z": 0
  977. },
  978. "_skewX": 0,
  979. "_skewY": 0,
  980. "_is3DNode": false,
  981. "_groupIndex": 0,
  982. "groupIndex": 0,
  983. "_id": ""
  984. },
  985. {
  986. "__type__": "cc.Sprite",
  987. "_name": "",
  988. "_objFlags": 0,
  989. "node": {
  990. "__id__": 21
  991. },
  992. "_enabled": true,
  993. "_materials": [
  994. {
  995. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  996. }
  997. ],
  998. "_srcBlendFactor": 770,
  999. "_dstBlendFactor": 771,
  1000. "_spriteFrame": {
  1001. "__uuid__": "dae832c8-f9be-4e46-b4ed-887ad820e9e4"
  1002. },
  1003. "_type": 0,
  1004. "_sizeMode": 1,
  1005. "_fillType": 0,
  1006. "_fillCenter": {
  1007. "__type__": "cc.Vec2",
  1008. "x": 0,
  1009. "y": 0
  1010. },
  1011. "_fillStart": 0,
  1012. "_fillRange": 0,
  1013. "_isTrimmedMode": true,
  1014. "_atlas": null,
  1015. "_id": ""
  1016. },
  1017. {
  1018. "__type__": "cc.PrefabInfo",
  1019. "root": {
  1020. "__id__": 5
  1021. },
  1022. "asset": null,
  1023. "fileId": "e7IMVBUuJHUZcXa1o+JZ/E",
  1024. "sync": false
  1025. },
  1026. {
  1027. "__type__": "cc.Node",
  1028. "_name": "New Label",
  1029. "_objFlags": 0,
  1030. "_parent": {
  1031. "__id__": 9
  1032. },
  1033. "_children": [],
  1034. "_active": true,
  1035. "_components": [
  1036. {
  1037. "__id__": 25
  1038. },
  1039. {
  1040. "__id__": 26
  1041. }
  1042. ],
  1043. "_prefab": {
  1044. "__id__": 27
  1045. },
  1046. "_opacity": 255,
  1047. "_color": {
  1048. "__type__": "cc.Color",
  1049. "r": 61,
  1050. "g": 255,
  1051. "b": 0,
  1052. "a": 255
  1053. },
  1054. "_contentSize": {
  1055. "__type__": "cc.Size",
  1056. "width": 56.5,
  1057. "height": 41.8
  1058. },
  1059. "_anchorPoint": {
  1060. "__type__": "cc.Vec2",
  1061. "x": 0.5,
  1062. "y": 0.5
  1063. },
  1064. "_trs": {
  1065. "__type__": "TypedArray",
  1066. "ctor": "Float64Array",
  1067. "array": [
  1068. -17.14,
  1069. 100.707,
  1070. 0,
  1071. 0,
  1072. 0,
  1073. 0,
  1074. 1,
  1075. 1,
  1076. 1,
  1077. 1
  1078. ]
  1079. },
  1080. "_eulerAngles": {
  1081. "__type__": "cc.Vec3",
  1082. "x": 0,
  1083. "y": 0,
  1084. "z": 0
  1085. },
  1086. "_skewX": 0,
  1087. "_skewY": 0,
  1088. "_is3DNode": false,
  1089. "_groupIndex": 0,
  1090. "groupIndex": 0,
  1091. "_id": ""
  1092. },
  1093. {
  1094. "__type__": "cc.Label",
  1095. "_name": "",
  1096. "_objFlags": 0,
  1097. "node": {
  1098. "__id__": 24
  1099. },
  1100. "_enabled": true,
  1101. "_materials": [
  1102. {
  1103. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1104. }
  1105. ],
  1106. "_srcBlendFactor": 770,
  1107. "_dstBlendFactor": 771,
  1108. "_string": "680",
  1109. "_N$string": "680",
  1110. "_fontSize": 35,
  1111. "_lineHeight": 30,
  1112. "_enableWrapText": true,
  1113. "_N$file": {
  1114. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  1115. },
  1116. "_isSystemFontUsed": false,
  1117. "_spacingX": 0,
  1118. "_batchAsBitmap": false,
  1119. "_styleFlags": 0,
  1120. "_underlineHeight": 0,
  1121. "_N$horizontalAlign": 1,
  1122. "_N$verticalAlign": 1,
  1123. "_N$fontFamily": "Arial",
  1124. "_N$overflow": 0,
  1125. "_N$cacheMode": 0,
  1126. "_id": ""
  1127. },
  1128. {
  1129. "__type__": "cc.LabelOutline",
  1130. "_name": "",
  1131. "_objFlags": 0,
  1132. "node": {
  1133. "__id__": 24
  1134. },
  1135. "_enabled": true,
  1136. "_color": {
  1137. "__type__": "cc.Color",
  1138. "r": 8,
  1139. "g": 5,
  1140. "b": 5,
  1141. "a": 255
  1142. },
  1143. "_width": 2,
  1144. "_id": ""
  1145. },
  1146. {
  1147. "__type__": "cc.PrefabInfo",
  1148. "root": {
  1149. "__id__": 5
  1150. },
  1151. "asset": null,
  1152. "fileId": "f2ZE3zBuJCQKLSgcrIhJ8I",
  1153. "sync": false
  1154. },
  1155. {
  1156. "__type__": "cc.Node",
  1157. "_name": "New Sprite",
  1158. "_objFlags": 0,
  1159. "_parent": {
  1160. "__id__": 9
  1161. },
  1162. "_children": [
  1163. {
  1164. "__id__": 29
  1165. }
  1166. ],
  1167. "_active": true,
  1168. "_components": [
  1169. {
  1170. "__id__": 33
  1171. }
  1172. ],
  1173. "_prefab": {
  1174. "__id__": 34
  1175. },
  1176. "_opacity": 255,
  1177. "_color": {
  1178. "__type__": "cc.Color",
  1179. "r": 255,
  1180. "g": 239,
  1181. "b": 122,
  1182. "a": 255
  1183. },
  1184. "_contentSize": {
  1185. "__type__": "cc.Size",
  1186. "width": 200,
  1187. "height": 52
  1188. },
  1189. "_anchorPoint": {
  1190. "__type__": "cc.Vec2",
  1191. "x": 0.5,
  1192. "y": 0.5
  1193. },
  1194. "_trs": {
  1195. "__type__": "TypedArray",
  1196. "ctor": "Float64Array",
  1197. "array": [
  1198. 0,
  1199. -185.874,
  1200. 0,
  1201. 0,
  1202. 0,
  1203. 0,
  1204. 1,
  1205. 1,
  1206. 1,
  1207. 1
  1208. ]
  1209. },
  1210. "_eulerAngles": {
  1211. "__type__": "cc.Vec3",
  1212. "x": 0,
  1213. "y": 0,
  1214. "z": 0
  1215. },
  1216. "_skewX": 0,
  1217. "_skewY": 0,
  1218. "_is3DNode": false,
  1219. "_groupIndex": 0,
  1220. "groupIndex": 0,
  1221. "_id": ""
  1222. },
  1223. {
  1224. "__type__": "cc.Node",
  1225. "_name": "New Label",
  1226. "_objFlags": 0,
  1227. "_parent": {
  1228. "__id__": 28
  1229. },
  1230. "_children": [],
  1231. "_active": true,
  1232. "_components": [
  1233. {
  1234. "__id__": 30
  1235. },
  1236. {
  1237. "__id__": 31
  1238. }
  1239. ],
  1240. "_prefab": {
  1241. "__id__": 32
  1242. },
  1243. "_opacity": 255,
  1244. "_color": {
  1245. "__type__": "cc.Color",
  1246. "r": 255,
  1247. "g": 255,
  1248. "b": 255,
  1249. "a": 255
  1250. },
  1251. "_contentSize": {
  1252. "__type__": "cc.Size",
  1253. "width": 54,
  1254. "height": 41.8
  1255. },
  1256. "_anchorPoint": {
  1257. "__type__": "cc.Vec2",
  1258. "x": 0.5,
  1259. "y": 0.5
  1260. },
  1261. "_trs": {
  1262. "__type__": "TypedArray",
  1263. "ctor": "Float64Array",
  1264. "array": [
  1265. 0,
  1266. -0.284,
  1267. 0,
  1268. 0,
  1269. 0,
  1270. 0,
  1271. 1,
  1272. 1,
  1273. 1,
  1274. 1
  1275. ]
  1276. },
  1277. "_eulerAngles": {
  1278. "__type__": "cc.Vec3",
  1279. "x": 0,
  1280. "y": 0,
  1281. "z": 0
  1282. },
  1283. "_skewX": 0,
  1284. "_skewY": 0,
  1285. "_is3DNode": false,
  1286. "_groupIndex": 0,
  1287. "groupIndex": 0,
  1288. "_id": ""
  1289. },
  1290. {
  1291. "__type__": "cc.Label",
  1292. "_name": "",
  1293. "_objFlags": 0,
  1294. "node": {
  1295. "__id__": 29
  1296. },
  1297. "_enabled": true,
  1298. "_materials": [
  1299. {
  1300. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1301. }
  1302. ],
  1303. "_srcBlendFactor": 770,
  1304. "_dstBlendFactor": 771,
  1305. "_string": "68元",
  1306. "_N$string": "68元",
  1307. "_fontSize": 25,
  1308. "_lineHeight": 30,
  1309. "_enableWrapText": true,
  1310. "_N$file": {
  1311. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  1312. },
  1313. "_isSystemFontUsed": false,
  1314. "_spacingX": 0,
  1315. "_batchAsBitmap": false,
  1316. "_styleFlags": 0,
  1317. "_underlineHeight": 0,
  1318. "_N$horizontalAlign": 1,
  1319. "_N$verticalAlign": 1,
  1320. "_N$fontFamily": "Arial",
  1321. "_N$overflow": 0,
  1322. "_N$cacheMode": 0,
  1323. "_id": ""
  1324. },
  1325. {
  1326. "__type__": "cc.LabelOutline",
  1327. "_name": "",
  1328. "_objFlags": 0,
  1329. "node": {
  1330. "__id__": 29
  1331. },
  1332. "_enabled": true,
  1333. "_color": {
  1334. "__type__": "cc.Color",
  1335. "r": 8,
  1336. "g": 5,
  1337. "b": 5,
  1338. "a": 255
  1339. },
  1340. "_width": 2,
  1341. "_id": ""
  1342. },
  1343. {
  1344. "__type__": "cc.PrefabInfo",
  1345. "root": {
  1346. "__id__": 5
  1347. },
  1348. "asset": null,
  1349. "fileId": "bf3viAFr5EQp+3FC212RhZ",
  1350. "sync": false
  1351. },
  1352. {
  1353. "__type__": "cc.Sprite",
  1354. "_name": "",
  1355. "_objFlags": 0,
  1356. "node": {
  1357. "__id__": 28
  1358. },
  1359. "_enabled": true,
  1360. "_materials": [
  1361. {
  1362. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1363. }
  1364. ],
  1365. "_srcBlendFactor": 770,
  1366. "_dstBlendFactor": 771,
  1367. "_spriteFrame": {
  1368. "__uuid__": "5822059a-8a96-4510-b4de-7adf1113f361"
  1369. },
  1370. "_type": 1,
  1371. "_sizeMode": 0,
  1372. "_fillType": 0,
  1373. "_fillCenter": {
  1374. "__type__": "cc.Vec2",
  1375. "x": 0,
  1376. "y": 0
  1377. },
  1378. "_fillStart": 0,
  1379. "_fillRange": 0,
  1380. "_isTrimmedMode": true,
  1381. "_atlas": null,
  1382. "_id": ""
  1383. },
  1384. {
  1385. "__type__": "cc.PrefabInfo",
  1386. "root": {
  1387. "__id__": 5
  1388. },
  1389. "asset": null,
  1390. "fileId": "37xDjhUyZGPZ/+nde1yYLJ",
  1391. "sync": false
  1392. },
  1393. {
  1394. "__type__": "cc.Node",
  1395. "_name": "New Label",
  1396. "_objFlags": 0,
  1397. "_parent": {
  1398. "__id__": 9
  1399. },
  1400. "_children": [],
  1401. "_active": true,
  1402. "_components": [
  1403. {
  1404. "__id__": 36
  1405. },
  1406. {
  1407. "__id__": 37
  1408. }
  1409. ],
  1410. "_prefab": {
  1411. "__id__": 38
  1412. },
  1413. "_opacity": 255,
  1414. "_color": {
  1415. "__type__": "cc.Color",
  1416. "r": 75,
  1417. "g": 43,
  1418. "b": 0,
  1419. "a": 255
  1420. },
  1421. "_contentSize": {
  1422. "__type__": "cc.Size",
  1423. "width": 132.5,
  1424. "height": 37.8
  1425. },
  1426. "_anchorPoint": {
  1427. "__type__": "cc.Vec2",
  1428. "x": 0.5,
  1429. "y": 0.5
  1430. },
  1431. "_trs": {
  1432. "__type__": "TypedArray",
  1433. "ctor": "Float64Array",
  1434. "array": [
  1435. 0,
  1436. -68.557,
  1437. 0,
  1438. 0,
  1439. 0,
  1440. 0,
  1441. 1,
  1442. 1,
  1443. 1,
  1444. 1
  1445. ]
  1446. },
  1447. "_eulerAngles": {
  1448. "__type__": "cc.Vec3",
  1449. "x": 0,
  1450. "y": 0,
  1451. "z": 0
  1452. },
  1453. "_skewX": 0,
  1454. "_skewY": 0,
  1455. "_is3DNode": false,
  1456. "_groupIndex": 0,
  1457. "groupIndex": 0,
  1458. "_id": ""
  1459. },
  1460. {
  1461. "__type__": "cc.Label",
  1462. "_name": "",
  1463. "_objFlags": 0,
  1464. "node": {
  1465. "__id__": 35
  1466. },
  1467. "_enabled": true,
  1468. "_materials": [
  1469. {
  1470. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1471. }
  1472. ],
  1473. "_srcBlendFactor": 770,
  1474. "_dstBlendFactor": 771,
  1475. "_string": "任选道具1件",
  1476. "_N$string": "任选道具1件",
  1477. "_fontSize": 25,
  1478. "_lineHeight": 30,
  1479. "_enableWrapText": true,
  1480. "_N$file": {
  1481. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  1482. },
  1483. "_isSystemFontUsed": false,
  1484. "_spacingX": 0,
  1485. "_batchAsBitmap": false,
  1486. "_styleFlags": 0,
  1487. "_underlineHeight": 0,
  1488. "_N$horizontalAlign": 1,
  1489. "_N$verticalAlign": 1,
  1490. "_N$fontFamily": "Arial",
  1491. "_N$overflow": 0,
  1492. "_N$cacheMode": 0,
  1493. "_id": ""
  1494. },
  1495. {
  1496. "__type__": "cc.LabelOutline",
  1497. "_name": "",
  1498. "_objFlags": 0,
  1499. "node": {
  1500. "__id__": 35
  1501. },
  1502. "_enabled": false,
  1503. "_color": {
  1504. "__type__": "cc.Color",
  1505. "r": 8,
  1506. "g": 5,
  1507. "b": 5,
  1508. "a": 255
  1509. },
  1510. "_width": 2,
  1511. "_id": ""
  1512. },
  1513. {
  1514. "__type__": "cc.PrefabInfo",
  1515. "root": {
  1516. "__id__": 5
  1517. },
  1518. "asset": null,
  1519. "fileId": "29aJfuoKRHb4ymQ2++nzft",
  1520. "sync": false
  1521. },
  1522. {
  1523. "__type__": "cc.Node",
  1524. "_name": "good_item",
  1525. "_objFlags": 0,
  1526. "_parent": {
  1527. "__id__": 9
  1528. },
  1529. "_children": [
  1530. {
  1531. "__id__": 40
  1532. },
  1533. {
  1534. "__id__": 43
  1535. },
  1536. {
  1537. "__id__": 60
  1538. }
  1539. ],
  1540. "_active": true,
  1541. "_components": [
  1542. {
  1543. "__id__": 63
  1544. },
  1545. {
  1546. "__id__": 65
  1547. }
  1548. ],
  1549. "_prefab": {
  1550. "__id__": 66
  1551. },
  1552. "_opacity": 255,
  1553. "_color": {
  1554. "__type__": "cc.Color",
  1555. "r": 252,
  1556. "g": 252,
  1557. "b": 252,
  1558. "a": 255
  1559. },
  1560. "_contentSize": {
  1561. "__type__": "cc.Size",
  1562. "width": 86,
  1563. "height": 86
  1564. },
  1565. "_anchorPoint": {
  1566. "__type__": "cc.Vec2",
  1567. "x": 0.5,
  1568. "y": 0.5
  1569. },
  1570. "_trs": {
  1571. "__type__": "TypedArray",
  1572. "ctor": "Float64Array",
  1573. "array": [
  1574. 0,
  1575. 2.4840000000000018,
  1576. 0,
  1577. 0,
  1578. 0,
  1579. 0,
  1580. 1,
  1581. 1,
  1582. 1,
  1583. 0
  1584. ]
  1585. },
  1586. "_eulerAngles": {
  1587. "__type__": "cc.Vec3",
  1588. "x": 0,
  1589. "y": 0,
  1590. "z": 0
  1591. },
  1592. "_skewX": 0,
  1593. "_skewY": 0,
  1594. "_is3DNode": false,
  1595. "_groupIndex": 0,
  1596. "groupIndex": 0,
  1597. "_id": ""
  1598. },
  1599. {
  1600. "__type__": "cc.Node",
  1601. "_name": "4",
  1602. "_objFlags": 0,
  1603. "_parent": {
  1604. "__id__": 39
  1605. },
  1606. "_children": [],
  1607. "_active": true,
  1608. "_components": [
  1609. {
  1610. "__id__": 41
  1611. }
  1612. ],
  1613. "_prefab": {
  1614. "__id__": 42
  1615. },
  1616. "_opacity": 255,
  1617. "_color": {
  1618. "__type__": "cc.Color",
  1619. "r": 255,
  1620. "g": 255,
  1621. "b": 255,
  1622. "a": 255
  1623. },
  1624. "_contentSize": {
  1625. "__type__": "cc.Size",
  1626. "width": 86,
  1627. "height": 86
  1628. },
  1629. "_anchorPoint": {
  1630. "__type__": "cc.Vec2",
  1631. "x": 0.5,
  1632. "y": 0.5
  1633. },
  1634. "_trs": {
  1635. "__type__": "TypedArray",
  1636. "ctor": "Float64Array",
  1637. "array": [
  1638. 0,
  1639. 0,
  1640. 0,
  1641. 0,
  1642. 0,
  1643. 0,
  1644. 1,
  1645. 1,
  1646. 1,
  1647. 1
  1648. ]
  1649. },
  1650. "_eulerAngles": {
  1651. "__type__": "cc.Vec3",
  1652. "x": 0,
  1653. "y": 0,
  1654. "z": 0
  1655. },
  1656. "_skewX": 0,
  1657. "_skewY": 0,
  1658. "_is3DNode": false,
  1659. "_groupIndex": 0,
  1660. "groupIndex": 0,
  1661. "_id": ""
  1662. },
  1663. {
  1664. "__type__": "cc.Sprite",
  1665. "_name": "",
  1666. "_objFlags": 0,
  1667. "node": {
  1668. "__id__": 40
  1669. },
  1670. "_enabled": true,
  1671. "_materials": [
  1672. {
  1673. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1674. }
  1675. ],
  1676. "_srcBlendFactor": 770,
  1677. "_dstBlendFactor": 771,
  1678. "_spriteFrame": {
  1679. "__uuid__": "78562430-f154-4a16-914a-8c84c69f9cce"
  1680. },
  1681. "_type": 0,
  1682. "_sizeMode": 1,
  1683. "_fillType": 0,
  1684. "_fillCenter": {
  1685. "__type__": "cc.Vec2",
  1686. "x": 0,
  1687. "y": 0
  1688. },
  1689. "_fillStart": 0,
  1690. "_fillRange": 0,
  1691. "_isTrimmedMode": true,
  1692. "_atlas": null,
  1693. "_id": ""
  1694. },
  1695. {
  1696. "__type__": "cc.PrefabInfo",
  1697. "root": {
  1698. "__id__": 39
  1699. },
  1700. "asset": {
  1701. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  1702. },
  1703. "fileId": "64Iw8HLn1Dnbr6M1yZIERi",
  1704. "sync": false
  1705. },
  1706. {
  1707. "__type__": "cc.Node",
  1708. "_name": "New Node",
  1709. "_objFlags": 0,
  1710. "_parent": {
  1711. "__id__": 39
  1712. },
  1713. "_children": [
  1714. {
  1715. "__id__": 44
  1716. },
  1717. {
  1718. "__id__": 47
  1719. },
  1720. {
  1721. "__id__": 53
  1722. },
  1723. {
  1724. "__id__": 56
  1725. }
  1726. ],
  1727. "_active": true,
  1728. "_components": [],
  1729. "_prefab": {
  1730. "__id__": 59
  1731. },
  1732. "_opacity": 255,
  1733. "_color": {
  1734. "__type__": "cc.Color",
  1735. "r": 255,
  1736. "g": 255,
  1737. "b": 255,
  1738. "a": 255
  1739. },
  1740. "_contentSize": {
  1741. "__type__": "cc.Size",
  1742. "width": 80,
  1743. "height": 80
  1744. },
  1745. "_anchorPoint": {
  1746. "__type__": "cc.Vec2",
  1747. "x": 0.5,
  1748. "y": 0.5
  1749. },
  1750. "_trs": {
  1751. "__type__": "TypedArray",
  1752. "ctor": "Float64Array",
  1753. "array": [
  1754. 0,
  1755. 0,
  1756. 0,
  1757. 0,
  1758. 0,
  1759. 0,
  1760. 1,
  1761. 1,
  1762. 1,
  1763. 1
  1764. ]
  1765. },
  1766. "_eulerAngles": {
  1767. "__type__": "cc.Vec3",
  1768. "x": 0,
  1769. "y": 0,
  1770. "z": 0
  1771. },
  1772. "_skewX": 0,
  1773. "_skewY": 0,
  1774. "_is3DNode": false,
  1775. "_groupIndex": 0,
  1776. "groupIndex": 0,
  1777. "_id": ""
  1778. },
  1779. {
  1780. "__type__": "cc.Node",
  1781. "_name": "New Sprite",
  1782. "_objFlags": 0,
  1783. "_parent": {
  1784. "__id__": 43
  1785. },
  1786. "_children": [],
  1787. "_active": true,
  1788. "_components": [
  1789. {
  1790. "__id__": 45
  1791. }
  1792. ],
  1793. "_prefab": {
  1794. "__id__": 46
  1795. },
  1796. "_opacity": 255,
  1797. "_color": {
  1798. "__type__": "cc.Color",
  1799. "r": 255,
  1800. "g": 255,
  1801. "b": 255,
  1802. "a": 255
  1803. },
  1804. "_contentSize": {
  1805. "__type__": "cc.Size",
  1806. "width": 62,
  1807. "height": 65
  1808. },
  1809. "_anchorPoint": {
  1810. "__type__": "cc.Vec2",
  1811. "x": 0.5,
  1812. "y": 0.5
  1813. },
  1814. "_trs": {
  1815. "__type__": "TypedArray",
  1816. "ctor": "Float64Array",
  1817. "array": [
  1818. 0,
  1819. 0,
  1820. 0,
  1821. 0,
  1822. 0,
  1823. 0,
  1824. 1,
  1825. 1,
  1826. 1,
  1827. 1
  1828. ]
  1829. },
  1830. "_eulerAngles": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 0,
  1833. "y": 0,
  1834. "z": 0
  1835. },
  1836. "_skewX": 0,
  1837. "_skewY": 0,
  1838. "_is3DNode": false,
  1839. "_groupIndex": 0,
  1840. "groupIndex": 0,
  1841. "_id": ""
  1842. },
  1843. {
  1844. "__type__": "cc.Sprite",
  1845. "_name": "",
  1846. "_objFlags": 0,
  1847. "node": {
  1848. "__id__": 44
  1849. },
  1850. "_enabled": true,
  1851. "_materials": [
  1852. {
  1853. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1854. }
  1855. ],
  1856. "_srcBlendFactor": 770,
  1857. "_dstBlendFactor": 771,
  1858. "_spriteFrame": null,
  1859. "_type": 0,
  1860. "_sizeMode": 1,
  1861. "_fillType": 0,
  1862. "_fillCenter": {
  1863. "__type__": "cc.Vec2",
  1864. "x": 0,
  1865. "y": 0
  1866. },
  1867. "_fillStart": 0,
  1868. "_fillRange": 0,
  1869. "_isTrimmedMode": true,
  1870. "_atlas": null,
  1871. "_id": ""
  1872. },
  1873. {
  1874. "__type__": "cc.PrefabInfo",
  1875. "root": {
  1876. "__id__": 39
  1877. },
  1878. "asset": {
  1879. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  1880. },
  1881. "fileId": "0fiCn4IjZAZ6xM0YnwQFIH",
  1882. "sync": false
  1883. },
  1884. {
  1885. "__type__": "cc.Node",
  1886. "_name": "New Node",
  1887. "_objFlags": 0,
  1888. "_parent": {
  1889. "__id__": 43
  1890. },
  1891. "_children": [
  1892. {
  1893. "__id__": 48
  1894. }
  1895. ],
  1896. "_active": true,
  1897. "_components": [],
  1898. "_prefab": {
  1899. "__id__": 52
  1900. },
  1901. "_opacity": 255,
  1902. "_color": {
  1903. "__type__": "cc.Color",
  1904. "r": 255,
  1905. "g": 255,
  1906. "b": 255,
  1907. "a": 255
  1908. },
  1909. "_contentSize": {
  1910. "__type__": "cc.Size",
  1911. "width": 0,
  1912. "height": 0
  1913. },
  1914. "_anchorPoint": {
  1915. "__type__": "cc.Vec2",
  1916. "x": 0.5,
  1917. "y": 0.5
  1918. },
  1919. "_trs": {
  1920. "__type__": "TypedArray",
  1921. "ctor": "Float64Array",
  1922. "array": [
  1923. -37.223,
  1924. 27.39,
  1925. 0,
  1926. 0,
  1927. 0,
  1928. 0,
  1929. 1,
  1930. 1,
  1931. 1,
  1932. 1
  1933. ]
  1934. },
  1935. "_eulerAngles": {
  1936. "__type__": "cc.Vec3",
  1937. "x": 0,
  1938. "y": 0,
  1939. "z": 0
  1940. },
  1941. "_skewX": 0,
  1942. "_skewY": 0,
  1943. "_is3DNode": false,
  1944. "_groupIndex": 0,
  1945. "groupIndex": 0,
  1946. "_id": ""
  1947. },
  1948. {
  1949. "__type__": "cc.Node",
  1950. "_name": "count",
  1951. "_objFlags": 0,
  1952. "_parent": {
  1953. "__id__": 47
  1954. },
  1955. "_children": [],
  1956. "_active": true,
  1957. "_components": [
  1958. {
  1959. "__id__": 49
  1960. },
  1961. {
  1962. "__id__": 50
  1963. }
  1964. ],
  1965. "_prefab": {
  1966. "__id__": 51
  1967. },
  1968. "_opacity": 255,
  1969. "_color": {
  1970. "__type__": "cc.Color",
  1971. "r": 255,
  1972. "g": 255,
  1973. "b": 255,
  1974. "a": 255
  1975. },
  1976. "_contentSize": {
  1977. "__type__": "cc.Size",
  1978. "width": 4,
  1979. "height": 29.2
  1980. },
  1981. "_anchorPoint": {
  1982. "__type__": "cc.Vec2",
  1983. "x": 0,
  1984. "y": 0.5
  1985. },
  1986. "_trs": {
  1987. "__type__": "TypedArray",
  1988. "ctor": "Float64Array",
  1989. "array": [
  1990. 0,
  1991. 0,
  1992. 0,
  1993. 0,
  1994. 0,
  1995. 0,
  1996. 1,
  1997. 1,
  1998. 1,
  1999. 1
  2000. ]
  2001. },
  2002. "_eulerAngles": {
  2003. "__type__": "cc.Vec3",
  2004. "x": 0,
  2005. "y": 0,
  2006. "z": 0
  2007. },
  2008. "_skewX": 0,
  2009. "_skewY": 0,
  2010. "_is3DNode": false,
  2011. "_groupIndex": 0,
  2012. "groupIndex": 0,
  2013. "_id": ""
  2014. },
  2015. {
  2016. "__type__": "cc.Label",
  2017. "_name": "",
  2018. "_objFlags": 0,
  2019. "node": {
  2020. "__id__": 48
  2021. },
  2022. "_enabled": true,
  2023. "_materials": [
  2024. {
  2025. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2026. }
  2027. ],
  2028. "_srcBlendFactor": 770,
  2029. "_dstBlendFactor": 771,
  2030. "_string": "",
  2031. "_N$string": "",
  2032. "_fontSize": 20,
  2033. "_lineHeight": 0,
  2034. "_enableWrapText": true,
  2035. "_N$file": {
  2036. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  2037. },
  2038. "_isSystemFontUsed": false,
  2039. "_spacingX": 0,
  2040. "_batchAsBitmap": false,
  2041. "_styleFlags": 0,
  2042. "_underlineHeight": 0,
  2043. "_N$horizontalAlign": 1,
  2044. "_N$verticalAlign": 1,
  2045. "_N$fontFamily": "Arial",
  2046. "_N$overflow": 0,
  2047. "_N$cacheMode": 0,
  2048. "_id": ""
  2049. },
  2050. {
  2051. "__type__": "cc.LabelOutline",
  2052. "_name": "",
  2053. "_objFlags": 0,
  2054. "node": {
  2055. "__id__": 48
  2056. },
  2057. "_enabled": true,
  2058. "_color": {
  2059. "__type__": "cc.Color",
  2060. "r": 75,
  2061. "g": 43,
  2062. "b": 0,
  2063. "a": 255
  2064. },
  2065. "_width": 2,
  2066. "_id": ""
  2067. },
  2068. {
  2069. "__type__": "cc.PrefabInfo",
  2070. "root": {
  2071. "__id__": 39
  2072. },
  2073. "asset": {
  2074. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  2075. },
  2076. "fileId": "e83tuxOmJC1KlttRdQUyju",
  2077. "sync": false
  2078. },
  2079. {
  2080. "__type__": "cc.PrefabInfo",
  2081. "root": {
  2082. "__id__": 39
  2083. },
  2084. "asset": {
  2085. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  2086. },
  2087. "fileId": "f441WfffNC/KdXY8SHwgpW",
  2088. "sync": false
  2089. },
  2090. {
  2091. "__type__": "cc.Node",
  2092. "_name": "New Node",
  2093. "_objFlags": 0,
  2094. "_parent": {
  2095. "__id__": 43
  2096. },
  2097. "_children": [],
  2098. "_active": true,
  2099. "_components": [
  2100. {
  2101. "__id__": 54
  2102. }
  2103. ],
  2104. "_prefab": {
  2105. "__id__": 55
  2106. },
  2107. "_opacity": 255,
  2108. "_color": {
  2109. "__type__": "cc.Color",
  2110. "r": 255,
  2111. "g": 255,
  2112. "b": 255,
  2113. "a": 255
  2114. },
  2115. "_contentSize": {
  2116. "__type__": "cc.Size",
  2117. "width": 20,
  2118. "height": 30
  2119. },
  2120. "_anchorPoint": {
  2121. "__type__": "cc.Vec2",
  2122. "x": 0.5,
  2123. "y": 0.5
  2124. },
  2125. "_trs": {
  2126. "__type__": "TypedArray",
  2127. "ctor": "Float64Array",
  2128. "array": [
  2129. 0,
  2130. -33.29,
  2131. 0,
  2132. 0,
  2133. 0,
  2134. 0,
  2135. 1,
  2136. 0.8,
  2137. 0.8,
  2138. 1
  2139. ]
  2140. },
  2141. "_eulerAngles": {
  2142. "__type__": "cc.Vec3",
  2143. "x": 0,
  2144. "y": 0,
  2145. "z": 0
  2146. },
  2147. "_skewX": 0,
  2148. "_skewY": 0,
  2149. "_is3DNode": false,
  2150. "_groupIndex": 0,
  2151. "groupIndex": 0,
  2152. "_id": ""
  2153. },
  2154. {
  2155. "__type__": "cc.Layout",
  2156. "_name": "",
  2157. "_objFlags": 0,
  2158. "node": {
  2159. "__id__": 53
  2160. },
  2161. "_enabled": true,
  2162. "_layoutSize": {
  2163. "__type__": "cc.Size",
  2164. "width": 20,
  2165. "height": 30
  2166. },
  2167. "_resize": 1,
  2168. "_N$layoutType": 1,
  2169. "_N$cellSize": {
  2170. "__type__": "cc.Size",
  2171. "width": 40,
  2172. "height": 40
  2173. },
  2174. "_N$startAxis": 0,
  2175. "_N$paddingLeft": 0,
  2176. "_N$paddingRight": 0,
  2177. "_N$paddingTop": 0,
  2178. "_N$paddingBottom": 0,
  2179. "_N$spacingX": -10,
  2180. "_N$spacingY": 0,
  2181. "_N$verticalDirection": 1,
  2182. "_N$horizontalDirection": 0,
  2183. "_N$affectedByScale": false,
  2184. "_id": ""
  2185. },
  2186. {
  2187. "__type__": "cc.PrefabInfo",
  2188. "root": {
  2189. "__id__": 39
  2190. },
  2191. "asset": {
  2192. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  2193. },
  2194. "fileId": "82RPBTVEFLp4ypNusQ/w5R",
  2195. "sync": false
  2196. },
  2197. {
  2198. "__type__": "cc.Node",
  2199. "_name": "contrast",
  2200. "_objFlags": 0,
  2201. "_parent": {
  2202. "__id__": 43
  2203. },
  2204. "_children": [],
  2205. "_active": false,
  2206. "_components": [
  2207. {
  2208. "__id__": 57
  2209. }
  2210. ],
  2211. "_prefab": {
  2212. "__id__": 58
  2213. },
  2214. "_opacity": 255,
  2215. "_color": {
  2216. "__type__": "cc.Color",
  2217. "r": 120,
  2218. "g": 9,
  2219. "b": 9,
  2220. "a": 255
  2221. },
  2222. "_contentSize": {
  2223. "__type__": "cc.Size",
  2224. "width": 22.81,
  2225. "height": 25.2
  2226. },
  2227. "_anchorPoint": {
  2228. "__type__": "cc.Vec2",
  2229. "x": 0.5,
  2230. "y": 0.5
  2231. },
  2232. "_trs": {
  2233. "__type__": "TypedArray",
  2234. "ctor": "Float64Array",
  2235. "array": [
  2236. 0,
  2237. -54.61,
  2238. 0,
  2239. 0,
  2240. 0,
  2241. 0,
  2242. 1,
  2243. 1,
  2244. 1,
  2245. 1
  2246. ]
  2247. },
  2248. "_eulerAngles": {
  2249. "__type__": "cc.Vec3",
  2250. "x": 0,
  2251. "y": 0,
  2252. "z": 0
  2253. },
  2254. "_skewX": 0,
  2255. "_skewY": 0,
  2256. "_is3DNode": false,
  2257. "_groupIndex": 0,
  2258. "groupIndex": 0,
  2259. "_id": ""
  2260. },
  2261. {
  2262. "__type__": "cc.Label",
  2263. "_name": "",
  2264. "_objFlags": 0,
  2265. "node": {
  2266. "__id__": 56
  2267. },
  2268. "_enabled": true,
  2269. "_materials": [
  2270. {
  2271. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2272. }
  2273. ],
  2274. "_srcBlendFactor": 770,
  2275. "_dstBlendFactor": 771,
  2276. "_string": "1/1",
  2277. "_N$string": "1/1",
  2278. "_fontSize": 20,
  2279. "_lineHeight": 0,
  2280. "_enableWrapText": true,
  2281. "_N$file": {
  2282. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  2283. },
  2284. "_isSystemFontUsed": false,
  2285. "_spacingX": 0,
  2286. "_batchAsBitmap": false,
  2287. "_styleFlags": 0,
  2288. "_underlineHeight": 0,
  2289. "_N$horizontalAlign": 1,
  2290. "_N$verticalAlign": 1,
  2291. "_N$fontFamily": "Arial",
  2292. "_N$overflow": 0,
  2293. "_N$cacheMode": 0,
  2294. "_id": ""
  2295. },
  2296. {
  2297. "__type__": "cc.PrefabInfo",
  2298. "root": {
  2299. "__id__": 39
  2300. },
  2301. "asset": {
  2302. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  2303. },
  2304. "fileId": "bazDvO73hA9KDDlkW5093G",
  2305. "sync": false
  2306. },
  2307. {
  2308. "__type__": "cc.PrefabInfo",
  2309. "root": {
  2310. "__id__": 39
  2311. },
  2312. "asset": {
  2313. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  2314. },
  2315. "fileId": "28C/W/+vtLZoTBp1VfjsKb",
  2316. "sync": false
  2317. },
  2318. {
  2319. "__type__": "cc.Node",
  2320. "_name": "New Sprite",
  2321. "_objFlags": 0,
  2322. "_parent": {
  2323. "__id__": 39
  2324. },
  2325. "_children": [],
  2326. "_active": false,
  2327. "_components": [
  2328. {
  2329. "__id__": 61
  2330. }
  2331. ],
  2332. "_prefab": {
  2333. "__id__": 62
  2334. },
  2335. "_opacity": 255,
  2336. "_color": {
  2337. "__type__": "cc.Color",
  2338. "r": 255,
  2339. "g": 255,
  2340. "b": 255,
  2341. "a": 255
  2342. },
  2343. "_contentSize": {
  2344. "__type__": "cc.Size",
  2345. "width": 92,
  2346. "height": 92
  2347. },
  2348. "_anchorPoint": {
  2349. "__type__": "cc.Vec2",
  2350. "x": 0.5,
  2351. "y": 0.5
  2352. },
  2353. "_trs": {
  2354. "__type__": "TypedArray",
  2355. "ctor": "Float64Array",
  2356. "array": [
  2357. 0,
  2358. 0,
  2359. 0,
  2360. 0,
  2361. 0,
  2362. 0,
  2363. 1,
  2364. 1,
  2365. 1,
  2366. 1
  2367. ]
  2368. },
  2369. "_eulerAngles": {
  2370. "__type__": "cc.Vec3",
  2371. "x": 0,
  2372. "y": 0,
  2373. "z": 0
  2374. },
  2375. "_skewX": 0,
  2376. "_skewY": 0,
  2377. "_is3DNode": false,
  2378. "_groupIndex": 0,
  2379. "groupIndex": 0,
  2380. "_id": ""
  2381. },
  2382. {
  2383. "__type__": "cc.Sprite",
  2384. "_name": "",
  2385. "_objFlags": 0,
  2386. "node": {
  2387. "__id__": 60
  2388. },
  2389. "_enabled": true,
  2390. "_materials": [
  2391. {
  2392. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2393. }
  2394. ],
  2395. "_srcBlendFactor": 770,
  2396. "_dstBlendFactor": 771,
  2397. "_spriteFrame": {
  2398. "__uuid__": "200d6ab0-1dc2-4bd2-b609-b86a6b5bc179"
  2399. },
  2400. "_type": 1,
  2401. "_sizeMode": 1,
  2402. "_fillType": 0,
  2403. "_fillCenter": {
  2404. "__type__": "cc.Vec2",
  2405. "x": 0,
  2406. "y": 0
  2407. },
  2408. "_fillStart": 0,
  2409. "_fillRange": 0,
  2410. "_isTrimmedMode": true,
  2411. "_atlas": null,
  2412. "_id": ""
  2413. },
  2414. {
  2415. "__type__": "cc.PrefabInfo",
  2416. "root": {
  2417. "__id__": 39
  2418. },
  2419. "asset": {
  2420. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  2421. },
  2422. "fileId": "56cKJC6DBGB657MRpFNdru",
  2423. "sync": false
  2424. },
  2425. {
  2426. "__type__": "cc.Button",
  2427. "_name": "",
  2428. "_objFlags": 0,
  2429. "node": {
  2430. "__id__": 39
  2431. },
  2432. "_enabled": true,
  2433. "_normalMaterial": null,
  2434. "_grayMaterial": null,
  2435. "duration": 0.1,
  2436. "zoomScale": 0.9,
  2437. "clickEvents": [
  2438. {
  2439. "__id__": 64
  2440. }
  2441. ],
  2442. "_N$interactable": true,
  2443. "_N$enableAutoGrayEffect": false,
  2444. "_N$transition": 3,
  2445. "transition": 3,
  2446. "_N$normalColor": {
  2447. "__type__": "cc.Color",
  2448. "r": 255,
  2449. "g": 255,
  2450. "b": 255,
  2451. "a": 255
  2452. },
  2453. "_N$pressedColor": {
  2454. "__type__": "cc.Color",
  2455. "r": 211,
  2456. "g": 211,
  2457. "b": 211,
  2458. "a": 255
  2459. },
  2460. "pressedColor": {
  2461. "__type__": "cc.Color",
  2462. "r": 211,
  2463. "g": 211,
  2464. "b": 211,
  2465. "a": 255
  2466. },
  2467. "_N$hoverColor": {
  2468. "__type__": "cc.Color",
  2469. "r": 255,
  2470. "g": 255,
  2471. "b": 255,
  2472. "a": 255
  2473. },
  2474. "hoverColor": {
  2475. "__type__": "cc.Color",
  2476. "r": 255,
  2477. "g": 255,
  2478. "b": 255,
  2479. "a": 255
  2480. },
  2481. "_N$disabledColor": {
  2482. "__type__": "cc.Color",
  2483. "r": 124,
  2484. "g": 124,
  2485. "b": 124,
  2486. "a": 255
  2487. },
  2488. "_N$normalSprite": null,
  2489. "_N$pressedSprite": null,
  2490. "pressedSprite": null,
  2491. "_N$hoverSprite": null,
  2492. "hoverSprite": null,
  2493. "_N$disabledSprite": null,
  2494. "_N$target": null,
  2495. "_id": ""
  2496. },
  2497. {
  2498. "__type__": "cc.ClickEvent",
  2499. "target": {
  2500. "__id__": 39
  2501. },
  2502. "component": "",
  2503. "_componentId": "151bdPsfBdMXbh/WAVcXBV2",
  2504. "handler": "onclick",
  2505. "customEventData": ""
  2506. },
  2507. {
  2508. "__type__": "151bdPsfBdMXbh/WAVcXBV2",
  2509. "_name": "",
  2510. "_objFlags": 0,
  2511. "node": {
  2512. "__id__": 39
  2513. },
  2514. "_enabled": true,
  2515. "mBG": {
  2516. "__id__": 41
  2517. },
  2518. "mIcon": {
  2519. "__id__": 45
  2520. },
  2521. "mNullIcon": {
  2522. "__uuid__": "78562430-f154-4a16-914a-8c84c69f9cce"
  2523. },
  2524. "mBGs": [
  2525. {
  2526. "__uuid__": "398d12e8-d5aa-4d23-8322-d2f6cc12f71a"
  2527. },
  2528. {
  2529. "__uuid__": "e9d93117-eecf-4225-87d1-c65f2ab1a757"
  2530. },
  2531. {
  2532. "__uuid__": "947f2cb4-69c3-4ed6-97b1-35e22e263649"
  2533. },
  2534. {
  2535. "__uuid__": "1b48f361-8cb3-43e3-9bc3-1731ad9f6aa6"
  2536. },
  2537. {
  2538. "__uuid__": "e36b59c9-abab-49ea-ad4b-c20d73d6c2e9"
  2539. }
  2540. ],
  2541. "mNullNode": {
  2542. "__id__": 43
  2543. },
  2544. "mStarNode": {
  2545. "__id__": 53
  2546. },
  2547. "mStar": {
  2548. "__uuid__": "bbda706e-aa95-4e38-a4b2-74c3b9ec7c30"
  2549. },
  2550. "mLevel": {
  2551. "__id__": 49
  2552. },
  2553. "mContrast": {
  2554. "__id__": 57
  2555. },
  2556. "_id": ""
  2557. },
  2558. {
  2559. "__type__": "cc.PrefabInfo",
  2560. "root": {
  2561. "__id__": 39
  2562. },
  2563. "asset": {
  2564. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  2565. },
  2566. "fileId": "b1RW4NkqJE66BBdJ1sOLen",
  2567. "sync": false
  2568. },
  2569. {
  2570. "__type__": "cc.Node",
  2571. "_name": "New Label",
  2572. "_objFlags": 0,
  2573. "_parent": {
  2574. "__id__": 9
  2575. },
  2576. "_children": [],
  2577. "_active": true,
  2578. "_components": [
  2579. {
  2580. "__id__": 68
  2581. },
  2582. {
  2583. "__id__": 69
  2584. }
  2585. ],
  2586. "_prefab": {
  2587. "__id__": 70
  2588. },
  2589. "_opacity": 255,
  2590. "_color": {
  2591. "__type__": "cc.Color",
  2592. "r": 75,
  2593. "g": 43,
  2594. "b": 0,
  2595. "a": 255
  2596. },
  2597. "_contentSize": {
  2598. "__type__": "cc.Size",
  2599. "width": 105.68,
  2600. "height": 37.8
  2601. },
  2602. "_anchorPoint": {
  2603. "__type__": "cc.Vec2",
  2604. "x": 0.5,
  2605. "y": 0.5
  2606. },
  2607. "_trs": {
  2608. "__type__": "TypedArray",
  2609. "ctor": "Float64Array",
  2610. "array": [
  2611. 0,
  2612. -131.595,
  2613. 0,
  2614. 0,
  2615. 0,
  2616. 0,
  2617. 1,
  2618. 1,
  2619. 1,
  2620. 1
  2621. ]
  2622. },
  2623. "_eulerAngles": {
  2624. "__type__": "cc.Vec3",
  2625. "x": 0,
  2626. "y": 0,
  2627. "z": 0
  2628. },
  2629. "_skewX": 0,
  2630. "_skewY": 0,
  2631. "_is3DNode": false,
  2632. "_groupIndex": 0,
  2633. "groupIndex": 0,
  2634. "_id": ""
  2635. },
  2636. {
  2637. "__type__": "cc.Label",
  2638. "_name": "",
  2639. "_objFlags": 0,
  2640. "node": {
  2641. "__id__": 67
  2642. },
  2643. "_enabled": true,
  2644. "_materials": [
  2645. {
  2646. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2647. }
  2648. ],
  2649. "_srcBlendFactor": 770,
  2650. "_dstBlendFactor": 771,
  2651. "_string": "限购:0/1",
  2652. "_N$string": "限购:0/1",
  2653. "_fontSize": 25,
  2654. "_lineHeight": 30,
  2655. "_enableWrapText": true,
  2656. "_N$file": {
  2657. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  2658. },
  2659. "_isSystemFontUsed": false,
  2660. "_spacingX": 0,
  2661. "_batchAsBitmap": false,
  2662. "_styleFlags": 0,
  2663. "_underlineHeight": 0,
  2664. "_N$horizontalAlign": 1,
  2665. "_N$verticalAlign": 1,
  2666. "_N$fontFamily": "Arial",
  2667. "_N$overflow": 0,
  2668. "_N$cacheMode": 0,
  2669. "_id": ""
  2670. },
  2671. {
  2672. "__type__": "cc.LabelOutline",
  2673. "_name": "",
  2674. "_objFlags": 0,
  2675. "node": {
  2676. "__id__": 67
  2677. },
  2678. "_enabled": false,
  2679. "_color": {
  2680. "__type__": "cc.Color",
  2681. "r": 8,
  2682. "g": 5,
  2683. "b": 5,
  2684. "a": 255
  2685. },
  2686. "_width": 2,
  2687. "_id": ""
  2688. },
  2689. {
  2690. "__type__": "cc.PrefabInfo",
  2691. "root": {
  2692. "__id__": 5
  2693. },
  2694. "asset": null,
  2695. "fileId": "55sw15Bm5IvbhzVltSU/A/",
  2696. "sync": false
  2697. },
  2698. {
  2699. "__type__": "cc.Sprite",
  2700. "_name": "",
  2701. "_objFlags": 0,
  2702. "node": {
  2703. "__id__": 9
  2704. },
  2705. "_enabled": true,
  2706. "_materials": [
  2707. {
  2708. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2709. }
  2710. ],
  2711. "_srcBlendFactor": 770,
  2712. "_dstBlendFactor": 771,
  2713. "_spriteFrame": {
  2714. "__uuid__": "17192a55-eaa7-444b-85ae-1218e1ec03a0"
  2715. },
  2716. "_type": 1,
  2717. "_sizeMode": 0,
  2718. "_fillType": 0,
  2719. "_fillCenter": {
  2720. "__type__": "cc.Vec2",
  2721. "x": 0,
  2722. "y": 0
  2723. },
  2724. "_fillStart": 0,
  2725. "_fillRange": 0,
  2726. "_isTrimmedMode": true,
  2727. "_atlas": null,
  2728. "_id": ""
  2729. },
  2730. {
  2731. "__type__": "cc.PrefabInfo",
  2732. "root": {
  2733. "__id__": 5
  2734. },
  2735. "asset": null,
  2736. "fileId": "c7VdNn/e9KN5cgV17+NnmX",
  2737. "sync": false
  2738. },
  2739. {
  2740. "__type__": "cc.Node",
  2741. "_name": "New Sprite",
  2742. "_objFlags": 0,
  2743. "_parent": {
  2744. "__id__": 8
  2745. },
  2746. "_children": [
  2747. {
  2748. "__id__": 74
  2749. },
  2750. {
  2751. "__id__": 78
  2752. },
  2753. {
  2754. "__id__": 82
  2755. },
  2756. {
  2757. "__id__": 85
  2758. },
  2759. {
  2760. "__id__": 88
  2761. },
  2762. {
  2763. "__id__": 92
  2764. },
  2765. {
  2766. "__id__": 99
  2767. },
  2768. {
  2769. "__id__": 103
  2770. },
  2771. {
  2772. "__id__": 131
  2773. }
  2774. ],
  2775. "_active": true,
  2776. "_components": [
  2777. {
  2778. "__id__": 135
  2779. }
  2780. ],
  2781. "_prefab": {
  2782. "__id__": 136
  2783. },
  2784. "_opacity": 255,
  2785. "_color": {
  2786. "__type__": "cc.Color",
  2787. "r": 255,
  2788. "g": 255,
  2789. "b": 255,
  2790. "a": 255
  2791. },
  2792. "_contentSize": {
  2793. "__type__": "cc.Size",
  2794. "width": 260,
  2795. "height": 450
  2796. },
  2797. "_anchorPoint": {
  2798. "__type__": "cc.Vec2",
  2799. "x": 0.5,
  2800. "y": 0.5
  2801. },
  2802. "_trs": {
  2803. "__type__": "TypedArray",
  2804. "ctor": "Float64Array",
  2805. "array": [
  2806. 0,
  2807. -15,
  2808. 0,
  2809. 0,
  2810. 0,
  2811. 0,
  2812. 1,
  2813. 1,
  2814. 1,
  2815. 1
  2816. ]
  2817. },
  2818. "_eulerAngles": {
  2819. "__type__": "cc.Vec3",
  2820. "x": 0,
  2821. "y": 0,
  2822. "z": 0
  2823. },
  2824. "_skewX": 0,
  2825. "_skewY": 0,
  2826. "_is3DNode": false,
  2827. "_groupIndex": 0,
  2828. "groupIndex": 0,
  2829. "_id": ""
  2830. },
  2831. {
  2832. "__type__": "cc.Node",
  2833. "_name": "New Label",
  2834. "_objFlags": 0,
  2835. "_parent": {
  2836. "__id__": 73
  2837. },
  2838. "_children": [],
  2839. "_active": true,
  2840. "_components": [
  2841. {
  2842. "__id__": 75
  2843. },
  2844. {
  2845. "__id__": 76
  2846. }
  2847. ],
  2848. "_prefab": {
  2849. "__id__": 77
  2850. },
  2851. "_opacity": 255,
  2852. "_color": {
  2853. "__type__": "cc.Color",
  2854. "r": 75,
  2855. "g": 43,
  2856. "b": 0,
  2857. "a": 255
  2858. },
  2859. "_contentSize": {
  2860. "__type__": "cc.Size",
  2861. "width": 175,
  2862. "height": 37.8
  2863. },
  2864. "_anchorPoint": {
  2865. "__type__": "cc.Vec2",
  2866. "x": 0.5,
  2867. "y": 0.5
  2868. },
  2869. "_trs": {
  2870. "__type__": "TypedArray",
  2871. "ctor": "Float64Array",
  2872. "array": [
  2873. 0,
  2874. 197.001,
  2875. 0,
  2876. 0,
  2877. 0,
  2878. 0,
  2879. 1,
  2880. 1,
  2881. 1,
  2882. 1
  2883. ]
  2884. },
  2885. "_eulerAngles": {
  2886. "__type__": "cc.Vec3",
  2887. "x": 0,
  2888. "y": 0,
  2889. "z": 0
  2890. },
  2891. "_skewX": 0,
  2892. "_skewY": 0,
  2893. "_is3DNode": false,
  2894. "_groupIndex": 0,
  2895. "groupIndex": 0,
  2896. "_id": ""
  2897. },
  2898. {
  2899. "__type__": "cc.Label",
  2900. "_name": "",
  2901. "_objFlags": 0,
  2902. "node": {
  2903. "__id__": 74
  2904. },
  2905. "_enabled": true,
  2906. "_materials": [
  2907. {
  2908. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2909. }
  2910. ],
  2911. "_srcBlendFactor": 770,
  2912. "_dstBlendFactor": 771,
  2913. "_string": "英灵殿特别礼包",
  2914. "_N$string": "英灵殿特别礼包",
  2915. "_fontSize": 25,
  2916. "_lineHeight": 30,
  2917. "_enableWrapText": true,
  2918. "_N$file": {
  2919. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  2920. },
  2921. "_isSystemFontUsed": false,
  2922. "_spacingX": 0,
  2923. "_batchAsBitmap": false,
  2924. "_styleFlags": 0,
  2925. "_underlineHeight": 0,
  2926. "_N$horizontalAlign": 1,
  2927. "_N$verticalAlign": 1,
  2928. "_N$fontFamily": "Arial",
  2929. "_N$overflow": 0,
  2930. "_N$cacheMode": 0,
  2931. "_id": ""
  2932. },
  2933. {
  2934. "__type__": "cc.LabelOutline",
  2935. "_name": "",
  2936. "_objFlags": 0,
  2937. "node": {
  2938. "__id__": 74
  2939. },
  2940. "_enabled": false,
  2941. "_color": {
  2942. "__type__": "cc.Color",
  2943. "r": 8,
  2944. "g": 5,
  2945. "b": 5,
  2946. "a": 255
  2947. },
  2948. "_width": 2,
  2949. "_id": ""
  2950. },
  2951. {
  2952. "__type__": "cc.PrefabInfo",
  2953. "root": {
  2954. "__id__": 5
  2955. },
  2956. "asset": null,
  2957. "fileId": "55ZeQR9HRIdL2UpWTu54xg",
  2958. "sync": false
  2959. },
  2960. {
  2961. "__type__": "cc.Node",
  2962. "_name": "New Label",
  2963. "_objFlags": 0,
  2964. "_parent": {
  2965. "__id__": 73
  2966. },
  2967. "_children": [],
  2968. "_active": true,
  2969. "_components": [
  2970. {
  2971. "__id__": 79
  2972. },
  2973. {
  2974. "__id__": 80
  2975. }
  2976. ],
  2977. "_prefab": {
  2978. "__id__": 81
  2979. },
  2980. "_opacity": 255,
  2981. "_color": {
  2982. "__type__": "cc.Color",
  2983. "r": 75,
  2984. "g": 43,
  2985. "b": 0,
  2986. "a": 255
  2987. },
  2988. "_contentSize": {
  2989. "__type__": "cc.Size",
  2990. "width": 100,
  2991. "height": 37.8
  2992. },
  2993. "_anchorPoint": {
  2994. "__type__": "cc.Vec2",
  2995. "x": 0.5,
  2996. "y": 0.5
  2997. },
  2998. "_trs": {
  2999. "__type__": "TypedArray",
  3000. "ctor": "Float64Array",
  3001. "array": [
  3002. 0,
  3003. 158.996,
  3004. 0,
  3005. 0,
  3006. 0,
  3007. 0,
  3008. 1,
  3009. 1,
  3010. 1,
  3011. 1
  3012. ]
  3013. },
  3014. "_eulerAngles": {
  3015. "__type__": "cc.Vec3",
  3016. "x": 0,
  3017. "y": 0,
  3018. "z": 0
  3019. },
  3020. "_skewX": 0,
  3021. "_skewY": 0,
  3022. "_is3DNode": false,
  3023. "_groupIndex": 0,
  3024. "groupIndex": 0,
  3025. "_id": ""
  3026. },
  3027. {
  3028. "__type__": "cc.Label",
  3029. "_name": "",
  3030. "_objFlags": 0,
  3031. "node": {
  3032. "__id__": 78
  3033. },
  3034. "_enabled": true,
  3035. "_materials": [
  3036. {
  3037. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3038. }
  3039. ],
  3040. "_srcBlendFactor": 770,
  3041. "_dstBlendFactor": 771,
  3042. "_string": "6天2小时",
  3043. "_N$string": "6天2小时",
  3044. "_fontSize": 25,
  3045. "_lineHeight": 30,
  3046. "_enableWrapText": true,
  3047. "_N$file": {
  3048. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  3049. },
  3050. "_isSystemFontUsed": false,
  3051. "_spacingX": 0,
  3052. "_batchAsBitmap": false,
  3053. "_styleFlags": 0,
  3054. "_underlineHeight": 0,
  3055. "_N$horizontalAlign": 1,
  3056. "_N$verticalAlign": 1,
  3057. "_N$fontFamily": "Arial",
  3058. "_N$overflow": 0,
  3059. "_N$cacheMode": 0,
  3060. "_id": ""
  3061. },
  3062. {
  3063. "__type__": "cc.LabelOutline",
  3064. "_name": "",
  3065. "_objFlags": 0,
  3066. "node": {
  3067. "__id__": 78
  3068. },
  3069. "_enabled": false,
  3070. "_color": {
  3071. "__type__": "cc.Color",
  3072. "r": 8,
  3073. "g": 5,
  3074. "b": 5,
  3075. "a": 255
  3076. },
  3077. "_width": 2,
  3078. "_id": ""
  3079. },
  3080. {
  3081. "__type__": "cc.PrefabInfo",
  3082. "root": {
  3083. "__id__": 5
  3084. },
  3085. "asset": null,
  3086. "fileId": "46VLEjHBhCa7nbmLdmzCNJ",
  3087. "sync": false
  3088. },
  3089. {
  3090. "__type__": "cc.Node",
  3091. "_name": "New Sprite",
  3092. "_objFlags": 0,
  3093. "_parent": {
  3094. "__id__": 73
  3095. },
  3096. "_children": [],
  3097. "_active": true,
  3098. "_components": [
  3099. {
  3100. "__id__": 83
  3101. }
  3102. ],
  3103. "_prefab": {
  3104. "__id__": 84
  3105. },
  3106. "_opacity": 255,
  3107. "_color": {
  3108. "__type__": "cc.Color",
  3109. "r": 255,
  3110. "g": 255,
  3111. "b": 255,
  3112. "a": 255
  3113. },
  3114. "_contentSize": {
  3115. "__type__": "cc.Size",
  3116. "width": 200,
  3117. "height": 50
  3118. },
  3119. "_anchorPoint": {
  3120. "__type__": "cc.Vec2",
  3121. "x": 0.5,
  3122. "y": 0.5
  3123. },
  3124. "_trs": {
  3125. "__type__": "TypedArray",
  3126. "ctor": "Float64Array",
  3127. "array": [
  3128. 0,
  3129. 101.706,
  3130. 0,
  3131. 0,
  3132. 0,
  3133. 0,
  3134. 1,
  3135. 1,
  3136. 1,
  3137. 1
  3138. ]
  3139. },
  3140. "_eulerAngles": {
  3141. "__type__": "cc.Vec3",
  3142. "x": 0,
  3143. "y": 0,
  3144. "z": 0
  3145. },
  3146. "_skewX": 0,
  3147. "_skewY": 0,
  3148. "_is3DNode": false,
  3149. "_groupIndex": 0,
  3150. "groupIndex": 0,
  3151. "_id": ""
  3152. },
  3153. {
  3154. "__type__": "cc.Sprite",
  3155. "_name": "",
  3156. "_objFlags": 0,
  3157. "node": {
  3158. "__id__": 82
  3159. },
  3160. "_enabled": true,
  3161. "_materials": [
  3162. {
  3163. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3164. }
  3165. ],
  3166. "_srcBlendFactor": 770,
  3167. "_dstBlendFactor": 771,
  3168. "_spriteFrame": {
  3169. "__uuid__": "5822059a-8a96-4510-b4de-7adf1113f361"
  3170. },
  3171. "_type": 1,
  3172. "_sizeMode": 0,
  3173. "_fillType": 0,
  3174. "_fillCenter": {
  3175. "__type__": "cc.Vec2",
  3176. "x": 0,
  3177. "y": 0
  3178. },
  3179. "_fillStart": 0,
  3180. "_fillRange": 0,
  3181. "_isTrimmedMode": true,
  3182. "_atlas": null,
  3183. "_id": ""
  3184. },
  3185. {
  3186. "__type__": "cc.PrefabInfo",
  3187. "root": {
  3188. "__id__": 5
  3189. },
  3190. "asset": null,
  3191. "fileId": "50gzGeZ75BC4nViA3JaGBW",
  3192. "sync": false
  3193. },
  3194. {
  3195. "__type__": "cc.Node",
  3196. "_name": "New Sprite",
  3197. "_objFlags": 0,
  3198. "_parent": {
  3199. "__id__": 73
  3200. },
  3201. "_children": [],
  3202. "_active": true,
  3203. "_components": [
  3204. {
  3205. "__id__": 86
  3206. }
  3207. ],
  3208. "_prefab": {
  3209. "__id__": 87
  3210. },
  3211. "_opacity": 255,
  3212. "_color": {
  3213. "__type__": "cc.Color",
  3214. "r": 255,
  3215. "g": 255,
  3216. "b": 255,
  3217. "a": 255
  3218. },
  3219. "_contentSize": {
  3220. "__type__": "cc.Size",
  3221. "width": 34,
  3222. "height": 36
  3223. },
  3224. "_anchorPoint": {
  3225. "__type__": "cc.Vec2",
  3226. "x": 0.5,
  3227. "y": 0.5
  3228. },
  3229. "_trs": {
  3230. "__type__": "TypedArray",
  3231. "ctor": "Float64Array",
  3232. "array": [
  3233. 46.524,
  3234. 100.482,
  3235. 0,
  3236. 0,
  3237. 0,
  3238. 0,
  3239. 1,
  3240. 1,
  3241. 1,
  3242. 2
  3243. ]
  3244. },
  3245. "_eulerAngles": {
  3246. "__type__": "cc.Vec3",
  3247. "x": 0,
  3248. "y": 0,
  3249. "z": 0
  3250. },
  3251. "_skewX": 0,
  3252. "_skewY": 0,
  3253. "_is3DNode": false,
  3254. "_groupIndex": 0,
  3255. "groupIndex": 0,
  3256. "_id": ""
  3257. },
  3258. {
  3259. "__type__": "cc.Sprite",
  3260. "_name": "",
  3261. "_objFlags": 0,
  3262. "node": {
  3263. "__id__": 85
  3264. },
  3265. "_enabled": true,
  3266. "_materials": [
  3267. {
  3268. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3269. }
  3270. ],
  3271. "_srcBlendFactor": 770,
  3272. "_dstBlendFactor": 771,
  3273. "_spriteFrame": {
  3274. "__uuid__": "dae832c8-f9be-4e46-b4ed-887ad820e9e4"
  3275. },
  3276. "_type": 0,
  3277. "_sizeMode": 1,
  3278. "_fillType": 0,
  3279. "_fillCenter": {
  3280. "__type__": "cc.Vec2",
  3281. "x": 0,
  3282. "y": 0
  3283. },
  3284. "_fillStart": 0,
  3285. "_fillRange": 0,
  3286. "_isTrimmedMode": true,
  3287. "_atlas": null,
  3288. "_id": ""
  3289. },
  3290. {
  3291. "__type__": "cc.PrefabInfo",
  3292. "root": {
  3293. "__id__": 5
  3294. },
  3295. "asset": null,
  3296. "fileId": "7aKwMMWOFMq5T4Hi/i5p3u",
  3297. "sync": false
  3298. },
  3299. {
  3300. "__type__": "cc.Node",
  3301. "_name": "New Label",
  3302. "_objFlags": 0,
  3303. "_parent": {
  3304. "__id__": 73
  3305. },
  3306. "_children": [],
  3307. "_active": true,
  3308. "_components": [
  3309. {
  3310. "__id__": 89
  3311. },
  3312. {
  3313. "__id__": 90
  3314. }
  3315. ],
  3316. "_prefab": {
  3317. "__id__": 91
  3318. },
  3319. "_opacity": 255,
  3320. "_color": {
  3321. "__type__": "cc.Color",
  3322. "r": 61,
  3323. "g": 255,
  3324. "b": 0,
  3325. "a": 255
  3326. },
  3327. "_contentSize": {
  3328. "__type__": "cc.Size",
  3329. "width": 56.5,
  3330. "height": 41.8
  3331. },
  3332. "_anchorPoint": {
  3333. "__type__": "cc.Vec2",
  3334. "x": 0.5,
  3335. "y": 0.5
  3336. },
  3337. "_trs": {
  3338. "__type__": "TypedArray",
  3339. "ctor": "Float64Array",
  3340. "array": [
  3341. -17.14,
  3342. 100.707,
  3343. 0,
  3344. 0,
  3345. 0,
  3346. 0,
  3347. 1,
  3348. 1,
  3349. 1,
  3350. 1
  3351. ]
  3352. },
  3353. "_eulerAngles": {
  3354. "__type__": "cc.Vec3",
  3355. "x": 0,
  3356. "y": 0,
  3357. "z": 0
  3358. },
  3359. "_skewX": 0,
  3360. "_skewY": 0,
  3361. "_is3DNode": false,
  3362. "_groupIndex": 0,
  3363. "groupIndex": 0,
  3364. "_id": ""
  3365. },
  3366. {
  3367. "__type__": "cc.Label",
  3368. "_name": "",
  3369. "_objFlags": 0,
  3370. "node": {
  3371. "__id__": 88
  3372. },
  3373. "_enabled": true,
  3374. "_materials": [
  3375. {
  3376. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3377. }
  3378. ],
  3379. "_srcBlendFactor": 770,
  3380. "_dstBlendFactor": 771,
  3381. "_string": "680",
  3382. "_N$string": "680",
  3383. "_fontSize": 35,
  3384. "_lineHeight": 30,
  3385. "_enableWrapText": true,
  3386. "_N$file": {
  3387. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  3388. },
  3389. "_isSystemFontUsed": false,
  3390. "_spacingX": 0,
  3391. "_batchAsBitmap": false,
  3392. "_styleFlags": 0,
  3393. "_underlineHeight": 0,
  3394. "_N$horizontalAlign": 1,
  3395. "_N$verticalAlign": 1,
  3396. "_N$fontFamily": "Arial",
  3397. "_N$overflow": 0,
  3398. "_N$cacheMode": 0,
  3399. "_id": ""
  3400. },
  3401. {
  3402. "__type__": "cc.LabelOutline",
  3403. "_name": "",
  3404. "_objFlags": 0,
  3405. "node": {
  3406. "__id__": 88
  3407. },
  3408. "_enabled": true,
  3409. "_color": {
  3410. "__type__": "cc.Color",
  3411. "r": 8,
  3412. "g": 5,
  3413. "b": 5,
  3414. "a": 255
  3415. },
  3416. "_width": 2,
  3417. "_id": ""
  3418. },
  3419. {
  3420. "__type__": "cc.PrefabInfo",
  3421. "root": {
  3422. "__id__": 5
  3423. },
  3424. "asset": null,
  3425. "fileId": "dagUGW5eJAYJ5iqrAA0rVZ",
  3426. "sync": false
  3427. },
  3428. {
  3429. "__type__": "cc.Node",
  3430. "_name": "New Sprite",
  3431. "_objFlags": 0,
  3432. "_parent": {
  3433. "__id__": 73
  3434. },
  3435. "_children": [
  3436. {
  3437. "__id__": 93
  3438. }
  3439. ],
  3440. "_active": true,
  3441. "_components": [
  3442. {
  3443. "__id__": 97
  3444. }
  3445. ],
  3446. "_prefab": {
  3447. "__id__": 98
  3448. },
  3449. "_opacity": 255,
  3450. "_color": {
  3451. "__type__": "cc.Color",
  3452. "r": 255,
  3453. "g": 239,
  3454. "b": 122,
  3455. "a": 255
  3456. },
  3457. "_contentSize": {
  3458. "__type__": "cc.Size",
  3459. "width": 200,
  3460. "height": 52
  3461. },
  3462. "_anchorPoint": {
  3463. "__type__": "cc.Vec2",
  3464. "x": 0.5,
  3465. "y": 0.5
  3466. },
  3467. "_trs": {
  3468. "__type__": "TypedArray",
  3469. "ctor": "Float64Array",
  3470. "array": [
  3471. 0,
  3472. -185.874,
  3473. 0,
  3474. 0,
  3475. 0,
  3476. 0,
  3477. 1,
  3478. 1,
  3479. 1,
  3480. 1
  3481. ]
  3482. },
  3483. "_eulerAngles": {
  3484. "__type__": "cc.Vec3",
  3485. "x": 0,
  3486. "y": 0,
  3487. "z": 0
  3488. },
  3489. "_skewX": 0,
  3490. "_skewY": 0,
  3491. "_is3DNode": false,
  3492. "_groupIndex": 0,
  3493. "groupIndex": 0,
  3494. "_id": ""
  3495. },
  3496. {
  3497. "__type__": "cc.Node",
  3498. "_name": "New Label",
  3499. "_objFlags": 0,
  3500. "_parent": {
  3501. "__id__": 92
  3502. },
  3503. "_children": [],
  3504. "_active": true,
  3505. "_components": [
  3506. {
  3507. "__id__": 94
  3508. },
  3509. {
  3510. "__id__": 95
  3511. }
  3512. ],
  3513. "_prefab": {
  3514. "__id__": 96
  3515. },
  3516. "_opacity": 255,
  3517. "_color": {
  3518. "__type__": "cc.Color",
  3519. "r": 255,
  3520. "g": 255,
  3521. "b": 255,
  3522. "a": 255
  3523. },
  3524. "_contentSize": {
  3525. "__type__": "cc.Size",
  3526. "width": 54,
  3527. "height": 41.8
  3528. },
  3529. "_anchorPoint": {
  3530. "__type__": "cc.Vec2",
  3531. "x": 0.5,
  3532. "y": 0.5
  3533. },
  3534. "_trs": {
  3535. "__type__": "TypedArray",
  3536. "ctor": "Float64Array",
  3537. "array": [
  3538. 0,
  3539. -0.284,
  3540. 0,
  3541. 0,
  3542. 0,
  3543. 0,
  3544. 1,
  3545. 1,
  3546. 1,
  3547. 1
  3548. ]
  3549. },
  3550. "_eulerAngles": {
  3551. "__type__": "cc.Vec3",
  3552. "x": 0,
  3553. "y": 0,
  3554. "z": 0
  3555. },
  3556. "_skewX": 0,
  3557. "_skewY": 0,
  3558. "_is3DNode": false,
  3559. "_groupIndex": 0,
  3560. "groupIndex": 0,
  3561. "_id": ""
  3562. },
  3563. {
  3564. "__type__": "cc.Label",
  3565. "_name": "",
  3566. "_objFlags": 0,
  3567. "node": {
  3568. "__id__": 93
  3569. },
  3570. "_enabled": true,
  3571. "_materials": [
  3572. {
  3573. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3574. }
  3575. ],
  3576. "_srcBlendFactor": 770,
  3577. "_dstBlendFactor": 771,
  3578. "_string": "68元",
  3579. "_N$string": "68元",
  3580. "_fontSize": 25,
  3581. "_lineHeight": 30,
  3582. "_enableWrapText": true,
  3583. "_N$file": {
  3584. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  3585. },
  3586. "_isSystemFontUsed": false,
  3587. "_spacingX": 0,
  3588. "_batchAsBitmap": false,
  3589. "_styleFlags": 0,
  3590. "_underlineHeight": 0,
  3591. "_N$horizontalAlign": 1,
  3592. "_N$verticalAlign": 1,
  3593. "_N$fontFamily": "Arial",
  3594. "_N$overflow": 0,
  3595. "_N$cacheMode": 0,
  3596. "_id": ""
  3597. },
  3598. {
  3599. "__type__": "cc.LabelOutline",
  3600. "_name": "",
  3601. "_objFlags": 0,
  3602. "node": {
  3603. "__id__": 93
  3604. },
  3605. "_enabled": true,
  3606. "_color": {
  3607. "__type__": "cc.Color",
  3608. "r": 8,
  3609. "g": 5,
  3610. "b": 5,
  3611. "a": 255
  3612. },
  3613. "_width": 2,
  3614. "_id": ""
  3615. },
  3616. {
  3617. "__type__": "cc.PrefabInfo",
  3618. "root": {
  3619. "__id__": 5
  3620. },
  3621. "asset": null,
  3622. "fileId": "88L8nFERJCpb1Q8OQNsn1G",
  3623. "sync": false
  3624. },
  3625. {
  3626. "__type__": "cc.Sprite",
  3627. "_name": "",
  3628. "_objFlags": 0,
  3629. "node": {
  3630. "__id__": 92
  3631. },
  3632. "_enabled": true,
  3633. "_materials": [
  3634. {
  3635. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3636. }
  3637. ],
  3638. "_srcBlendFactor": 770,
  3639. "_dstBlendFactor": 771,
  3640. "_spriteFrame": {
  3641. "__uuid__": "5822059a-8a96-4510-b4de-7adf1113f361"
  3642. },
  3643. "_type": 1,
  3644. "_sizeMode": 0,
  3645. "_fillType": 0,
  3646. "_fillCenter": {
  3647. "__type__": "cc.Vec2",
  3648. "x": 0,
  3649. "y": 0
  3650. },
  3651. "_fillStart": 0,
  3652. "_fillRange": 0,
  3653. "_isTrimmedMode": true,
  3654. "_atlas": null,
  3655. "_id": ""
  3656. },
  3657. {
  3658. "__type__": "cc.PrefabInfo",
  3659. "root": {
  3660. "__id__": 5
  3661. },
  3662. "asset": null,
  3663. "fileId": "9aB6vWbdVPvKygWPwWu/MK",
  3664. "sync": false
  3665. },
  3666. {
  3667. "__type__": "cc.Node",
  3668. "_name": "New Label",
  3669. "_objFlags": 0,
  3670. "_parent": {
  3671. "__id__": 73
  3672. },
  3673. "_children": [],
  3674. "_active": true,
  3675. "_components": [
  3676. {
  3677. "__id__": 100
  3678. },
  3679. {
  3680. "__id__": 101
  3681. }
  3682. ],
  3683. "_prefab": {
  3684. "__id__": 102
  3685. },
  3686. "_opacity": 255,
  3687. "_color": {
  3688. "__type__": "cc.Color",
  3689. "r": 75,
  3690. "g": 43,
  3691. "b": 0,
  3692. "a": 255
  3693. },
  3694. "_contentSize": {
  3695. "__type__": "cc.Size",
  3696. "width": 132.5,
  3697. "height": 37.8
  3698. },
  3699. "_anchorPoint": {
  3700. "__type__": "cc.Vec2",
  3701. "x": 0.5,
  3702. "y": 0.5
  3703. },
  3704. "_trs": {
  3705. "__type__": "TypedArray",
  3706. "ctor": "Float64Array",
  3707. "array": [
  3708. 0,
  3709. -68.557,
  3710. 0,
  3711. 0,
  3712. 0,
  3713. 0,
  3714. 1,
  3715. 1,
  3716. 1,
  3717. 1
  3718. ]
  3719. },
  3720. "_eulerAngles": {
  3721. "__type__": "cc.Vec3",
  3722. "x": 0,
  3723. "y": 0,
  3724. "z": 0
  3725. },
  3726. "_skewX": 0,
  3727. "_skewY": 0,
  3728. "_is3DNode": false,
  3729. "_groupIndex": 0,
  3730. "groupIndex": 0,
  3731. "_id": ""
  3732. },
  3733. {
  3734. "__type__": "cc.Label",
  3735. "_name": "",
  3736. "_objFlags": 0,
  3737. "node": {
  3738. "__id__": 99
  3739. },
  3740. "_enabled": true,
  3741. "_materials": [
  3742. {
  3743. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3744. }
  3745. ],
  3746. "_srcBlendFactor": 770,
  3747. "_dstBlendFactor": 771,
  3748. "_string": "任选道具1件",
  3749. "_N$string": "任选道具1件",
  3750. "_fontSize": 25,
  3751. "_lineHeight": 30,
  3752. "_enableWrapText": true,
  3753. "_N$file": {
  3754. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  3755. },
  3756. "_isSystemFontUsed": false,
  3757. "_spacingX": 0,
  3758. "_batchAsBitmap": false,
  3759. "_styleFlags": 0,
  3760. "_underlineHeight": 0,
  3761. "_N$horizontalAlign": 1,
  3762. "_N$verticalAlign": 1,
  3763. "_N$fontFamily": "Arial",
  3764. "_N$overflow": 0,
  3765. "_N$cacheMode": 0,
  3766. "_id": ""
  3767. },
  3768. {
  3769. "__type__": "cc.LabelOutline",
  3770. "_name": "",
  3771. "_objFlags": 0,
  3772. "node": {
  3773. "__id__": 99
  3774. },
  3775. "_enabled": false,
  3776. "_color": {
  3777. "__type__": "cc.Color",
  3778. "r": 8,
  3779. "g": 5,
  3780. "b": 5,
  3781. "a": 255
  3782. },
  3783. "_width": 2,
  3784. "_id": ""
  3785. },
  3786. {
  3787. "__type__": "cc.PrefabInfo",
  3788. "root": {
  3789. "__id__": 5
  3790. },
  3791. "asset": null,
  3792. "fileId": "2bn31EsaFIuL0w4uJDEDj0",
  3793. "sync": false
  3794. },
  3795. {
  3796. "__type__": "cc.Node",
  3797. "_name": "good_item",
  3798. "_objFlags": 0,
  3799. "_parent": {
  3800. "__id__": 73
  3801. },
  3802. "_children": [
  3803. {
  3804. "__id__": 104
  3805. },
  3806. {
  3807. "__id__": 107
  3808. },
  3809. {
  3810. "__id__": 124
  3811. }
  3812. ],
  3813. "_active": true,
  3814. "_components": [
  3815. {
  3816. "__id__": 127
  3817. },
  3818. {
  3819. "__id__": 129
  3820. }
  3821. ],
  3822. "_prefab": {
  3823. "__id__": 130
  3824. },
  3825. "_opacity": 255,
  3826. "_color": {
  3827. "__type__": "cc.Color",
  3828. "r": 252,
  3829. "g": 252,
  3830. "b": 252,
  3831. "a": 255
  3832. },
  3833. "_contentSize": {
  3834. "__type__": "cc.Size",
  3835. "width": 86,
  3836. "height": 86
  3837. },
  3838. "_anchorPoint": {
  3839. "__type__": "cc.Vec2",
  3840. "x": 0.5,
  3841. "y": 0.5
  3842. },
  3843. "_trs": {
  3844. "__type__": "TypedArray",
  3845. "ctor": "Float64Array",
  3846. "array": [
  3847. 0,
  3848. 2.4840000000000018,
  3849. 0,
  3850. 0,
  3851. 0,
  3852. 0,
  3853. 1,
  3854. 1,
  3855. 1,
  3856. 0
  3857. ]
  3858. },
  3859. "_eulerAngles": {
  3860. "__type__": "cc.Vec3",
  3861. "x": 0,
  3862. "y": 0,
  3863. "z": 0
  3864. },
  3865. "_skewX": 0,
  3866. "_skewY": 0,
  3867. "_is3DNode": false,
  3868. "_groupIndex": 0,
  3869. "groupIndex": 0,
  3870. "_id": ""
  3871. },
  3872. {
  3873. "__type__": "cc.Node",
  3874. "_name": "4",
  3875. "_objFlags": 0,
  3876. "_parent": {
  3877. "__id__": 103
  3878. },
  3879. "_children": [],
  3880. "_active": true,
  3881. "_components": [
  3882. {
  3883. "__id__": 105
  3884. }
  3885. ],
  3886. "_prefab": {
  3887. "__id__": 106
  3888. },
  3889. "_opacity": 255,
  3890. "_color": {
  3891. "__type__": "cc.Color",
  3892. "r": 255,
  3893. "g": 255,
  3894. "b": 255,
  3895. "a": 255
  3896. },
  3897. "_contentSize": {
  3898. "__type__": "cc.Size",
  3899. "width": 86,
  3900. "height": 86
  3901. },
  3902. "_anchorPoint": {
  3903. "__type__": "cc.Vec2",
  3904. "x": 0.5,
  3905. "y": 0.5
  3906. },
  3907. "_trs": {
  3908. "__type__": "TypedArray",
  3909. "ctor": "Float64Array",
  3910. "array": [
  3911. 0,
  3912. 0,
  3913. 0,
  3914. 0,
  3915. 0,
  3916. 0,
  3917. 1,
  3918. 1,
  3919. 1,
  3920. 1
  3921. ]
  3922. },
  3923. "_eulerAngles": {
  3924. "__type__": "cc.Vec3",
  3925. "x": 0,
  3926. "y": 0,
  3927. "z": 0
  3928. },
  3929. "_skewX": 0,
  3930. "_skewY": 0,
  3931. "_is3DNode": false,
  3932. "_groupIndex": 0,
  3933. "groupIndex": 0,
  3934. "_id": ""
  3935. },
  3936. {
  3937. "__type__": "cc.Sprite",
  3938. "_name": "",
  3939. "_objFlags": 0,
  3940. "node": {
  3941. "__id__": 104
  3942. },
  3943. "_enabled": true,
  3944. "_materials": [
  3945. {
  3946. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3947. }
  3948. ],
  3949. "_srcBlendFactor": 770,
  3950. "_dstBlendFactor": 771,
  3951. "_spriteFrame": {
  3952. "__uuid__": "78562430-f154-4a16-914a-8c84c69f9cce"
  3953. },
  3954. "_type": 0,
  3955. "_sizeMode": 1,
  3956. "_fillType": 0,
  3957. "_fillCenter": {
  3958. "__type__": "cc.Vec2",
  3959. "x": 0,
  3960. "y": 0
  3961. },
  3962. "_fillStart": 0,
  3963. "_fillRange": 0,
  3964. "_isTrimmedMode": true,
  3965. "_atlas": null,
  3966. "_id": ""
  3967. },
  3968. {
  3969. "__type__": "cc.PrefabInfo",
  3970. "root": {
  3971. "__id__": 103
  3972. },
  3973. "asset": {
  3974. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  3975. },
  3976. "fileId": "64Iw8HLn1Dnbr6M1yZIERi",
  3977. "sync": false
  3978. },
  3979. {
  3980. "__type__": "cc.Node",
  3981. "_name": "New Node",
  3982. "_objFlags": 0,
  3983. "_parent": {
  3984. "__id__": 103
  3985. },
  3986. "_children": [
  3987. {
  3988. "__id__": 108
  3989. },
  3990. {
  3991. "__id__": 111
  3992. },
  3993. {
  3994. "__id__": 117
  3995. },
  3996. {
  3997. "__id__": 120
  3998. }
  3999. ],
  4000. "_active": true,
  4001. "_components": [],
  4002. "_prefab": {
  4003. "__id__": 123
  4004. },
  4005. "_opacity": 255,
  4006. "_color": {
  4007. "__type__": "cc.Color",
  4008. "r": 255,
  4009. "g": 255,
  4010. "b": 255,
  4011. "a": 255
  4012. },
  4013. "_contentSize": {
  4014. "__type__": "cc.Size",
  4015. "width": 80,
  4016. "height": 80
  4017. },
  4018. "_anchorPoint": {
  4019. "__type__": "cc.Vec2",
  4020. "x": 0.5,
  4021. "y": 0.5
  4022. },
  4023. "_trs": {
  4024. "__type__": "TypedArray",
  4025. "ctor": "Float64Array",
  4026. "array": [
  4027. 0,
  4028. 0,
  4029. 0,
  4030. 0,
  4031. 0,
  4032. 0,
  4033. 1,
  4034. 1,
  4035. 1,
  4036. 1
  4037. ]
  4038. },
  4039. "_eulerAngles": {
  4040. "__type__": "cc.Vec3",
  4041. "x": 0,
  4042. "y": 0,
  4043. "z": 0
  4044. },
  4045. "_skewX": 0,
  4046. "_skewY": 0,
  4047. "_is3DNode": false,
  4048. "_groupIndex": 0,
  4049. "groupIndex": 0,
  4050. "_id": ""
  4051. },
  4052. {
  4053. "__type__": "cc.Node",
  4054. "_name": "New Sprite",
  4055. "_objFlags": 0,
  4056. "_parent": {
  4057. "__id__": 107
  4058. },
  4059. "_children": [],
  4060. "_active": true,
  4061. "_components": [
  4062. {
  4063. "__id__": 109
  4064. }
  4065. ],
  4066. "_prefab": {
  4067. "__id__": 110
  4068. },
  4069. "_opacity": 255,
  4070. "_color": {
  4071. "__type__": "cc.Color",
  4072. "r": 255,
  4073. "g": 255,
  4074. "b": 255,
  4075. "a": 255
  4076. },
  4077. "_contentSize": {
  4078. "__type__": "cc.Size",
  4079. "width": 62,
  4080. "height": 65
  4081. },
  4082. "_anchorPoint": {
  4083. "__type__": "cc.Vec2",
  4084. "x": 0.5,
  4085. "y": 0.5
  4086. },
  4087. "_trs": {
  4088. "__type__": "TypedArray",
  4089. "ctor": "Float64Array",
  4090. "array": [
  4091. 0,
  4092. 0,
  4093. 0,
  4094. 0,
  4095. 0,
  4096. 0,
  4097. 1,
  4098. 1,
  4099. 1,
  4100. 1
  4101. ]
  4102. },
  4103. "_eulerAngles": {
  4104. "__type__": "cc.Vec3",
  4105. "x": 0,
  4106. "y": 0,
  4107. "z": 0
  4108. },
  4109. "_skewX": 0,
  4110. "_skewY": 0,
  4111. "_is3DNode": false,
  4112. "_groupIndex": 0,
  4113. "groupIndex": 0,
  4114. "_id": ""
  4115. },
  4116. {
  4117. "__type__": "cc.Sprite",
  4118. "_name": "",
  4119. "_objFlags": 0,
  4120. "node": {
  4121. "__id__": 108
  4122. },
  4123. "_enabled": true,
  4124. "_materials": [
  4125. {
  4126. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4127. }
  4128. ],
  4129. "_srcBlendFactor": 770,
  4130. "_dstBlendFactor": 771,
  4131. "_spriteFrame": null,
  4132. "_type": 0,
  4133. "_sizeMode": 1,
  4134. "_fillType": 0,
  4135. "_fillCenter": {
  4136. "__type__": "cc.Vec2",
  4137. "x": 0,
  4138. "y": 0
  4139. },
  4140. "_fillStart": 0,
  4141. "_fillRange": 0,
  4142. "_isTrimmedMode": true,
  4143. "_atlas": null,
  4144. "_id": ""
  4145. },
  4146. {
  4147. "__type__": "cc.PrefabInfo",
  4148. "root": {
  4149. "__id__": 103
  4150. },
  4151. "asset": {
  4152. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  4153. },
  4154. "fileId": "0fiCn4IjZAZ6xM0YnwQFIH",
  4155. "sync": false
  4156. },
  4157. {
  4158. "__type__": "cc.Node",
  4159. "_name": "New Node",
  4160. "_objFlags": 0,
  4161. "_parent": {
  4162. "__id__": 107
  4163. },
  4164. "_children": [
  4165. {
  4166. "__id__": 112
  4167. }
  4168. ],
  4169. "_active": true,
  4170. "_components": [],
  4171. "_prefab": {
  4172. "__id__": 116
  4173. },
  4174. "_opacity": 255,
  4175. "_color": {
  4176. "__type__": "cc.Color",
  4177. "r": 255,
  4178. "g": 255,
  4179. "b": 255,
  4180. "a": 255
  4181. },
  4182. "_contentSize": {
  4183. "__type__": "cc.Size",
  4184. "width": 0,
  4185. "height": 0
  4186. },
  4187. "_anchorPoint": {
  4188. "__type__": "cc.Vec2",
  4189. "x": 0.5,
  4190. "y": 0.5
  4191. },
  4192. "_trs": {
  4193. "__type__": "TypedArray",
  4194. "ctor": "Float64Array",
  4195. "array": [
  4196. -37.223,
  4197. 27.39,
  4198. 0,
  4199. 0,
  4200. 0,
  4201. 0,
  4202. 1,
  4203. 1,
  4204. 1,
  4205. 1
  4206. ]
  4207. },
  4208. "_eulerAngles": {
  4209. "__type__": "cc.Vec3",
  4210. "x": 0,
  4211. "y": 0,
  4212. "z": 0
  4213. },
  4214. "_skewX": 0,
  4215. "_skewY": 0,
  4216. "_is3DNode": false,
  4217. "_groupIndex": 0,
  4218. "groupIndex": 0,
  4219. "_id": ""
  4220. },
  4221. {
  4222. "__type__": "cc.Node",
  4223. "_name": "count",
  4224. "_objFlags": 0,
  4225. "_parent": {
  4226. "__id__": 111
  4227. },
  4228. "_children": [],
  4229. "_active": true,
  4230. "_components": [
  4231. {
  4232. "__id__": 113
  4233. },
  4234. {
  4235. "__id__": 114
  4236. }
  4237. ],
  4238. "_prefab": {
  4239. "__id__": 115
  4240. },
  4241. "_opacity": 255,
  4242. "_color": {
  4243. "__type__": "cc.Color",
  4244. "r": 255,
  4245. "g": 255,
  4246. "b": 255,
  4247. "a": 255
  4248. },
  4249. "_contentSize": {
  4250. "__type__": "cc.Size",
  4251. "width": 4,
  4252. "height": 29.2
  4253. },
  4254. "_anchorPoint": {
  4255. "__type__": "cc.Vec2",
  4256. "x": 0,
  4257. "y": 0.5
  4258. },
  4259. "_trs": {
  4260. "__type__": "TypedArray",
  4261. "ctor": "Float64Array",
  4262. "array": [
  4263. 0,
  4264. 0,
  4265. 0,
  4266. 0,
  4267. 0,
  4268. 0,
  4269. 1,
  4270. 1,
  4271. 1,
  4272. 1
  4273. ]
  4274. },
  4275. "_eulerAngles": {
  4276. "__type__": "cc.Vec3",
  4277. "x": 0,
  4278. "y": 0,
  4279. "z": 0
  4280. },
  4281. "_skewX": 0,
  4282. "_skewY": 0,
  4283. "_is3DNode": false,
  4284. "_groupIndex": 0,
  4285. "groupIndex": 0,
  4286. "_id": ""
  4287. },
  4288. {
  4289. "__type__": "cc.Label",
  4290. "_name": "",
  4291. "_objFlags": 0,
  4292. "node": {
  4293. "__id__": 112
  4294. },
  4295. "_enabled": true,
  4296. "_materials": [
  4297. {
  4298. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4299. }
  4300. ],
  4301. "_srcBlendFactor": 770,
  4302. "_dstBlendFactor": 771,
  4303. "_string": "",
  4304. "_N$string": "",
  4305. "_fontSize": 20,
  4306. "_lineHeight": 0,
  4307. "_enableWrapText": true,
  4308. "_N$file": {
  4309. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  4310. },
  4311. "_isSystemFontUsed": false,
  4312. "_spacingX": 0,
  4313. "_batchAsBitmap": false,
  4314. "_styleFlags": 0,
  4315. "_underlineHeight": 0,
  4316. "_N$horizontalAlign": 1,
  4317. "_N$verticalAlign": 1,
  4318. "_N$fontFamily": "Arial",
  4319. "_N$overflow": 0,
  4320. "_N$cacheMode": 0,
  4321. "_id": ""
  4322. },
  4323. {
  4324. "__type__": "cc.LabelOutline",
  4325. "_name": "",
  4326. "_objFlags": 0,
  4327. "node": {
  4328. "__id__": 112
  4329. },
  4330. "_enabled": true,
  4331. "_color": {
  4332. "__type__": "cc.Color",
  4333. "r": 75,
  4334. "g": 43,
  4335. "b": 0,
  4336. "a": 255
  4337. },
  4338. "_width": 2,
  4339. "_id": ""
  4340. },
  4341. {
  4342. "__type__": "cc.PrefabInfo",
  4343. "root": {
  4344. "__id__": 103
  4345. },
  4346. "asset": {
  4347. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  4348. },
  4349. "fileId": "e83tuxOmJC1KlttRdQUyju",
  4350. "sync": false
  4351. },
  4352. {
  4353. "__type__": "cc.PrefabInfo",
  4354. "root": {
  4355. "__id__": 103
  4356. },
  4357. "asset": {
  4358. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  4359. },
  4360. "fileId": "f441WfffNC/KdXY8SHwgpW",
  4361. "sync": false
  4362. },
  4363. {
  4364. "__type__": "cc.Node",
  4365. "_name": "New Node",
  4366. "_objFlags": 0,
  4367. "_parent": {
  4368. "__id__": 107
  4369. },
  4370. "_children": [],
  4371. "_active": true,
  4372. "_components": [
  4373. {
  4374. "__id__": 118
  4375. }
  4376. ],
  4377. "_prefab": {
  4378. "__id__": 119
  4379. },
  4380. "_opacity": 255,
  4381. "_color": {
  4382. "__type__": "cc.Color",
  4383. "r": 255,
  4384. "g": 255,
  4385. "b": 255,
  4386. "a": 255
  4387. },
  4388. "_contentSize": {
  4389. "__type__": "cc.Size",
  4390. "width": 20,
  4391. "height": 30
  4392. },
  4393. "_anchorPoint": {
  4394. "__type__": "cc.Vec2",
  4395. "x": 0.5,
  4396. "y": 0.5
  4397. },
  4398. "_trs": {
  4399. "__type__": "TypedArray",
  4400. "ctor": "Float64Array",
  4401. "array": [
  4402. 0,
  4403. -33.29,
  4404. 0,
  4405. 0,
  4406. 0,
  4407. 0,
  4408. 1,
  4409. 0.8,
  4410. 0.8,
  4411. 1
  4412. ]
  4413. },
  4414. "_eulerAngles": {
  4415. "__type__": "cc.Vec3",
  4416. "x": 0,
  4417. "y": 0,
  4418. "z": 0
  4419. },
  4420. "_skewX": 0,
  4421. "_skewY": 0,
  4422. "_is3DNode": false,
  4423. "_groupIndex": 0,
  4424. "groupIndex": 0,
  4425. "_id": ""
  4426. },
  4427. {
  4428. "__type__": "cc.Layout",
  4429. "_name": "",
  4430. "_objFlags": 0,
  4431. "node": {
  4432. "__id__": 117
  4433. },
  4434. "_enabled": true,
  4435. "_layoutSize": {
  4436. "__type__": "cc.Size",
  4437. "width": 20,
  4438. "height": 30
  4439. },
  4440. "_resize": 1,
  4441. "_N$layoutType": 1,
  4442. "_N$cellSize": {
  4443. "__type__": "cc.Size",
  4444. "width": 40,
  4445. "height": 40
  4446. },
  4447. "_N$startAxis": 0,
  4448. "_N$paddingLeft": 0,
  4449. "_N$paddingRight": 0,
  4450. "_N$paddingTop": 0,
  4451. "_N$paddingBottom": 0,
  4452. "_N$spacingX": -10,
  4453. "_N$spacingY": 0,
  4454. "_N$verticalDirection": 1,
  4455. "_N$horizontalDirection": 0,
  4456. "_N$affectedByScale": false,
  4457. "_id": ""
  4458. },
  4459. {
  4460. "__type__": "cc.PrefabInfo",
  4461. "root": {
  4462. "__id__": 103
  4463. },
  4464. "asset": {
  4465. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  4466. },
  4467. "fileId": "82RPBTVEFLp4ypNusQ/w5R",
  4468. "sync": false
  4469. },
  4470. {
  4471. "__type__": "cc.Node",
  4472. "_name": "contrast",
  4473. "_objFlags": 0,
  4474. "_parent": {
  4475. "__id__": 107
  4476. },
  4477. "_children": [],
  4478. "_active": false,
  4479. "_components": [
  4480. {
  4481. "__id__": 121
  4482. }
  4483. ],
  4484. "_prefab": {
  4485. "__id__": 122
  4486. },
  4487. "_opacity": 255,
  4488. "_color": {
  4489. "__type__": "cc.Color",
  4490. "r": 120,
  4491. "g": 9,
  4492. "b": 9,
  4493. "a": 255
  4494. },
  4495. "_contentSize": {
  4496. "__type__": "cc.Size",
  4497. "width": 22.81,
  4498. "height": 25.2
  4499. },
  4500. "_anchorPoint": {
  4501. "__type__": "cc.Vec2",
  4502. "x": 0.5,
  4503. "y": 0.5
  4504. },
  4505. "_trs": {
  4506. "__type__": "TypedArray",
  4507. "ctor": "Float64Array",
  4508. "array": [
  4509. 0,
  4510. -54.61,
  4511. 0,
  4512. 0,
  4513. 0,
  4514. 0,
  4515. 1,
  4516. 1,
  4517. 1,
  4518. 1
  4519. ]
  4520. },
  4521. "_eulerAngles": {
  4522. "__type__": "cc.Vec3",
  4523. "x": 0,
  4524. "y": 0,
  4525. "z": 0
  4526. },
  4527. "_skewX": 0,
  4528. "_skewY": 0,
  4529. "_is3DNode": false,
  4530. "_groupIndex": 0,
  4531. "groupIndex": 0,
  4532. "_id": ""
  4533. },
  4534. {
  4535. "__type__": "cc.Label",
  4536. "_name": "",
  4537. "_objFlags": 0,
  4538. "node": {
  4539. "__id__": 120
  4540. },
  4541. "_enabled": true,
  4542. "_materials": [
  4543. {
  4544. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4545. }
  4546. ],
  4547. "_srcBlendFactor": 770,
  4548. "_dstBlendFactor": 771,
  4549. "_string": "1/1",
  4550. "_N$string": "1/1",
  4551. "_fontSize": 20,
  4552. "_lineHeight": 0,
  4553. "_enableWrapText": true,
  4554. "_N$file": {
  4555. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  4556. },
  4557. "_isSystemFontUsed": false,
  4558. "_spacingX": 0,
  4559. "_batchAsBitmap": false,
  4560. "_styleFlags": 0,
  4561. "_underlineHeight": 0,
  4562. "_N$horizontalAlign": 1,
  4563. "_N$verticalAlign": 1,
  4564. "_N$fontFamily": "Arial",
  4565. "_N$overflow": 0,
  4566. "_N$cacheMode": 0,
  4567. "_id": ""
  4568. },
  4569. {
  4570. "__type__": "cc.PrefabInfo",
  4571. "root": {
  4572. "__id__": 103
  4573. },
  4574. "asset": {
  4575. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  4576. },
  4577. "fileId": "bazDvO73hA9KDDlkW5093G",
  4578. "sync": false
  4579. },
  4580. {
  4581. "__type__": "cc.PrefabInfo",
  4582. "root": {
  4583. "__id__": 103
  4584. },
  4585. "asset": {
  4586. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  4587. },
  4588. "fileId": "28C/W/+vtLZoTBp1VfjsKb",
  4589. "sync": false
  4590. },
  4591. {
  4592. "__type__": "cc.Node",
  4593. "_name": "New Sprite",
  4594. "_objFlags": 0,
  4595. "_parent": {
  4596. "__id__": 103
  4597. },
  4598. "_children": [],
  4599. "_active": false,
  4600. "_components": [
  4601. {
  4602. "__id__": 125
  4603. }
  4604. ],
  4605. "_prefab": {
  4606. "__id__": 126
  4607. },
  4608. "_opacity": 255,
  4609. "_color": {
  4610. "__type__": "cc.Color",
  4611. "r": 255,
  4612. "g": 255,
  4613. "b": 255,
  4614. "a": 255
  4615. },
  4616. "_contentSize": {
  4617. "__type__": "cc.Size",
  4618. "width": 92,
  4619. "height": 92
  4620. },
  4621. "_anchorPoint": {
  4622. "__type__": "cc.Vec2",
  4623. "x": 0.5,
  4624. "y": 0.5
  4625. },
  4626. "_trs": {
  4627. "__type__": "TypedArray",
  4628. "ctor": "Float64Array",
  4629. "array": [
  4630. 0,
  4631. 0,
  4632. 0,
  4633. 0,
  4634. 0,
  4635. 0,
  4636. 1,
  4637. 1,
  4638. 1,
  4639. 1
  4640. ]
  4641. },
  4642. "_eulerAngles": {
  4643. "__type__": "cc.Vec3",
  4644. "x": 0,
  4645. "y": 0,
  4646. "z": 0
  4647. },
  4648. "_skewX": 0,
  4649. "_skewY": 0,
  4650. "_is3DNode": false,
  4651. "_groupIndex": 0,
  4652. "groupIndex": 0,
  4653. "_id": ""
  4654. },
  4655. {
  4656. "__type__": "cc.Sprite",
  4657. "_name": "",
  4658. "_objFlags": 0,
  4659. "node": {
  4660. "__id__": 124
  4661. },
  4662. "_enabled": true,
  4663. "_materials": [
  4664. {
  4665. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4666. }
  4667. ],
  4668. "_srcBlendFactor": 770,
  4669. "_dstBlendFactor": 771,
  4670. "_spriteFrame": {
  4671. "__uuid__": "200d6ab0-1dc2-4bd2-b609-b86a6b5bc179"
  4672. },
  4673. "_type": 1,
  4674. "_sizeMode": 1,
  4675. "_fillType": 0,
  4676. "_fillCenter": {
  4677. "__type__": "cc.Vec2",
  4678. "x": 0,
  4679. "y": 0
  4680. },
  4681. "_fillStart": 0,
  4682. "_fillRange": 0,
  4683. "_isTrimmedMode": true,
  4684. "_atlas": null,
  4685. "_id": ""
  4686. },
  4687. {
  4688. "__type__": "cc.PrefabInfo",
  4689. "root": {
  4690. "__id__": 103
  4691. },
  4692. "asset": {
  4693. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  4694. },
  4695. "fileId": "56cKJC6DBGB657MRpFNdru",
  4696. "sync": false
  4697. },
  4698. {
  4699. "__type__": "cc.Button",
  4700. "_name": "",
  4701. "_objFlags": 0,
  4702. "node": {
  4703. "__id__": 103
  4704. },
  4705. "_enabled": true,
  4706. "_normalMaterial": null,
  4707. "_grayMaterial": null,
  4708. "duration": 0.1,
  4709. "zoomScale": 0.9,
  4710. "clickEvents": [
  4711. {
  4712. "__id__": 128
  4713. }
  4714. ],
  4715. "_N$interactable": true,
  4716. "_N$enableAutoGrayEffect": false,
  4717. "_N$transition": 3,
  4718. "transition": 3,
  4719. "_N$normalColor": {
  4720. "__type__": "cc.Color",
  4721. "r": 255,
  4722. "g": 255,
  4723. "b": 255,
  4724. "a": 255
  4725. },
  4726. "_N$pressedColor": {
  4727. "__type__": "cc.Color",
  4728. "r": 211,
  4729. "g": 211,
  4730. "b": 211,
  4731. "a": 255
  4732. },
  4733. "pressedColor": {
  4734. "__type__": "cc.Color",
  4735. "r": 211,
  4736. "g": 211,
  4737. "b": 211,
  4738. "a": 255
  4739. },
  4740. "_N$hoverColor": {
  4741. "__type__": "cc.Color",
  4742. "r": 255,
  4743. "g": 255,
  4744. "b": 255,
  4745. "a": 255
  4746. },
  4747. "hoverColor": {
  4748. "__type__": "cc.Color",
  4749. "r": 255,
  4750. "g": 255,
  4751. "b": 255,
  4752. "a": 255
  4753. },
  4754. "_N$disabledColor": {
  4755. "__type__": "cc.Color",
  4756. "r": 124,
  4757. "g": 124,
  4758. "b": 124,
  4759. "a": 255
  4760. },
  4761. "_N$normalSprite": null,
  4762. "_N$pressedSprite": null,
  4763. "pressedSprite": null,
  4764. "_N$hoverSprite": null,
  4765. "hoverSprite": null,
  4766. "_N$disabledSprite": null,
  4767. "_N$target": null,
  4768. "_id": ""
  4769. },
  4770. {
  4771. "__type__": "cc.ClickEvent",
  4772. "target": {
  4773. "__id__": 103
  4774. },
  4775. "component": "",
  4776. "_componentId": "151bdPsfBdMXbh/WAVcXBV2",
  4777. "handler": "onclick",
  4778. "customEventData": ""
  4779. },
  4780. {
  4781. "__type__": "151bdPsfBdMXbh/WAVcXBV2",
  4782. "_name": "",
  4783. "_objFlags": 0,
  4784. "node": {
  4785. "__id__": 103
  4786. },
  4787. "_enabled": true,
  4788. "mBG": {
  4789. "__id__": 105
  4790. },
  4791. "mIcon": {
  4792. "__id__": 109
  4793. },
  4794. "mNullIcon": {
  4795. "__uuid__": "78562430-f154-4a16-914a-8c84c69f9cce"
  4796. },
  4797. "mBGs": [
  4798. {
  4799. "__uuid__": "398d12e8-d5aa-4d23-8322-d2f6cc12f71a"
  4800. },
  4801. {
  4802. "__uuid__": "e9d93117-eecf-4225-87d1-c65f2ab1a757"
  4803. },
  4804. {
  4805. "__uuid__": "947f2cb4-69c3-4ed6-97b1-35e22e263649"
  4806. },
  4807. {
  4808. "__uuid__": "1b48f361-8cb3-43e3-9bc3-1731ad9f6aa6"
  4809. },
  4810. {
  4811. "__uuid__": "e36b59c9-abab-49ea-ad4b-c20d73d6c2e9"
  4812. }
  4813. ],
  4814. "mNullNode": {
  4815. "__id__": 107
  4816. },
  4817. "mStarNode": {
  4818. "__id__": 117
  4819. },
  4820. "mStar": {
  4821. "__uuid__": "bbda706e-aa95-4e38-a4b2-74c3b9ec7c30"
  4822. },
  4823. "mLevel": {
  4824. "__id__": 113
  4825. },
  4826. "mContrast": {
  4827. "__id__": 121
  4828. },
  4829. "_id": ""
  4830. },
  4831. {
  4832. "__type__": "cc.PrefabInfo",
  4833. "root": {
  4834. "__id__": 103
  4835. },
  4836. "asset": {
  4837. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  4838. },
  4839. "fileId": "b1RW4NkqJE66BBdJ1sOLen",
  4840. "sync": false
  4841. },
  4842. {
  4843. "__type__": "cc.Node",
  4844. "_name": "New Label",
  4845. "_objFlags": 0,
  4846. "_parent": {
  4847. "__id__": 73
  4848. },
  4849. "_children": [],
  4850. "_active": true,
  4851. "_components": [
  4852. {
  4853. "__id__": 132
  4854. },
  4855. {
  4856. "__id__": 133
  4857. }
  4858. ],
  4859. "_prefab": {
  4860. "__id__": 134
  4861. },
  4862. "_opacity": 255,
  4863. "_color": {
  4864. "__type__": "cc.Color",
  4865. "r": 75,
  4866. "g": 43,
  4867. "b": 0,
  4868. "a": 255
  4869. },
  4870. "_contentSize": {
  4871. "__type__": "cc.Size",
  4872. "width": 105.68,
  4873. "height": 37.8
  4874. },
  4875. "_anchorPoint": {
  4876. "__type__": "cc.Vec2",
  4877. "x": 0.5,
  4878. "y": 0.5
  4879. },
  4880. "_trs": {
  4881. "__type__": "TypedArray",
  4882. "ctor": "Float64Array",
  4883. "array": [
  4884. 0,
  4885. -131.595,
  4886. 0,
  4887. 0,
  4888. 0,
  4889. 0,
  4890. 1,
  4891. 1,
  4892. 1,
  4893. 1
  4894. ]
  4895. },
  4896. "_eulerAngles": {
  4897. "__type__": "cc.Vec3",
  4898. "x": 0,
  4899. "y": 0,
  4900. "z": 0
  4901. },
  4902. "_skewX": 0,
  4903. "_skewY": 0,
  4904. "_is3DNode": false,
  4905. "_groupIndex": 0,
  4906. "groupIndex": 0,
  4907. "_id": ""
  4908. },
  4909. {
  4910. "__type__": "cc.Label",
  4911. "_name": "",
  4912. "_objFlags": 0,
  4913. "node": {
  4914. "__id__": 131
  4915. },
  4916. "_enabled": true,
  4917. "_materials": [
  4918. {
  4919. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4920. }
  4921. ],
  4922. "_srcBlendFactor": 770,
  4923. "_dstBlendFactor": 771,
  4924. "_string": "限购:0/1",
  4925. "_N$string": "限购:0/1",
  4926. "_fontSize": 25,
  4927. "_lineHeight": 30,
  4928. "_enableWrapText": true,
  4929. "_N$file": {
  4930. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  4931. },
  4932. "_isSystemFontUsed": false,
  4933. "_spacingX": 0,
  4934. "_batchAsBitmap": false,
  4935. "_styleFlags": 0,
  4936. "_underlineHeight": 0,
  4937. "_N$horizontalAlign": 1,
  4938. "_N$verticalAlign": 1,
  4939. "_N$fontFamily": "Arial",
  4940. "_N$overflow": 0,
  4941. "_N$cacheMode": 0,
  4942. "_id": ""
  4943. },
  4944. {
  4945. "__type__": "cc.LabelOutline",
  4946. "_name": "",
  4947. "_objFlags": 0,
  4948. "node": {
  4949. "__id__": 131
  4950. },
  4951. "_enabled": false,
  4952. "_color": {
  4953. "__type__": "cc.Color",
  4954. "r": 8,
  4955. "g": 5,
  4956. "b": 5,
  4957. "a": 255
  4958. },
  4959. "_width": 2,
  4960. "_id": ""
  4961. },
  4962. {
  4963. "__type__": "cc.PrefabInfo",
  4964. "root": {
  4965. "__id__": 5
  4966. },
  4967. "asset": null,
  4968. "fileId": "c429CyePZFr6cg2JrLUmOI",
  4969. "sync": false
  4970. },
  4971. {
  4972. "__type__": "cc.Sprite",
  4973. "_name": "",
  4974. "_objFlags": 0,
  4975. "node": {
  4976. "__id__": 73
  4977. },
  4978. "_enabled": true,
  4979. "_materials": [
  4980. {
  4981. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4982. }
  4983. ],
  4984. "_srcBlendFactor": 770,
  4985. "_dstBlendFactor": 771,
  4986. "_spriteFrame": {
  4987. "__uuid__": "17192a55-eaa7-444b-85ae-1218e1ec03a0"
  4988. },
  4989. "_type": 1,
  4990. "_sizeMode": 0,
  4991. "_fillType": 0,
  4992. "_fillCenter": {
  4993. "__type__": "cc.Vec2",
  4994. "x": 0,
  4995. "y": 0
  4996. },
  4997. "_fillStart": 0,
  4998. "_fillRange": 0,
  4999. "_isTrimmedMode": true,
  5000. "_atlas": null,
  5001. "_id": ""
  5002. },
  5003. {
  5004. "__type__": "cc.PrefabInfo",
  5005. "root": {
  5006. "__id__": 5
  5007. },
  5008. "asset": null,
  5009. "fileId": "a6q+jgURNI5rrvdCHfUiNr",
  5010. "sync": false
  5011. },
  5012. {
  5013. "__type__": "cc.Node",
  5014. "_name": "New Sprite",
  5015. "_objFlags": 0,
  5016. "_parent": {
  5017. "__id__": 8
  5018. },
  5019. "_children": [
  5020. {
  5021. "__id__": 138
  5022. },
  5023. {
  5024. "__id__": 142
  5025. },
  5026. {
  5027. "__id__": 146
  5028. },
  5029. {
  5030. "__id__": 149
  5031. },
  5032. {
  5033. "__id__": 152
  5034. },
  5035. {
  5036. "__id__": 156
  5037. },
  5038. {
  5039. "__id__": 163
  5040. },
  5041. {
  5042. "__id__": 167
  5043. },
  5044. {
  5045. "__id__": 195
  5046. }
  5047. ],
  5048. "_active": true,
  5049. "_components": [
  5050. {
  5051. "__id__": 199
  5052. }
  5053. ],
  5054. "_prefab": {
  5055. "__id__": 200
  5056. },
  5057. "_opacity": 255,
  5058. "_color": {
  5059. "__type__": "cc.Color",
  5060. "r": 255,
  5061. "g": 255,
  5062. "b": 255,
  5063. "a": 255
  5064. },
  5065. "_contentSize": {
  5066. "__type__": "cc.Size",
  5067. "width": 260,
  5068. "height": 450
  5069. },
  5070. "_anchorPoint": {
  5071. "__type__": "cc.Vec2",
  5072. "x": 0.5,
  5073. "y": 0.5
  5074. },
  5075. "_trs": {
  5076. "__type__": "TypedArray",
  5077. "ctor": "Float64Array",
  5078. "array": [
  5079. 270,
  5080. -15,
  5081. 0,
  5082. 0,
  5083. 0,
  5084. 0,
  5085. 1,
  5086. 1,
  5087. 1,
  5088. 1
  5089. ]
  5090. },
  5091. "_eulerAngles": {
  5092. "__type__": "cc.Vec3",
  5093. "x": 0,
  5094. "y": 0,
  5095. "z": 0
  5096. },
  5097. "_skewX": 0,
  5098. "_skewY": 0,
  5099. "_is3DNode": false,
  5100. "_groupIndex": 0,
  5101. "groupIndex": 0,
  5102. "_id": ""
  5103. },
  5104. {
  5105. "__type__": "cc.Node",
  5106. "_name": "New Label",
  5107. "_objFlags": 0,
  5108. "_parent": {
  5109. "__id__": 137
  5110. },
  5111. "_children": [],
  5112. "_active": true,
  5113. "_components": [
  5114. {
  5115. "__id__": 139
  5116. },
  5117. {
  5118. "__id__": 140
  5119. }
  5120. ],
  5121. "_prefab": {
  5122. "__id__": 141
  5123. },
  5124. "_opacity": 255,
  5125. "_color": {
  5126. "__type__": "cc.Color",
  5127. "r": 75,
  5128. "g": 43,
  5129. "b": 0,
  5130. "a": 255
  5131. },
  5132. "_contentSize": {
  5133. "__type__": "cc.Size",
  5134. "width": 175,
  5135. "height": 37.8
  5136. },
  5137. "_anchorPoint": {
  5138. "__type__": "cc.Vec2",
  5139. "x": 0.5,
  5140. "y": 0.5
  5141. },
  5142. "_trs": {
  5143. "__type__": "TypedArray",
  5144. "ctor": "Float64Array",
  5145. "array": [
  5146. 0,
  5147. 197.001,
  5148. 0,
  5149. 0,
  5150. 0,
  5151. 0,
  5152. 1,
  5153. 1,
  5154. 1,
  5155. 1
  5156. ]
  5157. },
  5158. "_eulerAngles": {
  5159. "__type__": "cc.Vec3",
  5160. "x": 0,
  5161. "y": 0,
  5162. "z": 0
  5163. },
  5164. "_skewX": 0,
  5165. "_skewY": 0,
  5166. "_is3DNode": false,
  5167. "_groupIndex": 0,
  5168. "groupIndex": 0,
  5169. "_id": ""
  5170. },
  5171. {
  5172. "__type__": "cc.Label",
  5173. "_name": "",
  5174. "_objFlags": 0,
  5175. "node": {
  5176. "__id__": 138
  5177. },
  5178. "_enabled": true,
  5179. "_materials": [
  5180. {
  5181. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5182. }
  5183. ],
  5184. "_srcBlendFactor": 770,
  5185. "_dstBlendFactor": 771,
  5186. "_string": "英灵殿特别礼包",
  5187. "_N$string": "英灵殿特别礼包",
  5188. "_fontSize": 25,
  5189. "_lineHeight": 30,
  5190. "_enableWrapText": true,
  5191. "_N$file": {
  5192. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  5193. },
  5194. "_isSystemFontUsed": false,
  5195. "_spacingX": 0,
  5196. "_batchAsBitmap": false,
  5197. "_styleFlags": 0,
  5198. "_underlineHeight": 0,
  5199. "_N$horizontalAlign": 1,
  5200. "_N$verticalAlign": 1,
  5201. "_N$fontFamily": "Arial",
  5202. "_N$overflow": 0,
  5203. "_N$cacheMode": 0,
  5204. "_id": ""
  5205. },
  5206. {
  5207. "__type__": "cc.LabelOutline",
  5208. "_name": "",
  5209. "_objFlags": 0,
  5210. "node": {
  5211. "__id__": 138
  5212. },
  5213. "_enabled": false,
  5214. "_color": {
  5215. "__type__": "cc.Color",
  5216. "r": 8,
  5217. "g": 5,
  5218. "b": 5,
  5219. "a": 255
  5220. },
  5221. "_width": 2,
  5222. "_id": ""
  5223. },
  5224. {
  5225. "__type__": "cc.PrefabInfo",
  5226. "root": {
  5227. "__id__": 5
  5228. },
  5229. "asset": null,
  5230. "fileId": "faUdbvFm9KEbibO2hsvTcp",
  5231. "sync": false
  5232. },
  5233. {
  5234. "__type__": "cc.Node",
  5235. "_name": "New Label",
  5236. "_objFlags": 0,
  5237. "_parent": {
  5238. "__id__": 137
  5239. },
  5240. "_children": [],
  5241. "_active": true,
  5242. "_components": [
  5243. {
  5244. "__id__": 143
  5245. },
  5246. {
  5247. "__id__": 144
  5248. }
  5249. ],
  5250. "_prefab": {
  5251. "__id__": 145
  5252. },
  5253. "_opacity": 255,
  5254. "_color": {
  5255. "__type__": "cc.Color",
  5256. "r": 75,
  5257. "g": 43,
  5258. "b": 0,
  5259. "a": 255
  5260. },
  5261. "_contentSize": {
  5262. "__type__": "cc.Size",
  5263. "width": 100,
  5264. "height": 37.8
  5265. },
  5266. "_anchorPoint": {
  5267. "__type__": "cc.Vec2",
  5268. "x": 0.5,
  5269. "y": 0.5
  5270. },
  5271. "_trs": {
  5272. "__type__": "TypedArray",
  5273. "ctor": "Float64Array",
  5274. "array": [
  5275. 0,
  5276. 158.996,
  5277. 0,
  5278. 0,
  5279. 0,
  5280. 0,
  5281. 1,
  5282. 1,
  5283. 1,
  5284. 1
  5285. ]
  5286. },
  5287. "_eulerAngles": {
  5288. "__type__": "cc.Vec3",
  5289. "x": 0,
  5290. "y": 0,
  5291. "z": 0
  5292. },
  5293. "_skewX": 0,
  5294. "_skewY": 0,
  5295. "_is3DNode": false,
  5296. "_groupIndex": 0,
  5297. "groupIndex": 0,
  5298. "_id": ""
  5299. },
  5300. {
  5301. "__type__": "cc.Label",
  5302. "_name": "",
  5303. "_objFlags": 0,
  5304. "node": {
  5305. "__id__": 142
  5306. },
  5307. "_enabled": true,
  5308. "_materials": [
  5309. {
  5310. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5311. }
  5312. ],
  5313. "_srcBlendFactor": 770,
  5314. "_dstBlendFactor": 771,
  5315. "_string": "6天2小时",
  5316. "_N$string": "6天2小时",
  5317. "_fontSize": 25,
  5318. "_lineHeight": 30,
  5319. "_enableWrapText": true,
  5320. "_N$file": {
  5321. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  5322. },
  5323. "_isSystemFontUsed": false,
  5324. "_spacingX": 0,
  5325. "_batchAsBitmap": false,
  5326. "_styleFlags": 0,
  5327. "_underlineHeight": 0,
  5328. "_N$horizontalAlign": 1,
  5329. "_N$verticalAlign": 1,
  5330. "_N$fontFamily": "Arial",
  5331. "_N$overflow": 0,
  5332. "_N$cacheMode": 0,
  5333. "_id": ""
  5334. },
  5335. {
  5336. "__type__": "cc.LabelOutline",
  5337. "_name": "",
  5338. "_objFlags": 0,
  5339. "node": {
  5340. "__id__": 142
  5341. },
  5342. "_enabled": false,
  5343. "_color": {
  5344. "__type__": "cc.Color",
  5345. "r": 8,
  5346. "g": 5,
  5347. "b": 5,
  5348. "a": 255
  5349. },
  5350. "_width": 2,
  5351. "_id": ""
  5352. },
  5353. {
  5354. "__type__": "cc.PrefabInfo",
  5355. "root": {
  5356. "__id__": 5
  5357. },
  5358. "asset": null,
  5359. "fileId": "bcaH8Ucg1A8qaMUC/CSoxS",
  5360. "sync": false
  5361. },
  5362. {
  5363. "__type__": "cc.Node",
  5364. "_name": "New Sprite",
  5365. "_objFlags": 0,
  5366. "_parent": {
  5367. "__id__": 137
  5368. },
  5369. "_children": [],
  5370. "_active": true,
  5371. "_components": [
  5372. {
  5373. "__id__": 147
  5374. }
  5375. ],
  5376. "_prefab": {
  5377. "__id__": 148
  5378. },
  5379. "_opacity": 255,
  5380. "_color": {
  5381. "__type__": "cc.Color",
  5382. "r": 255,
  5383. "g": 255,
  5384. "b": 255,
  5385. "a": 255
  5386. },
  5387. "_contentSize": {
  5388. "__type__": "cc.Size",
  5389. "width": 200,
  5390. "height": 50
  5391. },
  5392. "_anchorPoint": {
  5393. "__type__": "cc.Vec2",
  5394. "x": 0.5,
  5395. "y": 0.5
  5396. },
  5397. "_trs": {
  5398. "__type__": "TypedArray",
  5399. "ctor": "Float64Array",
  5400. "array": [
  5401. 0,
  5402. 101.706,
  5403. 0,
  5404. 0,
  5405. 0,
  5406. 0,
  5407. 1,
  5408. 1,
  5409. 1,
  5410. 1
  5411. ]
  5412. },
  5413. "_eulerAngles": {
  5414. "__type__": "cc.Vec3",
  5415. "x": 0,
  5416. "y": 0,
  5417. "z": 0
  5418. },
  5419. "_skewX": 0,
  5420. "_skewY": 0,
  5421. "_is3DNode": false,
  5422. "_groupIndex": 0,
  5423. "groupIndex": 0,
  5424. "_id": ""
  5425. },
  5426. {
  5427. "__type__": "cc.Sprite",
  5428. "_name": "",
  5429. "_objFlags": 0,
  5430. "node": {
  5431. "__id__": 146
  5432. },
  5433. "_enabled": true,
  5434. "_materials": [
  5435. {
  5436. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5437. }
  5438. ],
  5439. "_srcBlendFactor": 770,
  5440. "_dstBlendFactor": 771,
  5441. "_spriteFrame": {
  5442. "__uuid__": "5822059a-8a96-4510-b4de-7adf1113f361"
  5443. },
  5444. "_type": 1,
  5445. "_sizeMode": 0,
  5446. "_fillType": 0,
  5447. "_fillCenter": {
  5448. "__type__": "cc.Vec2",
  5449. "x": 0,
  5450. "y": 0
  5451. },
  5452. "_fillStart": 0,
  5453. "_fillRange": 0,
  5454. "_isTrimmedMode": true,
  5455. "_atlas": null,
  5456. "_id": ""
  5457. },
  5458. {
  5459. "__type__": "cc.PrefabInfo",
  5460. "root": {
  5461. "__id__": 5
  5462. },
  5463. "asset": null,
  5464. "fileId": "4avVpbPpJFdLQfKL+kVrHm",
  5465. "sync": false
  5466. },
  5467. {
  5468. "__type__": "cc.Node",
  5469. "_name": "New Sprite",
  5470. "_objFlags": 0,
  5471. "_parent": {
  5472. "__id__": 137
  5473. },
  5474. "_children": [],
  5475. "_active": true,
  5476. "_components": [
  5477. {
  5478. "__id__": 150
  5479. }
  5480. ],
  5481. "_prefab": {
  5482. "__id__": 151
  5483. },
  5484. "_opacity": 255,
  5485. "_color": {
  5486. "__type__": "cc.Color",
  5487. "r": 255,
  5488. "g": 255,
  5489. "b": 255,
  5490. "a": 255
  5491. },
  5492. "_contentSize": {
  5493. "__type__": "cc.Size",
  5494. "width": 34,
  5495. "height": 36
  5496. },
  5497. "_anchorPoint": {
  5498. "__type__": "cc.Vec2",
  5499. "x": 0.5,
  5500. "y": 0.5
  5501. },
  5502. "_trs": {
  5503. "__type__": "TypedArray",
  5504. "ctor": "Float64Array",
  5505. "array": [
  5506. 46.524,
  5507. 100.482,
  5508. 0,
  5509. 0,
  5510. 0,
  5511. 0,
  5512. 1,
  5513. 1,
  5514. 1,
  5515. 2
  5516. ]
  5517. },
  5518. "_eulerAngles": {
  5519. "__type__": "cc.Vec3",
  5520. "x": 0,
  5521. "y": 0,
  5522. "z": 0
  5523. },
  5524. "_skewX": 0,
  5525. "_skewY": 0,
  5526. "_is3DNode": false,
  5527. "_groupIndex": 0,
  5528. "groupIndex": 0,
  5529. "_id": ""
  5530. },
  5531. {
  5532. "__type__": "cc.Sprite",
  5533. "_name": "",
  5534. "_objFlags": 0,
  5535. "node": {
  5536. "__id__": 149
  5537. },
  5538. "_enabled": true,
  5539. "_materials": [
  5540. {
  5541. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5542. }
  5543. ],
  5544. "_srcBlendFactor": 770,
  5545. "_dstBlendFactor": 771,
  5546. "_spriteFrame": {
  5547. "__uuid__": "dae832c8-f9be-4e46-b4ed-887ad820e9e4"
  5548. },
  5549. "_type": 0,
  5550. "_sizeMode": 1,
  5551. "_fillType": 0,
  5552. "_fillCenter": {
  5553. "__type__": "cc.Vec2",
  5554. "x": 0,
  5555. "y": 0
  5556. },
  5557. "_fillStart": 0,
  5558. "_fillRange": 0,
  5559. "_isTrimmedMode": true,
  5560. "_atlas": null,
  5561. "_id": ""
  5562. },
  5563. {
  5564. "__type__": "cc.PrefabInfo",
  5565. "root": {
  5566. "__id__": 5
  5567. },
  5568. "asset": null,
  5569. "fileId": "b2PUqR0B5N65q+8U6+VKhz",
  5570. "sync": false
  5571. },
  5572. {
  5573. "__type__": "cc.Node",
  5574. "_name": "New Label",
  5575. "_objFlags": 0,
  5576. "_parent": {
  5577. "__id__": 137
  5578. },
  5579. "_children": [],
  5580. "_active": true,
  5581. "_components": [
  5582. {
  5583. "__id__": 153
  5584. },
  5585. {
  5586. "__id__": 154
  5587. }
  5588. ],
  5589. "_prefab": {
  5590. "__id__": 155
  5591. },
  5592. "_opacity": 255,
  5593. "_color": {
  5594. "__type__": "cc.Color",
  5595. "r": 61,
  5596. "g": 255,
  5597. "b": 0,
  5598. "a": 255
  5599. },
  5600. "_contentSize": {
  5601. "__type__": "cc.Size",
  5602. "width": 56.5,
  5603. "height": 41.8
  5604. },
  5605. "_anchorPoint": {
  5606. "__type__": "cc.Vec2",
  5607. "x": 0.5,
  5608. "y": 0.5
  5609. },
  5610. "_trs": {
  5611. "__type__": "TypedArray",
  5612. "ctor": "Float64Array",
  5613. "array": [
  5614. -17.14,
  5615. 100.707,
  5616. 0,
  5617. 0,
  5618. 0,
  5619. 0,
  5620. 1,
  5621. 1,
  5622. 1,
  5623. 1
  5624. ]
  5625. },
  5626. "_eulerAngles": {
  5627. "__type__": "cc.Vec3",
  5628. "x": 0,
  5629. "y": 0,
  5630. "z": 0
  5631. },
  5632. "_skewX": 0,
  5633. "_skewY": 0,
  5634. "_is3DNode": false,
  5635. "_groupIndex": 0,
  5636. "groupIndex": 0,
  5637. "_id": ""
  5638. },
  5639. {
  5640. "__type__": "cc.Label",
  5641. "_name": "",
  5642. "_objFlags": 0,
  5643. "node": {
  5644. "__id__": 152
  5645. },
  5646. "_enabled": true,
  5647. "_materials": [
  5648. {
  5649. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5650. }
  5651. ],
  5652. "_srcBlendFactor": 770,
  5653. "_dstBlendFactor": 771,
  5654. "_string": "680",
  5655. "_N$string": "680",
  5656. "_fontSize": 35,
  5657. "_lineHeight": 30,
  5658. "_enableWrapText": true,
  5659. "_N$file": {
  5660. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  5661. },
  5662. "_isSystemFontUsed": false,
  5663. "_spacingX": 0,
  5664. "_batchAsBitmap": false,
  5665. "_styleFlags": 0,
  5666. "_underlineHeight": 0,
  5667. "_N$horizontalAlign": 1,
  5668. "_N$verticalAlign": 1,
  5669. "_N$fontFamily": "Arial",
  5670. "_N$overflow": 0,
  5671. "_N$cacheMode": 0,
  5672. "_id": ""
  5673. },
  5674. {
  5675. "__type__": "cc.LabelOutline",
  5676. "_name": "",
  5677. "_objFlags": 0,
  5678. "node": {
  5679. "__id__": 152
  5680. },
  5681. "_enabled": true,
  5682. "_color": {
  5683. "__type__": "cc.Color",
  5684. "r": 8,
  5685. "g": 5,
  5686. "b": 5,
  5687. "a": 255
  5688. },
  5689. "_width": 2,
  5690. "_id": ""
  5691. },
  5692. {
  5693. "__type__": "cc.PrefabInfo",
  5694. "root": {
  5695. "__id__": 5
  5696. },
  5697. "asset": null,
  5698. "fileId": "a3owGyQEJAKYR6Lvh+r3M0",
  5699. "sync": false
  5700. },
  5701. {
  5702. "__type__": "cc.Node",
  5703. "_name": "New Sprite",
  5704. "_objFlags": 0,
  5705. "_parent": {
  5706. "__id__": 137
  5707. },
  5708. "_children": [
  5709. {
  5710. "__id__": 157
  5711. }
  5712. ],
  5713. "_active": true,
  5714. "_components": [
  5715. {
  5716. "__id__": 161
  5717. }
  5718. ],
  5719. "_prefab": {
  5720. "__id__": 162
  5721. },
  5722. "_opacity": 255,
  5723. "_color": {
  5724. "__type__": "cc.Color",
  5725. "r": 255,
  5726. "g": 239,
  5727. "b": 122,
  5728. "a": 255
  5729. },
  5730. "_contentSize": {
  5731. "__type__": "cc.Size",
  5732. "width": 200,
  5733. "height": 52
  5734. },
  5735. "_anchorPoint": {
  5736. "__type__": "cc.Vec2",
  5737. "x": 0.5,
  5738. "y": 0.5
  5739. },
  5740. "_trs": {
  5741. "__type__": "TypedArray",
  5742. "ctor": "Float64Array",
  5743. "array": [
  5744. 0,
  5745. -185.874,
  5746. 0,
  5747. 0,
  5748. 0,
  5749. 0,
  5750. 1,
  5751. 1,
  5752. 1,
  5753. 1
  5754. ]
  5755. },
  5756. "_eulerAngles": {
  5757. "__type__": "cc.Vec3",
  5758. "x": 0,
  5759. "y": 0,
  5760. "z": 0
  5761. },
  5762. "_skewX": 0,
  5763. "_skewY": 0,
  5764. "_is3DNode": false,
  5765. "_groupIndex": 0,
  5766. "groupIndex": 0,
  5767. "_id": ""
  5768. },
  5769. {
  5770. "__type__": "cc.Node",
  5771. "_name": "New Label",
  5772. "_objFlags": 0,
  5773. "_parent": {
  5774. "__id__": 156
  5775. },
  5776. "_children": [],
  5777. "_active": true,
  5778. "_components": [
  5779. {
  5780. "__id__": 158
  5781. },
  5782. {
  5783. "__id__": 159
  5784. }
  5785. ],
  5786. "_prefab": {
  5787. "__id__": 160
  5788. },
  5789. "_opacity": 255,
  5790. "_color": {
  5791. "__type__": "cc.Color",
  5792. "r": 255,
  5793. "g": 255,
  5794. "b": 255,
  5795. "a": 255
  5796. },
  5797. "_contentSize": {
  5798. "__type__": "cc.Size",
  5799. "width": 54,
  5800. "height": 41.8
  5801. },
  5802. "_anchorPoint": {
  5803. "__type__": "cc.Vec2",
  5804. "x": 0.5,
  5805. "y": 0.5
  5806. },
  5807. "_trs": {
  5808. "__type__": "TypedArray",
  5809. "ctor": "Float64Array",
  5810. "array": [
  5811. 0,
  5812. -0.284,
  5813. 0,
  5814. 0,
  5815. 0,
  5816. 0,
  5817. 1,
  5818. 1,
  5819. 1,
  5820. 1
  5821. ]
  5822. },
  5823. "_eulerAngles": {
  5824. "__type__": "cc.Vec3",
  5825. "x": 0,
  5826. "y": 0,
  5827. "z": 0
  5828. },
  5829. "_skewX": 0,
  5830. "_skewY": 0,
  5831. "_is3DNode": false,
  5832. "_groupIndex": 0,
  5833. "groupIndex": 0,
  5834. "_id": ""
  5835. },
  5836. {
  5837. "__type__": "cc.Label",
  5838. "_name": "",
  5839. "_objFlags": 0,
  5840. "node": {
  5841. "__id__": 157
  5842. },
  5843. "_enabled": true,
  5844. "_materials": [
  5845. {
  5846. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5847. }
  5848. ],
  5849. "_srcBlendFactor": 770,
  5850. "_dstBlendFactor": 771,
  5851. "_string": "68元",
  5852. "_N$string": "68元",
  5853. "_fontSize": 25,
  5854. "_lineHeight": 30,
  5855. "_enableWrapText": true,
  5856. "_N$file": {
  5857. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  5858. },
  5859. "_isSystemFontUsed": false,
  5860. "_spacingX": 0,
  5861. "_batchAsBitmap": false,
  5862. "_styleFlags": 0,
  5863. "_underlineHeight": 0,
  5864. "_N$horizontalAlign": 1,
  5865. "_N$verticalAlign": 1,
  5866. "_N$fontFamily": "Arial",
  5867. "_N$overflow": 0,
  5868. "_N$cacheMode": 0,
  5869. "_id": ""
  5870. },
  5871. {
  5872. "__type__": "cc.LabelOutline",
  5873. "_name": "",
  5874. "_objFlags": 0,
  5875. "node": {
  5876. "__id__": 157
  5877. },
  5878. "_enabled": true,
  5879. "_color": {
  5880. "__type__": "cc.Color",
  5881. "r": 8,
  5882. "g": 5,
  5883. "b": 5,
  5884. "a": 255
  5885. },
  5886. "_width": 2,
  5887. "_id": ""
  5888. },
  5889. {
  5890. "__type__": "cc.PrefabInfo",
  5891. "root": {
  5892. "__id__": 5
  5893. },
  5894. "asset": null,
  5895. "fileId": "13GOOQvOlO2rIkWcka7YAt",
  5896. "sync": false
  5897. },
  5898. {
  5899. "__type__": "cc.Sprite",
  5900. "_name": "",
  5901. "_objFlags": 0,
  5902. "node": {
  5903. "__id__": 156
  5904. },
  5905. "_enabled": true,
  5906. "_materials": [
  5907. {
  5908. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5909. }
  5910. ],
  5911. "_srcBlendFactor": 770,
  5912. "_dstBlendFactor": 771,
  5913. "_spriteFrame": {
  5914. "__uuid__": "5822059a-8a96-4510-b4de-7adf1113f361"
  5915. },
  5916. "_type": 1,
  5917. "_sizeMode": 0,
  5918. "_fillType": 0,
  5919. "_fillCenter": {
  5920. "__type__": "cc.Vec2",
  5921. "x": 0,
  5922. "y": 0
  5923. },
  5924. "_fillStart": 0,
  5925. "_fillRange": 0,
  5926. "_isTrimmedMode": true,
  5927. "_atlas": null,
  5928. "_id": ""
  5929. },
  5930. {
  5931. "__type__": "cc.PrefabInfo",
  5932. "root": {
  5933. "__id__": 5
  5934. },
  5935. "asset": null,
  5936. "fileId": "f6ebTkW3dE4YrHmz0Zt6j4",
  5937. "sync": false
  5938. },
  5939. {
  5940. "__type__": "cc.Node",
  5941. "_name": "New Label",
  5942. "_objFlags": 0,
  5943. "_parent": {
  5944. "__id__": 137
  5945. },
  5946. "_children": [],
  5947. "_active": true,
  5948. "_components": [
  5949. {
  5950. "__id__": 164
  5951. },
  5952. {
  5953. "__id__": 165
  5954. }
  5955. ],
  5956. "_prefab": {
  5957. "__id__": 166
  5958. },
  5959. "_opacity": 255,
  5960. "_color": {
  5961. "__type__": "cc.Color",
  5962. "r": 75,
  5963. "g": 43,
  5964. "b": 0,
  5965. "a": 255
  5966. },
  5967. "_contentSize": {
  5968. "__type__": "cc.Size",
  5969. "width": 132.5,
  5970. "height": 37.8
  5971. },
  5972. "_anchorPoint": {
  5973. "__type__": "cc.Vec2",
  5974. "x": 0.5,
  5975. "y": 0.5
  5976. },
  5977. "_trs": {
  5978. "__type__": "TypedArray",
  5979. "ctor": "Float64Array",
  5980. "array": [
  5981. 0,
  5982. -68.557,
  5983. 0,
  5984. 0,
  5985. 0,
  5986. 0,
  5987. 1,
  5988. 1,
  5989. 1,
  5990. 1
  5991. ]
  5992. },
  5993. "_eulerAngles": {
  5994. "__type__": "cc.Vec3",
  5995. "x": 0,
  5996. "y": 0,
  5997. "z": 0
  5998. },
  5999. "_skewX": 0,
  6000. "_skewY": 0,
  6001. "_is3DNode": false,
  6002. "_groupIndex": 0,
  6003. "groupIndex": 0,
  6004. "_id": ""
  6005. },
  6006. {
  6007. "__type__": "cc.Label",
  6008. "_name": "",
  6009. "_objFlags": 0,
  6010. "node": {
  6011. "__id__": 163
  6012. },
  6013. "_enabled": true,
  6014. "_materials": [
  6015. {
  6016. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6017. }
  6018. ],
  6019. "_srcBlendFactor": 770,
  6020. "_dstBlendFactor": 771,
  6021. "_string": "任选道具1件",
  6022. "_N$string": "任选道具1件",
  6023. "_fontSize": 25,
  6024. "_lineHeight": 30,
  6025. "_enableWrapText": true,
  6026. "_N$file": {
  6027. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  6028. },
  6029. "_isSystemFontUsed": false,
  6030. "_spacingX": 0,
  6031. "_batchAsBitmap": false,
  6032. "_styleFlags": 0,
  6033. "_underlineHeight": 0,
  6034. "_N$horizontalAlign": 1,
  6035. "_N$verticalAlign": 1,
  6036. "_N$fontFamily": "Arial",
  6037. "_N$overflow": 0,
  6038. "_N$cacheMode": 0,
  6039. "_id": ""
  6040. },
  6041. {
  6042. "__type__": "cc.LabelOutline",
  6043. "_name": "",
  6044. "_objFlags": 0,
  6045. "node": {
  6046. "__id__": 163
  6047. },
  6048. "_enabled": false,
  6049. "_color": {
  6050. "__type__": "cc.Color",
  6051. "r": 8,
  6052. "g": 5,
  6053. "b": 5,
  6054. "a": 255
  6055. },
  6056. "_width": 2,
  6057. "_id": ""
  6058. },
  6059. {
  6060. "__type__": "cc.PrefabInfo",
  6061. "root": {
  6062. "__id__": 5
  6063. },
  6064. "asset": null,
  6065. "fileId": "efrE+bWipGLJwZoS65X9XK",
  6066. "sync": false
  6067. },
  6068. {
  6069. "__type__": "cc.Node",
  6070. "_name": "good_item",
  6071. "_objFlags": 0,
  6072. "_parent": {
  6073. "__id__": 137
  6074. },
  6075. "_children": [
  6076. {
  6077. "__id__": 168
  6078. },
  6079. {
  6080. "__id__": 171
  6081. },
  6082. {
  6083. "__id__": 188
  6084. }
  6085. ],
  6086. "_active": true,
  6087. "_components": [
  6088. {
  6089. "__id__": 191
  6090. },
  6091. {
  6092. "__id__": 193
  6093. }
  6094. ],
  6095. "_prefab": {
  6096. "__id__": 194
  6097. },
  6098. "_opacity": 255,
  6099. "_color": {
  6100. "__type__": "cc.Color",
  6101. "r": 252,
  6102. "g": 252,
  6103. "b": 252,
  6104. "a": 255
  6105. },
  6106. "_contentSize": {
  6107. "__type__": "cc.Size",
  6108. "width": 86,
  6109. "height": 86
  6110. },
  6111. "_anchorPoint": {
  6112. "__type__": "cc.Vec2",
  6113. "x": 0.5,
  6114. "y": 0.5
  6115. },
  6116. "_trs": {
  6117. "__type__": "TypedArray",
  6118. "ctor": "Float64Array",
  6119. "array": [
  6120. 0,
  6121. 2.4840000000000018,
  6122. 0,
  6123. 0,
  6124. 0,
  6125. 0,
  6126. 1,
  6127. 1,
  6128. 1,
  6129. 0
  6130. ]
  6131. },
  6132. "_eulerAngles": {
  6133. "__type__": "cc.Vec3",
  6134. "x": 0,
  6135. "y": 0,
  6136. "z": 0
  6137. },
  6138. "_skewX": 0,
  6139. "_skewY": 0,
  6140. "_is3DNode": false,
  6141. "_groupIndex": 0,
  6142. "groupIndex": 0,
  6143. "_id": ""
  6144. },
  6145. {
  6146. "__type__": "cc.Node",
  6147. "_name": "4",
  6148. "_objFlags": 0,
  6149. "_parent": {
  6150. "__id__": 167
  6151. },
  6152. "_children": [],
  6153. "_active": true,
  6154. "_components": [
  6155. {
  6156. "__id__": 169
  6157. }
  6158. ],
  6159. "_prefab": {
  6160. "__id__": 170
  6161. },
  6162. "_opacity": 255,
  6163. "_color": {
  6164. "__type__": "cc.Color",
  6165. "r": 255,
  6166. "g": 255,
  6167. "b": 255,
  6168. "a": 255
  6169. },
  6170. "_contentSize": {
  6171. "__type__": "cc.Size",
  6172. "width": 86,
  6173. "height": 86
  6174. },
  6175. "_anchorPoint": {
  6176. "__type__": "cc.Vec2",
  6177. "x": 0.5,
  6178. "y": 0.5
  6179. },
  6180. "_trs": {
  6181. "__type__": "TypedArray",
  6182. "ctor": "Float64Array",
  6183. "array": [
  6184. 0,
  6185. 0,
  6186. 0,
  6187. 0,
  6188. 0,
  6189. 0,
  6190. 1,
  6191. 1,
  6192. 1,
  6193. 1
  6194. ]
  6195. },
  6196. "_eulerAngles": {
  6197. "__type__": "cc.Vec3",
  6198. "x": 0,
  6199. "y": 0,
  6200. "z": 0
  6201. },
  6202. "_skewX": 0,
  6203. "_skewY": 0,
  6204. "_is3DNode": false,
  6205. "_groupIndex": 0,
  6206. "groupIndex": 0,
  6207. "_id": ""
  6208. },
  6209. {
  6210. "__type__": "cc.Sprite",
  6211. "_name": "",
  6212. "_objFlags": 0,
  6213. "node": {
  6214. "__id__": 168
  6215. },
  6216. "_enabled": true,
  6217. "_materials": [
  6218. {
  6219. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6220. }
  6221. ],
  6222. "_srcBlendFactor": 770,
  6223. "_dstBlendFactor": 771,
  6224. "_spriteFrame": {
  6225. "__uuid__": "78562430-f154-4a16-914a-8c84c69f9cce"
  6226. },
  6227. "_type": 0,
  6228. "_sizeMode": 1,
  6229. "_fillType": 0,
  6230. "_fillCenter": {
  6231. "__type__": "cc.Vec2",
  6232. "x": 0,
  6233. "y": 0
  6234. },
  6235. "_fillStart": 0,
  6236. "_fillRange": 0,
  6237. "_isTrimmedMode": true,
  6238. "_atlas": null,
  6239. "_id": ""
  6240. },
  6241. {
  6242. "__type__": "cc.PrefabInfo",
  6243. "root": {
  6244. "__id__": 167
  6245. },
  6246. "asset": {
  6247. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  6248. },
  6249. "fileId": "64Iw8HLn1Dnbr6M1yZIERi",
  6250. "sync": false
  6251. },
  6252. {
  6253. "__type__": "cc.Node",
  6254. "_name": "New Node",
  6255. "_objFlags": 0,
  6256. "_parent": {
  6257. "__id__": 167
  6258. },
  6259. "_children": [
  6260. {
  6261. "__id__": 172
  6262. },
  6263. {
  6264. "__id__": 175
  6265. },
  6266. {
  6267. "__id__": 181
  6268. },
  6269. {
  6270. "__id__": 184
  6271. }
  6272. ],
  6273. "_active": true,
  6274. "_components": [],
  6275. "_prefab": {
  6276. "__id__": 187
  6277. },
  6278. "_opacity": 255,
  6279. "_color": {
  6280. "__type__": "cc.Color",
  6281. "r": 255,
  6282. "g": 255,
  6283. "b": 255,
  6284. "a": 255
  6285. },
  6286. "_contentSize": {
  6287. "__type__": "cc.Size",
  6288. "width": 80,
  6289. "height": 80
  6290. },
  6291. "_anchorPoint": {
  6292. "__type__": "cc.Vec2",
  6293. "x": 0.5,
  6294. "y": 0.5
  6295. },
  6296. "_trs": {
  6297. "__type__": "TypedArray",
  6298. "ctor": "Float64Array",
  6299. "array": [
  6300. 0,
  6301. 0,
  6302. 0,
  6303. 0,
  6304. 0,
  6305. 0,
  6306. 1,
  6307. 1,
  6308. 1,
  6309. 1
  6310. ]
  6311. },
  6312. "_eulerAngles": {
  6313. "__type__": "cc.Vec3",
  6314. "x": 0,
  6315. "y": 0,
  6316. "z": 0
  6317. },
  6318. "_skewX": 0,
  6319. "_skewY": 0,
  6320. "_is3DNode": false,
  6321. "_groupIndex": 0,
  6322. "groupIndex": 0,
  6323. "_id": ""
  6324. },
  6325. {
  6326. "__type__": "cc.Node",
  6327. "_name": "New Sprite",
  6328. "_objFlags": 0,
  6329. "_parent": {
  6330. "__id__": 171
  6331. },
  6332. "_children": [],
  6333. "_active": true,
  6334. "_components": [
  6335. {
  6336. "__id__": 173
  6337. }
  6338. ],
  6339. "_prefab": {
  6340. "__id__": 174
  6341. },
  6342. "_opacity": 255,
  6343. "_color": {
  6344. "__type__": "cc.Color",
  6345. "r": 255,
  6346. "g": 255,
  6347. "b": 255,
  6348. "a": 255
  6349. },
  6350. "_contentSize": {
  6351. "__type__": "cc.Size",
  6352. "width": 62,
  6353. "height": 65
  6354. },
  6355. "_anchorPoint": {
  6356. "__type__": "cc.Vec2",
  6357. "x": 0.5,
  6358. "y": 0.5
  6359. },
  6360. "_trs": {
  6361. "__type__": "TypedArray",
  6362. "ctor": "Float64Array",
  6363. "array": [
  6364. 0,
  6365. 0,
  6366. 0,
  6367. 0,
  6368. 0,
  6369. 0,
  6370. 1,
  6371. 1,
  6372. 1,
  6373. 1
  6374. ]
  6375. },
  6376. "_eulerAngles": {
  6377. "__type__": "cc.Vec3",
  6378. "x": 0,
  6379. "y": 0,
  6380. "z": 0
  6381. },
  6382. "_skewX": 0,
  6383. "_skewY": 0,
  6384. "_is3DNode": false,
  6385. "_groupIndex": 0,
  6386. "groupIndex": 0,
  6387. "_id": ""
  6388. },
  6389. {
  6390. "__type__": "cc.Sprite",
  6391. "_name": "",
  6392. "_objFlags": 0,
  6393. "node": {
  6394. "__id__": 172
  6395. },
  6396. "_enabled": true,
  6397. "_materials": [
  6398. {
  6399. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6400. }
  6401. ],
  6402. "_srcBlendFactor": 770,
  6403. "_dstBlendFactor": 771,
  6404. "_spriteFrame": null,
  6405. "_type": 0,
  6406. "_sizeMode": 1,
  6407. "_fillType": 0,
  6408. "_fillCenter": {
  6409. "__type__": "cc.Vec2",
  6410. "x": 0,
  6411. "y": 0
  6412. },
  6413. "_fillStart": 0,
  6414. "_fillRange": 0,
  6415. "_isTrimmedMode": true,
  6416. "_atlas": null,
  6417. "_id": ""
  6418. },
  6419. {
  6420. "__type__": "cc.PrefabInfo",
  6421. "root": {
  6422. "__id__": 167
  6423. },
  6424. "asset": {
  6425. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  6426. },
  6427. "fileId": "0fiCn4IjZAZ6xM0YnwQFIH",
  6428. "sync": false
  6429. },
  6430. {
  6431. "__type__": "cc.Node",
  6432. "_name": "New Node",
  6433. "_objFlags": 0,
  6434. "_parent": {
  6435. "__id__": 171
  6436. },
  6437. "_children": [
  6438. {
  6439. "__id__": 176
  6440. }
  6441. ],
  6442. "_active": true,
  6443. "_components": [],
  6444. "_prefab": {
  6445. "__id__": 180
  6446. },
  6447. "_opacity": 255,
  6448. "_color": {
  6449. "__type__": "cc.Color",
  6450. "r": 255,
  6451. "g": 255,
  6452. "b": 255,
  6453. "a": 255
  6454. },
  6455. "_contentSize": {
  6456. "__type__": "cc.Size",
  6457. "width": 0,
  6458. "height": 0
  6459. },
  6460. "_anchorPoint": {
  6461. "__type__": "cc.Vec2",
  6462. "x": 0.5,
  6463. "y": 0.5
  6464. },
  6465. "_trs": {
  6466. "__type__": "TypedArray",
  6467. "ctor": "Float64Array",
  6468. "array": [
  6469. -37.223,
  6470. 27.39,
  6471. 0,
  6472. 0,
  6473. 0,
  6474. 0,
  6475. 1,
  6476. 1,
  6477. 1,
  6478. 1
  6479. ]
  6480. },
  6481. "_eulerAngles": {
  6482. "__type__": "cc.Vec3",
  6483. "x": 0,
  6484. "y": 0,
  6485. "z": 0
  6486. },
  6487. "_skewX": 0,
  6488. "_skewY": 0,
  6489. "_is3DNode": false,
  6490. "_groupIndex": 0,
  6491. "groupIndex": 0,
  6492. "_id": ""
  6493. },
  6494. {
  6495. "__type__": "cc.Node",
  6496. "_name": "count",
  6497. "_objFlags": 0,
  6498. "_parent": {
  6499. "__id__": 175
  6500. },
  6501. "_children": [],
  6502. "_active": true,
  6503. "_components": [
  6504. {
  6505. "__id__": 177
  6506. },
  6507. {
  6508. "__id__": 178
  6509. }
  6510. ],
  6511. "_prefab": {
  6512. "__id__": 179
  6513. },
  6514. "_opacity": 255,
  6515. "_color": {
  6516. "__type__": "cc.Color",
  6517. "r": 255,
  6518. "g": 255,
  6519. "b": 255,
  6520. "a": 255
  6521. },
  6522. "_contentSize": {
  6523. "__type__": "cc.Size",
  6524. "width": 4,
  6525. "height": 29.2
  6526. },
  6527. "_anchorPoint": {
  6528. "__type__": "cc.Vec2",
  6529. "x": 0,
  6530. "y": 0.5
  6531. },
  6532. "_trs": {
  6533. "__type__": "TypedArray",
  6534. "ctor": "Float64Array",
  6535. "array": [
  6536. 0,
  6537. 0,
  6538. 0,
  6539. 0,
  6540. 0,
  6541. 0,
  6542. 1,
  6543. 1,
  6544. 1,
  6545. 1
  6546. ]
  6547. },
  6548. "_eulerAngles": {
  6549. "__type__": "cc.Vec3",
  6550. "x": 0,
  6551. "y": 0,
  6552. "z": 0
  6553. },
  6554. "_skewX": 0,
  6555. "_skewY": 0,
  6556. "_is3DNode": false,
  6557. "_groupIndex": 0,
  6558. "groupIndex": 0,
  6559. "_id": ""
  6560. },
  6561. {
  6562. "__type__": "cc.Label",
  6563. "_name": "",
  6564. "_objFlags": 0,
  6565. "node": {
  6566. "__id__": 176
  6567. },
  6568. "_enabled": true,
  6569. "_materials": [
  6570. {
  6571. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6572. }
  6573. ],
  6574. "_srcBlendFactor": 770,
  6575. "_dstBlendFactor": 771,
  6576. "_string": "",
  6577. "_N$string": "",
  6578. "_fontSize": 20,
  6579. "_lineHeight": 0,
  6580. "_enableWrapText": true,
  6581. "_N$file": {
  6582. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  6583. },
  6584. "_isSystemFontUsed": false,
  6585. "_spacingX": 0,
  6586. "_batchAsBitmap": false,
  6587. "_styleFlags": 0,
  6588. "_underlineHeight": 0,
  6589. "_N$horizontalAlign": 1,
  6590. "_N$verticalAlign": 1,
  6591. "_N$fontFamily": "Arial",
  6592. "_N$overflow": 0,
  6593. "_N$cacheMode": 0,
  6594. "_id": ""
  6595. },
  6596. {
  6597. "__type__": "cc.LabelOutline",
  6598. "_name": "",
  6599. "_objFlags": 0,
  6600. "node": {
  6601. "__id__": 176
  6602. },
  6603. "_enabled": true,
  6604. "_color": {
  6605. "__type__": "cc.Color",
  6606. "r": 75,
  6607. "g": 43,
  6608. "b": 0,
  6609. "a": 255
  6610. },
  6611. "_width": 2,
  6612. "_id": ""
  6613. },
  6614. {
  6615. "__type__": "cc.PrefabInfo",
  6616. "root": {
  6617. "__id__": 167
  6618. },
  6619. "asset": {
  6620. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  6621. },
  6622. "fileId": "e83tuxOmJC1KlttRdQUyju",
  6623. "sync": false
  6624. },
  6625. {
  6626. "__type__": "cc.PrefabInfo",
  6627. "root": {
  6628. "__id__": 167
  6629. },
  6630. "asset": {
  6631. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  6632. },
  6633. "fileId": "f441WfffNC/KdXY8SHwgpW",
  6634. "sync": false
  6635. },
  6636. {
  6637. "__type__": "cc.Node",
  6638. "_name": "New Node",
  6639. "_objFlags": 0,
  6640. "_parent": {
  6641. "__id__": 171
  6642. },
  6643. "_children": [],
  6644. "_active": true,
  6645. "_components": [
  6646. {
  6647. "__id__": 182
  6648. }
  6649. ],
  6650. "_prefab": {
  6651. "__id__": 183
  6652. },
  6653. "_opacity": 255,
  6654. "_color": {
  6655. "__type__": "cc.Color",
  6656. "r": 255,
  6657. "g": 255,
  6658. "b": 255,
  6659. "a": 255
  6660. },
  6661. "_contentSize": {
  6662. "__type__": "cc.Size",
  6663. "width": 20,
  6664. "height": 30
  6665. },
  6666. "_anchorPoint": {
  6667. "__type__": "cc.Vec2",
  6668. "x": 0.5,
  6669. "y": 0.5
  6670. },
  6671. "_trs": {
  6672. "__type__": "TypedArray",
  6673. "ctor": "Float64Array",
  6674. "array": [
  6675. 0,
  6676. -33.29,
  6677. 0,
  6678. 0,
  6679. 0,
  6680. 0,
  6681. 1,
  6682. 0.8,
  6683. 0.8,
  6684. 1
  6685. ]
  6686. },
  6687. "_eulerAngles": {
  6688. "__type__": "cc.Vec3",
  6689. "x": 0,
  6690. "y": 0,
  6691. "z": 0
  6692. },
  6693. "_skewX": 0,
  6694. "_skewY": 0,
  6695. "_is3DNode": false,
  6696. "_groupIndex": 0,
  6697. "groupIndex": 0,
  6698. "_id": ""
  6699. },
  6700. {
  6701. "__type__": "cc.Layout",
  6702. "_name": "",
  6703. "_objFlags": 0,
  6704. "node": {
  6705. "__id__": 181
  6706. },
  6707. "_enabled": true,
  6708. "_layoutSize": {
  6709. "__type__": "cc.Size",
  6710. "width": 20,
  6711. "height": 30
  6712. },
  6713. "_resize": 1,
  6714. "_N$layoutType": 1,
  6715. "_N$cellSize": {
  6716. "__type__": "cc.Size",
  6717. "width": 40,
  6718. "height": 40
  6719. },
  6720. "_N$startAxis": 0,
  6721. "_N$paddingLeft": 0,
  6722. "_N$paddingRight": 0,
  6723. "_N$paddingTop": 0,
  6724. "_N$paddingBottom": 0,
  6725. "_N$spacingX": -10,
  6726. "_N$spacingY": 0,
  6727. "_N$verticalDirection": 1,
  6728. "_N$horizontalDirection": 0,
  6729. "_N$affectedByScale": false,
  6730. "_id": ""
  6731. },
  6732. {
  6733. "__type__": "cc.PrefabInfo",
  6734. "root": {
  6735. "__id__": 167
  6736. },
  6737. "asset": {
  6738. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  6739. },
  6740. "fileId": "82RPBTVEFLp4ypNusQ/w5R",
  6741. "sync": false
  6742. },
  6743. {
  6744. "__type__": "cc.Node",
  6745. "_name": "contrast",
  6746. "_objFlags": 0,
  6747. "_parent": {
  6748. "__id__": 171
  6749. },
  6750. "_children": [],
  6751. "_active": false,
  6752. "_components": [
  6753. {
  6754. "__id__": 185
  6755. }
  6756. ],
  6757. "_prefab": {
  6758. "__id__": 186
  6759. },
  6760. "_opacity": 255,
  6761. "_color": {
  6762. "__type__": "cc.Color",
  6763. "r": 120,
  6764. "g": 9,
  6765. "b": 9,
  6766. "a": 255
  6767. },
  6768. "_contentSize": {
  6769. "__type__": "cc.Size",
  6770. "width": 22.81,
  6771. "height": 25.2
  6772. },
  6773. "_anchorPoint": {
  6774. "__type__": "cc.Vec2",
  6775. "x": 0.5,
  6776. "y": 0.5
  6777. },
  6778. "_trs": {
  6779. "__type__": "TypedArray",
  6780. "ctor": "Float64Array",
  6781. "array": [
  6782. 0,
  6783. -54.61,
  6784. 0,
  6785. 0,
  6786. 0,
  6787. 0,
  6788. 1,
  6789. 1,
  6790. 1,
  6791. 1
  6792. ]
  6793. },
  6794. "_eulerAngles": {
  6795. "__type__": "cc.Vec3",
  6796. "x": 0,
  6797. "y": 0,
  6798. "z": 0
  6799. },
  6800. "_skewX": 0,
  6801. "_skewY": 0,
  6802. "_is3DNode": false,
  6803. "_groupIndex": 0,
  6804. "groupIndex": 0,
  6805. "_id": ""
  6806. },
  6807. {
  6808. "__type__": "cc.Label",
  6809. "_name": "",
  6810. "_objFlags": 0,
  6811. "node": {
  6812. "__id__": 184
  6813. },
  6814. "_enabled": true,
  6815. "_materials": [
  6816. {
  6817. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6818. }
  6819. ],
  6820. "_srcBlendFactor": 770,
  6821. "_dstBlendFactor": 771,
  6822. "_string": "1/1",
  6823. "_N$string": "1/1",
  6824. "_fontSize": 20,
  6825. "_lineHeight": 0,
  6826. "_enableWrapText": true,
  6827. "_N$file": {
  6828. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  6829. },
  6830. "_isSystemFontUsed": false,
  6831. "_spacingX": 0,
  6832. "_batchAsBitmap": false,
  6833. "_styleFlags": 0,
  6834. "_underlineHeight": 0,
  6835. "_N$horizontalAlign": 1,
  6836. "_N$verticalAlign": 1,
  6837. "_N$fontFamily": "Arial",
  6838. "_N$overflow": 0,
  6839. "_N$cacheMode": 0,
  6840. "_id": ""
  6841. },
  6842. {
  6843. "__type__": "cc.PrefabInfo",
  6844. "root": {
  6845. "__id__": 167
  6846. },
  6847. "asset": {
  6848. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  6849. },
  6850. "fileId": "bazDvO73hA9KDDlkW5093G",
  6851. "sync": false
  6852. },
  6853. {
  6854. "__type__": "cc.PrefabInfo",
  6855. "root": {
  6856. "__id__": 167
  6857. },
  6858. "asset": {
  6859. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  6860. },
  6861. "fileId": "28C/W/+vtLZoTBp1VfjsKb",
  6862. "sync": false
  6863. },
  6864. {
  6865. "__type__": "cc.Node",
  6866. "_name": "New Sprite",
  6867. "_objFlags": 0,
  6868. "_parent": {
  6869. "__id__": 167
  6870. },
  6871. "_children": [],
  6872. "_active": false,
  6873. "_components": [
  6874. {
  6875. "__id__": 189
  6876. }
  6877. ],
  6878. "_prefab": {
  6879. "__id__": 190
  6880. },
  6881. "_opacity": 255,
  6882. "_color": {
  6883. "__type__": "cc.Color",
  6884. "r": 255,
  6885. "g": 255,
  6886. "b": 255,
  6887. "a": 255
  6888. },
  6889. "_contentSize": {
  6890. "__type__": "cc.Size",
  6891. "width": 92,
  6892. "height": 92
  6893. },
  6894. "_anchorPoint": {
  6895. "__type__": "cc.Vec2",
  6896. "x": 0.5,
  6897. "y": 0.5
  6898. },
  6899. "_trs": {
  6900. "__type__": "TypedArray",
  6901. "ctor": "Float64Array",
  6902. "array": [
  6903. 0,
  6904. 0,
  6905. 0,
  6906. 0,
  6907. 0,
  6908. 0,
  6909. 1,
  6910. 1,
  6911. 1,
  6912. 1
  6913. ]
  6914. },
  6915. "_eulerAngles": {
  6916. "__type__": "cc.Vec3",
  6917. "x": 0,
  6918. "y": 0,
  6919. "z": 0
  6920. },
  6921. "_skewX": 0,
  6922. "_skewY": 0,
  6923. "_is3DNode": false,
  6924. "_groupIndex": 0,
  6925. "groupIndex": 0,
  6926. "_id": ""
  6927. },
  6928. {
  6929. "__type__": "cc.Sprite",
  6930. "_name": "",
  6931. "_objFlags": 0,
  6932. "node": {
  6933. "__id__": 188
  6934. },
  6935. "_enabled": true,
  6936. "_materials": [
  6937. {
  6938. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6939. }
  6940. ],
  6941. "_srcBlendFactor": 770,
  6942. "_dstBlendFactor": 771,
  6943. "_spriteFrame": {
  6944. "__uuid__": "200d6ab0-1dc2-4bd2-b609-b86a6b5bc179"
  6945. },
  6946. "_type": 1,
  6947. "_sizeMode": 1,
  6948. "_fillType": 0,
  6949. "_fillCenter": {
  6950. "__type__": "cc.Vec2",
  6951. "x": 0,
  6952. "y": 0
  6953. },
  6954. "_fillStart": 0,
  6955. "_fillRange": 0,
  6956. "_isTrimmedMode": true,
  6957. "_atlas": null,
  6958. "_id": ""
  6959. },
  6960. {
  6961. "__type__": "cc.PrefabInfo",
  6962. "root": {
  6963. "__id__": 167
  6964. },
  6965. "asset": {
  6966. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  6967. },
  6968. "fileId": "56cKJC6DBGB657MRpFNdru",
  6969. "sync": false
  6970. },
  6971. {
  6972. "__type__": "cc.Button",
  6973. "_name": "",
  6974. "_objFlags": 0,
  6975. "node": {
  6976. "__id__": 167
  6977. },
  6978. "_enabled": true,
  6979. "_normalMaterial": null,
  6980. "_grayMaterial": null,
  6981. "duration": 0.1,
  6982. "zoomScale": 0.9,
  6983. "clickEvents": [
  6984. {
  6985. "__id__": 192
  6986. }
  6987. ],
  6988. "_N$interactable": true,
  6989. "_N$enableAutoGrayEffect": false,
  6990. "_N$transition": 3,
  6991. "transition": 3,
  6992. "_N$normalColor": {
  6993. "__type__": "cc.Color",
  6994. "r": 255,
  6995. "g": 255,
  6996. "b": 255,
  6997. "a": 255
  6998. },
  6999. "_N$pressedColor": {
  7000. "__type__": "cc.Color",
  7001. "r": 211,
  7002. "g": 211,
  7003. "b": 211,
  7004. "a": 255
  7005. },
  7006. "pressedColor": {
  7007. "__type__": "cc.Color",
  7008. "r": 211,
  7009. "g": 211,
  7010. "b": 211,
  7011. "a": 255
  7012. },
  7013. "_N$hoverColor": {
  7014. "__type__": "cc.Color",
  7015. "r": 255,
  7016. "g": 255,
  7017. "b": 255,
  7018. "a": 255
  7019. },
  7020. "hoverColor": {
  7021. "__type__": "cc.Color",
  7022. "r": 255,
  7023. "g": 255,
  7024. "b": 255,
  7025. "a": 255
  7026. },
  7027. "_N$disabledColor": {
  7028. "__type__": "cc.Color",
  7029. "r": 124,
  7030. "g": 124,
  7031. "b": 124,
  7032. "a": 255
  7033. },
  7034. "_N$normalSprite": null,
  7035. "_N$pressedSprite": null,
  7036. "pressedSprite": null,
  7037. "_N$hoverSprite": null,
  7038. "hoverSprite": null,
  7039. "_N$disabledSprite": null,
  7040. "_N$target": null,
  7041. "_id": ""
  7042. },
  7043. {
  7044. "__type__": "cc.ClickEvent",
  7045. "target": {
  7046. "__id__": 167
  7047. },
  7048. "component": "",
  7049. "_componentId": "151bdPsfBdMXbh/WAVcXBV2",
  7050. "handler": "onclick",
  7051. "customEventData": ""
  7052. },
  7053. {
  7054. "__type__": "151bdPsfBdMXbh/WAVcXBV2",
  7055. "_name": "",
  7056. "_objFlags": 0,
  7057. "node": {
  7058. "__id__": 167
  7059. },
  7060. "_enabled": true,
  7061. "mBG": {
  7062. "__id__": 169
  7063. },
  7064. "mIcon": {
  7065. "__id__": 173
  7066. },
  7067. "mNullIcon": {
  7068. "__uuid__": "78562430-f154-4a16-914a-8c84c69f9cce"
  7069. },
  7070. "mBGs": [
  7071. {
  7072. "__uuid__": "398d12e8-d5aa-4d23-8322-d2f6cc12f71a"
  7073. },
  7074. {
  7075. "__uuid__": "e9d93117-eecf-4225-87d1-c65f2ab1a757"
  7076. },
  7077. {
  7078. "__uuid__": "947f2cb4-69c3-4ed6-97b1-35e22e263649"
  7079. },
  7080. {
  7081. "__uuid__": "1b48f361-8cb3-43e3-9bc3-1731ad9f6aa6"
  7082. },
  7083. {
  7084. "__uuid__": "e36b59c9-abab-49ea-ad4b-c20d73d6c2e9"
  7085. }
  7086. ],
  7087. "mNullNode": {
  7088. "__id__": 171
  7089. },
  7090. "mStarNode": {
  7091. "__id__": 181
  7092. },
  7093. "mStar": {
  7094. "__uuid__": "bbda706e-aa95-4e38-a4b2-74c3b9ec7c30"
  7095. },
  7096. "mLevel": {
  7097. "__id__": 177
  7098. },
  7099. "mContrast": {
  7100. "__id__": 185
  7101. },
  7102. "_id": ""
  7103. },
  7104. {
  7105. "__type__": "cc.PrefabInfo",
  7106. "root": {
  7107. "__id__": 167
  7108. },
  7109. "asset": {
  7110. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  7111. },
  7112. "fileId": "b1RW4NkqJE66BBdJ1sOLen",
  7113. "sync": false
  7114. },
  7115. {
  7116. "__type__": "cc.Node",
  7117. "_name": "New Label",
  7118. "_objFlags": 0,
  7119. "_parent": {
  7120. "__id__": 137
  7121. },
  7122. "_children": [],
  7123. "_active": true,
  7124. "_components": [
  7125. {
  7126. "__id__": 196
  7127. },
  7128. {
  7129. "__id__": 197
  7130. }
  7131. ],
  7132. "_prefab": {
  7133. "__id__": 198
  7134. },
  7135. "_opacity": 255,
  7136. "_color": {
  7137. "__type__": "cc.Color",
  7138. "r": 75,
  7139. "g": 43,
  7140. "b": 0,
  7141. "a": 255
  7142. },
  7143. "_contentSize": {
  7144. "__type__": "cc.Size",
  7145. "width": 105.68,
  7146. "height": 37.8
  7147. },
  7148. "_anchorPoint": {
  7149. "__type__": "cc.Vec2",
  7150. "x": 0.5,
  7151. "y": 0.5
  7152. },
  7153. "_trs": {
  7154. "__type__": "TypedArray",
  7155. "ctor": "Float64Array",
  7156. "array": [
  7157. 0,
  7158. -131.595,
  7159. 0,
  7160. 0,
  7161. 0,
  7162. 0,
  7163. 1,
  7164. 1,
  7165. 1,
  7166. 1
  7167. ]
  7168. },
  7169. "_eulerAngles": {
  7170. "__type__": "cc.Vec3",
  7171. "x": 0,
  7172. "y": 0,
  7173. "z": 0
  7174. },
  7175. "_skewX": 0,
  7176. "_skewY": 0,
  7177. "_is3DNode": false,
  7178. "_groupIndex": 0,
  7179. "groupIndex": 0,
  7180. "_id": ""
  7181. },
  7182. {
  7183. "__type__": "cc.Label",
  7184. "_name": "",
  7185. "_objFlags": 0,
  7186. "node": {
  7187. "__id__": 195
  7188. },
  7189. "_enabled": true,
  7190. "_materials": [
  7191. {
  7192. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7193. }
  7194. ],
  7195. "_srcBlendFactor": 770,
  7196. "_dstBlendFactor": 771,
  7197. "_string": "限购:0/1",
  7198. "_N$string": "限购:0/1",
  7199. "_fontSize": 25,
  7200. "_lineHeight": 30,
  7201. "_enableWrapText": true,
  7202. "_N$file": {
  7203. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  7204. },
  7205. "_isSystemFontUsed": false,
  7206. "_spacingX": 0,
  7207. "_batchAsBitmap": false,
  7208. "_styleFlags": 0,
  7209. "_underlineHeight": 0,
  7210. "_N$horizontalAlign": 1,
  7211. "_N$verticalAlign": 1,
  7212. "_N$fontFamily": "Arial",
  7213. "_N$overflow": 0,
  7214. "_N$cacheMode": 0,
  7215. "_id": ""
  7216. },
  7217. {
  7218. "__type__": "cc.LabelOutline",
  7219. "_name": "",
  7220. "_objFlags": 0,
  7221. "node": {
  7222. "__id__": 195
  7223. },
  7224. "_enabled": false,
  7225. "_color": {
  7226. "__type__": "cc.Color",
  7227. "r": 8,
  7228. "g": 5,
  7229. "b": 5,
  7230. "a": 255
  7231. },
  7232. "_width": 2,
  7233. "_id": ""
  7234. },
  7235. {
  7236. "__type__": "cc.PrefabInfo",
  7237. "root": {
  7238. "__id__": 5
  7239. },
  7240. "asset": null,
  7241. "fileId": "76WHFarDZIprpktuY/fiwk",
  7242. "sync": false
  7243. },
  7244. {
  7245. "__type__": "cc.Sprite",
  7246. "_name": "",
  7247. "_objFlags": 0,
  7248. "node": {
  7249. "__id__": 137
  7250. },
  7251. "_enabled": true,
  7252. "_materials": [
  7253. {
  7254. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7255. }
  7256. ],
  7257. "_srcBlendFactor": 770,
  7258. "_dstBlendFactor": 771,
  7259. "_spriteFrame": {
  7260. "__uuid__": "17192a55-eaa7-444b-85ae-1218e1ec03a0"
  7261. },
  7262. "_type": 1,
  7263. "_sizeMode": 0,
  7264. "_fillType": 0,
  7265. "_fillCenter": {
  7266. "__type__": "cc.Vec2",
  7267. "x": 0,
  7268. "y": 0
  7269. },
  7270. "_fillStart": 0,
  7271. "_fillRange": 0,
  7272. "_isTrimmedMode": true,
  7273. "_atlas": null,
  7274. "_id": ""
  7275. },
  7276. {
  7277. "__type__": "cc.PrefabInfo",
  7278. "root": {
  7279. "__id__": 5
  7280. },
  7281. "asset": null,
  7282. "fileId": "6a4k/MF6dNK7RFRPS+ehIT",
  7283. "sync": false
  7284. },
  7285. {
  7286. "__type__": "cc.Layout",
  7287. "_name": "",
  7288. "_objFlags": 0,
  7289. "node": {
  7290. "__id__": 8
  7291. },
  7292. "_enabled": true,
  7293. "_layoutSize": {
  7294. "__type__": "cc.Size",
  7295. "width": 840,
  7296. "height": 420
  7297. },
  7298. "_resize": 0,
  7299. "_N$layoutType": 3,
  7300. "_N$cellSize": {
  7301. "__type__": "cc.Size",
  7302. "width": 40,
  7303. "height": 40
  7304. },
  7305. "_N$startAxis": 0,
  7306. "_N$paddingLeft": 20,
  7307. "_N$paddingRight": 0,
  7308. "_N$paddingTop": 0,
  7309. "_N$paddingBottom": 0,
  7310. "_N$spacingX": 10,
  7311. "_N$spacingY": 20,
  7312. "_N$verticalDirection": 1,
  7313. "_N$horizontalDirection": 0,
  7314. "_N$affectedByScale": false,
  7315. "_id": ""
  7316. },
  7317. {
  7318. "__type__": "cc.PrefabInfo",
  7319. "root": {
  7320. "__id__": 5
  7321. },
  7322. "asset": null,
  7323. "fileId": "1fChFG5ONAgqPhHJjADf7P",
  7324. "sync": false
  7325. },
  7326. {
  7327. "__type__": "cc.PrefabInfo",
  7328. "root": {
  7329. "__id__": 5
  7330. },
  7331. "asset": null,
  7332. "fileId": "6eQmS5jexC743XqQc4xgDa",
  7333. "sync": false
  7334. },
  7335. {
  7336. "__type__": "cc.Mask",
  7337. "_name": "",
  7338. "_objFlags": 0,
  7339. "node": {
  7340. "__id__": 6
  7341. },
  7342. "_enabled": true,
  7343. "_materials": [
  7344. {
  7345. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7346. }
  7347. ],
  7348. "_spriteFrame": null,
  7349. "_type": 0,
  7350. "_segments": 64,
  7351. "_N$alphaThreshold": 0,
  7352. "_N$inverted": false,
  7353. "_id": ""
  7354. },
  7355. {
  7356. "__type__": "cc.PrefabInfo",
  7357. "root": {
  7358. "__id__": 5
  7359. },
  7360. "asset": null,
  7361. "fileId": "a82qXkVOdFiY3O8rCxuVFS",
  7362. "sync": false
  7363. },
  7364. {
  7365. "__type__": "cc.ScrollView",
  7366. "_name": "",
  7367. "_objFlags": 0,
  7368. "node": {
  7369. "__id__": 5
  7370. },
  7371. "_enabled": true,
  7372. "horizontal": false,
  7373. "vertical": true,
  7374. "inertia": true,
  7375. "brake": 0.75,
  7376. "elastic": true,
  7377. "bounceDuration": 0.23,
  7378. "scrollEvents": [],
  7379. "cancelInnerEvents": true,
  7380. "_N$content": {
  7381. "__id__": 7
  7382. },
  7383. "content": {
  7384. "__id__": 7
  7385. },
  7386. "_N$horizontalScrollBar": null,
  7387. "_N$verticalScrollBar": null,
  7388. "_id": ""
  7389. },
  7390. {
  7391. "__type__": "cc.PrefabInfo",
  7392. "root": {
  7393. "__id__": 5
  7394. },
  7395. "asset": null,
  7396. "fileId": "a9+lXrdcxPvoi47dL7XYPj",
  7397. "sync": false
  7398. },
  7399. {
  7400. "__type__": "cc.Node",
  7401. "_name": "New Sprite",
  7402. "_objFlags": 0,
  7403. "_parent": {
  7404. "__id__": 1
  7405. },
  7406. "_children": [
  7407. {
  7408. "__id__": 209
  7409. }
  7410. ],
  7411. "_active": false,
  7412. "_components": [
  7413. {
  7414. "__id__": 257
  7415. }
  7416. ],
  7417. "_prefab": {
  7418. "__id__": 258
  7419. },
  7420. "_opacity": 255,
  7421. "_color": {
  7422. "__type__": "cc.Color",
  7423. "r": 255,
  7424. "g": 252,
  7425. "b": 252,
  7426. "a": 255
  7427. },
  7428. "_contentSize": {
  7429. "__type__": "cc.Size",
  7430. "width": 300,
  7431. "height": 380
  7432. },
  7433. "_anchorPoint": {
  7434. "__type__": "cc.Vec2",
  7435. "x": 0.5,
  7436. "y": 0.5
  7437. },
  7438. "_trs": {
  7439. "__type__": "TypedArray",
  7440. "ctor": "Float64Array",
  7441. "array": [
  7442. 3.311,
  7443. 49.537,
  7444. 0,
  7445. 0,
  7446. 0,
  7447. 0,
  7448. 1,
  7449. 1,
  7450. 1,
  7451. 1
  7452. ]
  7453. },
  7454. "_eulerAngles": {
  7455. "__type__": "cc.Vec3",
  7456. "x": 0,
  7457. "y": 0,
  7458. "z": 0
  7459. },
  7460. "_skewX": 0,
  7461. "_skewY": 0,
  7462. "_is3DNode": false,
  7463. "_groupIndex": 0,
  7464. "groupIndex": 0,
  7465. "_id": ""
  7466. },
  7467. {
  7468. "__type__": "cc.Node",
  7469. "_name": "New ScrollView",
  7470. "_objFlags": 0,
  7471. "_parent": {
  7472. "__id__": 208
  7473. },
  7474. "_children": [
  7475. {
  7476. "__id__": 210
  7477. }
  7478. ],
  7479. "_active": true,
  7480. "_components": [
  7481. {
  7482. "__id__": 255
  7483. }
  7484. ],
  7485. "_prefab": {
  7486. "__id__": 256
  7487. },
  7488. "_opacity": 255,
  7489. "_color": {
  7490. "__type__": "cc.Color",
  7491. "r": 255,
  7492. "g": 255,
  7493. "b": 255,
  7494. "a": 255
  7495. },
  7496. "_contentSize": {
  7497. "__type__": "cc.Size",
  7498. "width": 280,
  7499. "height": 350
  7500. },
  7501. "_anchorPoint": {
  7502. "__type__": "cc.Vec2",
  7503. "x": 0.5,
  7504. "y": 0.5
  7505. },
  7506. "_trs": {
  7507. "__type__": "TypedArray",
  7508. "ctor": "Float64Array",
  7509. "array": [
  7510. 0,
  7511. 1.792,
  7512. 0,
  7513. 0,
  7514. 0,
  7515. 0,
  7516. 1,
  7517. 1,
  7518. 1,
  7519. 1
  7520. ]
  7521. },
  7522. "_eulerAngles": {
  7523. "__type__": "cc.Vec3",
  7524. "x": 0,
  7525. "y": 0,
  7526. "z": 0
  7527. },
  7528. "_skewX": 0,
  7529. "_skewY": 0,
  7530. "_is3DNode": false,
  7531. "_groupIndex": 0,
  7532. "groupIndex": 0,
  7533. "_id": ""
  7534. },
  7535. {
  7536. "__type__": "cc.Node",
  7537. "_name": "view",
  7538. "_objFlags": 0,
  7539. "_parent": {
  7540. "__id__": 209
  7541. },
  7542. "_children": [
  7543. {
  7544. "__id__": 211
  7545. }
  7546. ],
  7547. "_active": true,
  7548. "_components": [
  7549. {
  7550. "__id__": 253
  7551. }
  7552. ],
  7553. "_prefab": {
  7554. "__id__": 254
  7555. },
  7556. "_opacity": 255,
  7557. "_color": {
  7558. "__type__": "cc.Color",
  7559. "r": 255,
  7560. "g": 255,
  7561. "b": 255,
  7562. "a": 255
  7563. },
  7564. "_contentSize": {
  7565. "__type__": "cc.Size",
  7566. "width": 280,
  7567. "height": 350
  7568. },
  7569. "_anchorPoint": {
  7570. "__type__": "cc.Vec2",
  7571. "x": 0.5,
  7572. "y": 0.5
  7573. },
  7574. "_trs": {
  7575. "__type__": "TypedArray",
  7576. "ctor": "Float64Array",
  7577. "array": [
  7578. 0,
  7579. 0,
  7580. 0,
  7581. 0,
  7582. 0,
  7583. 0,
  7584. 1,
  7585. 1,
  7586. 1,
  7587. 1
  7588. ]
  7589. },
  7590. "_eulerAngles": {
  7591. "__type__": "cc.Vec3",
  7592. "x": 0,
  7593. "y": 0,
  7594. "z": 0
  7595. },
  7596. "_skewX": 0,
  7597. "_skewY": 0,
  7598. "_is3DNode": false,
  7599. "_groupIndex": 0,
  7600. "groupIndex": 0,
  7601. "_id": ""
  7602. },
  7603. {
  7604. "__type__": "cc.Node",
  7605. "_name": "content",
  7606. "_objFlags": 0,
  7607. "_parent": {
  7608. "__id__": 210
  7609. },
  7610. "_children": [
  7611. {
  7612. "__id__": 212
  7613. }
  7614. ],
  7615. "_active": true,
  7616. "_components": [
  7617. {
  7618. "__id__": 251
  7619. }
  7620. ],
  7621. "_prefab": {
  7622. "__id__": 252
  7623. },
  7624. "_opacity": 255,
  7625. "_color": {
  7626. "__type__": "cc.Color",
  7627. "r": 255,
  7628. "g": 255,
  7629. "b": 255,
  7630. "a": 255
  7631. },
  7632. "_contentSize": {
  7633. "__type__": "cc.Size",
  7634. "width": 280,
  7635. "height": 120
  7636. },
  7637. "_anchorPoint": {
  7638. "__type__": "cc.Vec2",
  7639. "x": 0.5,
  7640. "y": 0.98
  7641. },
  7642. "_trs": {
  7643. "__type__": "TypedArray",
  7644. "ctor": "Float64Array",
  7645. "array": [
  7646. 0,
  7647. 172.813,
  7648. 0,
  7649. 0,
  7650. 0,
  7651. 0,
  7652. 1,
  7653. 1,
  7654. 1,
  7655. 1
  7656. ]
  7657. },
  7658. "_eulerAngles": {
  7659. "__type__": "cc.Vec3",
  7660. "x": 0,
  7661. "y": 0,
  7662. "z": 0
  7663. },
  7664. "_skewX": 0,
  7665. "_skewY": 0,
  7666. "_is3DNode": false,
  7667. "_groupIndex": 0,
  7668. "groupIndex": 0,
  7669. "_id": ""
  7670. },
  7671. {
  7672. "__type__": "cc.Node",
  7673. "_name": "New Sprite",
  7674. "_objFlags": 0,
  7675. "_parent": {
  7676. "__id__": 211
  7677. },
  7678. "_children": [
  7679. {
  7680. "__id__": 213
  7681. },
  7682. {
  7683. "__id__": 241
  7684. },
  7685. {
  7686. "__id__": 245
  7687. }
  7688. ],
  7689. "_active": true,
  7690. "_components": [
  7691. {
  7692. "__id__": 249
  7693. }
  7694. ],
  7695. "_prefab": {
  7696. "__id__": 250
  7697. },
  7698. "_opacity": 255,
  7699. "_color": {
  7700. "__type__": "cc.Color",
  7701. "r": 255,
  7702. "g": 255,
  7703. "b": 255,
  7704. "a": 255
  7705. },
  7706. "_contentSize": {
  7707. "__type__": "cc.Size",
  7708. "width": 280,
  7709. "height": 80
  7710. },
  7711. "_anchorPoint": {
  7712. "__type__": "cc.Vec2",
  7713. "x": 0.5,
  7714. "y": 0.5
  7715. },
  7716. "_trs": {
  7717. "__type__": "TypedArray",
  7718. "ctor": "Float64Array",
  7719. "array": [
  7720. 0,
  7721. -37.599999999999994,
  7722. 0,
  7723. 0,
  7724. 0,
  7725. 0,
  7726. 1,
  7727. 1,
  7728. 1,
  7729. 1
  7730. ]
  7731. },
  7732. "_eulerAngles": {
  7733. "__type__": "cc.Vec3",
  7734. "x": 0,
  7735. "y": 0,
  7736. "z": 0
  7737. },
  7738. "_skewX": 0,
  7739. "_skewY": 0,
  7740. "_is3DNode": false,
  7741. "_groupIndex": 0,
  7742. "groupIndex": 0,
  7743. "_id": ""
  7744. },
  7745. {
  7746. "__type__": "cc.Node",
  7747. "_name": "good_item",
  7748. "_objFlags": 0,
  7749. "_parent": {
  7750. "__id__": 212
  7751. },
  7752. "_children": [
  7753. {
  7754. "__id__": 214
  7755. },
  7756. {
  7757. "__id__": 217
  7758. },
  7759. {
  7760. "__id__": 234
  7761. }
  7762. ],
  7763. "_active": true,
  7764. "_components": [
  7765. {
  7766. "__id__": 237
  7767. },
  7768. {
  7769. "__id__": 239
  7770. }
  7771. ],
  7772. "_prefab": {
  7773. "__id__": 240
  7774. },
  7775. "_opacity": 255,
  7776. "_color": {
  7777. "__type__": "cc.Color",
  7778. "r": 252,
  7779. "g": 252,
  7780. "b": 252,
  7781. "a": 255
  7782. },
  7783. "_contentSize": {
  7784. "__type__": "cc.Size",
  7785. "width": 86,
  7786. "height": 86
  7787. },
  7788. "_anchorPoint": {
  7789. "__type__": "cc.Vec2",
  7790. "x": 0.5,
  7791. "y": 0.5
  7792. },
  7793. "_trs": {
  7794. "__type__": "TypedArray",
  7795. "ctor": "Float64Array",
  7796. "array": [
  7797. -93.988,
  7798. 0,
  7799. 0,
  7800. 0,
  7801. 0,
  7802. 0,
  7803. 1,
  7804. 0.8,
  7805. 0.8,
  7806. 0
  7807. ]
  7808. },
  7809. "_eulerAngles": {
  7810. "__type__": "cc.Vec3",
  7811. "x": 0,
  7812. "y": 0,
  7813. "z": 0
  7814. },
  7815. "_skewX": 0,
  7816. "_skewY": 0,
  7817. "_is3DNode": false,
  7818. "_groupIndex": 0,
  7819. "groupIndex": 0,
  7820. "_id": ""
  7821. },
  7822. {
  7823. "__type__": "cc.Node",
  7824. "_name": "4",
  7825. "_objFlags": 0,
  7826. "_parent": {
  7827. "__id__": 213
  7828. },
  7829. "_children": [],
  7830. "_active": true,
  7831. "_components": [
  7832. {
  7833. "__id__": 215
  7834. }
  7835. ],
  7836. "_prefab": {
  7837. "__id__": 216
  7838. },
  7839. "_opacity": 255,
  7840. "_color": {
  7841. "__type__": "cc.Color",
  7842. "r": 255,
  7843. "g": 255,
  7844. "b": 255,
  7845. "a": 255
  7846. },
  7847. "_contentSize": {
  7848. "__type__": "cc.Size",
  7849. "width": 86,
  7850. "height": 86
  7851. },
  7852. "_anchorPoint": {
  7853. "__type__": "cc.Vec2",
  7854. "x": 0.5,
  7855. "y": 0.5
  7856. },
  7857. "_trs": {
  7858. "__type__": "TypedArray",
  7859. "ctor": "Float64Array",
  7860. "array": [
  7861. 0,
  7862. 0,
  7863. 0,
  7864. 0,
  7865. 0,
  7866. 0,
  7867. 1,
  7868. 1,
  7869. 1,
  7870. 1
  7871. ]
  7872. },
  7873. "_eulerAngles": {
  7874. "__type__": "cc.Vec3",
  7875. "x": 0,
  7876. "y": 0,
  7877. "z": 0
  7878. },
  7879. "_skewX": 0,
  7880. "_skewY": 0,
  7881. "_is3DNode": false,
  7882. "_groupIndex": 0,
  7883. "groupIndex": 0,
  7884. "_id": ""
  7885. },
  7886. {
  7887. "__type__": "cc.Sprite",
  7888. "_name": "",
  7889. "_objFlags": 0,
  7890. "node": {
  7891. "__id__": 214
  7892. },
  7893. "_enabled": true,
  7894. "_materials": [
  7895. {
  7896. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7897. }
  7898. ],
  7899. "_srcBlendFactor": 770,
  7900. "_dstBlendFactor": 771,
  7901. "_spriteFrame": {
  7902. "__uuid__": "78562430-f154-4a16-914a-8c84c69f9cce"
  7903. },
  7904. "_type": 0,
  7905. "_sizeMode": 1,
  7906. "_fillType": 0,
  7907. "_fillCenter": {
  7908. "__type__": "cc.Vec2",
  7909. "x": 0,
  7910. "y": 0
  7911. },
  7912. "_fillStart": 0,
  7913. "_fillRange": 0,
  7914. "_isTrimmedMode": true,
  7915. "_atlas": null,
  7916. "_id": ""
  7917. },
  7918. {
  7919. "__type__": "cc.PrefabInfo",
  7920. "root": {
  7921. "__id__": 213
  7922. },
  7923. "asset": {
  7924. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  7925. },
  7926. "fileId": "64Iw8HLn1Dnbr6M1yZIERi",
  7927. "sync": false
  7928. },
  7929. {
  7930. "__type__": "cc.Node",
  7931. "_name": "New Node",
  7932. "_objFlags": 0,
  7933. "_parent": {
  7934. "__id__": 213
  7935. },
  7936. "_children": [
  7937. {
  7938. "__id__": 218
  7939. },
  7940. {
  7941. "__id__": 221
  7942. },
  7943. {
  7944. "__id__": 227
  7945. },
  7946. {
  7947. "__id__": 230
  7948. }
  7949. ],
  7950. "_active": true,
  7951. "_components": [],
  7952. "_prefab": {
  7953. "__id__": 233
  7954. },
  7955. "_opacity": 255,
  7956. "_color": {
  7957. "__type__": "cc.Color",
  7958. "r": 255,
  7959. "g": 255,
  7960. "b": 255,
  7961. "a": 255
  7962. },
  7963. "_contentSize": {
  7964. "__type__": "cc.Size",
  7965. "width": 80,
  7966. "height": 80
  7967. },
  7968. "_anchorPoint": {
  7969. "__type__": "cc.Vec2",
  7970. "x": 0.5,
  7971. "y": 0.5
  7972. },
  7973. "_trs": {
  7974. "__type__": "TypedArray",
  7975. "ctor": "Float64Array",
  7976. "array": [
  7977. 0,
  7978. 0,
  7979. 0,
  7980. 0,
  7981. 0,
  7982. 0,
  7983. 1,
  7984. 1,
  7985. 1,
  7986. 1
  7987. ]
  7988. },
  7989. "_eulerAngles": {
  7990. "__type__": "cc.Vec3",
  7991. "x": 0,
  7992. "y": 0,
  7993. "z": 0
  7994. },
  7995. "_skewX": 0,
  7996. "_skewY": 0,
  7997. "_is3DNode": false,
  7998. "_groupIndex": 0,
  7999. "groupIndex": 0,
  8000. "_id": ""
  8001. },
  8002. {
  8003. "__type__": "cc.Node",
  8004. "_name": "New Sprite",
  8005. "_objFlags": 0,
  8006. "_parent": {
  8007. "__id__": 217
  8008. },
  8009. "_children": [],
  8010. "_active": true,
  8011. "_components": [
  8012. {
  8013. "__id__": 219
  8014. }
  8015. ],
  8016. "_prefab": {
  8017. "__id__": 220
  8018. },
  8019. "_opacity": 255,
  8020. "_color": {
  8021. "__type__": "cc.Color",
  8022. "r": 255,
  8023. "g": 255,
  8024. "b": 255,
  8025. "a": 255
  8026. },
  8027. "_contentSize": {
  8028. "__type__": "cc.Size",
  8029. "width": 62,
  8030. "height": 65
  8031. },
  8032. "_anchorPoint": {
  8033. "__type__": "cc.Vec2",
  8034. "x": 0.5,
  8035. "y": 0.5
  8036. },
  8037. "_trs": {
  8038. "__type__": "TypedArray",
  8039. "ctor": "Float64Array",
  8040. "array": [
  8041. 0,
  8042. 0,
  8043. 0,
  8044. 0,
  8045. 0,
  8046. 0,
  8047. 1,
  8048. 1,
  8049. 1,
  8050. 1
  8051. ]
  8052. },
  8053. "_eulerAngles": {
  8054. "__type__": "cc.Vec3",
  8055. "x": 0,
  8056. "y": 0,
  8057. "z": 0
  8058. },
  8059. "_skewX": 0,
  8060. "_skewY": 0,
  8061. "_is3DNode": false,
  8062. "_groupIndex": 0,
  8063. "groupIndex": 0,
  8064. "_id": ""
  8065. },
  8066. {
  8067. "__type__": "cc.Sprite",
  8068. "_name": "",
  8069. "_objFlags": 0,
  8070. "node": {
  8071. "__id__": 218
  8072. },
  8073. "_enabled": true,
  8074. "_materials": [
  8075. {
  8076. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8077. }
  8078. ],
  8079. "_srcBlendFactor": 770,
  8080. "_dstBlendFactor": 771,
  8081. "_spriteFrame": null,
  8082. "_type": 0,
  8083. "_sizeMode": 1,
  8084. "_fillType": 0,
  8085. "_fillCenter": {
  8086. "__type__": "cc.Vec2",
  8087. "x": 0,
  8088. "y": 0
  8089. },
  8090. "_fillStart": 0,
  8091. "_fillRange": 0,
  8092. "_isTrimmedMode": true,
  8093. "_atlas": null,
  8094. "_id": ""
  8095. },
  8096. {
  8097. "__type__": "cc.PrefabInfo",
  8098. "root": {
  8099. "__id__": 213
  8100. },
  8101. "asset": {
  8102. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  8103. },
  8104. "fileId": "0fiCn4IjZAZ6xM0YnwQFIH",
  8105. "sync": false
  8106. },
  8107. {
  8108. "__type__": "cc.Node",
  8109. "_name": "New Node",
  8110. "_objFlags": 0,
  8111. "_parent": {
  8112. "__id__": 217
  8113. },
  8114. "_children": [
  8115. {
  8116. "__id__": 222
  8117. }
  8118. ],
  8119. "_active": true,
  8120. "_components": [],
  8121. "_prefab": {
  8122. "__id__": 226
  8123. },
  8124. "_opacity": 255,
  8125. "_color": {
  8126. "__type__": "cc.Color",
  8127. "r": 255,
  8128. "g": 255,
  8129. "b": 255,
  8130. "a": 255
  8131. },
  8132. "_contentSize": {
  8133. "__type__": "cc.Size",
  8134. "width": 0,
  8135. "height": 0
  8136. },
  8137. "_anchorPoint": {
  8138. "__type__": "cc.Vec2",
  8139. "x": 0.5,
  8140. "y": 0.5
  8141. },
  8142. "_trs": {
  8143. "__type__": "TypedArray",
  8144. "ctor": "Float64Array",
  8145. "array": [
  8146. -37.223,
  8147. 27.39,
  8148. 0,
  8149. 0,
  8150. 0,
  8151. 0,
  8152. 1,
  8153. 1,
  8154. 1,
  8155. 1
  8156. ]
  8157. },
  8158. "_eulerAngles": {
  8159. "__type__": "cc.Vec3",
  8160. "x": 0,
  8161. "y": 0,
  8162. "z": 0
  8163. },
  8164. "_skewX": 0,
  8165. "_skewY": 0,
  8166. "_is3DNode": false,
  8167. "_groupIndex": 0,
  8168. "groupIndex": 0,
  8169. "_id": ""
  8170. },
  8171. {
  8172. "__type__": "cc.Node",
  8173. "_name": "count",
  8174. "_objFlags": 0,
  8175. "_parent": {
  8176. "__id__": 221
  8177. },
  8178. "_children": [],
  8179. "_active": true,
  8180. "_components": [
  8181. {
  8182. "__id__": 223
  8183. },
  8184. {
  8185. "__id__": 224
  8186. }
  8187. ],
  8188. "_prefab": {
  8189. "__id__": 225
  8190. },
  8191. "_opacity": 255,
  8192. "_color": {
  8193. "__type__": "cc.Color",
  8194. "r": 255,
  8195. "g": 255,
  8196. "b": 255,
  8197. "a": 255
  8198. },
  8199. "_contentSize": {
  8200. "__type__": "cc.Size",
  8201. "width": 4,
  8202. "height": 29.2
  8203. },
  8204. "_anchorPoint": {
  8205. "__type__": "cc.Vec2",
  8206. "x": 0,
  8207. "y": 0.5
  8208. },
  8209. "_trs": {
  8210. "__type__": "TypedArray",
  8211. "ctor": "Float64Array",
  8212. "array": [
  8213. 0,
  8214. 0,
  8215. 0,
  8216. 0,
  8217. 0,
  8218. 0,
  8219. 1,
  8220. 1,
  8221. 1,
  8222. 1
  8223. ]
  8224. },
  8225. "_eulerAngles": {
  8226. "__type__": "cc.Vec3",
  8227. "x": 0,
  8228. "y": 0,
  8229. "z": 0
  8230. },
  8231. "_skewX": 0,
  8232. "_skewY": 0,
  8233. "_is3DNode": false,
  8234. "_groupIndex": 0,
  8235. "groupIndex": 0,
  8236. "_id": ""
  8237. },
  8238. {
  8239. "__type__": "cc.Label",
  8240. "_name": "",
  8241. "_objFlags": 0,
  8242. "node": {
  8243. "__id__": 222
  8244. },
  8245. "_enabled": true,
  8246. "_materials": [
  8247. {
  8248. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8249. }
  8250. ],
  8251. "_srcBlendFactor": 770,
  8252. "_dstBlendFactor": 771,
  8253. "_string": "",
  8254. "_N$string": "",
  8255. "_fontSize": 20,
  8256. "_lineHeight": 0,
  8257. "_enableWrapText": true,
  8258. "_N$file": {
  8259. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  8260. },
  8261. "_isSystemFontUsed": false,
  8262. "_spacingX": 0,
  8263. "_batchAsBitmap": false,
  8264. "_styleFlags": 0,
  8265. "_underlineHeight": 0,
  8266. "_N$horizontalAlign": 1,
  8267. "_N$verticalAlign": 1,
  8268. "_N$fontFamily": "Arial",
  8269. "_N$overflow": 0,
  8270. "_N$cacheMode": 0,
  8271. "_id": ""
  8272. },
  8273. {
  8274. "__type__": "cc.LabelOutline",
  8275. "_name": "",
  8276. "_objFlags": 0,
  8277. "node": {
  8278. "__id__": 222
  8279. },
  8280. "_enabled": true,
  8281. "_color": {
  8282. "__type__": "cc.Color",
  8283. "r": 75,
  8284. "g": 43,
  8285. "b": 0,
  8286. "a": 255
  8287. },
  8288. "_width": 2,
  8289. "_id": ""
  8290. },
  8291. {
  8292. "__type__": "cc.PrefabInfo",
  8293. "root": {
  8294. "__id__": 213
  8295. },
  8296. "asset": {
  8297. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  8298. },
  8299. "fileId": "e83tuxOmJC1KlttRdQUyju",
  8300. "sync": false
  8301. },
  8302. {
  8303. "__type__": "cc.PrefabInfo",
  8304. "root": {
  8305. "__id__": 213
  8306. },
  8307. "asset": {
  8308. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  8309. },
  8310. "fileId": "f441WfffNC/KdXY8SHwgpW",
  8311. "sync": false
  8312. },
  8313. {
  8314. "__type__": "cc.Node",
  8315. "_name": "New Node",
  8316. "_objFlags": 0,
  8317. "_parent": {
  8318. "__id__": 217
  8319. },
  8320. "_children": [],
  8321. "_active": true,
  8322. "_components": [
  8323. {
  8324. "__id__": 228
  8325. }
  8326. ],
  8327. "_prefab": {
  8328. "__id__": 229
  8329. },
  8330. "_opacity": 255,
  8331. "_color": {
  8332. "__type__": "cc.Color",
  8333. "r": 255,
  8334. "g": 255,
  8335. "b": 255,
  8336. "a": 255
  8337. },
  8338. "_contentSize": {
  8339. "__type__": "cc.Size",
  8340. "width": 20,
  8341. "height": 30
  8342. },
  8343. "_anchorPoint": {
  8344. "__type__": "cc.Vec2",
  8345. "x": 0.5,
  8346. "y": 0.5
  8347. },
  8348. "_trs": {
  8349. "__type__": "TypedArray",
  8350. "ctor": "Float64Array",
  8351. "array": [
  8352. 0,
  8353. -33.29,
  8354. 0,
  8355. 0,
  8356. 0,
  8357. 0,
  8358. 1,
  8359. 0.8,
  8360. 0.8,
  8361. 1
  8362. ]
  8363. },
  8364. "_eulerAngles": {
  8365. "__type__": "cc.Vec3",
  8366. "x": 0,
  8367. "y": 0,
  8368. "z": 0
  8369. },
  8370. "_skewX": 0,
  8371. "_skewY": 0,
  8372. "_is3DNode": false,
  8373. "_groupIndex": 0,
  8374. "groupIndex": 0,
  8375. "_id": ""
  8376. },
  8377. {
  8378. "__type__": "cc.Layout",
  8379. "_name": "",
  8380. "_objFlags": 0,
  8381. "node": {
  8382. "__id__": 227
  8383. },
  8384. "_enabled": true,
  8385. "_layoutSize": {
  8386. "__type__": "cc.Size",
  8387. "width": 20,
  8388. "height": 30
  8389. },
  8390. "_resize": 1,
  8391. "_N$layoutType": 1,
  8392. "_N$cellSize": {
  8393. "__type__": "cc.Size",
  8394. "width": 40,
  8395. "height": 40
  8396. },
  8397. "_N$startAxis": 0,
  8398. "_N$paddingLeft": 0,
  8399. "_N$paddingRight": 0,
  8400. "_N$paddingTop": 0,
  8401. "_N$paddingBottom": 0,
  8402. "_N$spacingX": -10,
  8403. "_N$spacingY": 0,
  8404. "_N$verticalDirection": 1,
  8405. "_N$horizontalDirection": 0,
  8406. "_N$affectedByScale": false,
  8407. "_id": ""
  8408. },
  8409. {
  8410. "__type__": "cc.PrefabInfo",
  8411. "root": {
  8412. "__id__": 213
  8413. },
  8414. "asset": {
  8415. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  8416. },
  8417. "fileId": "82RPBTVEFLp4ypNusQ/w5R",
  8418. "sync": false
  8419. },
  8420. {
  8421. "__type__": "cc.Node",
  8422. "_name": "contrast",
  8423. "_objFlags": 0,
  8424. "_parent": {
  8425. "__id__": 217
  8426. },
  8427. "_children": [],
  8428. "_active": false,
  8429. "_components": [
  8430. {
  8431. "__id__": 231
  8432. }
  8433. ],
  8434. "_prefab": {
  8435. "__id__": 232
  8436. },
  8437. "_opacity": 255,
  8438. "_color": {
  8439. "__type__": "cc.Color",
  8440. "r": 120,
  8441. "g": 9,
  8442. "b": 9,
  8443. "a": 255
  8444. },
  8445. "_contentSize": {
  8446. "__type__": "cc.Size",
  8447. "width": 22.81,
  8448. "height": 25.2
  8449. },
  8450. "_anchorPoint": {
  8451. "__type__": "cc.Vec2",
  8452. "x": 0.5,
  8453. "y": 0.5
  8454. },
  8455. "_trs": {
  8456. "__type__": "TypedArray",
  8457. "ctor": "Float64Array",
  8458. "array": [
  8459. 0,
  8460. -54.61,
  8461. 0,
  8462. 0,
  8463. 0,
  8464. 0,
  8465. 1,
  8466. 1,
  8467. 1,
  8468. 1
  8469. ]
  8470. },
  8471. "_eulerAngles": {
  8472. "__type__": "cc.Vec3",
  8473. "x": 0,
  8474. "y": 0,
  8475. "z": 0
  8476. },
  8477. "_skewX": 0,
  8478. "_skewY": 0,
  8479. "_is3DNode": false,
  8480. "_groupIndex": 0,
  8481. "groupIndex": 0,
  8482. "_id": ""
  8483. },
  8484. {
  8485. "__type__": "cc.Label",
  8486. "_name": "",
  8487. "_objFlags": 0,
  8488. "node": {
  8489. "__id__": 230
  8490. },
  8491. "_enabled": true,
  8492. "_materials": [
  8493. {
  8494. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8495. }
  8496. ],
  8497. "_srcBlendFactor": 770,
  8498. "_dstBlendFactor": 771,
  8499. "_string": "1/1",
  8500. "_N$string": "1/1",
  8501. "_fontSize": 20,
  8502. "_lineHeight": 0,
  8503. "_enableWrapText": true,
  8504. "_N$file": {
  8505. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  8506. },
  8507. "_isSystemFontUsed": false,
  8508. "_spacingX": 0,
  8509. "_batchAsBitmap": false,
  8510. "_styleFlags": 0,
  8511. "_underlineHeight": 0,
  8512. "_N$horizontalAlign": 1,
  8513. "_N$verticalAlign": 1,
  8514. "_N$fontFamily": "Arial",
  8515. "_N$overflow": 0,
  8516. "_N$cacheMode": 0,
  8517. "_id": ""
  8518. },
  8519. {
  8520. "__type__": "cc.PrefabInfo",
  8521. "root": {
  8522. "__id__": 213
  8523. },
  8524. "asset": {
  8525. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  8526. },
  8527. "fileId": "bazDvO73hA9KDDlkW5093G",
  8528. "sync": false
  8529. },
  8530. {
  8531. "__type__": "cc.PrefabInfo",
  8532. "root": {
  8533. "__id__": 213
  8534. },
  8535. "asset": {
  8536. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  8537. },
  8538. "fileId": "28C/W/+vtLZoTBp1VfjsKb",
  8539. "sync": false
  8540. },
  8541. {
  8542. "__type__": "cc.Node",
  8543. "_name": "New Sprite",
  8544. "_objFlags": 0,
  8545. "_parent": {
  8546. "__id__": 213
  8547. },
  8548. "_children": [],
  8549. "_active": false,
  8550. "_components": [
  8551. {
  8552. "__id__": 235
  8553. }
  8554. ],
  8555. "_prefab": {
  8556. "__id__": 236
  8557. },
  8558. "_opacity": 255,
  8559. "_color": {
  8560. "__type__": "cc.Color",
  8561. "r": 255,
  8562. "g": 255,
  8563. "b": 255,
  8564. "a": 255
  8565. },
  8566. "_contentSize": {
  8567. "__type__": "cc.Size",
  8568. "width": 92,
  8569. "height": 92
  8570. },
  8571. "_anchorPoint": {
  8572. "__type__": "cc.Vec2",
  8573. "x": 0.5,
  8574. "y": 0.5
  8575. },
  8576. "_trs": {
  8577. "__type__": "TypedArray",
  8578. "ctor": "Float64Array",
  8579. "array": [
  8580. 0,
  8581. 0,
  8582. 0,
  8583. 0,
  8584. 0,
  8585. 0,
  8586. 1,
  8587. 1,
  8588. 1,
  8589. 1
  8590. ]
  8591. },
  8592. "_eulerAngles": {
  8593. "__type__": "cc.Vec3",
  8594. "x": 0,
  8595. "y": 0,
  8596. "z": 0
  8597. },
  8598. "_skewX": 0,
  8599. "_skewY": 0,
  8600. "_is3DNode": false,
  8601. "_groupIndex": 0,
  8602. "groupIndex": 0,
  8603. "_id": ""
  8604. },
  8605. {
  8606. "__type__": "cc.Sprite",
  8607. "_name": "",
  8608. "_objFlags": 0,
  8609. "node": {
  8610. "__id__": 234
  8611. },
  8612. "_enabled": true,
  8613. "_materials": [
  8614. {
  8615. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8616. }
  8617. ],
  8618. "_srcBlendFactor": 770,
  8619. "_dstBlendFactor": 771,
  8620. "_spriteFrame": {
  8621. "__uuid__": "200d6ab0-1dc2-4bd2-b609-b86a6b5bc179"
  8622. },
  8623. "_type": 1,
  8624. "_sizeMode": 1,
  8625. "_fillType": 0,
  8626. "_fillCenter": {
  8627. "__type__": "cc.Vec2",
  8628. "x": 0,
  8629. "y": 0
  8630. },
  8631. "_fillStart": 0,
  8632. "_fillRange": 0,
  8633. "_isTrimmedMode": true,
  8634. "_atlas": null,
  8635. "_id": ""
  8636. },
  8637. {
  8638. "__type__": "cc.PrefabInfo",
  8639. "root": {
  8640. "__id__": 213
  8641. },
  8642. "asset": {
  8643. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  8644. },
  8645. "fileId": "56cKJC6DBGB657MRpFNdru",
  8646. "sync": false
  8647. },
  8648. {
  8649. "__type__": "cc.Button",
  8650. "_name": "",
  8651. "_objFlags": 0,
  8652. "node": {
  8653. "__id__": 213
  8654. },
  8655. "_enabled": true,
  8656. "_normalMaterial": null,
  8657. "_grayMaterial": null,
  8658. "duration": 0.1,
  8659. "zoomScale": 0.9,
  8660. "clickEvents": [
  8661. {
  8662. "__id__": 238
  8663. }
  8664. ],
  8665. "_N$interactable": true,
  8666. "_N$enableAutoGrayEffect": false,
  8667. "_N$transition": 3,
  8668. "transition": 3,
  8669. "_N$normalColor": {
  8670. "__type__": "cc.Color",
  8671. "r": 255,
  8672. "g": 255,
  8673. "b": 255,
  8674. "a": 255
  8675. },
  8676. "_N$pressedColor": {
  8677. "__type__": "cc.Color",
  8678. "r": 211,
  8679. "g": 211,
  8680. "b": 211,
  8681. "a": 255
  8682. },
  8683. "pressedColor": {
  8684. "__type__": "cc.Color",
  8685. "r": 211,
  8686. "g": 211,
  8687. "b": 211,
  8688. "a": 255
  8689. },
  8690. "_N$hoverColor": {
  8691. "__type__": "cc.Color",
  8692. "r": 255,
  8693. "g": 255,
  8694. "b": 255,
  8695. "a": 255
  8696. },
  8697. "hoverColor": {
  8698. "__type__": "cc.Color",
  8699. "r": 255,
  8700. "g": 255,
  8701. "b": 255,
  8702. "a": 255
  8703. },
  8704. "_N$disabledColor": {
  8705. "__type__": "cc.Color",
  8706. "r": 124,
  8707. "g": 124,
  8708. "b": 124,
  8709. "a": 255
  8710. },
  8711. "_N$normalSprite": null,
  8712. "_N$pressedSprite": null,
  8713. "pressedSprite": null,
  8714. "_N$hoverSprite": null,
  8715. "hoverSprite": null,
  8716. "_N$disabledSprite": null,
  8717. "_N$target": null,
  8718. "_id": ""
  8719. },
  8720. {
  8721. "__type__": "cc.ClickEvent",
  8722. "target": {
  8723. "__id__": 213
  8724. },
  8725. "component": "",
  8726. "_componentId": "151bdPsfBdMXbh/WAVcXBV2",
  8727. "handler": "onclick",
  8728. "customEventData": ""
  8729. },
  8730. {
  8731. "__type__": "151bdPsfBdMXbh/WAVcXBV2",
  8732. "_name": "",
  8733. "_objFlags": 0,
  8734. "node": {
  8735. "__id__": 213
  8736. },
  8737. "_enabled": true,
  8738. "mBG": {
  8739. "__id__": 215
  8740. },
  8741. "mIcon": {
  8742. "__id__": 219
  8743. },
  8744. "mNullIcon": {
  8745. "__uuid__": "78562430-f154-4a16-914a-8c84c69f9cce"
  8746. },
  8747. "mBGs": [
  8748. {
  8749. "__uuid__": "398d12e8-d5aa-4d23-8322-d2f6cc12f71a"
  8750. },
  8751. {
  8752. "__uuid__": "e9d93117-eecf-4225-87d1-c65f2ab1a757"
  8753. },
  8754. {
  8755. "__uuid__": "947f2cb4-69c3-4ed6-97b1-35e22e263649"
  8756. },
  8757. {
  8758. "__uuid__": "1b48f361-8cb3-43e3-9bc3-1731ad9f6aa6"
  8759. },
  8760. {
  8761. "__uuid__": "e36b59c9-abab-49ea-ad4b-c20d73d6c2e9"
  8762. }
  8763. ],
  8764. "mNullNode": {
  8765. "__id__": 217
  8766. },
  8767. "mStarNode": {
  8768. "__id__": 227
  8769. },
  8770. "mStar": {
  8771. "__uuid__": "bbda706e-aa95-4e38-a4b2-74c3b9ec7c30"
  8772. },
  8773. "mLevel": {
  8774. "__id__": 223
  8775. },
  8776. "mContrast": {
  8777. "__id__": 231
  8778. },
  8779. "_id": ""
  8780. },
  8781. {
  8782. "__type__": "cc.PrefabInfo",
  8783. "root": {
  8784. "__id__": 213
  8785. },
  8786. "asset": {
  8787. "__uuid__": "a86a17b7-7dc9-43b7-ae1c-5f43e0d33fc2"
  8788. },
  8789. "fileId": "d2XVKPMexGDJ9c9WewHhIY",
  8790. "sync": false
  8791. },
  8792. {
  8793. "__type__": "cc.Node",
  8794. "_name": "New Label",
  8795. "_objFlags": 0,
  8796. "_parent": {
  8797. "__id__": 212
  8798. },
  8799. "_children": [],
  8800. "_active": true,
  8801. "_components": [
  8802. {
  8803. "__id__": 242
  8804. },
  8805. {
  8806. "__id__": 243
  8807. }
  8808. ],
  8809. "_prefab": {
  8810. "__id__": 244
  8811. },
  8812. "_opacity": 255,
  8813. "_color": {
  8814. "__type__": "cc.Color",
  8815. "r": 75,
  8816. "g": 43,
  8817. "b": 0,
  8818. "a": 255
  8819. },
  8820. "_contentSize": {
  8821. "__type__": "cc.Size",
  8822. "width": 134,
  8823. "height": 37.8
  8824. },
  8825. "_anchorPoint": {
  8826. "__type__": "cc.Vec2",
  8827. "x": 0,
  8828. "y": 0.5
  8829. },
  8830. "_trs": {
  8831. "__type__": "TypedArray",
  8832. "ctor": "Float64Array",
  8833. "array": [
  8834. -54.933,
  8835. 15.142,
  8836. 0,
  8837. 0,
  8838. 0,
  8839. 0,
  8840. 1,
  8841. 1,
  8842. 1,
  8843. 1
  8844. ]
  8845. },
  8846. "_eulerAngles": {
  8847. "__type__": "cc.Vec3",
  8848. "x": 0,
  8849. "y": 0,
  8850. "z": 0
  8851. },
  8852. "_skewX": 0,
  8853. "_skewY": 0,
  8854. "_is3DNode": false,
  8855. "_groupIndex": 0,
  8856. "groupIndex": 0,
  8857. "_id": ""
  8858. },
  8859. {
  8860. "__type__": "cc.Label",
  8861. "_name": "",
  8862. "_objFlags": 0,
  8863. "node": {
  8864. "__id__": 241
  8865. },
  8866. "_enabled": true,
  8867. "_materials": [
  8868. {
  8869. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8870. }
  8871. ],
  8872. "_srcBlendFactor": 770,
  8873. "_dstBlendFactor": 771,
  8874. "_string": "装备强化锤Lv4",
  8875. "_N$string": "装备强化锤Lv4",
  8876. "_fontSize": 20,
  8877. "_lineHeight": 30,
  8878. "_enableWrapText": true,
  8879. "_N$file": {
  8880. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  8881. },
  8882. "_isSystemFontUsed": false,
  8883. "_spacingX": 0,
  8884. "_batchAsBitmap": false,
  8885. "_styleFlags": 0,
  8886. "_underlineHeight": 0,
  8887. "_N$horizontalAlign": 1,
  8888. "_N$verticalAlign": 1,
  8889. "_N$fontFamily": "Arial",
  8890. "_N$overflow": 0,
  8891. "_N$cacheMode": 0,
  8892. "_id": ""
  8893. },
  8894. {
  8895. "__type__": "cc.LabelOutline",
  8896. "_name": "",
  8897. "_objFlags": 0,
  8898. "node": {
  8899. "__id__": 241
  8900. },
  8901. "_enabled": false,
  8902. "_color": {
  8903. "__type__": "cc.Color",
  8904. "r": 8,
  8905. "g": 5,
  8906. "b": 5,
  8907. "a": 255
  8908. },
  8909. "_width": 2,
  8910. "_id": ""
  8911. },
  8912. {
  8913. "__type__": "cc.PrefabInfo",
  8914. "root": {
  8915. "__id__": 1
  8916. },
  8917. "asset": {
  8918. "__uuid__": "b7cc1149-b4a1-4aa0-bbeb-12e4d6a911a6"
  8919. },
  8920. "fileId": "1dY/YiIZ9J/YJsRNI7Ssll",
  8921. "sync": false
  8922. },
  8923. {
  8924. "__type__": "cc.Node",
  8925. "_name": "New Label",
  8926. "_objFlags": 0,
  8927. "_parent": {
  8928. "__id__": 212
  8929. },
  8930. "_children": [],
  8931. "_active": true,
  8932. "_components": [
  8933. {
  8934. "__id__": 246
  8935. },
  8936. {
  8937. "__id__": 247
  8938. }
  8939. ],
  8940. "_prefab": {
  8941. "__id__": 248
  8942. },
  8943. "_opacity": 255,
  8944. "_color": {
  8945. "__type__": "cc.Color",
  8946. "r": 75,
  8947. "g": 43,
  8948. "b": 0,
  8949. "a": 255
  8950. },
  8951. "_contentSize": {
  8952. "__type__": "cc.Size",
  8953. "width": 140,
  8954. "height": 37.8
  8955. },
  8956. "_anchorPoint": {
  8957. "__type__": "cc.Vec2",
  8958. "x": 0,
  8959. "y": 0.5
  8960. },
  8961. "_trs": {
  8962. "__type__": "TypedArray",
  8963. "ctor": "Float64Array",
  8964. "array": [
  8965. -54.933,
  8966. -16.902,
  8967. 0,
  8968. 0,
  8969. 0,
  8970. 0,
  8971. 1,
  8972. 1,
  8973. 1,
  8974. 1
  8975. ]
  8976. },
  8977. "_eulerAngles": {
  8978. "__type__": "cc.Vec3",
  8979. "x": 0,
  8980. "y": 0,
  8981. "z": 0
  8982. },
  8983. "_skewX": 0,
  8984. "_skewY": 0,
  8985. "_is3DNode": false,
  8986. "_groupIndex": 0,
  8987. "groupIndex": 0,
  8988. "_id": ""
  8989. },
  8990. {
  8991. "__type__": "cc.Label",
  8992. "_name": "",
  8993. "_objFlags": 0,
  8994. "node": {
  8995. "__id__": 245
  8996. },
  8997. "_enabled": true,
  8998. "_materials": [
  8999. {
  9000. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9001. }
  9002. ],
  9003. "_srcBlendFactor": 770,
  9004. "_dstBlendFactor": 771,
  9005. "_string": "可用于装备强化",
  9006. "_N$string": "可用于装备强化",
  9007. "_fontSize": 20,
  9008. "_lineHeight": 30,
  9009. "_enableWrapText": true,
  9010. "_N$file": {
  9011. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  9012. },
  9013. "_isSystemFontUsed": false,
  9014. "_spacingX": 0,
  9015. "_batchAsBitmap": false,
  9016. "_styleFlags": 0,
  9017. "_underlineHeight": 0,
  9018. "_N$horizontalAlign": 1,
  9019. "_N$verticalAlign": 1,
  9020. "_N$fontFamily": "Arial",
  9021. "_N$overflow": 0,
  9022. "_N$cacheMode": 0,
  9023. "_id": ""
  9024. },
  9025. {
  9026. "__type__": "cc.LabelOutline",
  9027. "_name": "",
  9028. "_objFlags": 0,
  9029. "node": {
  9030. "__id__": 245
  9031. },
  9032. "_enabled": false,
  9033. "_color": {
  9034. "__type__": "cc.Color",
  9035. "r": 8,
  9036. "g": 5,
  9037. "b": 5,
  9038. "a": 255
  9039. },
  9040. "_width": 2,
  9041. "_id": ""
  9042. },
  9043. {
  9044. "__type__": "cc.PrefabInfo",
  9045. "root": {
  9046. "__id__": 1
  9047. },
  9048. "asset": {
  9049. "__uuid__": "b7cc1149-b4a1-4aa0-bbeb-12e4d6a911a6"
  9050. },
  9051. "fileId": "3fXwIOcEdABbLTxQxlEcn+",
  9052. "sync": false
  9053. },
  9054. {
  9055. "__type__": "cc.Sprite",
  9056. "_name": "",
  9057. "_objFlags": 0,
  9058. "node": {
  9059. "__id__": 212
  9060. },
  9061. "_enabled": true,
  9062. "_materials": [
  9063. {
  9064. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9065. }
  9066. ],
  9067. "_srcBlendFactor": 770,
  9068. "_dstBlendFactor": 771,
  9069. "_spriteFrame": {
  9070. "__uuid__": "aad505ac-9b28-4429-99b4-cfbb51fbbe89"
  9071. },
  9072. "_type": 1,
  9073. "_sizeMode": 0,
  9074. "_fillType": 0,
  9075. "_fillCenter": {
  9076. "__type__": "cc.Vec2",
  9077. "x": 0,
  9078. "y": 0
  9079. },
  9080. "_fillStart": 0,
  9081. "_fillRange": 0,
  9082. "_isTrimmedMode": true,
  9083. "_atlas": null,
  9084. "_id": ""
  9085. },
  9086. {
  9087. "__type__": "cc.PrefabInfo",
  9088. "root": {
  9089. "__id__": 1
  9090. },
  9091. "asset": {
  9092. "__uuid__": "b7cc1149-b4a1-4aa0-bbeb-12e4d6a911a6"
  9093. },
  9094. "fileId": "7aagcaAkZCF412ycuwZmse",
  9095. "sync": false
  9096. },
  9097. {
  9098. "__type__": "cc.Layout",
  9099. "_name": "",
  9100. "_objFlags": 0,
  9101. "node": {
  9102. "__id__": 211
  9103. },
  9104. "_enabled": true,
  9105. "_layoutSize": {
  9106. "__type__": "cc.Size",
  9107. "width": 280,
  9108. "height": 120
  9109. },
  9110. "_resize": 1,
  9111. "_N$layoutType": 2,
  9112. "_N$cellSize": {
  9113. "__type__": "cc.Size",
  9114. "width": 40,
  9115. "height": 40
  9116. },
  9117. "_N$startAxis": 0,
  9118. "_N$paddingLeft": 0,
  9119. "_N$paddingRight": 0,
  9120. "_N$paddingTop": 0,
  9121. "_N$paddingBottom": 40,
  9122. "_N$spacingX": 0,
  9123. "_N$spacingY": 10,
  9124. "_N$verticalDirection": 1,
  9125. "_N$horizontalDirection": 0,
  9126. "_N$affectedByScale": false,
  9127. "_id": ""
  9128. },
  9129. {
  9130. "__type__": "cc.PrefabInfo",
  9131. "root": {
  9132. "__id__": 1
  9133. },
  9134. "asset": {
  9135. "__uuid__": "b7cc1149-b4a1-4aa0-bbeb-12e4d6a911a6"
  9136. },
  9137. "fileId": "b6AaRJhMxA+ZSCPWkCrrPm",
  9138. "sync": false
  9139. },
  9140. {
  9141. "__type__": "cc.Mask",
  9142. "_name": "",
  9143. "_objFlags": 0,
  9144. "node": {
  9145. "__id__": 210
  9146. },
  9147. "_enabled": true,
  9148. "_materials": [
  9149. {
  9150. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9151. }
  9152. ],
  9153. "_spriteFrame": null,
  9154. "_type": 0,
  9155. "_segments": 64,
  9156. "_N$alphaThreshold": 0,
  9157. "_N$inverted": false,
  9158. "_id": ""
  9159. },
  9160. {
  9161. "__type__": "cc.PrefabInfo",
  9162. "root": {
  9163. "__id__": 1
  9164. },
  9165. "asset": {
  9166. "__uuid__": "b7cc1149-b4a1-4aa0-bbeb-12e4d6a911a6"
  9167. },
  9168. "fileId": "35X09KA6ZEkbFepINgm1Hb",
  9169. "sync": false
  9170. },
  9171. {
  9172. "__type__": "cc.ScrollView",
  9173. "_name": "",
  9174. "_objFlags": 0,
  9175. "node": {
  9176. "__id__": 209
  9177. },
  9178. "_enabled": true,
  9179. "horizontal": false,
  9180. "vertical": true,
  9181. "inertia": true,
  9182. "brake": 0.75,
  9183. "elastic": true,
  9184. "bounceDuration": 0.23,
  9185. "scrollEvents": [],
  9186. "cancelInnerEvents": true,
  9187. "_N$content": {
  9188. "__id__": 211
  9189. },
  9190. "content": {
  9191. "__id__": 211
  9192. },
  9193. "_N$horizontalScrollBar": null,
  9194. "_N$verticalScrollBar": null,
  9195. "_id": ""
  9196. },
  9197. {
  9198. "__type__": "cc.PrefabInfo",
  9199. "root": {
  9200. "__id__": 1
  9201. },
  9202. "asset": {
  9203. "__uuid__": "b7cc1149-b4a1-4aa0-bbeb-12e4d6a911a6"
  9204. },
  9205. "fileId": "d7blsgTVJM86pu5R9afL4k",
  9206. "sync": false
  9207. },
  9208. {
  9209. "__type__": "cc.Sprite",
  9210. "_name": "",
  9211. "_objFlags": 0,
  9212. "node": {
  9213. "__id__": 208
  9214. },
  9215. "_enabled": true,
  9216. "_materials": [
  9217. {
  9218. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9219. }
  9220. ],
  9221. "_srcBlendFactor": 770,
  9222. "_dstBlendFactor": 771,
  9223. "_spriteFrame": {
  9224. "__uuid__": "5822059a-8a96-4510-b4de-7adf1113f361"
  9225. },
  9226. "_type": 1,
  9227. "_sizeMode": 0,
  9228. "_fillType": 0,
  9229. "_fillCenter": {
  9230. "__type__": "cc.Vec2",
  9231. "x": 0,
  9232. "y": 0
  9233. },
  9234. "_fillStart": 0,
  9235. "_fillRange": 0,
  9236. "_isTrimmedMode": true,
  9237. "_atlas": null,
  9238. "_id": ""
  9239. },
  9240. {
  9241. "__type__": "cc.PrefabInfo",
  9242. "root": {
  9243. "__id__": 1
  9244. },
  9245. "asset": {
  9246. "__uuid__": "b7cc1149-b4a1-4aa0-bbeb-12e4d6a911a6"
  9247. },
  9248. "fileId": "83Zyuln6tHnrJbR4HHmJ4n",
  9249. "sync": false
  9250. },
  9251. {
  9252. "__type__": "cc.Node",
  9253. "_name": "New Label",
  9254. "_objFlags": 0,
  9255. "_parent": {
  9256. "__id__": 1
  9257. },
  9258. "_children": [],
  9259. "_active": false,
  9260. "_components": [
  9261. {
  9262. "__id__": 260
  9263. },
  9264. {
  9265. "__id__": 261
  9266. }
  9267. ],
  9268. "_prefab": {
  9269. "__id__": 262
  9270. },
  9271. "_opacity": 255,
  9272. "_color": {
  9273. "__type__": "cc.Color",
  9274. "r": 255,
  9275. "g": 255,
  9276. "b": 255,
  9277. "a": 255
  9278. },
  9279. "_contentSize": {
  9280. "__type__": "cc.Size",
  9281. "width": 331.5,
  9282. "height": 41.8
  9283. },
  9284. "_anchorPoint": {
  9285. "__type__": "cc.Vec2",
  9286. "x": 0.5,
  9287. "y": 0.5
  9288. },
  9289. "_trs": {
  9290. "__type__": "TypedArray",
  9291. "ctor": "Float64Array",
  9292. "array": [
  9293. 0,
  9294. 149.888,
  9295. 0,
  9296. 0,
  9297. 0,
  9298. 0,
  9299. 1,
  9300. 1,
  9301. 1,
  9302. 1
  9303. ]
  9304. },
  9305. "_eulerAngles": {
  9306. "__type__": "cc.Vec3",
  9307. "x": 0,
  9308. "y": 0,
  9309. "z": 0
  9310. },
  9311. "_skewX": 0,
  9312. "_skewY": 0,
  9313. "_is3DNode": false,
  9314. "_groupIndex": 0,
  9315. "groupIndex": 0,
  9316. "_id": ""
  9317. },
  9318. {
  9319. "__type__": "cc.Label",
  9320. "_name": "",
  9321. "_objFlags": 0,
  9322. "node": {
  9323. "__id__": 259
  9324. },
  9325. "_enabled": true,
  9326. "_materials": [
  9327. {
  9328. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9329. }
  9330. ],
  9331. "_srcBlendFactor": 770,
  9332. "_dstBlendFactor": 771,
  9333. "_string": "精选刷新倒计时:23小时43分",
  9334. "_N$string": "精选刷新倒计时:23小时43分",
  9335. "_fontSize": 25,
  9336. "_lineHeight": 30,
  9337. "_enableWrapText": true,
  9338. "_N$file": {
  9339. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  9340. },
  9341. "_isSystemFontUsed": false,
  9342. "_spacingX": 0,
  9343. "_batchAsBitmap": false,
  9344. "_styleFlags": 0,
  9345. "_underlineHeight": 0,
  9346. "_N$horizontalAlign": 1,
  9347. "_N$verticalAlign": 1,
  9348. "_N$fontFamily": "Arial",
  9349. "_N$overflow": 0,
  9350. "_N$cacheMode": 0,
  9351. "_id": ""
  9352. },
  9353. {
  9354. "__type__": "cc.LabelOutline",
  9355. "_name": "",
  9356. "_objFlags": 0,
  9357. "node": {
  9358. "__id__": 259
  9359. },
  9360. "_enabled": true,
  9361. "_color": {
  9362. "__type__": "cc.Color",
  9363. "r": 8,
  9364. "g": 5,
  9365. "b": 5,
  9366. "a": 255
  9367. },
  9368. "_width": 2,
  9369. "_id": ""
  9370. },
  9371. {
  9372. "__type__": "cc.PrefabInfo",
  9373. "root": {
  9374. "__id__": 1
  9375. },
  9376. "asset": {
  9377. "__uuid__": "b7cc1149-b4a1-4aa0-bbeb-12e4d6a911a6"
  9378. },
  9379. "fileId": "581OZA3kdL1JfPHRWigJb+",
  9380. "sync": false
  9381. },
  9382. {
  9383. "__type__": "cc.PrefabInfo",
  9384. "root": {
  9385. "__id__": 1
  9386. },
  9387. "asset": {
  9388. "__uuid__": "b7cc1149-b4a1-4aa0-bbeb-12e4d6a911a6"
  9389. },
  9390. "fileId": "",
  9391. "sync": false
  9392. }
  9393. ]