Notice.prefab 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951
  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": "Notice",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 5
  25. },
  26. {
  27. "__id__": 12
  28. },
  29. {
  30. "__id__": 17
  31. },
  32. {
  33. "__id__": 181
  34. }
  35. ],
  36. "_active": true,
  37. "_components": [
  38. {
  39. "__id__": 197
  40. },
  41. {
  42. "__id__": 198
  43. }
  44. ],
  45. "_prefab": {
  46. "__id__": 199
  47. },
  48. "_opacity": 255,
  49. "_color": {
  50. "__type__": "cc.Color",
  51. "r": 255,
  52. "g": 255,
  53. "b": 255,
  54. "a": 255
  55. },
  56. "_contentSize": {
  57. "__type__": "cc.Size",
  58. "width": 720,
  59. "height": 1280
  60. },
  61. "_anchorPoint": {
  62. "__type__": "cc.Vec2",
  63. "x": 0.5,
  64. "y": 0.5
  65. },
  66. "_trs": {
  67. "__type__": "TypedArray",
  68. "ctor": "Float64Array",
  69. "array": [
  70. 0,
  71. 0,
  72. 0,
  73. 0,
  74. 0,
  75. 0,
  76. 1,
  77. 1,
  78. 1,
  79. 1
  80. ]
  81. },
  82. "_eulerAngles": {
  83. "__type__": "cc.Vec3",
  84. "x": 0,
  85. "y": 0,
  86. "z": 0
  87. },
  88. "_skewX": 0,
  89. "_skewY": 0,
  90. "_is3DNode": false,
  91. "_groupIndex": 0,
  92. "groupIndex": 0,
  93. "_id": ""
  94. },
  95. {
  96. "__type__": "cc.Node",
  97. "_name": "Bg",
  98. "_objFlags": 512,
  99. "_parent": {
  100. "__id__": 1
  101. },
  102. "_children": [],
  103. "_active": true,
  104. "_components": [
  105. {
  106. "__id__": 3
  107. }
  108. ],
  109. "_prefab": {
  110. "__id__": 4
  111. },
  112. "_opacity": 255,
  113. "_color": {
  114. "__type__": "cc.Color",
  115. "r": 255,
  116. "g": 255,
  117. "b": 255,
  118. "a": 255
  119. },
  120. "_contentSize": {
  121. "__type__": "cc.Size",
  122. "width": 668,
  123. "height": 1082
  124. },
  125. "_anchorPoint": {
  126. "__type__": "cc.Vec2",
  127. "x": 0.5,
  128. "y": 0.5
  129. },
  130. "_trs": {
  131. "__type__": "TypedArray",
  132. "ctor": "Float64Array",
  133. "array": [
  134. 0,
  135. 0,
  136. 0,
  137. 0,
  138. 0,
  139. 0,
  140. 1,
  141. 1,
  142. 1,
  143. 1
  144. ]
  145. },
  146. "_eulerAngles": {
  147. "__type__": "cc.Vec3",
  148. "x": 0,
  149. "y": 0,
  150. "z": 0
  151. },
  152. "_skewX": 0,
  153. "_skewY": 0,
  154. "_is3DNode": false,
  155. "_groupIndex": 0,
  156. "groupIndex": 0,
  157. "_id": ""
  158. },
  159. {
  160. "__type__": "cc.Sprite",
  161. "_name": "",
  162. "_objFlags": 0,
  163. "node": {
  164. "__id__": 2
  165. },
  166. "_enabled": true,
  167. "_materials": [
  168. {
  169. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  170. }
  171. ],
  172. "_srcBlendFactor": 770,
  173. "_dstBlendFactor": 771,
  174. "_spriteFrame": {
  175. "__uuid__": "451faa00-83f8-40b2-84d3-c17677fb3d1b"
  176. },
  177. "_type": 0,
  178. "_sizeMode": 1,
  179. "_fillType": 0,
  180. "_fillCenter": {
  181. "__type__": "cc.Vec2",
  182. "x": 0,
  183. "y": 0
  184. },
  185. "_fillStart": 0,
  186. "_fillRange": 0,
  187. "_isTrimmedMode": true,
  188. "_atlas": null,
  189. "_id": ""
  190. },
  191. {
  192. "__type__": "cc.PrefabInfo",
  193. "root": {
  194. "__id__": 1
  195. },
  196. "asset": {
  197. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  198. },
  199. "fileId": "51/O7VuzZMLqcDxoo1In+n",
  200. "sync": false
  201. },
  202. {
  203. "__type__": "cc.Node",
  204. "_name": "titleBG",
  205. "_objFlags": 0,
  206. "_parent": {
  207. "__id__": 1
  208. },
  209. "_children": [
  210. {
  211. "__id__": 6
  212. }
  213. ],
  214. "_active": true,
  215. "_components": [
  216. {
  217. "__id__": 10
  218. }
  219. ],
  220. "_prefab": {
  221. "__id__": 11
  222. },
  223. "_opacity": 255,
  224. "_color": {
  225. "__type__": "cc.Color",
  226. "r": 255,
  227. "g": 255,
  228. "b": 255,
  229. "a": 255
  230. },
  231. "_contentSize": {
  232. "__type__": "cc.Size",
  233. "width": 300,
  234. "height": 74
  235. },
  236. "_anchorPoint": {
  237. "__type__": "cc.Vec2",
  238. "x": 0.5,
  239. "y": 0.5
  240. },
  241. "_trs": {
  242. "__type__": "TypedArray",
  243. "ctor": "Float64Array",
  244. "array": [
  245. 0,
  246. 520.07,
  247. 0,
  248. 0,
  249. 0,
  250. 0,
  251. 1,
  252. 1,
  253. 1,
  254. 1
  255. ]
  256. },
  257. "_eulerAngles": {
  258. "__type__": "cc.Vec3",
  259. "x": 0,
  260. "y": 0,
  261. "z": 0
  262. },
  263. "_skewX": 0,
  264. "_skewY": 0,
  265. "_is3DNode": false,
  266. "_groupIndex": 0,
  267. "groupIndex": 0,
  268. "_id": ""
  269. },
  270. {
  271. "__type__": "cc.Node",
  272. "_name": "New Label",
  273. "_objFlags": 0,
  274. "_parent": {
  275. "__id__": 5
  276. },
  277. "_children": [],
  278. "_active": true,
  279. "_components": [
  280. {
  281. "__id__": 7
  282. },
  283. {
  284. "__id__": 8
  285. }
  286. ],
  287. "_prefab": {
  288. "__id__": 9
  289. },
  290. "_opacity": 255,
  291. "_color": {
  292. "__type__": "cc.Color",
  293. "r": 255,
  294. "g": 255,
  295. "b": 255,
  296. "a": 255
  297. },
  298. "_contentSize": {
  299. "__type__": "cc.Size",
  300. "width": 84,
  301. "height": 54.4
  302. },
  303. "_anchorPoint": {
  304. "__type__": "cc.Vec2",
  305. "x": 0.5,
  306. "y": 0.5
  307. },
  308. "_trs": {
  309. "__type__": "TypedArray",
  310. "ctor": "Float64Array",
  311. "array": [
  312. 0,
  313. 0,
  314. 0,
  315. 0,
  316. 0,
  317. 0,
  318. 1,
  319. 1,
  320. 1,
  321. 1
  322. ]
  323. },
  324. "_eulerAngles": {
  325. "__type__": "cc.Vec3",
  326. "x": 0,
  327. "y": 0,
  328. "z": 0
  329. },
  330. "_skewX": 0,
  331. "_skewY": 0,
  332. "_is3DNode": false,
  333. "_groupIndex": 0,
  334. "groupIndex": 0,
  335. "_id": ""
  336. },
  337. {
  338. "__type__": "cc.Label",
  339. "_name": "",
  340. "_objFlags": 0,
  341. "node": {
  342. "__id__": 6
  343. },
  344. "_enabled": true,
  345. "_materials": [
  346. {
  347. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  348. }
  349. ],
  350. "_srcBlendFactor": 770,
  351. "_dstBlendFactor": 771,
  352. "_string": "公告",
  353. "_N$string": "公告",
  354. "_fontSize": 40,
  355. "_lineHeight": 40,
  356. "_enableWrapText": true,
  357. "_N$file": null,
  358. "_isSystemFontUsed": true,
  359. "_spacingX": 0,
  360. "_batchAsBitmap": false,
  361. "_styleFlags": 0,
  362. "_underlineHeight": 0,
  363. "_N$horizontalAlign": 1,
  364. "_N$verticalAlign": 1,
  365. "_N$fontFamily": "Arial",
  366. "_N$overflow": 0,
  367. "_N$cacheMode": 0,
  368. "_id": ""
  369. },
  370. {
  371. "__type__": "cc.LabelOutline",
  372. "_name": "",
  373. "_objFlags": 0,
  374. "node": {
  375. "__id__": 6
  376. },
  377. "_enabled": true,
  378. "_color": {
  379. "__type__": "cc.Color",
  380. "r": 193,
  381. "g": 102,
  382. "b": 41,
  383. "a": 255
  384. },
  385. "_width": 2,
  386. "_id": ""
  387. },
  388. {
  389. "__type__": "cc.PrefabInfo",
  390. "root": {
  391. "__id__": 1
  392. },
  393. "asset": {
  394. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  395. },
  396. "fileId": "77UOpQblpDAaeMdr8V67mm",
  397. "sync": false
  398. },
  399. {
  400. "__type__": "cc.Sprite",
  401. "_name": "",
  402. "_objFlags": 0,
  403. "node": {
  404. "__id__": 5
  405. },
  406. "_enabled": true,
  407. "_materials": [
  408. {
  409. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  410. }
  411. ],
  412. "_srcBlendFactor": 770,
  413. "_dstBlendFactor": 771,
  414. "_spriteFrame": {
  415. "__uuid__": "485faa2c-fe3c-4831-a44f-bea05671b454"
  416. },
  417. "_type": 0,
  418. "_sizeMode": 1,
  419. "_fillType": 0,
  420. "_fillCenter": {
  421. "__type__": "cc.Vec2",
  422. "x": 0,
  423. "y": 0
  424. },
  425. "_fillStart": 0,
  426. "_fillRange": 0,
  427. "_isTrimmedMode": true,
  428. "_atlas": null,
  429. "_id": ""
  430. },
  431. {
  432. "__type__": "cc.PrefabInfo",
  433. "root": {
  434. "__id__": 1
  435. },
  436. "asset": {
  437. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  438. },
  439. "fileId": "b6pMnznWdP67pP+WuMCSbq",
  440. "sync": false
  441. },
  442. {
  443. "__type__": "cc.Node",
  444. "_name": "btnClose",
  445. "_objFlags": 0,
  446. "_parent": {
  447. "__id__": 1
  448. },
  449. "_children": [],
  450. "_active": true,
  451. "_components": [
  452. {
  453. "__id__": 13
  454. },
  455. {
  456. "__id__": 14
  457. }
  458. ],
  459. "_prefab": {
  460. "__id__": 16
  461. },
  462. "_opacity": 255,
  463. "_color": {
  464. "__type__": "cc.Color",
  465. "r": 255,
  466. "g": 255,
  467. "b": 255,
  468. "a": 255
  469. },
  470. "_contentSize": {
  471. "__type__": "cc.Size",
  472. "width": 60,
  473. "height": 60
  474. },
  475. "_anchorPoint": {
  476. "__type__": "cc.Vec2",
  477. "x": 0.5,
  478. "y": 0.5
  479. },
  480. "_trs": {
  481. "__type__": "TypedArray",
  482. "ctor": "Float64Array",
  483. "array": [
  484. 282.452,
  485. 490.928,
  486. 0,
  487. 0,
  488. 0,
  489. 0,
  490. 1,
  491. 1,
  492. 1,
  493. 1
  494. ]
  495. },
  496. "_eulerAngles": {
  497. "__type__": "cc.Vec3",
  498. "x": 0,
  499. "y": 0,
  500. "z": 0
  501. },
  502. "_skewX": 0,
  503. "_skewY": 0,
  504. "_is3DNode": false,
  505. "_groupIndex": 0,
  506. "groupIndex": 0,
  507. "_id": ""
  508. },
  509. {
  510. "__type__": "cc.Sprite",
  511. "_name": "",
  512. "_objFlags": 0,
  513. "node": {
  514. "__id__": 12
  515. },
  516. "_enabled": true,
  517. "_materials": [
  518. {
  519. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  520. }
  521. ],
  522. "_srcBlendFactor": 770,
  523. "_dstBlendFactor": 771,
  524. "_spriteFrame": {
  525. "__uuid__": "72efa3b5-c9dd-47a5-a6f3-4f3abd5bc7e5"
  526. },
  527. "_type": 0,
  528. "_sizeMode": 1,
  529. "_fillType": 0,
  530. "_fillCenter": {
  531. "__type__": "cc.Vec2",
  532. "x": 0,
  533. "y": 0
  534. },
  535. "_fillStart": 0,
  536. "_fillRange": 0,
  537. "_isTrimmedMode": true,
  538. "_atlas": null,
  539. "_id": ""
  540. },
  541. {
  542. "__type__": "cc.Button",
  543. "_name": "",
  544. "_objFlags": 0,
  545. "node": {
  546. "__id__": 12
  547. },
  548. "_enabled": true,
  549. "_normalMaterial": null,
  550. "_grayMaterial": null,
  551. "duration": 0.1,
  552. "zoomScale": 1.2,
  553. "clickEvents": [
  554. {
  555. "__id__": 15
  556. }
  557. ],
  558. "_N$interactable": true,
  559. "_N$enableAutoGrayEffect": false,
  560. "_N$transition": 0,
  561. "transition": 0,
  562. "_N$normalColor": {
  563. "__type__": "cc.Color",
  564. "r": 255,
  565. "g": 255,
  566. "b": 255,
  567. "a": 255
  568. },
  569. "_N$pressedColor": {
  570. "__type__": "cc.Color",
  571. "r": 211,
  572. "g": 211,
  573. "b": 211,
  574. "a": 255
  575. },
  576. "pressedColor": {
  577. "__type__": "cc.Color",
  578. "r": 211,
  579. "g": 211,
  580. "b": 211,
  581. "a": 255
  582. },
  583. "_N$hoverColor": {
  584. "__type__": "cc.Color",
  585. "r": 255,
  586. "g": 255,
  587. "b": 255,
  588. "a": 255
  589. },
  590. "hoverColor": {
  591. "__type__": "cc.Color",
  592. "r": 255,
  593. "g": 255,
  594. "b": 255,
  595. "a": 255
  596. },
  597. "_N$disabledColor": {
  598. "__type__": "cc.Color",
  599. "r": 124,
  600. "g": 124,
  601. "b": 124,
  602. "a": 255
  603. },
  604. "_N$normalSprite": null,
  605. "_N$pressedSprite": null,
  606. "pressedSprite": null,
  607. "_N$hoverSprite": null,
  608. "hoverSprite": null,
  609. "_N$disabledSprite": null,
  610. "_N$target": null,
  611. "_id": ""
  612. },
  613. {
  614. "__type__": "cc.ClickEvent",
  615. "target": {
  616. "__id__": 1
  617. },
  618. "component": "",
  619. "_componentId": "d2447Ik5gtAzY2mPWwZdjIM",
  620. "handler": "onClose",
  621. "customEventData": ""
  622. },
  623. {
  624. "__type__": "cc.PrefabInfo",
  625. "root": {
  626. "__id__": 1
  627. },
  628. "asset": {
  629. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  630. },
  631. "fileId": "75jKqGX1NM35RNTg7FUJkb",
  632. "sync": false
  633. },
  634. {
  635. "__type__": "cc.Node",
  636. "_name": "ScrollView",
  637. "_objFlags": 0,
  638. "_parent": {
  639. "__id__": 1
  640. },
  641. "_children": [
  642. {
  643. "__id__": 18
  644. },
  645. {
  646. "__id__": 25
  647. }
  648. ],
  649. "_active": true,
  650. "_components": [
  651. {
  652. "__id__": 179
  653. },
  654. {
  655. "__id__": 23
  656. }
  657. ],
  658. "_prefab": {
  659. "__id__": 180
  660. },
  661. "_opacity": 255,
  662. "_color": {
  663. "__type__": "cc.Color",
  664. "r": 255,
  665. "g": 255,
  666. "b": 255,
  667. "a": 255
  668. },
  669. "_contentSize": {
  670. "__type__": "cc.Size",
  671. "width": 530,
  672. "height": 950
  673. },
  674. "_anchorPoint": {
  675. "__type__": "cc.Vec2",
  676. "x": 0.5,
  677. "y": 0.5
  678. },
  679. "_trs": {
  680. "__type__": "TypedArray",
  681. "ctor": "Float64Array",
  682. "array": [
  683. 0,
  684. 0,
  685. 0,
  686. 0,
  687. 0,
  688. 0,
  689. 1,
  690. 1,
  691. 1,
  692. 1
  693. ]
  694. },
  695. "_eulerAngles": {
  696. "__type__": "cc.Vec3",
  697. "x": 0,
  698. "y": 0,
  699. "z": 0
  700. },
  701. "_skewX": 0,
  702. "_skewY": 0,
  703. "_is3DNode": false,
  704. "_groupIndex": 0,
  705. "groupIndex": 0,
  706. "_id": ""
  707. },
  708. {
  709. "__type__": "cc.Node",
  710. "_name": "scrollBar",
  711. "_objFlags": 512,
  712. "_parent": {
  713. "__id__": 17
  714. },
  715. "_children": [
  716. {
  717. "__id__": 19
  718. }
  719. ],
  720. "_active": true,
  721. "_components": [
  722. {
  723. "__id__": 22
  724. },
  725. {
  726. "__id__": 176
  727. },
  728. {
  729. "__id__": 177
  730. }
  731. ],
  732. "_prefab": {
  733. "__id__": 178
  734. },
  735. "_opacity": 0,
  736. "_color": {
  737. "__type__": "cc.Color",
  738. "r": 255,
  739. "g": 255,
  740. "b": 255,
  741. "a": 255
  742. },
  743. "_contentSize": {
  744. "__type__": "cc.Size",
  745. "width": 12,
  746. "height": 950
  747. },
  748. "_anchorPoint": {
  749. "__type__": "cc.Vec2",
  750. "x": 1,
  751. "y": 0.5
  752. },
  753. "_trs": {
  754. "__type__": "TypedArray",
  755. "ctor": "Float64Array",
  756. "array": [
  757. 265,
  758. 0,
  759. 0,
  760. 0,
  761. 0,
  762. 0,
  763. 1,
  764. 1,
  765. 1,
  766. 1
  767. ]
  768. },
  769. "_eulerAngles": {
  770. "__type__": "cc.Vec3",
  771. "x": 0,
  772. "y": 0,
  773. "z": 0
  774. },
  775. "_skewX": 0,
  776. "_skewY": 0,
  777. "_is3DNode": false,
  778. "_groupIndex": 0,
  779. "groupIndex": 0,
  780. "_id": ""
  781. },
  782. {
  783. "__type__": "cc.Node",
  784. "_name": "bar",
  785. "_objFlags": 512,
  786. "_parent": {
  787. "__id__": 18
  788. },
  789. "_children": [],
  790. "_active": true,
  791. "_components": [
  792. {
  793. "__id__": 20
  794. }
  795. ],
  796. "_prefab": {
  797. "__id__": 21
  798. },
  799. "_opacity": 255,
  800. "_color": {
  801. "__type__": "cc.Color",
  802. "r": 255,
  803. "g": 255,
  804. "b": 255,
  805. "a": 255
  806. },
  807. "_contentSize": {
  808. "__type__": "cc.Size",
  809. "width": 10,
  810. "height": 30
  811. },
  812. "_anchorPoint": {
  813. "__type__": "cc.Vec2",
  814. "x": 1,
  815. "y": 0
  816. },
  817. "_trs": {
  818. "__type__": "TypedArray",
  819. "ctor": "Float64Array",
  820. "array": [
  821. -1,
  822. 0,
  823. 0,
  824. 0,
  825. 0,
  826. 0,
  827. 1,
  828. 1,
  829. 1,
  830. 1
  831. ]
  832. },
  833. "_eulerAngles": {
  834. "__type__": "cc.Vec3",
  835. "x": 0,
  836. "y": 0,
  837. "z": 0
  838. },
  839. "_skewX": 0,
  840. "_skewY": 0,
  841. "_is3DNode": false,
  842. "_groupIndex": 0,
  843. "groupIndex": 0,
  844. "_id": ""
  845. },
  846. {
  847. "__type__": "cc.Sprite",
  848. "_name": "",
  849. "_objFlags": 0,
  850. "node": {
  851. "__id__": 19
  852. },
  853. "_enabled": true,
  854. "_materials": [
  855. {
  856. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  857. }
  858. ],
  859. "_srcBlendFactor": 770,
  860. "_dstBlendFactor": 771,
  861. "_spriteFrame": {
  862. "__uuid__": "5c3bb932-6c3c-468f-88a9-c8c61d458641"
  863. },
  864. "_type": 1,
  865. "_sizeMode": 0,
  866. "_fillType": 0,
  867. "_fillCenter": {
  868. "__type__": "cc.Vec2",
  869. "x": 0,
  870. "y": 0
  871. },
  872. "_fillStart": 0,
  873. "_fillRange": 0,
  874. "_isTrimmedMode": true,
  875. "_atlas": null,
  876. "_id": ""
  877. },
  878. {
  879. "__type__": "cc.PrefabInfo",
  880. "root": {
  881. "__id__": 1
  882. },
  883. "asset": {
  884. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  885. },
  886. "fileId": "9f3W/Fy/VGzrKZuYGcPkNl",
  887. "sync": false
  888. },
  889. {
  890. "__type__": "cc.Scrollbar",
  891. "_name": "",
  892. "_objFlags": 0,
  893. "node": {
  894. "__id__": 18
  895. },
  896. "_enabled": true,
  897. "_scrollView": {
  898. "__id__": 23
  899. },
  900. "_touching": false,
  901. "_opacity": 255,
  902. "enableAutoHide": true,
  903. "autoHideTime": 1,
  904. "_N$handle": {
  905. "__id__": 20
  906. },
  907. "_N$direction": 1,
  908. "_id": ""
  909. },
  910. {
  911. "__type__": "cc.ScrollView",
  912. "_name": "",
  913. "_objFlags": 0,
  914. "node": {
  915. "__id__": 17
  916. },
  917. "_enabled": true,
  918. "horizontal": false,
  919. "vertical": true,
  920. "inertia": true,
  921. "brake": 0.75,
  922. "elastic": true,
  923. "bounceDuration": 0.23,
  924. "scrollEvents": [],
  925. "cancelInnerEvents": true,
  926. "_N$content": {
  927. "__id__": 24
  928. },
  929. "content": {
  930. "__id__": 24
  931. },
  932. "_N$horizontalScrollBar": null,
  933. "_N$verticalScrollBar": {
  934. "__id__": 22
  935. },
  936. "_id": ""
  937. },
  938. {
  939. "__type__": "cc.Node",
  940. "_name": "content",
  941. "_objFlags": 512,
  942. "_parent": {
  943. "__id__": 25
  944. },
  945. "_children": [
  946. {
  947. "__id__": 28
  948. }
  949. ],
  950. "_active": true,
  951. "_components": [],
  952. "_prefab": {
  953. "__id__": 175
  954. },
  955. "_opacity": 255,
  956. "_color": {
  957. "__type__": "cc.Color",
  958. "r": 255,
  959. "g": 255,
  960. "b": 255,
  961. "a": 255
  962. },
  963. "_contentSize": {
  964. "__type__": "cc.Size",
  965. "width": 530,
  966. "height": 1500
  967. },
  968. "_anchorPoint": {
  969. "__type__": "cc.Vec2",
  970. "x": 0.5,
  971. "y": 1
  972. },
  973. "_trs": {
  974. "__type__": "TypedArray",
  975. "ctor": "Float64Array",
  976. "array": [
  977. 0,
  978. 0,
  979. 0,
  980. 0,
  981. 0,
  982. 0,
  983. 1,
  984. 1,
  985. 1,
  986. 1
  987. ]
  988. },
  989. "_eulerAngles": {
  990. "__type__": "cc.Vec3",
  991. "x": 0,
  992. "y": 0,
  993. "z": 0
  994. },
  995. "_skewX": 0,
  996. "_skewY": 0,
  997. "_is3DNode": false,
  998. "_groupIndex": 0,
  999. "groupIndex": 0,
  1000. "_id": ""
  1001. },
  1002. {
  1003. "__type__": "cc.Node",
  1004. "_name": "view",
  1005. "_objFlags": 512,
  1006. "_parent": {
  1007. "__id__": 17
  1008. },
  1009. "_children": [
  1010. {
  1011. "__id__": 24
  1012. }
  1013. ],
  1014. "_active": true,
  1015. "_components": [
  1016. {
  1017. "__id__": 26
  1018. }
  1019. ],
  1020. "_prefab": {
  1021. "__id__": 27
  1022. },
  1023. "_opacity": 255,
  1024. "_color": {
  1025. "__type__": "cc.Color",
  1026. "r": 255,
  1027. "g": 255,
  1028. "b": 255,
  1029. "a": 255
  1030. },
  1031. "_contentSize": {
  1032. "__type__": "cc.Size",
  1033. "width": 530,
  1034. "height": 950
  1035. },
  1036. "_anchorPoint": {
  1037. "__type__": "cc.Vec2",
  1038. "x": 0.5,
  1039. "y": 0.5
  1040. },
  1041. "_trs": {
  1042. "__type__": "TypedArray",
  1043. "ctor": "Float64Array",
  1044. "array": [
  1045. 0,
  1046. 0,
  1047. 0,
  1048. 0,
  1049. 0,
  1050. 0,
  1051. 1,
  1052. 1,
  1053. 1,
  1054. 1
  1055. ]
  1056. },
  1057. "_eulerAngles": {
  1058. "__type__": "cc.Vec3",
  1059. "x": 0,
  1060. "y": 0,
  1061. "z": 0
  1062. },
  1063. "_skewX": 0,
  1064. "_skewY": 0,
  1065. "_is3DNode": false,
  1066. "_groupIndex": 0,
  1067. "groupIndex": 0,
  1068. "_id": ""
  1069. },
  1070. {
  1071. "__type__": "cc.Mask",
  1072. "_name": "",
  1073. "_objFlags": 0,
  1074. "node": {
  1075. "__id__": 25
  1076. },
  1077. "_enabled": true,
  1078. "_materials": [
  1079. {
  1080. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1081. }
  1082. ],
  1083. "_spriteFrame": null,
  1084. "_type": 0,
  1085. "_segments": 64,
  1086. "_N$alphaThreshold": 0,
  1087. "_N$inverted": false,
  1088. "_id": ""
  1089. },
  1090. {
  1091. "__type__": "cc.PrefabInfo",
  1092. "root": {
  1093. "__id__": 1
  1094. },
  1095. "asset": {
  1096. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  1097. },
  1098. "fileId": "dcRz1MQxBMaLHyiHzWzgMx",
  1099. "sync": false
  1100. },
  1101. {
  1102. "__type__": "cc.Node",
  1103. "_name": "Layout",
  1104. "_objFlags": 0,
  1105. "_parent": {
  1106. "__id__": 24
  1107. },
  1108. "_children": [
  1109. {
  1110. "__id__": 29
  1111. },
  1112. {
  1113. "__id__": 45
  1114. },
  1115. {
  1116. "__id__": 61
  1117. },
  1118. {
  1119. "__id__": 77
  1120. },
  1121. {
  1122. "__id__": 93
  1123. },
  1124. {
  1125. "__id__": 109
  1126. },
  1127. {
  1128. "__id__": 125
  1129. },
  1130. {
  1131. "__id__": 141
  1132. },
  1133. {
  1134. "__id__": 157
  1135. }
  1136. ],
  1137. "_active": true,
  1138. "_components": [
  1139. {
  1140. "__id__": 173
  1141. }
  1142. ],
  1143. "_prefab": {
  1144. "__id__": 174
  1145. },
  1146. "_opacity": 255,
  1147. "_color": {
  1148. "__type__": "cc.Color",
  1149. "r": 255,
  1150. "g": 255,
  1151. "b": 255,
  1152. "a": 255
  1153. },
  1154. "_contentSize": {
  1155. "__type__": "cc.Size",
  1156. "width": 530,
  1157. "height": 1500
  1158. },
  1159. "_anchorPoint": {
  1160. "__type__": "cc.Vec2",
  1161. "x": 0.5,
  1162. "y": 0
  1163. },
  1164. "_trs": {
  1165. "__type__": "TypedArray",
  1166. "ctor": "Float64Array",
  1167. "array": [
  1168. 0,
  1169. -1500,
  1170. 0,
  1171. 0,
  1172. 0,
  1173. 0,
  1174. 1,
  1175. 1,
  1176. 1,
  1177. 1
  1178. ]
  1179. },
  1180. "_eulerAngles": {
  1181. "__type__": "cc.Vec3",
  1182. "x": 0,
  1183. "y": 0,
  1184. "z": 0
  1185. },
  1186. "_skewX": 0,
  1187. "_skewY": 0,
  1188. "_is3DNode": false,
  1189. "_groupIndex": 0,
  1190. "groupIndex": 0,
  1191. "_id": ""
  1192. },
  1193. {
  1194. "__type__": "cc.Node",
  1195. "_name": "Item",
  1196. "_objFlags": 0,
  1197. "_parent": {
  1198. "__id__": 28
  1199. },
  1200. "_children": [
  1201. {
  1202. "__id__": 30
  1203. },
  1204. {
  1205. "__id__": 33
  1206. },
  1207. {
  1208. "__id__": 36
  1209. },
  1210. {
  1211. "__id__": 40
  1212. }
  1213. ],
  1214. "_active": true,
  1215. "_components": [],
  1216. "_prefab": {
  1217. "__id__": 44
  1218. },
  1219. "_opacity": 255,
  1220. "_color": {
  1221. "__type__": "cc.Color",
  1222. "r": 255,
  1223. "g": 255,
  1224. "b": 255,
  1225. "a": 255
  1226. },
  1227. "_contentSize": {
  1228. "__type__": "cc.Size",
  1229. "width": 508,
  1230. "height": 108
  1231. },
  1232. "_anchorPoint": {
  1233. "__type__": "cc.Vec2",
  1234. "x": 0.5,
  1235. "y": 0.5
  1236. },
  1237. "_trs": {
  1238. "__type__": "TypedArray",
  1239. "ctor": "Float64Array",
  1240. "array": [
  1241. 0,
  1242. 1446,
  1243. 0,
  1244. 0,
  1245. 0,
  1246. 0,
  1247. 1,
  1248. 1,
  1249. 1,
  1250. 1
  1251. ]
  1252. },
  1253. "_eulerAngles": {
  1254. "__type__": "cc.Vec3",
  1255. "x": 0,
  1256. "y": 0,
  1257. "z": 0
  1258. },
  1259. "_skewX": 0,
  1260. "_skewY": 0,
  1261. "_is3DNode": false,
  1262. "_groupIndex": 0,
  1263. "groupIndex": 0,
  1264. "_id": ""
  1265. },
  1266. {
  1267. "__type__": "cc.Node",
  1268. "_name": "ItemBG",
  1269. "_objFlags": 0,
  1270. "_parent": {
  1271. "__id__": 29
  1272. },
  1273. "_children": [],
  1274. "_active": true,
  1275. "_components": [
  1276. {
  1277. "__id__": 31
  1278. }
  1279. ],
  1280. "_prefab": {
  1281. "__id__": 32
  1282. },
  1283. "_opacity": 255,
  1284. "_color": {
  1285. "__type__": "cc.Color",
  1286. "r": 255,
  1287. "g": 255,
  1288. "b": 255,
  1289. "a": 255
  1290. },
  1291. "_contentSize": {
  1292. "__type__": "cc.Size",
  1293. "width": 508,
  1294. "height": 108
  1295. },
  1296. "_anchorPoint": {
  1297. "__type__": "cc.Vec2",
  1298. "x": 0.5,
  1299. "y": 0.5
  1300. },
  1301. "_trs": {
  1302. "__type__": "TypedArray",
  1303. "ctor": "Float64Array",
  1304. "array": [
  1305. 0,
  1306. 0,
  1307. 0,
  1308. 0,
  1309. 0,
  1310. 0,
  1311. 1,
  1312. 1,
  1313. 1,
  1314. 1
  1315. ]
  1316. },
  1317. "_eulerAngles": {
  1318. "__type__": "cc.Vec3",
  1319. "x": 0,
  1320. "y": 0,
  1321. "z": 0
  1322. },
  1323. "_skewX": 0,
  1324. "_skewY": 0,
  1325. "_is3DNode": false,
  1326. "_groupIndex": 0,
  1327. "groupIndex": 0,
  1328. "_id": ""
  1329. },
  1330. {
  1331. "__type__": "cc.Sprite",
  1332. "_name": "",
  1333. "_objFlags": 0,
  1334. "node": {
  1335. "__id__": 30
  1336. },
  1337. "_enabled": true,
  1338. "_materials": [
  1339. {
  1340. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1341. }
  1342. ],
  1343. "_srcBlendFactor": 770,
  1344. "_dstBlendFactor": 771,
  1345. "_spriteFrame": {
  1346. "__uuid__": "ed881367-5fbb-4f49-af13-9c2ae787461d"
  1347. },
  1348. "_type": 0,
  1349. "_sizeMode": 1,
  1350. "_fillType": 0,
  1351. "_fillCenter": {
  1352. "__type__": "cc.Vec2",
  1353. "x": 0,
  1354. "y": 0
  1355. },
  1356. "_fillStart": 0,
  1357. "_fillRange": 0,
  1358. "_isTrimmedMode": true,
  1359. "_atlas": null,
  1360. "_id": ""
  1361. },
  1362. {
  1363. "__type__": "cc.PrefabInfo",
  1364. "root": {
  1365. "__id__": 1
  1366. },
  1367. "asset": {
  1368. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  1369. },
  1370. "fileId": "f96oDF821M4axUr6MrsIKe",
  1371. "sync": false
  1372. },
  1373. {
  1374. "__type__": "cc.Node",
  1375. "_name": "Logo",
  1376. "_objFlags": 0,
  1377. "_parent": {
  1378. "__id__": 29
  1379. },
  1380. "_children": [],
  1381. "_active": true,
  1382. "_components": [
  1383. {
  1384. "__id__": 34
  1385. }
  1386. ],
  1387. "_prefab": {
  1388. "__id__": 35
  1389. },
  1390. "_opacity": 255,
  1391. "_color": {
  1392. "__type__": "cc.Color",
  1393. "r": 255,
  1394. "g": 255,
  1395. "b": 255,
  1396. "a": 255
  1397. },
  1398. "_contentSize": {
  1399. "__type__": "cc.Size",
  1400. "width": 78,
  1401. "height": 78
  1402. },
  1403. "_anchorPoint": {
  1404. "__type__": "cc.Vec2",
  1405. "x": 0.5,
  1406. "y": 0.5
  1407. },
  1408. "_trs": {
  1409. "__type__": "TypedArray",
  1410. "ctor": "Float64Array",
  1411. "array": [
  1412. -194.877,
  1413. 0,
  1414. 0,
  1415. 0,
  1416. 0,
  1417. 0,
  1418. 1,
  1419. 1,
  1420. 1,
  1421. 1
  1422. ]
  1423. },
  1424. "_eulerAngles": {
  1425. "__type__": "cc.Vec3",
  1426. "x": 0,
  1427. "y": 0,
  1428. "z": 0
  1429. },
  1430. "_skewX": 0,
  1431. "_skewY": 0,
  1432. "_is3DNode": false,
  1433. "_groupIndex": 0,
  1434. "groupIndex": 0,
  1435. "_id": ""
  1436. },
  1437. {
  1438. "__type__": "cc.Sprite",
  1439. "_name": "",
  1440. "_objFlags": 0,
  1441. "node": {
  1442. "__id__": 33
  1443. },
  1444. "_enabled": true,
  1445. "_materials": [
  1446. {
  1447. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1448. }
  1449. ],
  1450. "_srcBlendFactor": 770,
  1451. "_dstBlendFactor": 771,
  1452. "_spriteFrame": {
  1453. "__uuid__": "45602453-5884-4197-94c9-c98a6d81e501"
  1454. },
  1455. "_type": 0,
  1456. "_sizeMode": 1,
  1457. "_fillType": 0,
  1458. "_fillCenter": {
  1459. "__type__": "cc.Vec2",
  1460. "x": 0,
  1461. "y": 0
  1462. },
  1463. "_fillStart": 0,
  1464. "_fillRange": 0,
  1465. "_isTrimmedMode": true,
  1466. "_atlas": null,
  1467. "_id": ""
  1468. },
  1469. {
  1470. "__type__": "cc.PrefabInfo",
  1471. "root": {
  1472. "__id__": 1
  1473. },
  1474. "asset": {
  1475. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  1476. },
  1477. "fileId": "b5t5PTLcpLKKtBBrMb4tjx",
  1478. "sync": false
  1479. },
  1480. {
  1481. "__type__": "cc.Node",
  1482. "_name": "TitleLabel",
  1483. "_objFlags": 0,
  1484. "_parent": {
  1485. "__id__": 29
  1486. },
  1487. "_children": [],
  1488. "_active": true,
  1489. "_components": [
  1490. {
  1491. "__id__": 37
  1492. },
  1493. {
  1494. "__id__": 38
  1495. }
  1496. ],
  1497. "_prefab": {
  1498. "__id__": 39
  1499. },
  1500. "_opacity": 255,
  1501. "_color": {
  1502. "__type__": "cc.Color",
  1503. "r": 152,
  1504. "g": 102,
  1505. "b": 55,
  1506. "a": 255
  1507. },
  1508. "_contentSize": {
  1509. "__type__": "cc.Size",
  1510. "width": 364.56,
  1511. "height": 33.5
  1512. },
  1513. "_anchorPoint": {
  1514. "__type__": "cc.Vec2",
  1515. "x": 0,
  1516. "y": 0.5
  1517. },
  1518. "_trs": {
  1519. "__type__": "TypedArray",
  1520. "ctor": "Float64Array",
  1521. "array": [
  1522. -130.895,
  1523. 22.867,
  1524. 0,
  1525. 0,
  1526. 0,
  1527. 0,
  1528. 1,
  1529. 1,
  1530. 1,
  1531. 1
  1532. ]
  1533. },
  1534. "_eulerAngles": {
  1535. "__type__": "cc.Vec3",
  1536. "x": 0,
  1537. "y": 0,
  1538. "z": 0
  1539. },
  1540. "_skewX": 0,
  1541. "_skewY": 0,
  1542. "_is3DNode": false,
  1543. "_groupIndex": 0,
  1544. "groupIndex": 0,
  1545. "_id": ""
  1546. },
  1547. {
  1548. "__type__": "cc.Label",
  1549. "_name": "",
  1550. "_objFlags": 0,
  1551. "node": {
  1552. "__id__": 36
  1553. },
  1554. "_enabled": true,
  1555. "_materials": [
  1556. {
  1557. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1558. }
  1559. ],
  1560. "_srcBlendFactor": 770,
  1561. "_dstBlendFactor": 771,
  1562. "_string": "3D视界面安卓2.0.8版本已经发行",
  1563. "_N$string": "3D视界面安卓2.0.8版本已经发行",
  1564. "_fontSize": 25,
  1565. "_lineHeight": 25,
  1566. "_enableWrapText": true,
  1567. "_N$file": null,
  1568. "_isSystemFontUsed": true,
  1569. "_spacingX": 0,
  1570. "_batchAsBitmap": false,
  1571. "_styleFlags": 0,
  1572. "_underlineHeight": 0,
  1573. "_N$horizontalAlign": 0,
  1574. "_N$verticalAlign": 1,
  1575. "_N$fontFamily": "Arial",
  1576. "_N$overflow": 0,
  1577. "_N$cacheMode": 0,
  1578. "_id": ""
  1579. },
  1580. {
  1581. "__type__": "cc.LabelOutline",
  1582. "_name": "",
  1583. "_objFlags": 0,
  1584. "node": {
  1585. "__id__": 36
  1586. },
  1587. "_enabled": true,
  1588. "_color": {
  1589. "__type__": "cc.Color",
  1590. "r": 152,
  1591. "g": 102,
  1592. "b": 55,
  1593. "a": 255
  1594. },
  1595. "_width": 1,
  1596. "_id": ""
  1597. },
  1598. {
  1599. "__type__": "cc.PrefabInfo",
  1600. "root": {
  1601. "__id__": 1
  1602. },
  1603. "asset": {
  1604. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  1605. },
  1606. "fileId": "68Ym8TeqBKm4q7j/yFNxKY",
  1607. "sync": false
  1608. },
  1609. {
  1610. "__type__": "cc.Node",
  1611. "_name": "TimeLabel",
  1612. "_objFlags": 0,
  1613. "_parent": {
  1614. "__id__": 29
  1615. },
  1616. "_children": [],
  1617. "_active": true,
  1618. "_components": [
  1619. {
  1620. "__id__": 41
  1621. },
  1622. {
  1623. "__id__": 42
  1624. }
  1625. ],
  1626. "_prefab": {
  1627. "__id__": 43
  1628. },
  1629. "_opacity": 255,
  1630. "_color": {
  1631. "__type__": "cc.Color",
  1632. "r": 181,
  1633. "g": 153,
  1634. "b": 114,
  1635. "a": 255
  1636. },
  1637. "_contentSize": {
  1638. "__type__": "cc.Size",
  1639. "width": 239.23,
  1640. "height": 33.5
  1641. },
  1642. "_anchorPoint": {
  1643. "__type__": "cc.Vec2",
  1644. "x": 0,
  1645. "y": 0.5
  1646. },
  1647. "_trs": {
  1648. "__type__": "TypedArray",
  1649. "ctor": "Float64Array",
  1650. "array": [
  1651. -130.895,
  1652. -19.926,
  1653. 0,
  1654. 0,
  1655. 0,
  1656. 0,
  1657. 1,
  1658. 1,
  1659. 1,
  1660. 1
  1661. ]
  1662. },
  1663. "_eulerAngles": {
  1664. "__type__": "cc.Vec3",
  1665. "x": 0,
  1666. "y": 0,
  1667. "z": 0
  1668. },
  1669. "_skewX": 0,
  1670. "_skewY": 0,
  1671. "_is3DNode": false,
  1672. "_groupIndex": 0,
  1673. "groupIndex": 0,
  1674. "_id": ""
  1675. },
  1676. {
  1677. "__type__": "cc.Label",
  1678. "_name": "",
  1679. "_objFlags": 0,
  1680. "node": {
  1681. "__id__": 40
  1682. },
  1683. "_enabled": true,
  1684. "_materials": [
  1685. {
  1686. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1687. }
  1688. ],
  1689. "_srcBlendFactor": 770,
  1690. "_dstBlendFactor": 771,
  1691. "_string": "2020-11-26 19:43:00",
  1692. "_N$string": "2020-11-26 19:43:00",
  1693. "_fontSize": 25,
  1694. "_lineHeight": 25,
  1695. "_enableWrapText": true,
  1696. "_N$file": null,
  1697. "_isSystemFontUsed": true,
  1698. "_spacingX": 0,
  1699. "_batchAsBitmap": false,
  1700. "_styleFlags": 0,
  1701. "_underlineHeight": 0,
  1702. "_N$horizontalAlign": 0,
  1703. "_N$verticalAlign": 1,
  1704. "_N$fontFamily": "Arial",
  1705. "_N$overflow": 0,
  1706. "_N$cacheMode": 0,
  1707. "_id": ""
  1708. },
  1709. {
  1710. "__type__": "cc.LabelOutline",
  1711. "_name": "",
  1712. "_objFlags": 0,
  1713. "node": {
  1714. "__id__": 40
  1715. },
  1716. "_enabled": true,
  1717. "_color": {
  1718. "__type__": "cc.Color",
  1719. "r": 181,
  1720. "g": 153,
  1721. "b": 114,
  1722. "a": 255
  1723. },
  1724. "_width": 1,
  1725. "_id": ""
  1726. },
  1727. {
  1728. "__type__": "cc.PrefabInfo",
  1729. "root": {
  1730. "__id__": 1
  1731. },
  1732. "asset": {
  1733. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  1734. },
  1735. "fileId": "f7Xjm57WVF9IUU4tTt/O4U",
  1736. "sync": false
  1737. },
  1738. {
  1739. "__type__": "cc.PrefabInfo",
  1740. "root": {
  1741. "__id__": 1
  1742. },
  1743. "asset": {
  1744. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  1745. },
  1746. "fileId": "fbtFgzovZNuorJyNHQRvQt",
  1747. "sync": false
  1748. },
  1749. {
  1750. "__type__": "cc.Node",
  1751. "_name": "Item",
  1752. "_objFlags": 0,
  1753. "_parent": {
  1754. "__id__": 28
  1755. },
  1756. "_children": [
  1757. {
  1758. "__id__": 46
  1759. },
  1760. {
  1761. "__id__": 49
  1762. },
  1763. {
  1764. "__id__": 52
  1765. },
  1766. {
  1767. "__id__": 56
  1768. }
  1769. ],
  1770. "_active": true,
  1771. "_components": [],
  1772. "_prefab": {
  1773. "__id__": 60
  1774. },
  1775. "_opacity": 255,
  1776. "_color": {
  1777. "__type__": "cc.Color",
  1778. "r": 255,
  1779. "g": 255,
  1780. "b": 255,
  1781. "a": 255
  1782. },
  1783. "_contentSize": {
  1784. "__type__": "cc.Size",
  1785. "width": 508,
  1786. "height": 108
  1787. },
  1788. "_anchorPoint": {
  1789. "__type__": "cc.Vec2",
  1790. "x": 0.5,
  1791. "y": 0.5
  1792. },
  1793. "_trs": {
  1794. "__type__": "TypedArray",
  1795. "ctor": "Float64Array",
  1796. "array": [
  1797. 0,
  1798. 1288,
  1799. 0,
  1800. 0,
  1801. 0,
  1802. 0,
  1803. 1,
  1804. 1,
  1805. 1,
  1806. 1
  1807. ]
  1808. },
  1809. "_eulerAngles": {
  1810. "__type__": "cc.Vec3",
  1811. "x": 0,
  1812. "y": 0,
  1813. "z": 0
  1814. },
  1815. "_skewX": 0,
  1816. "_skewY": 0,
  1817. "_is3DNode": false,
  1818. "_groupIndex": 0,
  1819. "groupIndex": 0,
  1820. "_id": ""
  1821. },
  1822. {
  1823. "__type__": "cc.Node",
  1824. "_name": "ItemBG",
  1825. "_objFlags": 0,
  1826. "_parent": {
  1827. "__id__": 45
  1828. },
  1829. "_children": [],
  1830. "_active": true,
  1831. "_components": [
  1832. {
  1833. "__id__": 47
  1834. }
  1835. ],
  1836. "_prefab": {
  1837. "__id__": 48
  1838. },
  1839. "_opacity": 255,
  1840. "_color": {
  1841. "__type__": "cc.Color",
  1842. "r": 255,
  1843. "g": 255,
  1844. "b": 255,
  1845. "a": 255
  1846. },
  1847. "_contentSize": {
  1848. "__type__": "cc.Size",
  1849. "width": 508,
  1850. "height": 108
  1851. },
  1852. "_anchorPoint": {
  1853. "__type__": "cc.Vec2",
  1854. "x": 0.5,
  1855. "y": 0.5
  1856. },
  1857. "_trs": {
  1858. "__type__": "TypedArray",
  1859. "ctor": "Float64Array",
  1860. "array": [
  1861. 0,
  1862. 0,
  1863. 0,
  1864. 0,
  1865. 0,
  1866. 0,
  1867. 1,
  1868. 1,
  1869. 1,
  1870. 1
  1871. ]
  1872. },
  1873. "_eulerAngles": {
  1874. "__type__": "cc.Vec3",
  1875. "x": 0,
  1876. "y": 0,
  1877. "z": 0
  1878. },
  1879. "_skewX": 0,
  1880. "_skewY": 0,
  1881. "_is3DNode": false,
  1882. "_groupIndex": 0,
  1883. "groupIndex": 0,
  1884. "_id": ""
  1885. },
  1886. {
  1887. "__type__": "cc.Sprite",
  1888. "_name": "",
  1889. "_objFlags": 0,
  1890. "node": {
  1891. "__id__": 46
  1892. },
  1893. "_enabled": true,
  1894. "_materials": [
  1895. {
  1896. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1897. }
  1898. ],
  1899. "_srcBlendFactor": 770,
  1900. "_dstBlendFactor": 771,
  1901. "_spriteFrame": {
  1902. "__uuid__": "ed881367-5fbb-4f49-af13-9c2ae787461d"
  1903. },
  1904. "_type": 0,
  1905. "_sizeMode": 1,
  1906. "_fillType": 0,
  1907. "_fillCenter": {
  1908. "__type__": "cc.Vec2",
  1909. "x": 0,
  1910. "y": 0
  1911. },
  1912. "_fillStart": 0,
  1913. "_fillRange": 0,
  1914. "_isTrimmedMode": true,
  1915. "_atlas": null,
  1916. "_id": ""
  1917. },
  1918. {
  1919. "__type__": "cc.PrefabInfo",
  1920. "root": {
  1921. "__id__": 1
  1922. },
  1923. "asset": {
  1924. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  1925. },
  1926. "fileId": "c5UPUuwIVKFIxle8ojLMea",
  1927. "sync": false
  1928. },
  1929. {
  1930. "__type__": "cc.Node",
  1931. "_name": "Logo",
  1932. "_objFlags": 0,
  1933. "_parent": {
  1934. "__id__": 45
  1935. },
  1936. "_children": [],
  1937. "_active": true,
  1938. "_components": [
  1939. {
  1940. "__id__": 50
  1941. }
  1942. ],
  1943. "_prefab": {
  1944. "__id__": 51
  1945. },
  1946. "_opacity": 255,
  1947. "_color": {
  1948. "__type__": "cc.Color",
  1949. "r": 255,
  1950. "g": 255,
  1951. "b": 255,
  1952. "a": 255
  1953. },
  1954. "_contentSize": {
  1955. "__type__": "cc.Size",
  1956. "width": 78,
  1957. "height": 78
  1958. },
  1959. "_anchorPoint": {
  1960. "__type__": "cc.Vec2",
  1961. "x": 0.5,
  1962. "y": 0.5
  1963. },
  1964. "_trs": {
  1965. "__type__": "TypedArray",
  1966. "ctor": "Float64Array",
  1967. "array": [
  1968. -194.877,
  1969. 0,
  1970. 0,
  1971. 0,
  1972. 0,
  1973. 0,
  1974. 1,
  1975. 1,
  1976. 1,
  1977. 1
  1978. ]
  1979. },
  1980. "_eulerAngles": {
  1981. "__type__": "cc.Vec3",
  1982. "x": 0,
  1983. "y": 0,
  1984. "z": 0
  1985. },
  1986. "_skewX": 0,
  1987. "_skewY": 0,
  1988. "_is3DNode": false,
  1989. "_groupIndex": 0,
  1990. "groupIndex": 0,
  1991. "_id": ""
  1992. },
  1993. {
  1994. "__type__": "cc.Sprite",
  1995. "_name": "",
  1996. "_objFlags": 0,
  1997. "node": {
  1998. "__id__": 49
  1999. },
  2000. "_enabled": true,
  2001. "_materials": [
  2002. {
  2003. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2004. }
  2005. ],
  2006. "_srcBlendFactor": 770,
  2007. "_dstBlendFactor": 771,
  2008. "_spriteFrame": {
  2009. "__uuid__": "45602453-5884-4197-94c9-c98a6d81e501"
  2010. },
  2011. "_type": 0,
  2012. "_sizeMode": 1,
  2013. "_fillType": 0,
  2014. "_fillCenter": {
  2015. "__type__": "cc.Vec2",
  2016. "x": 0,
  2017. "y": 0
  2018. },
  2019. "_fillStart": 0,
  2020. "_fillRange": 0,
  2021. "_isTrimmedMode": true,
  2022. "_atlas": null,
  2023. "_id": ""
  2024. },
  2025. {
  2026. "__type__": "cc.PrefabInfo",
  2027. "root": {
  2028. "__id__": 1
  2029. },
  2030. "asset": {
  2031. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  2032. },
  2033. "fileId": "16KL6cLaZF5rGup/ID0Daf",
  2034. "sync": false
  2035. },
  2036. {
  2037. "__type__": "cc.Node",
  2038. "_name": "TitleLabel",
  2039. "_objFlags": 0,
  2040. "_parent": {
  2041. "__id__": 45
  2042. },
  2043. "_children": [],
  2044. "_active": true,
  2045. "_components": [
  2046. {
  2047. "__id__": 53
  2048. },
  2049. {
  2050. "__id__": 54
  2051. }
  2052. ],
  2053. "_prefab": {
  2054. "__id__": 55
  2055. },
  2056. "_opacity": 255,
  2057. "_color": {
  2058. "__type__": "cc.Color",
  2059. "r": 152,
  2060. "g": 102,
  2061. "b": 55,
  2062. "a": 255
  2063. },
  2064. "_contentSize": {
  2065. "__type__": "cc.Size",
  2066. "width": 364.56,
  2067. "height": 33.5
  2068. },
  2069. "_anchorPoint": {
  2070. "__type__": "cc.Vec2",
  2071. "x": 0,
  2072. "y": 0.5
  2073. },
  2074. "_trs": {
  2075. "__type__": "TypedArray",
  2076. "ctor": "Float64Array",
  2077. "array": [
  2078. -130.895,
  2079. 22.867,
  2080. 0,
  2081. 0,
  2082. 0,
  2083. 0,
  2084. 1,
  2085. 1,
  2086. 1,
  2087. 1
  2088. ]
  2089. },
  2090. "_eulerAngles": {
  2091. "__type__": "cc.Vec3",
  2092. "x": 0,
  2093. "y": 0,
  2094. "z": 0
  2095. },
  2096. "_skewX": 0,
  2097. "_skewY": 0,
  2098. "_is3DNode": false,
  2099. "_groupIndex": 0,
  2100. "groupIndex": 0,
  2101. "_id": ""
  2102. },
  2103. {
  2104. "__type__": "cc.Label",
  2105. "_name": "",
  2106. "_objFlags": 0,
  2107. "node": {
  2108. "__id__": 52
  2109. },
  2110. "_enabled": true,
  2111. "_materials": [
  2112. {
  2113. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2114. }
  2115. ],
  2116. "_srcBlendFactor": 770,
  2117. "_dstBlendFactor": 771,
  2118. "_string": "3D视界面安卓2.0.8版本已经发行",
  2119. "_N$string": "3D视界面安卓2.0.8版本已经发行",
  2120. "_fontSize": 25,
  2121. "_lineHeight": 25,
  2122. "_enableWrapText": true,
  2123. "_N$file": null,
  2124. "_isSystemFontUsed": true,
  2125. "_spacingX": 0,
  2126. "_batchAsBitmap": false,
  2127. "_styleFlags": 0,
  2128. "_underlineHeight": 0,
  2129. "_N$horizontalAlign": 0,
  2130. "_N$verticalAlign": 1,
  2131. "_N$fontFamily": "Arial",
  2132. "_N$overflow": 0,
  2133. "_N$cacheMode": 0,
  2134. "_id": ""
  2135. },
  2136. {
  2137. "__type__": "cc.LabelOutline",
  2138. "_name": "",
  2139. "_objFlags": 0,
  2140. "node": {
  2141. "__id__": 52
  2142. },
  2143. "_enabled": true,
  2144. "_color": {
  2145. "__type__": "cc.Color",
  2146. "r": 152,
  2147. "g": 102,
  2148. "b": 55,
  2149. "a": 255
  2150. },
  2151. "_width": 1,
  2152. "_id": ""
  2153. },
  2154. {
  2155. "__type__": "cc.PrefabInfo",
  2156. "root": {
  2157. "__id__": 1
  2158. },
  2159. "asset": {
  2160. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  2161. },
  2162. "fileId": "1dkQ1kHQVIT7eeCYYzK5tc",
  2163. "sync": false
  2164. },
  2165. {
  2166. "__type__": "cc.Node",
  2167. "_name": "TimeLabel",
  2168. "_objFlags": 0,
  2169. "_parent": {
  2170. "__id__": 45
  2171. },
  2172. "_children": [],
  2173. "_active": true,
  2174. "_components": [
  2175. {
  2176. "__id__": 57
  2177. },
  2178. {
  2179. "__id__": 58
  2180. }
  2181. ],
  2182. "_prefab": {
  2183. "__id__": 59
  2184. },
  2185. "_opacity": 255,
  2186. "_color": {
  2187. "__type__": "cc.Color",
  2188. "r": 181,
  2189. "g": 153,
  2190. "b": 114,
  2191. "a": 255
  2192. },
  2193. "_contentSize": {
  2194. "__type__": "cc.Size",
  2195. "width": 239.23,
  2196. "height": 33.5
  2197. },
  2198. "_anchorPoint": {
  2199. "__type__": "cc.Vec2",
  2200. "x": 0,
  2201. "y": 0.5
  2202. },
  2203. "_trs": {
  2204. "__type__": "TypedArray",
  2205. "ctor": "Float64Array",
  2206. "array": [
  2207. -130.895,
  2208. -19.926,
  2209. 0,
  2210. 0,
  2211. 0,
  2212. 0,
  2213. 1,
  2214. 1,
  2215. 1,
  2216. 1
  2217. ]
  2218. },
  2219. "_eulerAngles": {
  2220. "__type__": "cc.Vec3",
  2221. "x": 0,
  2222. "y": 0,
  2223. "z": 0
  2224. },
  2225. "_skewX": 0,
  2226. "_skewY": 0,
  2227. "_is3DNode": false,
  2228. "_groupIndex": 0,
  2229. "groupIndex": 0,
  2230. "_id": ""
  2231. },
  2232. {
  2233. "__type__": "cc.Label",
  2234. "_name": "",
  2235. "_objFlags": 0,
  2236. "node": {
  2237. "__id__": 56
  2238. },
  2239. "_enabled": true,
  2240. "_materials": [
  2241. {
  2242. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2243. }
  2244. ],
  2245. "_srcBlendFactor": 770,
  2246. "_dstBlendFactor": 771,
  2247. "_string": "2020-11-26 19:43:00",
  2248. "_N$string": "2020-11-26 19:43:00",
  2249. "_fontSize": 25,
  2250. "_lineHeight": 25,
  2251. "_enableWrapText": true,
  2252. "_N$file": null,
  2253. "_isSystemFontUsed": true,
  2254. "_spacingX": 0,
  2255. "_batchAsBitmap": false,
  2256. "_styleFlags": 0,
  2257. "_underlineHeight": 0,
  2258. "_N$horizontalAlign": 0,
  2259. "_N$verticalAlign": 1,
  2260. "_N$fontFamily": "Arial",
  2261. "_N$overflow": 0,
  2262. "_N$cacheMode": 0,
  2263. "_id": ""
  2264. },
  2265. {
  2266. "__type__": "cc.LabelOutline",
  2267. "_name": "",
  2268. "_objFlags": 0,
  2269. "node": {
  2270. "__id__": 56
  2271. },
  2272. "_enabled": true,
  2273. "_color": {
  2274. "__type__": "cc.Color",
  2275. "r": 181,
  2276. "g": 153,
  2277. "b": 114,
  2278. "a": 255
  2279. },
  2280. "_width": 1,
  2281. "_id": ""
  2282. },
  2283. {
  2284. "__type__": "cc.PrefabInfo",
  2285. "root": {
  2286. "__id__": 1
  2287. },
  2288. "asset": {
  2289. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  2290. },
  2291. "fileId": "e0cQGJsRVD25H74YJqij8R",
  2292. "sync": false
  2293. },
  2294. {
  2295. "__type__": "cc.PrefabInfo",
  2296. "root": {
  2297. "__id__": 1
  2298. },
  2299. "asset": {
  2300. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  2301. },
  2302. "fileId": "fegCNHDx9MdIYO2SW77aEY",
  2303. "sync": false
  2304. },
  2305. {
  2306. "__type__": "cc.Node",
  2307. "_name": "Item",
  2308. "_objFlags": 0,
  2309. "_parent": {
  2310. "__id__": 28
  2311. },
  2312. "_children": [
  2313. {
  2314. "__id__": 62
  2315. },
  2316. {
  2317. "__id__": 65
  2318. },
  2319. {
  2320. "__id__": 68
  2321. },
  2322. {
  2323. "__id__": 72
  2324. }
  2325. ],
  2326. "_active": true,
  2327. "_components": [],
  2328. "_prefab": {
  2329. "__id__": 76
  2330. },
  2331. "_opacity": 255,
  2332. "_color": {
  2333. "__type__": "cc.Color",
  2334. "r": 255,
  2335. "g": 255,
  2336. "b": 255,
  2337. "a": 255
  2338. },
  2339. "_contentSize": {
  2340. "__type__": "cc.Size",
  2341. "width": 508,
  2342. "height": 108
  2343. },
  2344. "_anchorPoint": {
  2345. "__type__": "cc.Vec2",
  2346. "x": 0.5,
  2347. "y": 0.5
  2348. },
  2349. "_trs": {
  2350. "__type__": "TypedArray",
  2351. "ctor": "Float64Array",
  2352. "array": [
  2353. 0,
  2354. 1130,
  2355. 0,
  2356. 0,
  2357. 0,
  2358. 0,
  2359. 1,
  2360. 1,
  2361. 1,
  2362. 1
  2363. ]
  2364. },
  2365. "_eulerAngles": {
  2366. "__type__": "cc.Vec3",
  2367. "x": 0,
  2368. "y": 0,
  2369. "z": 0
  2370. },
  2371. "_skewX": 0,
  2372. "_skewY": 0,
  2373. "_is3DNode": false,
  2374. "_groupIndex": 0,
  2375. "groupIndex": 0,
  2376. "_id": ""
  2377. },
  2378. {
  2379. "__type__": "cc.Node",
  2380. "_name": "ItemBG",
  2381. "_objFlags": 0,
  2382. "_parent": {
  2383. "__id__": 61
  2384. },
  2385. "_children": [],
  2386. "_active": true,
  2387. "_components": [
  2388. {
  2389. "__id__": 63
  2390. }
  2391. ],
  2392. "_prefab": {
  2393. "__id__": 64
  2394. },
  2395. "_opacity": 255,
  2396. "_color": {
  2397. "__type__": "cc.Color",
  2398. "r": 255,
  2399. "g": 255,
  2400. "b": 255,
  2401. "a": 255
  2402. },
  2403. "_contentSize": {
  2404. "__type__": "cc.Size",
  2405. "width": 508,
  2406. "height": 108
  2407. },
  2408. "_anchorPoint": {
  2409. "__type__": "cc.Vec2",
  2410. "x": 0.5,
  2411. "y": 0.5
  2412. },
  2413. "_trs": {
  2414. "__type__": "TypedArray",
  2415. "ctor": "Float64Array",
  2416. "array": [
  2417. 0,
  2418. 0,
  2419. 0,
  2420. 0,
  2421. 0,
  2422. 0,
  2423. 1,
  2424. 1,
  2425. 1,
  2426. 1
  2427. ]
  2428. },
  2429. "_eulerAngles": {
  2430. "__type__": "cc.Vec3",
  2431. "x": 0,
  2432. "y": 0,
  2433. "z": 0
  2434. },
  2435. "_skewX": 0,
  2436. "_skewY": 0,
  2437. "_is3DNode": false,
  2438. "_groupIndex": 0,
  2439. "groupIndex": 0,
  2440. "_id": ""
  2441. },
  2442. {
  2443. "__type__": "cc.Sprite",
  2444. "_name": "",
  2445. "_objFlags": 0,
  2446. "node": {
  2447. "__id__": 62
  2448. },
  2449. "_enabled": true,
  2450. "_materials": [
  2451. {
  2452. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2453. }
  2454. ],
  2455. "_srcBlendFactor": 770,
  2456. "_dstBlendFactor": 771,
  2457. "_spriteFrame": {
  2458. "__uuid__": "ed881367-5fbb-4f49-af13-9c2ae787461d"
  2459. },
  2460. "_type": 0,
  2461. "_sizeMode": 1,
  2462. "_fillType": 0,
  2463. "_fillCenter": {
  2464. "__type__": "cc.Vec2",
  2465. "x": 0,
  2466. "y": 0
  2467. },
  2468. "_fillStart": 0,
  2469. "_fillRange": 0,
  2470. "_isTrimmedMode": true,
  2471. "_atlas": null,
  2472. "_id": ""
  2473. },
  2474. {
  2475. "__type__": "cc.PrefabInfo",
  2476. "root": {
  2477. "__id__": 1
  2478. },
  2479. "asset": {
  2480. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  2481. },
  2482. "fileId": "f1tE613slAPLfUpyTJI2gf",
  2483. "sync": false
  2484. },
  2485. {
  2486. "__type__": "cc.Node",
  2487. "_name": "Logo",
  2488. "_objFlags": 0,
  2489. "_parent": {
  2490. "__id__": 61
  2491. },
  2492. "_children": [],
  2493. "_active": true,
  2494. "_components": [
  2495. {
  2496. "__id__": 66
  2497. }
  2498. ],
  2499. "_prefab": {
  2500. "__id__": 67
  2501. },
  2502. "_opacity": 255,
  2503. "_color": {
  2504. "__type__": "cc.Color",
  2505. "r": 255,
  2506. "g": 255,
  2507. "b": 255,
  2508. "a": 255
  2509. },
  2510. "_contentSize": {
  2511. "__type__": "cc.Size",
  2512. "width": 78,
  2513. "height": 78
  2514. },
  2515. "_anchorPoint": {
  2516. "__type__": "cc.Vec2",
  2517. "x": 0.5,
  2518. "y": 0.5
  2519. },
  2520. "_trs": {
  2521. "__type__": "TypedArray",
  2522. "ctor": "Float64Array",
  2523. "array": [
  2524. -194.877,
  2525. 0,
  2526. 0,
  2527. 0,
  2528. 0,
  2529. 0,
  2530. 1,
  2531. 1,
  2532. 1,
  2533. 1
  2534. ]
  2535. },
  2536. "_eulerAngles": {
  2537. "__type__": "cc.Vec3",
  2538. "x": 0,
  2539. "y": 0,
  2540. "z": 0
  2541. },
  2542. "_skewX": 0,
  2543. "_skewY": 0,
  2544. "_is3DNode": false,
  2545. "_groupIndex": 0,
  2546. "groupIndex": 0,
  2547. "_id": ""
  2548. },
  2549. {
  2550. "__type__": "cc.Sprite",
  2551. "_name": "",
  2552. "_objFlags": 0,
  2553. "node": {
  2554. "__id__": 65
  2555. },
  2556. "_enabled": true,
  2557. "_materials": [
  2558. {
  2559. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2560. }
  2561. ],
  2562. "_srcBlendFactor": 770,
  2563. "_dstBlendFactor": 771,
  2564. "_spriteFrame": {
  2565. "__uuid__": "45602453-5884-4197-94c9-c98a6d81e501"
  2566. },
  2567. "_type": 0,
  2568. "_sizeMode": 1,
  2569. "_fillType": 0,
  2570. "_fillCenter": {
  2571. "__type__": "cc.Vec2",
  2572. "x": 0,
  2573. "y": 0
  2574. },
  2575. "_fillStart": 0,
  2576. "_fillRange": 0,
  2577. "_isTrimmedMode": true,
  2578. "_atlas": null,
  2579. "_id": ""
  2580. },
  2581. {
  2582. "__type__": "cc.PrefabInfo",
  2583. "root": {
  2584. "__id__": 1
  2585. },
  2586. "asset": {
  2587. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  2588. },
  2589. "fileId": "482PfENb5O25fGi/adeMG+",
  2590. "sync": false
  2591. },
  2592. {
  2593. "__type__": "cc.Node",
  2594. "_name": "TitleLabel",
  2595. "_objFlags": 0,
  2596. "_parent": {
  2597. "__id__": 61
  2598. },
  2599. "_children": [],
  2600. "_active": true,
  2601. "_components": [
  2602. {
  2603. "__id__": 69
  2604. },
  2605. {
  2606. "__id__": 70
  2607. }
  2608. ],
  2609. "_prefab": {
  2610. "__id__": 71
  2611. },
  2612. "_opacity": 255,
  2613. "_color": {
  2614. "__type__": "cc.Color",
  2615. "r": 152,
  2616. "g": 102,
  2617. "b": 55,
  2618. "a": 255
  2619. },
  2620. "_contentSize": {
  2621. "__type__": "cc.Size",
  2622. "width": 364.56,
  2623. "height": 33.5
  2624. },
  2625. "_anchorPoint": {
  2626. "__type__": "cc.Vec2",
  2627. "x": 0,
  2628. "y": 0.5
  2629. },
  2630. "_trs": {
  2631. "__type__": "TypedArray",
  2632. "ctor": "Float64Array",
  2633. "array": [
  2634. -130.895,
  2635. 22.867,
  2636. 0,
  2637. 0,
  2638. 0,
  2639. 0,
  2640. 1,
  2641. 1,
  2642. 1,
  2643. 1
  2644. ]
  2645. },
  2646. "_eulerAngles": {
  2647. "__type__": "cc.Vec3",
  2648. "x": 0,
  2649. "y": 0,
  2650. "z": 0
  2651. },
  2652. "_skewX": 0,
  2653. "_skewY": 0,
  2654. "_is3DNode": false,
  2655. "_groupIndex": 0,
  2656. "groupIndex": 0,
  2657. "_id": ""
  2658. },
  2659. {
  2660. "__type__": "cc.Label",
  2661. "_name": "",
  2662. "_objFlags": 0,
  2663. "node": {
  2664. "__id__": 68
  2665. },
  2666. "_enabled": true,
  2667. "_materials": [
  2668. {
  2669. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2670. }
  2671. ],
  2672. "_srcBlendFactor": 770,
  2673. "_dstBlendFactor": 771,
  2674. "_string": "3D视界面安卓2.0.8版本已经发行",
  2675. "_N$string": "3D视界面安卓2.0.8版本已经发行",
  2676. "_fontSize": 25,
  2677. "_lineHeight": 25,
  2678. "_enableWrapText": true,
  2679. "_N$file": null,
  2680. "_isSystemFontUsed": true,
  2681. "_spacingX": 0,
  2682. "_batchAsBitmap": false,
  2683. "_styleFlags": 0,
  2684. "_underlineHeight": 0,
  2685. "_N$horizontalAlign": 0,
  2686. "_N$verticalAlign": 1,
  2687. "_N$fontFamily": "Arial",
  2688. "_N$overflow": 0,
  2689. "_N$cacheMode": 0,
  2690. "_id": ""
  2691. },
  2692. {
  2693. "__type__": "cc.LabelOutline",
  2694. "_name": "",
  2695. "_objFlags": 0,
  2696. "node": {
  2697. "__id__": 68
  2698. },
  2699. "_enabled": true,
  2700. "_color": {
  2701. "__type__": "cc.Color",
  2702. "r": 152,
  2703. "g": 102,
  2704. "b": 55,
  2705. "a": 255
  2706. },
  2707. "_width": 1,
  2708. "_id": ""
  2709. },
  2710. {
  2711. "__type__": "cc.PrefabInfo",
  2712. "root": {
  2713. "__id__": 1
  2714. },
  2715. "asset": {
  2716. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  2717. },
  2718. "fileId": "d70hAI6aZAqYXdKTTfaaPf",
  2719. "sync": false
  2720. },
  2721. {
  2722. "__type__": "cc.Node",
  2723. "_name": "TimeLabel",
  2724. "_objFlags": 0,
  2725. "_parent": {
  2726. "__id__": 61
  2727. },
  2728. "_children": [],
  2729. "_active": true,
  2730. "_components": [
  2731. {
  2732. "__id__": 73
  2733. },
  2734. {
  2735. "__id__": 74
  2736. }
  2737. ],
  2738. "_prefab": {
  2739. "__id__": 75
  2740. },
  2741. "_opacity": 255,
  2742. "_color": {
  2743. "__type__": "cc.Color",
  2744. "r": 181,
  2745. "g": 153,
  2746. "b": 114,
  2747. "a": 255
  2748. },
  2749. "_contentSize": {
  2750. "__type__": "cc.Size",
  2751. "width": 239.23,
  2752. "height": 33.5
  2753. },
  2754. "_anchorPoint": {
  2755. "__type__": "cc.Vec2",
  2756. "x": 0,
  2757. "y": 0.5
  2758. },
  2759. "_trs": {
  2760. "__type__": "TypedArray",
  2761. "ctor": "Float64Array",
  2762. "array": [
  2763. -130.895,
  2764. -19.926,
  2765. 0,
  2766. 0,
  2767. 0,
  2768. 0,
  2769. 1,
  2770. 1,
  2771. 1,
  2772. 1
  2773. ]
  2774. },
  2775. "_eulerAngles": {
  2776. "__type__": "cc.Vec3",
  2777. "x": 0,
  2778. "y": 0,
  2779. "z": 0
  2780. },
  2781. "_skewX": 0,
  2782. "_skewY": 0,
  2783. "_is3DNode": false,
  2784. "_groupIndex": 0,
  2785. "groupIndex": 0,
  2786. "_id": ""
  2787. },
  2788. {
  2789. "__type__": "cc.Label",
  2790. "_name": "",
  2791. "_objFlags": 0,
  2792. "node": {
  2793. "__id__": 72
  2794. },
  2795. "_enabled": true,
  2796. "_materials": [
  2797. {
  2798. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2799. }
  2800. ],
  2801. "_srcBlendFactor": 770,
  2802. "_dstBlendFactor": 771,
  2803. "_string": "2020-11-26 19:43:00",
  2804. "_N$string": "2020-11-26 19:43:00",
  2805. "_fontSize": 25,
  2806. "_lineHeight": 25,
  2807. "_enableWrapText": true,
  2808. "_N$file": null,
  2809. "_isSystemFontUsed": true,
  2810. "_spacingX": 0,
  2811. "_batchAsBitmap": false,
  2812. "_styleFlags": 0,
  2813. "_underlineHeight": 0,
  2814. "_N$horizontalAlign": 0,
  2815. "_N$verticalAlign": 1,
  2816. "_N$fontFamily": "Arial",
  2817. "_N$overflow": 0,
  2818. "_N$cacheMode": 0,
  2819. "_id": ""
  2820. },
  2821. {
  2822. "__type__": "cc.LabelOutline",
  2823. "_name": "",
  2824. "_objFlags": 0,
  2825. "node": {
  2826. "__id__": 72
  2827. },
  2828. "_enabled": true,
  2829. "_color": {
  2830. "__type__": "cc.Color",
  2831. "r": 181,
  2832. "g": 153,
  2833. "b": 114,
  2834. "a": 255
  2835. },
  2836. "_width": 1,
  2837. "_id": ""
  2838. },
  2839. {
  2840. "__type__": "cc.PrefabInfo",
  2841. "root": {
  2842. "__id__": 1
  2843. },
  2844. "asset": {
  2845. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  2846. },
  2847. "fileId": "f7KczE/ntLeJxZo/RsvZSq",
  2848. "sync": false
  2849. },
  2850. {
  2851. "__type__": "cc.PrefabInfo",
  2852. "root": {
  2853. "__id__": 1
  2854. },
  2855. "asset": {
  2856. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  2857. },
  2858. "fileId": "98AmluCgFCXJAS23qUI70z",
  2859. "sync": false
  2860. },
  2861. {
  2862. "__type__": "cc.Node",
  2863. "_name": "Item",
  2864. "_objFlags": 0,
  2865. "_parent": {
  2866. "__id__": 28
  2867. },
  2868. "_children": [
  2869. {
  2870. "__id__": 78
  2871. },
  2872. {
  2873. "__id__": 81
  2874. },
  2875. {
  2876. "__id__": 84
  2877. },
  2878. {
  2879. "__id__": 88
  2880. }
  2881. ],
  2882. "_active": true,
  2883. "_components": [],
  2884. "_prefab": {
  2885. "__id__": 92
  2886. },
  2887. "_opacity": 255,
  2888. "_color": {
  2889. "__type__": "cc.Color",
  2890. "r": 255,
  2891. "g": 255,
  2892. "b": 255,
  2893. "a": 255
  2894. },
  2895. "_contentSize": {
  2896. "__type__": "cc.Size",
  2897. "width": 508,
  2898. "height": 108
  2899. },
  2900. "_anchorPoint": {
  2901. "__type__": "cc.Vec2",
  2902. "x": 0.5,
  2903. "y": 0.5
  2904. },
  2905. "_trs": {
  2906. "__type__": "TypedArray",
  2907. "ctor": "Float64Array",
  2908. "array": [
  2909. 0,
  2910. 972,
  2911. 0,
  2912. 0,
  2913. 0,
  2914. 0,
  2915. 1,
  2916. 1,
  2917. 1,
  2918. 1
  2919. ]
  2920. },
  2921. "_eulerAngles": {
  2922. "__type__": "cc.Vec3",
  2923. "x": 0,
  2924. "y": 0,
  2925. "z": 0
  2926. },
  2927. "_skewX": 0,
  2928. "_skewY": 0,
  2929. "_is3DNode": false,
  2930. "_groupIndex": 0,
  2931. "groupIndex": 0,
  2932. "_id": ""
  2933. },
  2934. {
  2935. "__type__": "cc.Node",
  2936. "_name": "ItemBG",
  2937. "_objFlags": 0,
  2938. "_parent": {
  2939. "__id__": 77
  2940. },
  2941. "_children": [],
  2942. "_active": true,
  2943. "_components": [
  2944. {
  2945. "__id__": 79
  2946. }
  2947. ],
  2948. "_prefab": {
  2949. "__id__": 80
  2950. },
  2951. "_opacity": 255,
  2952. "_color": {
  2953. "__type__": "cc.Color",
  2954. "r": 255,
  2955. "g": 255,
  2956. "b": 255,
  2957. "a": 255
  2958. },
  2959. "_contentSize": {
  2960. "__type__": "cc.Size",
  2961. "width": 508,
  2962. "height": 108
  2963. },
  2964. "_anchorPoint": {
  2965. "__type__": "cc.Vec2",
  2966. "x": 0.5,
  2967. "y": 0.5
  2968. },
  2969. "_trs": {
  2970. "__type__": "TypedArray",
  2971. "ctor": "Float64Array",
  2972. "array": [
  2973. 0,
  2974. 0,
  2975. 0,
  2976. 0,
  2977. 0,
  2978. 0,
  2979. 1,
  2980. 1,
  2981. 1,
  2982. 1
  2983. ]
  2984. },
  2985. "_eulerAngles": {
  2986. "__type__": "cc.Vec3",
  2987. "x": 0,
  2988. "y": 0,
  2989. "z": 0
  2990. },
  2991. "_skewX": 0,
  2992. "_skewY": 0,
  2993. "_is3DNode": false,
  2994. "_groupIndex": 0,
  2995. "groupIndex": 0,
  2996. "_id": ""
  2997. },
  2998. {
  2999. "__type__": "cc.Sprite",
  3000. "_name": "",
  3001. "_objFlags": 0,
  3002. "node": {
  3003. "__id__": 78
  3004. },
  3005. "_enabled": true,
  3006. "_materials": [
  3007. {
  3008. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3009. }
  3010. ],
  3011. "_srcBlendFactor": 770,
  3012. "_dstBlendFactor": 771,
  3013. "_spriteFrame": {
  3014. "__uuid__": "ed881367-5fbb-4f49-af13-9c2ae787461d"
  3015. },
  3016. "_type": 0,
  3017. "_sizeMode": 1,
  3018. "_fillType": 0,
  3019. "_fillCenter": {
  3020. "__type__": "cc.Vec2",
  3021. "x": 0,
  3022. "y": 0
  3023. },
  3024. "_fillStart": 0,
  3025. "_fillRange": 0,
  3026. "_isTrimmedMode": true,
  3027. "_atlas": null,
  3028. "_id": ""
  3029. },
  3030. {
  3031. "__type__": "cc.PrefabInfo",
  3032. "root": {
  3033. "__id__": 1
  3034. },
  3035. "asset": {
  3036. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  3037. },
  3038. "fileId": "4b5ndJsUFOaIBhgsD4ANpA",
  3039. "sync": false
  3040. },
  3041. {
  3042. "__type__": "cc.Node",
  3043. "_name": "Logo",
  3044. "_objFlags": 0,
  3045. "_parent": {
  3046. "__id__": 77
  3047. },
  3048. "_children": [],
  3049. "_active": true,
  3050. "_components": [
  3051. {
  3052. "__id__": 82
  3053. }
  3054. ],
  3055. "_prefab": {
  3056. "__id__": 83
  3057. },
  3058. "_opacity": 255,
  3059. "_color": {
  3060. "__type__": "cc.Color",
  3061. "r": 255,
  3062. "g": 255,
  3063. "b": 255,
  3064. "a": 255
  3065. },
  3066. "_contentSize": {
  3067. "__type__": "cc.Size",
  3068. "width": 78,
  3069. "height": 78
  3070. },
  3071. "_anchorPoint": {
  3072. "__type__": "cc.Vec2",
  3073. "x": 0.5,
  3074. "y": 0.5
  3075. },
  3076. "_trs": {
  3077. "__type__": "TypedArray",
  3078. "ctor": "Float64Array",
  3079. "array": [
  3080. -194.877,
  3081. 0,
  3082. 0,
  3083. 0,
  3084. 0,
  3085. 0,
  3086. 1,
  3087. 1,
  3088. 1,
  3089. 1
  3090. ]
  3091. },
  3092. "_eulerAngles": {
  3093. "__type__": "cc.Vec3",
  3094. "x": 0,
  3095. "y": 0,
  3096. "z": 0
  3097. },
  3098. "_skewX": 0,
  3099. "_skewY": 0,
  3100. "_is3DNode": false,
  3101. "_groupIndex": 0,
  3102. "groupIndex": 0,
  3103. "_id": ""
  3104. },
  3105. {
  3106. "__type__": "cc.Sprite",
  3107. "_name": "",
  3108. "_objFlags": 0,
  3109. "node": {
  3110. "__id__": 81
  3111. },
  3112. "_enabled": true,
  3113. "_materials": [
  3114. {
  3115. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3116. }
  3117. ],
  3118. "_srcBlendFactor": 770,
  3119. "_dstBlendFactor": 771,
  3120. "_spriteFrame": {
  3121. "__uuid__": "45602453-5884-4197-94c9-c98a6d81e501"
  3122. },
  3123. "_type": 0,
  3124. "_sizeMode": 1,
  3125. "_fillType": 0,
  3126. "_fillCenter": {
  3127. "__type__": "cc.Vec2",
  3128. "x": 0,
  3129. "y": 0
  3130. },
  3131. "_fillStart": 0,
  3132. "_fillRange": 0,
  3133. "_isTrimmedMode": true,
  3134. "_atlas": null,
  3135. "_id": ""
  3136. },
  3137. {
  3138. "__type__": "cc.PrefabInfo",
  3139. "root": {
  3140. "__id__": 1
  3141. },
  3142. "asset": {
  3143. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  3144. },
  3145. "fileId": "d4ObIAzmtFRKCSRJhYIxg1",
  3146. "sync": false
  3147. },
  3148. {
  3149. "__type__": "cc.Node",
  3150. "_name": "TitleLabel",
  3151. "_objFlags": 0,
  3152. "_parent": {
  3153. "__id__": 77
  3154. },
  3155. "_children": [],
  3156. "_active": true,
  3157. "_components": [
  3158. {
  3159. "__id__": 85
  3160. },
  3161. {
  3162. "__id__": 86
  3163. }
  3164. ],
  3165. "_prefab": {
  3166. "__id__": 87
  3167. },
  3168. "_opacity": 255,
  3169. "_color": {
  3170. "__type__": "cc.Color",
  3171. "r": 152,
  3172. "g": 102,
  3173. "b": 55,
  3174. "a": 255
  3175. },
  3176. "_contentSize": {
  3177. "__type__": "cc.Size",
  3178. "width": 364.56,
  3179. "height": 33.5
  3180. },
  3181. "_anchorPoint": {
  3182. "__type__": "cc.Vec2",
  3183. "x": 0,
  3184. "y": 0.5
  3185. },
  3186. "_trs": {
  3187. "__type__": "TypedArray",
  3188. "ctor": "Float64Array",
  3189. "array": [
  3190. -130.895,
  3191. 22.867,
  3192. 0,
  3193. 0,
  3194. 0,
  3195. 0,
  3196. 1,
  3197. 1,
  3198. 1,
  3199. 1
  3200. ]
  3201. },
  3202. "_eulerAngles": {
  3203. "__type__": "cc.Vec3",
  3204. "x": 0,
  3205. "y": 0,
  3206. "z": 0
  3207. },
  3208. "_skewX": 0,
  3209. "_skewY": 0,
  3210. "_is3DNode": false,
  3211. "_groupIndex": 0,
  3212. "groupIndex": 0,
  3213. "_id": ""
  3214. },
  3215. {
  3216. "__type__": "cc.Label",
  3217. "_name": "",
  3218. "_objFlags": 0,
  3219. "node": {
  3220. "__id__": 84
  3221. },
  3222. "_enabled": true,
  3223. "_materials": [
  3224. {
  3225. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3226. }
  3227. ],
  3228. "_srcBlendFactor": 770,
  3229. "_dstBlendFactor": 771,
  3230. "_string": "3D视界面安卓2.0.8版本已经发行",
  3231. "_N$string": "3D视界面安卓2.0.8版本已经发行",
  3232. "_fontSize": 25,
  3233. "_lineHeight": 25,
  3234. "_enableWrapText": true,
  3235. "_N$file": null,
  3236. "_isSystemFontUsed": true,
  3237. "_spacingX": 0,
  3238. "_batchAsBitmap": false,
  3239. "_styleFlags": 0,
  3240. "_underlineHeight": 0,
  3241. "_N$horizontalAlign": 0,
  3242. "_N$verticalAlign": 1,
  3243. "_N$fontFamily": "Arial",
  3244. "_N$overflow": 0,
  3245. "_N$cacheMode": 0,
  3246. "_id": ""
  3247. },
  3248. {
  3249. "__type__": "cc.LabelOutline",
  3250. "_name": "",
  3251. "_objFlags": 0,
  3252. "node": {
  3253. "__id__": 84
  3254. },
  3255. "_enabled": true,
  3256. "_color": {
  3257. "__type__": "cc.Color",
  3258. "r": 152,
  3259. "g": 102,
  3260. "b": 55,
  3261. "a": 255
  3262. },
  3263. "_width": 1,
  3264. "_id": ""
  3265. },
  3266. {
  3267. "__type__": "cc.PrefabInfo",
  3268. "root": {
  3269. "__id__": 1
  3270. },
  3271. "asset": {
  3272. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  3273. },
  3274. "fileId": "d7Z+ZZ6h9BKZUHJBmGR66H",
  3275. "sync": false
  3276. },
  3277. {
  3278. "__type__": "cc.Node",
  3279. "_name": "TimeLabel",
  3280. "_objFlags": 0,
  3281. "_parent": {
  3282. "__id__": 77
  3283. },
  3284. "_children": [],
  3285. "_active": true,
  3286. "_components": [
  3287. {
  3288. "__id__": 89
  3289. },
  3290. {
  3291. "__id__": 90
  3292. }
  3293. ],
  3294. "_prefab": {
  3295. "__id__": 91
  3296. },
  3297. "_opacity": 255,
  3298. "_color": {
  3299. "__type__": "cc.Color",
  3300. "r": 181,
  3301. "g": 153,
  3302. "b": 114,
  3303. "a": 255
  3304. },
  3305. "_contentSize": {
  3306. "__type__": "cc.Size",
  3307. "width": 239.23,
  3308. "height": 33.5
  3309. },
  3310. "_anchorPoint": {
  3311. "__type__": "cc.Vec2",
  3312. "x": 0,
  3313. "y": 0.5
  3314. },
  3315. "_trs": {
  3316. "__type__": "TypedArray",
  3317. "ctor": "Float64Array",
  3318. "array": [
  3319. -130.895,
  3320. -19.926,
  3321. 0,
  3322. 0,
  3323. 0,
  3324. 0,
  3325. 1,
  3326. 1,
  3327. 1,
  3328. 1
  3329. ]
  3330. },
  3331. "_eulerAngles": {
  3332. "__type__": "cc.Vec3",
  3333. "x": 0,
  3334. "y": 0,
  3335. "z": 0
  3336. },
  3337. "_skewX": 0,
  3338. "_skewY": 0,
  3339. "_is3DNode": false,
  3340. "_groupIndex": 0,
  3341. "groupIndex": 0,
  3342. "_id": ""
  3343. },
  3344. {
  3345. "__type__": "cc.Label",
  3346. "_name": "",
  3347. "_objFlags": 0,
  3348. "node": {
  3349. "__id__": 88
  3350. },
  3351. "_enabled": true,
  3352. "_materials": [
  3353. {
  3354. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3355. }
  3356. ],
  3357. "_srcBlendFactor": 770,
  3358. "_dstBlendFactor": 771,
  3359. "_string": "2020-11-26 19:43:00",
  3360. "_N$string": "2020-11-26 19:43:00",
  3361. "_fontSize": 25,
  3362. "_lineHeight": 25,
  3363. "_enableWrapText": true,
  3364. "_N$file": null,
  3365. "_isSystemFontUsed": true,
  3366. "_spacingX": 0,
  3367. "_batchAsBitmap": false,
  3368. "_styleFlags": 0,
  3369. "_underlineHeight": 0,
  3370. "_N$horizontalAlign": 0,
  3371. "_N$verticalAlign": 1,
  3372. "_N$fontFamily": "Arial",
  3373. "_N$overflow": 0,
  3374. "_N$cacheMode": 0,
  3375. "_id": ""
  3376. },
  3377. {
  3378. "__type__": "cc.LabelOutline",
  3379. "_name": "",
  3380. "_objFlags": 0,
  3381. "node": {
  3382. "__id__": 88
  3383. },
  3384. "_enabled": true,
  3385. "_color": {
  3386. "__type__": "cc.Color",
  3387. "r": 181,
  3388. "g": 153,
  3389. "b": 114,
  3390. "a": 255
  3391. },
  3392. "_width": 1,
  3393. "_id": ""
  3394. },
  3395. {
  3396. "__type__": "cc.PrefabInfo",
  3397. "root": {
  3398. "__id__": 1
  3399. },
  3400. "asset": {
  3401. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  3402. },
  3403. "fileId": "538Hw/kJFM3bPLlX63T5M0",
  3404. "sync": false
  3405. },
  3406. {
  3407. "__type__": "cc.PrefabInfo",
  3408. "root": {
  3409. "__id__": 1
  3410. },
  3411. "asset": {
  3412. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  3413. },
  3414. "fileId": "b1jXmeEDlK1rdJgwK/dmcU",
  3415. "sync": false
  3416. },
  3417. {
  3418. "__type__": "cc.Node",
  3419. "_name": "Item",
  3420. "_objFlags": 0,
  3421. "_parent": {
  3422. "__id__": 28
  3423. },
  3424. "_children": [
  3425. {
  3426. "__id__": 94
  3427. },
  3428. {
  3429. "__id__": 97
  3430. },
  3431. {
  3432. "__id__": 100
  3433. },
  3434. {
  3435. "__id__": 104
  3436. }
  3437. ],
  3438. "_active": true,
  3439. "_components": [],
  3440. "_prefab": {
  3441. "__id__": 108
  3442. },
  3443. "_opacity": 255,
  3444. "_color": {
  3445. "__type__": "cc.Color",
  3446. "r": 255,
  3447. "g": 255,
  3448. "b": 255,
  3449. "a": 255
  3450. },
  3451. "_contentSize": {
  3452. "__type__": "cc.Size",
  3453. "width": 508,
  3454. "height": 108
  3455. },
  3456. "_anchorPoint": {
  3457. "__type__": "cc.Vec2",
  3458. "x": 0.5,
  3459. "y": 0.5
  3460. },
  3461. "_trs": {
  3462. "__type__": "TypedArray",
  3463. "ctor": "Float64Array",
  3464. "array": [
  3465. 0,
  3466. 814,
  3467. 0,
  3468. 0,
  3469. 0,
  3470. 0,
  3471. 1,
  3472. 1,
  3473. 1,
  3474. 1
  3475. ]
  3476. },
  3477. "_eulerAngles": {
  3478. "__type__": "cc.Vec3",
  3479. "x": 0,
  3480. "y": 0,
  3481. "z": 0
  3482. },
  3483. "_skewX": 0,
  3484. "_skewY": 0,
  3485. "_is3DNode": false,
  3486. "_groupIndex": 0,
  3487. "groupIndex": 0,
  3488. "_id": ""
  3489. },
  3490. {
  3491. "__type__": "cc.Node",
  3492. "_name": "ItemBG",
  3493. "_objFlags": 0,
  3494. "_parent": {
  3495. "__id__": 93
  3496. },
  3497. "_children": [],
  3498. "_active": true,
  3499. "_components": [
  3500. {
  3501. "__id__": 95
  3502. }
  3503. ],
  3504. "_prefab": {
  3505. "__id__": 96
  3506. },
  3507. "_opacity": 255,
  3508. "_color": {
  3509. "__type__": "cc.Color",
  3510. "r": 255,
  3511. "g": 255,
  3512. "b": 255,
  3513. "a": 255
  3514. },
  3515. "_contentSize": {
  3516. "__type__": "cc.Size",
  3517. "width": 508,
  3518. "height": 108
  3519. },
  3520. "_anchorPoint": {
  3521. "__type__": "cc.Vec2",
  3522. "x": 0.5,
  3523. "y": 0.5
  3524. },
  3525. "_trs": {
  3526. "__type__": "TypedArray",
  3527. "ctor": "Float64Array",
  3528. "array": [
  3529. 0,
  3530. 0,
  3531. 0,
  3532. 0,
  3533. 0,
  3534. 0,
  3535. 1,
  3536. 1,
  3537. 1,
  3538. 1
  3539. ]
  3540. },
  3541. "_eulerAngles": {
  3542. "__type__": "cc.Vec3",
  3543. "x": 0,
  3544. "y": 0,
  3545. "z": 0
  3546. },
  3547. "_skewX": 0,
  3548. "_skewY": 0,
  3549. "_is3DNode": false,
  3550. "_groupIndex": 0,
  3551. "groupIndex": 0,
  3552. "_id": ""
  3553. },
  3554. {
  3555. "__type__": "cc.Sprite",
  3556. "_name": "",
  3557. "_objFlags": 0,
  3558. "node": {
  3559. "__id__": 94
  3560. },
  3561. "_enabled": true,
  3562. "_materials": [
  3563. {
  3564. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3565. }
  3566. ],
  3567. "_srcBlendFactor": 770,
  3568. "_dstBlendFactor": 771,
  3569. "_spriteFrame": {
  3570. "__uuid__": "ed881367-5fbb-4f49-af13-9c2ae787461d"
  3571. },
  3572. "_type": 0,
  3573. "_sizeMode": 1,
  3574. "_fillType": 0,
  3575. "_fillCenter": {
  3576. "__type__": "cc.Vec2",
  3577. "x": 0,
  3578. "y": 0
  3579. },
  3580. "_fillStart": 0,
  3581. "_fillRange": 0,
  3582. "_isTrimmedMode": true,
  3583. "_atlas": null,
  3584. "_id": ""
  3585. },
  3586. {
  3587. "__type__": "cc.PrefabInfo",
  3588. "root": {
  3589. "__id__": 1
  3590. },
  3591. "asset": {
  3592. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  3593. },
  3594. "fileId": "43SZRCIZxBq7bfHpQJC90E",
  3595. "sync": false
  3596. },
  3597. {
  3598. "__type__": "cc.Node",
  3599. "_name": "Logo",
  3600. "_objFlags": 0,
  3601. "_parent": {
  3602. "__id__": 93
  3603. },
  3604. "_children": [],
  3605. "_active": true,
  3606. "_components": [
  3607. {
  3608. "__id__": 98
  3609. }
  3610. ],
  3611. "_prefab": {
  3612. "__id__": 99
  3613. },
  3614. "_opacity": 255,
  3615. "_color": {
  3616. "__type__": "cc.Color",
  3617. "r": 255,
  3618. "g": 255,
  3619. "b": 255,
  3620. "a": 255
  3621. },
  3622. "_contentSize": {
  3623. "__type__": "cc.Size",
  3624. "width": 78,
  3625. "height": 78
  3626. },
  3627. "_anchorPoint": {
  3628. "__type__": "cc.Vec2",
  3629. "x": 0.5,
  3630. "y": 0.5
  3631. },
  3632. "_trs": {
  3633. "__type__": "TypedArray",
  3634. "ctor": "Float64Array",
  3635. "array": [
  3636. -194.877,
  3637. 0,
  3638. 0,
  3639. 0,
  3640. 0,
  3641. 0,
  3642. 1,
  3643. 1,
  3644. 1,
  3645. 1
  3646. ]
  3647. },
  3648. "_eulerAngles": {
  3649. "__type__": "cc.Vec3",
  3650. "x": 0,
  3651. "y": 0,
  3652. "z": 0
  3653. },
  3654. "_skewX": 0,
  3655. "_skewY": 0,
  3656. "_is3DNode": false,
  3657. "_groupIndex": 0,
  3658. "groupIndex": 0,
  3659. "_id": ""
  3660. },
  3661. {
  3662. "__type__": "cc.Sprite",
  3663. "_name": "",
  3664. "_objFlags": 0,
  3665. "node": {
  3666. "__id__": 97
  3667. },
  3668. "_enabled": true,
  3669. "_materials": [
  3670. {
  3671. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3672. }
  3673. ],
  3674. "_srcBlendFactor": 770,
  3675. "_dstBlendFactor": 771,
  3676. "_spriteFrame": {
  3677. "__uuid__": "45602453-5884-4197-94c9-c98a6d81e501"
  3678. },
  3679. "_type": 0,
  3680. "_sizeMode": 1,
  3681. "_fillType": 0,
  3682. "_fillCenter": {
  3683. "__type__": "cc.Vec2",
  3684. "x": 0,
  3685. "y": 0
  3686. },
  3687. "_fillStart": 0,
  3688. "_fillRange": 0,
  3689. "_isTrimmedMode": true,
  3690. "_atlas": null,
  3691. "_id": ""
  3692. },
  3693. {
  3694. "__type__": "cc.PrefabInfo",
  3695. "root": {
  3696. "__id__": 1
  3697. },
  3698. "asset": {
  3699. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  3700. },
  3701. "fileId": "40KT1DyWdCdq8+7M7WbltC",
  3702. "sync": false
  3703. },
  3704. {
  3705. "__type__": "cc.Node",
  3706. "_name": "TitleLabel",
  3707. "_objFlags": 0,
  3708. "_parent": {
  3709. "__id__": 93
  3710. },
  3711. "_children": [],
  3712. "_active": true,
  3713. "_components": [
  3714. {
  3715. "__id__": 101
  3716. },
  3717. {
  3718. "__id__": 102
  3719. }
  3720. ],
  3721. "_prefab": {
  3722. "__id__": 103
  3723. },
  3724. "_opacity": 255,
  3725. "_color": {
  3726. "__type__": "cc.Color",
  3727. "r": 152,
  3728. "g": 102,
  3729. "b": 55,
  3730. "a": 255
  3731. },
  3732. "_contentSize": {
  3733. "__type__": "cc.Size",
  3734. "width": 364.56,
  3735. "height": 33.5
  3736. },
  3737. "_anchorPoint": {
  3738. "__type__": "cc.Vec2",
  3739. "x": 0,
  3740. "y": 0.5
  3741. },
  3742. "_trs": {
  3743. "__type__": "TypedArray",
  3744. "ctor": "Float64Array",
  3745. "array": [
  3746. -130.895,
  3747. 22.867,
  3748. 0,
  3749. 0,
  3750. 0,
  3751. 0,
  3752. 1,
  3753. 1,
  3754. 1,
  3755. 1
  3756. ]
  3757. },
  3758. "_eulerAngles": {
  3759. "__type__": "cc.Vec3",
  3760. "x": 0,
  3761. "y": 0,
  3762. "z": 0
  3763. },
  3764. "_skewX": 0,
  3765. "_skewY": 0,
  3766. "_is3DNode": false,
  3767. "_groupIndex": 0,
  3768. "groupIndex": 0,
  3769. "_id": ""
  3770. },
  3771. {
  3772. "__type__": "cc.Label",
  3773. "_name": "",
  3774. "_objFlags": 0,
  3775. "node": {
  3776. "__id__": 100
  3777. },
  3778. "_enabled": true,
  3779. "_materials": [
  3780. {
  3781. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3782. }
  3783. ],
  3784. "_srcBlendFactor": 770,
  3785. "_dstBlendFactor": 771,
  3786. "_string": "3D视界面安卓2.0.8版本已经发行",
  3787. "_N$string": "3D视界面安卓2.0.8版本已经发行",
  3788. "_fontSize": 25,
  3789. "_lineHeight": 25,
  3790. "_enableWrapText": true,
  3791. "_N$file": null,
  3792. "_isSystemFontUsed": true,
  3793. "_spacingX": 0,
  3794. "_batchAsBitmap": false,
  3795. "_styleFlags": 0,
  3796. "_underlineHeight": 0,
  3797. "_N$horizontalAlign": 0,
  3798. "_N$verticalAlign": 1,
  3799. "_N$fontFamily": "Arial",
  3800. "_N$overflow": 0,
  3801. "_N$cacheMode": 0,
  3802. "_id": ""
  3803. },
  3804. {
  3805. "__type__": "cc.LabelOutline",
  3806. "_name": "",
  3807. "_objFlags": 0,
  3808. "node": {
  3809. "__id__": 100
  3810. },
  3811. "_enabled": true,
  3812. "_color": {
  3813. "__type__": "cc.Color",
  3814. "r": 152,
  3815. "g": 102,
  3816. "b": 55,
  3817. "a": 255
  3818. },
  3819. "_width": 1,
  3820. "_id": ""
  3821. },
  3822. {
  3823. "__type__": "cc.PrefabInfo",
  3824. "root": {
  3825. "__id__": 1
  3826. },
  3827. "asset": {
  3828. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  3829. },
  3830. "fileId": "75+si61xlCPrZXGncDXmRR",
  3831. "sync": false
  3832. },
  3833. {
  3834. "__type__": "cc.Node",
  3835. "_name": "TimeLabel",
  3836. "_objFlags": 0,
  3837. "_parent": {
  3838. "__id__": 93
  3839. },
  3840. "_children": [],
  3841. "_active": true,
  3842. "_components": [
  3843. {
  3844. "__id__": 105
  3845. },
  3846. {
  3847. "__id__": 106
  3848. }
  3849. ],
  3850. "_prefab": {
  3851. "__id__": 107
  3852. },
  3853. "_opacity": 255,
  3854. "_color": {
  3855. "__type__": "cc.Color",
  3856. "r": 181,
  3857. "g": 153,
  3858. "b": 114,
  3859. "a": 255
  3860. },
  3861. "_contentSize": {
  3862. "__type__": "cc.Size",
  3863. "width": 239.23,
  3864. "height": 33.5
  3865. },
  3866. "_anchorPoint": {
  3867. "__type__": "cc.Vec2",
  3868. "x": 0,
  3869. "y": 0.5
  3870. },
  3871. "_trs": {
  3872. "__type__": "TypedArray",
  3873. "ctor": "Float64Array",
  3874. "array": [
  3875. -130.895,
  3876. -19.926,
  3877. 0,
  3878. 0,
  3879. 0,
  3880. 0,
  3881. 1,
  3882. 1,
  3883. 1,
  3884. 1
  3885. ]
  3886. },
  3887. "_eulerAngles": {
  3888. "__type__": "cc.Vec3",
  3889. "x": 0,
  3890. "y": 0,
  3891. "z": 0
  3892. },
  3893. "_skewX": 0,
  3894. "_skewY": 0,
  3895. "_is3DNode": false,
  3896. "_groupIndex": 0,
  3897. "groupIndex": 0,
  3898. "_id": ""
  3899. },
  3900. {
  3901. "__type__": "cc.Label",
  3902. "_name": "",
  3903. "_objFlags": 0,
  3904. "node": {
  3905. "__id__": 104
  3906. },
  3907. "_enabled": true,
  3908. "_materials": [
  3909. {
  3910. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3911. }
  3912. ],
  3913. "_srcBlendFactor": 770,
  3914. "_dstBlendFactor": 771,
  3915. "_string": "2020-11-26 19:43:00",
  3916. "_N$string": "2020-11-26 19:43:00",
  3917. "_fontSize": 25,
  3918. "_lineHeight": 25,
  3919. "_enableWrapText": true,
  3920. "_N$file": null,
  3921. "_isSystemFontUsed": true,
  3922. "_spacingX": 0,
  3923. "_batchAsBitmap": false,
  3924. "_styleFlags": 0,
  3925. "_underlineHeight": 0,
  3926. "_N$horizontalAlign": 0,
  3927. "_N$verticalAlign": 1,
  3928. "_N$fontFamily": "Arial",
  3929. "_N$overflow": 0,
  3930. "_N$cacheMode": 0,
  3931. "_id": ""
  3932. },
  3933. {
  3934. "__type__": "cc.LabelOutline",
  3935. "_name": "",
  3936. "_objFlags": 0,
  3937. "node": {
  3938. "__id__": 104
  3939. },
  3940. "_enabled": true,
  3941. "_color": {
  3942. "__type__": "cc.Color",
  3943. "r": 181,
  3944. "g": 153,
  3945. "b": 114,
  3946. "a": 255
  3947. },
  3948. "_width": 1,
  3949. "_id": ""
  3950. },
  3951. {
  3952. "__type__": "cc.PrefabInfo",
  3953. "root": {
  3954. "__id__": 1
  3955. },
  3956. "asset": {
  3957. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  3958. },
  3959. "fileId": "b3KY81GvJD+5JG3BWj9Qli",
  3960. "sync": false
  3961. },
  3962. {
  3963. "__type__": "cc.PrefabInfo",
  3964. "root": {
  3965. "__id__": 1
  3966. },
  3967. "asset": {
  3968. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  3969. },
  3970. "fileId": "ecninmmwBJWqmK/2bKPQiB",
  3971. "sync": false
  3972. },
  3973. {
  3974. "__type__": "cc.Node",
  3975. "_name": "Item",
  3976. "_objFlags": 0,
  3977. "_parent": {
  3978. "__id__": 28
  3979. },
  3980. "_children": [
  3981. {
  3982. "__id__": 110
  3983. },
  3984. {
  3985. "__id__": 113
  3986. },
  3987. {
  3988. "__id__": 116
  3989. },
  3990. {
  3991. "__id__": 120
  3992. }
  3993. ],
  3994. "_active": true,
  3995. "_components": [],
  3996. "_prefab": {
  3997. "__id__": 124
  3998. },
  3999. "_opacity": 255,
  4000. "_color": {
  4001. "__type__": "cc.Color",
  4002. "r": 255,
  4003. "g": 255,
  4004. "b": 255,
  4005. "a": 255
  4006. },
  4007. "_contentSize": {
  4008. "__type__": "cc.Size",
  4009. "width": 508,
  4010. "height": 108
  4011. },
  4012. "_anchorPoint": {
  4013. "__type__": "cc.Vec2",
  4014. "x": 0.5,
  4015. "y": 0.5
  4016. },
  4017. "_trs": {
  4018. "__type__": "TypedArray",
  4019. "ctor": "Float64Array",
  4020. "array": [
  4021. 0,
  4022. 656,
  4023. 0,
  4024. 0,
  4025. 0,
  4026. 0,
  4027. 1,
  4028. 1,
  4029. 1,
  4030. 1
  4031. ]
  4032. },
  4033. "_eulerAngles": {
  4034. "__type__": "cc.Vec3",
  4035. "x": 0,
  4036. "y": 0,
  4037. "z": 0
  4038. },
  4039. "_skewX": 0,
  4040. "_skewY": 0,
  4041. "_is3DNode": false,
  4042. "_groupIndex": 0,
  4043. "groupIndex": 0,
  4044. "_id": ""
  4045. },
  4046. {
  4047. "__type__": "cc.Node",
  4048. "_name": "ItemBG",
  4049. "_objFlags": 0,
  4050. "_parent": {
  4051. "__id__": 109
  4052. },
  4053. "_children": [],
  4054. "_active": true,
  4055. "_components": [
  4056. {
  4057. "__id__": 111
  4058. }
  4059. ],
  4060. "_prefab": {
  4061. "__id__": 112
  4062. },
  4063. "_opacity": 255,
  4064. "_color": {
  4065. "__type__": "cc.Color",
  4066. "r": 255,
  4067. "g": 255,
  4068. "b": 255,
  4069. "a": 255
  4070. },
  4071. "_contentSize": {
  4072. "__type__": "cc.Size",
  4073. "width": 508,
  4074. "height": 108
  4075. },
  4076. "_anchorPoint": {
  4077. "__type__": "cc.Vec2",
  4078. "x": 0.5,
  4079. "y": 0.5
  4080. },
  4081. "_trs": {
  4082. "__type__": "TypedArray",
  4083. "ctor": "Float64Array",
  4084. "array": [
  4085. 0,
  4086. 0,
  4087. 0,
  4088. 0,
  4089. 0,
  4090. 0,
  4091. 1,
  4092. 1,
  4093. 1,
  4094. 1
  4095. ]
  4096. },
  4097. "_eulerAngles": {
  4098. "__type__": "cc.Vec3",
  4099. "x": 0,
  4100. "y": 0,
  4101. "z": 0
  4102. },
  4103. "_skewX": 0,
  4104. "_skewY": 0,
  4105. "_is3DNode": false,
  4106. "_groupIndex": 0,
  4107. "groupIndex": 0,
  4108. "_id": ""
  4109. },
  4110. {
  4111. "__type__": "cc.Sprite",
  4112. "_name": "",
  4113. "_objFlags": 0,
  4114. "node": {
  4115. "__id__": 110
  4116. },
  4117. "_enabled": true,
  4118. "_materials": [
  4119. {
  4120. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4121. }
  4122. ],
  4123. "_srcBlendFactor": 770,
  4124. "_dstBlendFactor": 771,
  4125. "_spriteFrame": {
  4126. "__uuid__": "ed881367-5fbb-4f49-af13-9c2ae787461d"
  4127. },
  4128. "_type": 0,
  4129. "_sizeMode": 1,
  4130. "_fillType": 0,
  4131. "_fillCenter": {
  4132. "__type__": "cc.Vec2",
  4133. "x": 0,
  4134. "y": 0
  4135. },
  4136. "_fillStart": 0,
  4137. "_fillRange": 0,
  4138. "_isTrimmedMode": true,
  4139. "_atlas": null,
  4140. "_id": ""
  4141. },
  4142. {
  4143. "__type__": "cc.PrefabInfo",
  4144. "root": {
  4145. "__id__": 1
  4146. },
  4147. "asset": {
  4148. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  4149. },
  4150. "fileId": "b2wgVbmdlAP66iZAyjFmg+",
  4151. "sync": false
  4152. },
  4153. {
  4154. "__type__": "cc.Node",
  4155. "_name": "Logo",
  4156. "_objFlags": 0,
  4157. "_parent": {
  4158. "__id__": 109
  4159. },
  4160. "_children": [],
  4161. "_active": true,
  4162. "_components": [
  4163. {
  4164. "__id__": 114
  4165. }
  4166. ],
  4167. "_prefab": {
  4168. "__id__": 115
  4169. },
  4170. "_opacity": 255,
  4171. "_color": {
  4172. "__type__": "cc.Color",
  4173. "r": 255,
  4174. "g": 255,
  4175. "b": 255,
  4176. "a": 255
  4177. },
  4178. "_contentSize": {
  4179. "__type__": "cc.Size",
  4180. "width": 78,
  4181. "height": 78
  4182. },
  4183. "_anchorPoint": {
  4184. "__type__": "cc.Vec2",
  4185. "x": 0.5,
  4186. "y": 0.5
  4187. },
  4188. "_trs": {
  4189. "__type__": "TypedArray",
  4190. "ctor": "Float64Array",
  4191. "array": [
  4192. -194.877,
  4193. 0,
  4194. 0,
  4195. 0,
  4196. 0,
  4197. 0,
  4198. 1,
  4199. 1,
  4200. 1,
  4201. 1
  4202. ]
  4203. },
  4204. "_eulerAngles": {
  4205. "__type__": "cc.Vec3",
  4206. "x": 0,
  4207. "y": 0,
  4208. "z": 0
  4209. },
  4210. "_skewX": 0,
  4211. "_skewY": 0,
  4212. "_is3DNode": false,
  4213. "_groupIndex": 0,
  4214. "groupIndex": 0,
  4215. "_id": ""
  4216. },
  4217. {
  4218. "__type__": "cc.Sprite",
  4219. "_name": "",
  4220. "_objFlags": 0,
  4221. "node": {
  4222. "__id__": 113
  4223. },
  4224. "_enabled": true,
  4225. "_materials": [
  4226. {
  4227. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4228. }
  4229. ],
  4230. "_srcBlendFactor": 770,
  4231. "_dstBlendFactor": 771,
  4232. "_spriteFrame": {
  4233. "__uuid__": "45602453-5884-4197-94c9-c98a6d81e501"
  4234. },
  4235. "_type": 0,
  4236. "_sizeMode": 1,
  4237. "_fillType": 0,
  4238. "_fillCenter": {
  4239. "__type__": "cc.Vec2",
  4240. "x": 0,
  4241. "y": 0
  4242. },
  4243. "_fillStart": 0,
  4244. "_fillRange": 0,
  4245. "_isTrimmedMode": true,
  4246. "_atlas": null,
  4247. "_id": ""
  4248. },
  4249. {
  4250. "__type__": "cc.PrefabInfo",
  4251. "root": {
  4252. "__id__": 1
  4253. },
  4254. "asset": {
  4255. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  4256. },
  4257. "fileId": "bbyf/7rTdEhIg3qOWKLW2G",
  4258. "sync": false
  4259. },
  4260. {
  4261. "__type__": "cc.Node",
  4262. "_name": "TitleLabel",
  4263. "_objFlags": 0,
  4264. "_parent": {
  4265. "__id__": 109
  4266. },
  4267. "_children": [],
  4268. "_active": true,
  4269. "_components": [
  4270. {
  4271. "__id__": 117
  4272. },
  4273. {
  4274. "__id__": 118
  4275. }
  4276. ],
  4277. "_prefab": {
  4278. "__id__": 119
  4279. },
  4280. "_opacity": 255,
  4281. "_color": {
  4282. "__type__": "cc.Color",
  4283. "r": 152,
  4284. "g": 102,
  4285. "b": 55,
  4286. "a": 255
  4287. },
  4288. "_contentSize": {
  4289. "__type__": "cc.Size",
  4290. "width": 364.56,
  4291. "height": 33.5
  4292. },
  4293. "_anchorPoint": {
  4294. "__type__": "cc.Vec2",
  4295. "x": 0,
  4296. "y": 0.5
  4297. },
  4298. "_trs": {
  4299. "__type__": "TypedArray",
  4300. "ctor": "Float64Array",
  4301. "array": [
  4302. -130.895,
  4303. 22.867,
  4304. 0,
  4305. 0,
  4306. 0,
  4307. 0,
  4308. 1,
  4309. 1,
  4310. 1,
  4311. 1
  4312. ]
  4313. },
  4314. "_eulerAngles": {
  4315. "__type__": "cc.Vec3",
  4316. "x": 0,
  4317. "y": 0,
  4318. "z": 0
  4319. },
  4320. "_skewX": 0,
  4321. "_skewY": 0,
  4322. "_is3DNode": false,
  4323. "_groupIndex": 0,
  4324. "groupIndex": 0,
  4325. "_id": ""
  4326. },
  4327. {
  4328. "__type__": "cc.Label",
  4329. "_name": "",
  4330. "_objFlags": 0,
  4331. "node": {
  4332. "__id__": 116
  4333. },
  4334. "_enabled": true,
  4335. "_materials": [
  4336. {
  4337. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4338. }
  4339. ],
  4340. "_srcBlendFactor": 770,
  4341. "_dstBlendFactor": 771,
  4342. "_string": "3D视界面安卓2.0.8版本已经发行",
  4343. "_N$string": "3D视界面安卓2.0.8版本已经发行",
  4344. "_fontSize": 25,
  4345. "_lineHeight": 25,
  4346. "_enableWrapText": true,
  4347. "_N$file": null,
  4348. "_isSystemFontUsed": true,
  4349. "_spacingX": 0,
  4350. "_batchAsBitmap": false,
  4351. "_styleFlags": 0,
  4352. "_underlineHeight": 0,
  4353. "_N$horizontalAlign": 0,
  4354. "_N$verticalAlign": 1,
  4355. "_N$fontFamily": "Arial",
  4356. "_N$overflow": 0,
  4357. "_N$cacheMode": 0,
  4358. "_id": ""
  4359. },
  4360. {
  4361. "__type__": "cc.LabelOutline",
  4362. "_name": "",
  4363. "_objFlags": 0,
  4364. "node": {
  4365. "__id__": 116
  4366. },
  4367. "_enabled": true,
  4368. "_color": {
  4369. "__type__": "cc.Color",
  4370. "r": 152,
  4371. "g": 102,
  4372. "b": 55,
  4373. "a": 255
  4374. },
  4375. "_width": 1,
  4376. "_id": ""
  4377. },
  4378. {
  4379. "__type__": "cc.PrefabInfo",
  4380. "root": {
  4381. "__id__": 1
  4382. },
  4383. "asset": {
  4384. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  4385. },
  4386. "fileId": "68+esMmz1ISqtdSEkHGupn",
  4387. "sync": false
  4388. },
  4389. {
  4390. "__type__": "cc.Node",
  4391. "_name": "TimeLabel",
  4392. "_objFlags": 0,
  4393. "_parent": {
  4394. "__id__": 109
  4395. },
  4396. "_children": [],
  4397. "_active": true,
  4398. "_components": [
  4399. {
  4400. "__id__": 121
  4401. },
  4402. {
  4403. "__id__": 122
  4404. }
  4405. ],
  4406. "_prefab": {
  4407. "__id__": 123
  4408. },
  4409. "_opacity": 255,
  4410. "_color": {
  4411. "__type__": "cc.Color",
  4412. "r": 181,
  4413. "g": 153,
  4414. "b": 114,
  4415. "a": 255
  4416. },
  4417. "_contentSize": {
  4418. "__type__": "cc.Size",
  4419. "width": 239.23,
  4420. "height": 33.5
  4421. },
  4422. "_anchorPoint": {
  4423. "__type__": "cc.Vec2",
  4424. "x": 0,
  4425. "y": 0.5
  4426. },
  4427. "_trs": {
  4428. "__type__": "TypedArray",
  4429. "ctor": "Float64Array",
  4430. "array": [
  4431. -130.895,
  4432. -19.926,
  4433. 0,
  4434. 0,
  4435. 0,
  4436. 0,
  4437. 1,
  4438. 1,
  4439. 1,
  4440. 1
  4441. ]
  4442. },
  4443. "_eulerAngles": {
  4444. "__type__": "cc.Vec3",
  4445. "x": 0,
  4446. "y": 0,
  4447. "z": 0
  4448. },
  4449. "_skewX": 0,
  4450. "_skewY": 0,
  4451. "_is3DNode": false,
  4452. "_groupIndex": 0,
  4453. "groupIndex": 0,
  4454. "_id": ""
  4455. },
  4456. {
  4457. "__type__": "cc.Label",
  4458. "_name": "",
  4459. "_objFlags": 0,
  4460. "node": {
  4461. "__id__": 120
  4462. },
  4463. "_enabled": true,
  4464. "_materials": [
  4465. {
  4466. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4467. }
  4468. ],
  4469. "_srcBlendFactor": 770,
  4470. "_dstBlendFactor": 771,
  4471. "_string": "2020-11-26 19:43:00",
  4472. "_N$string": "2020-11-26 19:43:00",
  4473. "_fontSize": 25,
  4474. "_lineHeight": 25,
  4475. "_enableWrapText": true,
  4476. "_N$file": null,
  4477. "_isSystemFontUsed": true,
  4478. "_spacingX": 0,
  4479. "_batchAsBitmap": false,
  4480. "_styleFlags": 0,
  4481. "_underlineHeight": 0,
  4482. "_N$horizontalAlign": 0,
  4483. "_N$verticalAlign": 1,
  4484. "_N$fontFamily": "Arial",
  4485. "_N$overflow": 0,
  4486. "_N$cacheMode": 0,
  4487. "_id": ""
  4488. },
  4489. {
  4490. "__type__": "cc.LabelOutline",
  4491. "_name": "",
  4492. "_objFlags": 0,
  4493. "node": {
  4494. "__id__": 120
  4495. },
  4496. "_enabled": true,
  4497. "_color": {
  4498. "__type__": "cc.Color",
  4499. "r": 181,
  4500. "g": 153,
  4501. "b": 114,
  4502. "a": 255
  4503. },
  4504. "_width": 1,
  4505. "_id": ""
  4506. },
  4507. {
  4508. "__type__": "cc.PrefabInfo",
  4509. "root": {
  4510. "__id__": 1
  4511. },
  4512. "asset": {
  4513. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  4514. },
  4515. "fileId": "58UmIZIARK5o5igH3IZGn0",
  4516. "sync": false
  4517. },
  4518. {
  4519. "__type__": "cc.PrefabInfo",
  4520. "root": {
  4521. "__id__": 1
  4522. },
  4523. "asset": {
  4524. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  4525. },
  4526. "fileId": "ac0skEl/NEnoCocMqwGGve",
  4527. "sync": false
  4528. },
  4529. {
  4530. "__type__": "cc.Node",
  4531. "_name": "Item",
  4532. "_objFlags": 0,
  4533. "_parent": {
  4534. "__id__": 28
  4535. },
  4536. "_children": [
  4537. {
  4538. "__id__": 126
  4539. },
  4540. {
  4541. "__id__": 129
  4542. },
  4543. {
  4544. "__id__": 132
  4545. },
  4546. {
  4547. "__id__": 136
  4548. }
  4549. ],
  4550. "_active": true,
  4551. "_components": [],
  4552. "_prefab": {
  4553. "__id__": 140
  4554. },
  4555. "_opacity": 255,
  4556. "_color": {
  4557. "__type__": "cc.Color",
  4558. "r": 255,
  4559. "g": 255,
  4560. "b": 255,
  4561. "a": 255
  4562. },
  4563. "_contentSize": {
  4564. "__type__": "cc.Size",
  4565. "width": 508,
  4566. "height": 108
  4567. },
  4568. "_anchorPoint": {
  4569. "__type__": "cc.Vec2",
  4570. "x": 0.5,
  4571. "y": 0.5
  4572. },
  4573. "_trs": {
  4574. "__type__": "TypedArray",
  4575. "ctor": "Float64Array",
  4576. "array": [
  4577. 0,
  4578. 498,
  4579. 0,
  4580. 0,
  4581. 0,
  4582. 0,
  4583. 1,
  4584. 1,
  4585. 1,
  4586. 1
  4587. ]
  4588. },
  4589. "_eulerAngles": {
  4590. "__type__": "cc.Vec3",
  4591. "x": 0,
  4592. "y": 0,
  4593. "z": 0
  4594. },
  4595. "_skewX": 0,
  4596. "_skewY": 0,
  4597. "_is3DNode": false,
  4598. "_groupIndex": 0,
  4599. "groupIndex": 0,
  4600. "_id": ""
  4601. },
  4602. {
  4603. "__type__": "cc.Node",
  4604. "_name": "ItemBG",
  4605. "_objFlags": 0,
  4606. "_parent": {
  4607. "__id__": 125
  4608. },
  4609. "_children": [],
  4610. "_active": true,
  4611. "_components": [
  4612. {
  4613. "__id__": 127
  4614. }
  4615. ],
  4616. "_prefab": {
  4617. "__id__": 128
  4618. },
  4619. "_opacity": 255,
  4620. "_color": {
  4621. "__type__": "cc.Color",
  4622. "r": 255,
  4623. "g": 255,
  4624. "b": 255,
  4625. "a": 255
  4626. },
  4627. "_contentSize": {
  4628. "__type__": "cc.Size",
  4629. "width": 508,
  4630. "height": 108
  4631. },
  4632. "_anchorPoint": {
  4633. "__type__": "cc.Vec2",
  4634. "x": 0.5,
  4635. "y": 0.5
  4636. },
  4637. "_trs": {
  4638. "__type__": "TypedArray",
  4639. "ctor": "Float64Array",
  4640. "array": [
  4641. 0,
  4642. 0,
  4643. 0,
  4644. 0,
  4645. 0,
  4646. 0,
  4647. 1,
  4648. 1,
  4649. 1,
  4650. 1
  4651. ]
  4652. },
  4653. "_eulerAngles": {
  4654. "__type__": "cc.Vec3",
  4655. "x": 0,
  4656. "y": 0,
  4657. "z": 0
  4658. },
  4659. "_skewX": 0,
  4660. "_skewY": 0,
  4661. "_is3DNode": false,
  4662. "_groupIndex": 0,
  4663. "groupIndex": 0,
  4664. "_id": ""
  4665. },
  4666. {
  4667. "__type__": "cc.Sprite",
  4668. "_name": "",
  4669. "_objFlags": 0,
  4670. "node": {
  4671. "__id__": 126
  4672. },
  4673. "_enabled": true,
  4674. "_materials": [
  4675. {
  4676. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4677. }
  4678. ],
  4679. "_srcBlendFactor": 770,
  4680. "_dstBlendFactor": 771,
  4681. "_spriteFrame": {
  4682. "__uuid__": "ed881367-5fbb-4f49-af13-9c2ae787461d"
  4683. },
  4684. "_type": 0,
  4685. "_sizeMode": 1,
  4686. "_fillType": 0,
  4687. "_fillCenter": {
  4688. "__type__": "cc.Vec2",
  4689. "x": 0,
  4690. "y": 0
  4691. },
  4692. "_fillStart": 0,
  4693. "_fillRange": 0,
  4694. "_isTrimmedMode": true,
  4695. "_atlas": null,
  4696. "_id": ""
  4697. },
  4698. {
  4699. "__type__": "cc.PrefabInfo",
  4700. "root": {
  4701. "__id__": 1
  4702. },
  4703. "asset": {
  4704. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  4705. },
  4706. "fileId": "27YoVJLTxIHqkXzhmk0i6w",
  4707. "sync": false
  4708. },
  4709. {
  4710. "__type__": "cc.Node",
  4711. "_name": "Logo",
  4712. "_objFlags": 0,
  4713. "_parent": {
  4714. "__id__": 125
  4715. },
  4716. "_children": [],
  4717. "_active": true,
  4718. "_components": [
  4719. {
  4720. "__id__": 130
  4721. }
  4722. ],
  4723. "_prefab": {
  4724. "__id__": 131
  4725. },
  4726. "_opacity": 255,
  4727. "_color": {
  4728. "__type__": "cc.Color",
  4729. "r": 255,
  4730. "g": 255,
  4731. "b": 255,
  4732. "a": 255
  4733. },
  4734. "_contentSize": {
  4735. "__type__": "cc.Size",
  4736. "width": 78,
  4737. "height": 78
  4738. },
  4739. "_anchorPoint": {
  4740. "__type__": "cc.Vec2",
  4741. "x": 0.5,
  4742. "y": 0.5
  4743. },
  4744. "_trs": {
  4745. "__type__": "TypedArray",
  4746. "ctor": "Float64Array",
  4747. "array": [
  4748. -194.877,
  4749. 0,
  4750. 0,
  4751. 0,
  4752. 0,
  4753. 0,
  4754. 1,
  4755. 1,
  4756. 1,
  4757. 1
  4758. ]
  4759. },
  4760. "_eulerAngles": {
  4761. "__type__": "cc.Vec3",
  4762. "x": 0,
  4763. "y": 0,
  4764. "z": 0
  4765. },
  4766. "_skewX": 0,
  4767. "_skewY": 0,
  4768. "_is3DNode": false,
  4769. "_groupIndex": 0,
  4770. "groupIndex": 0,
  4771. "_id": ""
  4772. },
  4773. {
  4774. "__type__": "cc.Sprite",
  4775. "_name": "",
  4776. "_objFlags": 0,
  4777. "node": {
  4778. "__id__": 129
  4779. },
  4780. "_enabled": true,
  4781. "_materials": [
  4782. {
  4783. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4784. }
  4785. ],
  4786. "_srcBlendFactor": 770,
  4787. "_dstBlendFactor": 771,
  4788. "_spriteFrame": {
  4789. "__uuid__": "45602453-5884-4197-94c9-c98a6d81e501"
  4790. },
  4791. "_type": 0,
  4792. "_sizeMode": 1,
  4793. "_fillType": 0,
  4794. "_fillCenter": {
  4795. "__type__": "cc.Vec2",
  4796. "x": 0,
  4797. "y": 0
  4798. },
  4799. "_fillStart": 0,
  4800. "_fillRange": 0,
  4801. "_isTrimmedMode": true,
  4802. "_atlas": null,
  4803. "_id": ""
  4804. },
  4805. {
  4806. "__type__": "cc.PrefabInfo",
  4807. "root": {
  4808. "__id__": 1
  4809. },
  4810. "asset": {
  4811. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  4812. },
  4813. "fileId": "1f9JUkSJ5JrpILzUBZigta",
  4814. "sync": false
  4815. },
  4816. {
  4817. "__type__": "cc.Node",
  4818. "_name": "TitleLabel",
  4819. "_objFlags": 0,
  4820. "_parent": {
  4821. "__id__": 125
  4822. },
  4823. "_children": [],
  4824. "_active": true,
  4825. "_components": [
  4826. {
  4827. "__id__": 133
  4828. },
  4829. {
  4830. "__id__": 134
  4831. }
  4832. ],
  4833. "_prefab": {
  4834. "__id__": 135
  4835. },
  4836. "_opacity": 255,
  4837. "_color": {
  4838. "__type__": "cc.Color",
  4839. "r": 152,
  4840. "g": 102,
  4841. "b": 55,
  4842. "a": 255
  4843. },
  4844. "_contentSize": {
  4845. "__type__": "cc.Size",
  4846. "width": 364.56,
  4847. "height": 33.5
  4848. },
  4849. "_anchorPoint": {
  4850. "__type__": "cc.Vec2",
  4851. "x": 0,
  4852. "y": 0.5
  4853. },
  4854. "_trs": {
  4855. "__type__": "TypedArray",
  4856. "ctor": "Float64Array",
  4857. "array": [
  4858. -130.895,
  4859. 22.867,
  4860. 0,
  4861. 0,
  4862. 0,
  4863. 0,
  4864. 1,
  4865. 1,
  4866. 1,
  4867. 1
  4868. ]
  4869. },
  4870. "_eulerAngles": {
  4871. "__type__": "cc.Vec3",
  4872. "x": 0,
  4873. "y": 0,
  4874. "z": 0
  4875. },
  4876. "_skewX": 0,
  4877. "_skewY": 0,
  4878. "_is3DNode": false,
  4879. "_groupIndex": 0,
  4880. "groupIndex": 0,
  4881. "_id": ""
  4882. },
  4883. {
  4884. "__type__": "cc.Label",
  4885. "_name": "",
  4886. "_objFlags": 0,
  4887. "node": {
  4888. "__id__": 132
  4889. },
  4890. "_enabled": true,
  4891. "_materials": [
  4892. {
  4893. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4894. }
  4895. ],
  4896. "_srcBlendFactor": 770,
  4897. "_dstBlendFactor": 771,
  4898. "_string": "3D视界面安卓2.0.8版本已经发行",
  4899. "_N$string": "3D视界面安卓2.0.8版本已经发行",
  4900. "_fontSize": 25,
  4901. "_lineHeight": 25,
  4902. "_enableWrapText": true,
  4903. "_N$file": null,
  4904. "_isSystemFontUsed": true,
  4905. "_spacingX": 0,
  4906. "_batchAsBitmap": false,
  4907. "_styleFlags": 0,
  4908. "_underlineHeight": 0,
  4909. "_N$horizontalAlign": 0,
  4910. "_N$verticalAlign": 1,
  4911. "_N$fontFamily": "Arial",
  4912. "_N$overflow": 0,
  4913. "_N$cacheMode": 0,
  4914. "_id": ""
  4915. },
  4916. {
  4917. "__type__": "cc.LabelOutline",
  4918. "_name": "",
  4919. "_objFlags": 0,
  4920. "node": {
  4921. "__id__": 132
  4922. },
  4923. "_enabled": true,
  4924. "_color": {
  4925. "__type__": "cc.Color",
  4926. "r": 152,
  4927. "g": 102,
  4928. "b": 55,
  4929. "a": 255
  4930. },
  4931. "_width": 1,
  4932. "_id": ""
  4933. },
  4934. {
  4935. "__type__": "cc.PrefabInfo",
  4936. "root": {
  4937. "__id__": 1
  4938. },
  4939. "asset": {
  4940. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  4941. },
  4942. "fileId": "2dv5uLXFVN3Y1wE2nO23uL",
  4943. "sync": false
  4944. },
  4945. {
  4946. "__type__": "cc.Node",
  4947. "_name": "TimeLabel",
  4948. "_objFlags": 0,
  4949. "_parent": {
  4950. "__id__": 125
  4951. },
  4952. "_children": [],
  4953. "_active": true,
  4954. "_components": [
  4955. {
  4956. "__id__": 137
  4957. },
  4958. {
  4959. "__id__": 138
  4960. }
  4961. ],
  4962. "_prefab": {
  4963. "__id__": 139
  4964. },
  4965. "_opacity": 255,
  4966. "_color": {
  4967. "__type__": "cc.Color",
  4968. "r": 181,
  4969. "g": 153,
  4970. "b": 114,
  4971. "a": 255
  4972. },
  4973. "_contentSize": {
  4974. "__type__": "cc.Size",
  4975. "width": 239.23,
  4976. "height": 33.5
  4977. },
  4978. "_anchorPoint": {
  4979. "__type__": "cc.Vec2",
  4980. "x": 0,
  4981. "y": 0.5
  4982. },
  4983. "_trs": {
  4984. "__type__": "TypedArray",
  4985. "ctor": "Float64Array",
  4986. "array": [
  4987. -130.895,
  4988. -19.926,
  4989. 0,
  4990. 0,
  4991. 0,
  4992. 0,
  4993. 1,
  4994. 1,
  4995. 1,
  4996. 1
  4997. ]
  4998. },
  4999. "_eulerAngles": {
  5000. "__type__": "cc.Vec3",
  5001. "x": 0,
  5002. "y": 0,
  5003. "z": 0
  5004. },
  5005. "_skewX": 0,
  5006. "_skewY": 0,
  5007. "_is3DNode": false,
  5008. "_groupIndex": 0,
  5009. "groupIndex": 0,
  5010. "_id": ""
  5011. },
  5012. {
  5013. "__type__": "cc.Label",
  5014. "_name": "",
  5015. "_objFlags": 0,
  5016. "node": {
  5017. "__id__": 136
  5018. },
  5019. "_enabled": true,
  5020. "_materials": [
  5021. {
  5022. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5023. }
  5024. ],
  5025. "_srcBlendFactor": 770,
  5026. "_dstBlendFactor": 771,
  5027. "_string": "2020-11-26 19:43:00",
  5028. "_N$string": "2020-11-26 19:43:00",
  5029. "_fontSize": 25,
  5030. "_lineHeight": 25,
  5031. "_enableWrapText": true,
  5032. "_N$file": null,
  5033. "_isSystemFontUsed": true,
  5034. "_spacingX": 0,
  5035. "_batchAsBitmap": false,
  5036. "_styleFlags": 0,
  5037. "_underlineHeight": 0,
  5038. "_N$horizontalAlign": 0,
  5039. "_N$verticalAlign": 1,
  5040. "_N$fontFamily": "Arial",
  5041. "_N$overflow": 0,
  5042. "_N$cacheMode": 0,
  5043. "_id": ""
  5044. },
  5045. {
  5046. "__type__": "cc.LabelOutline",
  5047. "_name": "",
  5048. "_objFlags": 0,
  5049. "node": {
  5050. "__id__": 136
  5051. },
  5052. "_enabled": true,
  5053. "_color": {
  5054. "__type__": "cc.Color",
  5055. "r": 181,
  5056. "g": 153,
  5057. "b": 114,
  5058. "a": 255
  5059. },
  5060. "_width": 1,
  5061. "_id": ""
  5062. },
  5063. {
  5064. "__type__": "cc.PrefabInfo",
  5065. "root": {
  5066. "__id__": 1
  5067. },
  5068. "asset": {
  5069. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  5070. },
  5071. "fileId": "a6kWe2DTdJs6bZNh4sDPtY",
  5072. "sync": false
  5073. },
  5074. {
  5075. "__type__": "cc.PrefabInfo",
  5076. "root": {
  5077. "__id__": 1
  5078. },
  5079. "asset": {
  5080. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  5081. },
  5082. "fileId": "b8cc3NEEJH6bAnjP475OMb",
  5083. "sync": false
  5084. },
  5085. {
  5086. "__type__": "cc.Node",
  5087. "_name": "Item",
  5088. "_objFlags": 0,
  5089. "_parent": {
  5090. "__id__": 28
  5091. },
  5092. "_children": [
  5093. {
  5094. "__id__": 142
  5095. },
  5096. {
  5097. "__id__": 145
  5098. },
  5099. {
  5100. "__id__": 148
  5101. },
  5102. {
  5103. "__id__": 152
  5104. }
  5105. ],
  5106. "_active": true,
  5107. "_components": [],
  5108. "_prefab": {
  5109. "__id__": 156
  5110. },
  5111. "_opacity": 255,
  5112. "_color": {
  5113. "__type__": "cc.Color",
  5114. "r": 255,
  5115. "g": 255,
  5116. "b": 255,
  5117. "a": 255
  5118. },
  5119. "_contentSize": {
  5120. "__type__": "cc.Size",
  5121. "width": 508,
  5122. "height": 108
  5123. },
  5124. "_anchorPoint": {
  5125. "__type__": "cc.Vec2",
  5126. "x": 0.5,
  5127. "y": 0.5
  5128. },
  5129. "_trs": {
  5130. "__type__": "TypedArray",
  5131. "ctor": "Float64Array",
  5132. "array": [
  5133. 0,
  5134. 340,
  5135. 0,
  5136. 0,
  5137. 0,
  5138. 0,
  5139. 1,
  5140. 1,
  5141. 1,
  5142. 1
  5143. ]
  5144. },
  5145. "_eulerAngles": {
  5146. "__type__": "cc.Vec3",
  5147. "x": 0,
  5148. "y": 0,
  5149. "z": 0
  5150. },
  5151. "_skewX": 0,
  5152. "_skewY": 0,
  5153. "_is3DNode": false,
  5154. "_groupIndex": 0,
  5155. "groupIndex": 0,
  5156. "_id": ""
  5157. },
  5158. {
  5159. "__type__": "cc.Node",
  5160. "_name": "ItemBG",
  5161. "_objFlags": 0,
  5162. "_parent": {
  5163. "__id__": 141
  5164. },
  5165. "_children": [],
  5166. "_active": true,
  5167. "_components": [
  5168. {
  5169. "__id__": 143
  5170. }
  5171. ],
  5172. "_prefab": {
  5173. "__id__": 144
  5174. },
  5175. "_opacity": 255,
  5176. "_color": {
  5177. "__type__": "cc.Color",
  5178. "r": 255,
  5179. "g": 255,
  5180. "b": 255,
  5181. "a": 255
  5182. },
  5183. "_contentSize": {
  5184. "__type__": "cc.Size",
  5185. "width": 508,
  5186. "height": 108
  5187. },
  5188. "_anchorPoint": {
  5189. "__type__": "cc.Vec2",
  5190. "x": 0.5,
  5191. "y": 0.5
  5192. },
  5193. "_trs": {
  5194. "__type__": "TypedArray",
  5195. "ctor": "Float64Array",
  5196. "array": [
  5197. 0,
  5198. 0,
  5199. 0,
  5200. 0,
  5201. 0,
  5202. 0,
  5203. 1,
  5204. 1,
  5205. 1,
  5206. 1
  5207. ]
  5208. },
  5209. "_eulerAngles": {
  5210. "__type__": "cc.Vec3",
  5211. "x": 0,
  5212. "y": 0,
  5213. "z": 0
  5214. },
  5215. "_skewX": 0,
  5216. "_skewY": 0,
  5217. "_is3DNode": false,
  5218. "_groupIndex": 0,
  5219. "groupIndex": 0,
  5220. "_id": ""
  5221. },
  5222. {
  5223. "__type__": "cc.Sprite",
  5224. "_name": "",
  5225. "_objFlags": 0,
  5226. "node": {
  5227. "__id__": 142
  5228. },
  5229. "_enabled": true,
  5230. "_materials": [
  5231. {
  5232. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5233. }
  5234. ],
  5235. "_srcBlendFactor": 770,
  5236. "_dstBlendFactor": 771,
  5237. "_spriteFrame": {
  5238. "__uuid__": "ed881367-5fbb-4f49-af13-9c2ae787461d"
  5239. },
  5240. "_type": 0,
  5241. "_sizeMode": 1,
  5242. "_fillType": 0,
  5243. "_fillCenter": {
  5244. "__type__": "cc.Vec2",
  5245. "x": 0,
  5246. "y": 0
  5247. },
  5248. "_fillStart": 0,
  5249. "_fillRange": 0,
  5250. "_isTrimmedMode": true,
  5251. "_atlas": null,
  5252. "_id": ""
  5253. },
  5254. {
  5255. "__type__": "cc.PrefabInfo",
  5256. "root": {
  5257. "__id__": 1
  5258. },
  5259. "asset": {
  5260. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  5261. },
  5262. "fileId": "06IZ0+4z1PxosIYBe8cP2r",
  5263. "sync": false
  5264. },
  5265. {
  5266. "__type__": "cc.Node",
  5267. "_name": "Logo",
  5268. "_objFlags": 0,
  5269. "_parent": {
  5270. "__id__": 141
  5271. },
  5272. "_children": [],
  5273. "_active": true,
  5274. "_components": [
  5275. {
  5276. "__id__": 146
  5277. }
  5278. ],
  5279. "_prefab": {
  5280. "__id__": 147
  5281. },
  5282. "_opacity": 255,
  5283. "_color": {
  5284. "__type__": "cc.Color",
  5285. "r": 255,
  5286. "g": 255,
  5287. "b": 255,
  5288. "a": 255
  5289. },
  5290. "_contentSize": {
  5291. "__type__": "cc.Size",
  5292. "width": 78,
  5293. "height": 78
  5294. },
  5295. "_anchorPoint": {
  5296. "__type__": "cc.Vec2",
  5297. "x": 0.5,
  5298. "y": 0.5
  5299. },
  5300. "_trs": {
  5301. "__type__": "TypedArray",
  5302. "ctor": "Float64Array",
  5303. "array": [
  5304. -194.877,
  5305. 0,
  5306. 0,
  5307. 0,
  5308. 0,
  5309. 0,
  5310. 1,
  5311. 1,
  5312. 1,
  5313. 1
  5314. ]
  5315. },
  5316. "_eulerAngles": {
  5317. "__type__": "cc.Vec3",
  5318. "x": 0,
  5319. "y": 0,
  5320. "z": 0
  5321. },
  5322. "_skewX": 0,
  5323. "_skewY": 0,
  5324. "_is3DNode": false,
  5325. "_groupIndex": 0,
  5326. "groupIndex": 0,
  5327. "_id": ""
  5328. },
  5329. {
  5330. "__type__": "cc.Sprite",
  5331. "_name": "",
  5332. "_objFlags": 0,
  5333. "node": {
  5334. "__id__": 145
  5335. },
  5336. "_enabled": true,
  5337. "_materials": [
  5338. {
  5339. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5340. }
  5341. ],
  5342. "_srcBlendFactor": 770,
  5343. "_dstBlendFactor": 771,
  5344. "_spriteFrame": {
  5345. "__uuid__": "45602453-5884-4197-94c9-c98a6d81e501"
  5346. },
  5347. "_type": 0,
  5348. "_sizeMode": 1,
  5349. "_fillType": 0,
  5350. "_fillCenter": {
  5351. "__type__": "cc.Vec2",
  5352. "x": 0,
  5353. "y": 0
  5354. },
  5355. "_fillStart": 0,
  5356. "_fillRange": 0,
  5357. "_isTrimmedMode": true,
  5358. "_atlas": null,
  5359. "_id": ""
  5360. },
  5361. {
  5362. "__type__": "cc.PrefabInfo",
  5363. "root": {
  5364. "__id__": 1
  5365. },
  5366. "asset": {
  5367. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  5368. },
  5369. "fileId": "07BVJhTR9OcohrX2NbnLpu",
  5370. "sync": false
  5371. },
  5372. {
  5373. "__type__": "cc.Node",
  5374. "_name": "TitleLabel",
  5375. "_objFlags": 0,
  5376. "_parent": {
  5377. "__id__": 141
  5378. },
  5379. "_children": [],
  5380. "_active": true,
  5381. "_components": [
  5382. {
  5383. "__id__": 149
  5384. },
  5385. {
  5386. "__id__": 150
  5387. }
  5388. ],
  5389. "_prefab": {
  5390. "__id__": 151
  5391. },
  5392. "_opacity": 255,
  5393. "_color": {
  5394. "__type__": "cc.Color",
  5395. "r": 152,
  5396. "g": 102,
  5397. "b": 55,
  5398. "a": 255
  5399. },
  5400. "_contentSize": {
  5401. "__type__": "cc.Size",
  5402. "width": 364.56,
  5403. "height": 33.5
  5404. },
  5405. "_anchorPoint": {
  5406. "__type__": "cc.Vec2",
  5407. "x": 0,
  5408. "y": 0.5
  5409. },
  5410. "_trs": {
  5411. "__type__": "TypedArray",
  5412. "ctor": "Float64Array",
  5413. "array": [
  5414. -130.895,
  5415. 22.867,
  5416. 0,
  5417. 0,
  5418. 0,
  5419. 0,
  5420. 1,
  5421. 1,
  5422. 1,
  5423. 1
  5424. ]
  5425. },
  5426. "_eulerAngles": {
  5427. "__type__": "cc.Vec3",
  5428. "x": 0,
  5429. "y": 0,
  5430. "z": 0
  5431. },
  5432. "_skewX": 0,
  5433. "_skewY": 0,
  5434. "_is3DNode": false,
  5435. "_groupIndex": 0,
  5436. "groupIndex": 0,
  5437. "_id": ""
  5438. },
  5439. {
  5440. "__type__": "cc.Label",
  5441. "_name": "",
  5442. "_objFlags": 0,
  5443. "node": {
  5444. "__id__": 148
  5445. },
  5446. "_enabled": true,
  5447. "_materials": [
  5448. {
  5449. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5450. }
  5451. ],
  5452. "_srcBlendFactor": 770,
  5453. "_dstBlendFactor": 771,
  5454. "_string": "3D视界面安卓2.0.8版本已经发行",
  5455. "_N$string": "3D视界面安卓2.0.8版本已经发行",
  5456. "_fontSize": 25,
  5457. "_lineHeight": 25,
  5458. "_enableWrapText": true,
  5459. "_N$file": null,
  5460. "_isSystemFontUsed": true,
  5461. "_spacingX": 0,
  5462. "_batchAsBitmap": false,
  5463. "_styleFlags": 0,
  5464. "_underlineHeight": 0,
  5465. "_N$horizontalAlign": 0,
  5466. "_N$verticalAlign": 1,
  5467. "_N$fontFamily": "Arial",
  5468. "_N$overflow": 0,
  5469. "_N$cacheMode": 0,
  5470. "_id": ""
  5471. },
  5472. {
  5473. "__type__": "cc.LabelOutline",
  5474. "_name": "",
  5475. "_objFlags": 0,
  5476. "node": {
  5477. "__id__": 148
  5478. },
  5479. "_enabled": true,
  5480. "_color": {
  5481. "__type__": "cc.Color",
  5482. "r": 152,
  5483. "g": 102,
  5484. "b": 55,
  5485. "a": 255
  5486. },
  5487. "_width": 1,
  5488. "_id": ""
  5489. },
  5490. {
  5491. "__type__": "cc.PrefabInfo",
  5492. "root": {
  5493. "__id__": 1
  5494. },
  5495. "asset": {
  5496. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  5497. },
  5498. "fileId": "bfAP5kX71CX4JARqKrEl3m",
  5499. "sync": false
  5500. },
  5501. {
  5502. "__type__": "cc.Node",
  5503. "_name": "TimeLabel",
  5504. "_objFlags": 0,
  5505. "_parent": {
  5506. "__id__": 141
  5507. },
  5508. "_children": [],
  5509. "_active": true,
  5510. "_components": [
  5511. {
  5512. "__id__": 153
  5513. },
  5514. {
  5515. "__id__": 154
  5516. }
  5517. ],
  5518. "_prefab": {
  5519. "__id__": 155
  5520. },
  5521. "_opacity": 255,
  5522. "_color": {
  5523. "__type__": "cc.Color",
  5524. "r": 181,
  5525. "g": 153,
  5526. "b": 114,
  5527. "a": 255
  5528. },
  5529. "_contentSize": {
  5530. "__type__": "cc.Size",
  5531. "width": 239.23,
  5532. "height": 33.5
  5533. },
  5534. "_anchorPoint": {
  5535. "__type__": "cc.Vec2",
  5536. "x": 0,
  5537. "y": 0.5
  5538. },
  5539. "_trs": {
  5540. "__type__": "TypedArray",
  5541. "ctor": "Float64Array",
  5542. "array": [
  5543. -130.895,
  5544. -19.926,
  5545. 0,
  5546. 0,
  5547. 0,
  5548. 0,
  5549. 1,
  5550. 1,
  5551. 1,
  5552. 1
  5553. ]
  5554. },
  5555. "_eulerAngles": {
  5556. "__type__": "cc.Vec3",
  5557. "x": 0,
  5558. "y": 0,
  5559. "z": 0
  5560. },
  5561. "_skewX": 0,
  5562. "_skewY": 0,
  5563. "_is3DNode": false,
  5564. "_groupIndex": 0,
  5565. "groupIndex": 0,
  5566. "_id": ""
  5567. },
  5568. {
  5569. "__type__": "cc.Label",
  5570. "_name": "",
  5571. "_objFlags": 0,
  5572. "node": {
  5573. "__id__": 152
  5574. },
  5575. "_enabled": true,
  5576. "_materials": [
  5577. {
  5578. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5579. }
  5580. ],
  5581. "_srcBlendFactor": 770,
  5582. "_dstBlendFactor": 771,
  5583. "_string": "2020-11-26 19:43:00",
  5584. "_N$string": "2020-11-26 19:43:00",
  5585. "_fontSize": 25,
  5586. "_lineHeight": 25,
  5587. "_enableWrapText": true,
  5588. "_N$file": null,
  5589. "_isSystemFontUsed": true,
  5590. "_spacingX": 0,
  5591. "_batchAsBitmap": false,
  5592. "_styleFlags": 0,
  5593. "_underlineHeight": 0,
  5594. "_N$horizontalAlign": 0,
  5595. "_N$verticalAlign": 1,
  5596. "_N$fontFamily": "Arial",
  5597. "_N$overflow": 0,
  5598. "_N$cacheMode": 0,
  5599. "_id": ""
  5600. },
  5601. {
  5602. "__type__": "cc.LabelOutline",
  5603. "_name": "",
  5604. "_objFlags": 0,
  5605. "node": {
  5606. "__id__": 152
  5607. },
  5608. "_enabled": true,
  5609. "_color": {
  5610. "__type__": "cc.Color",
  5611. "r": 181,
  5612. "g": 153,
  5613. "b": 114,
  5614. "a": 255
  5615. },
  5616. "_width": 1,
  5617. "_id": ""
  5618. },
  5619. {
  5620. "__type__": "cc.PrefabInfo",
  5621. "root": {
  5622. "__id__": 1
  5623. },
  5624. "asset": {
  5625. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  5626. },
  5627. "fileId": "16q6z2nzFOyabxQTjLPdjn",
  5628. "sync": false
  5629. },
  5630. {
  5631. "__type__": "cc.PrefabInfo",
  5632. "root": {
  5633. "__id__": 1
  5634. },
  5635. "asset": {
  5636. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  5637. },
  5638. "fileId": "a1CGrjkRtKcZ+nvYeVuWiQ",
  5639. "sync": false
  5640. },
  5641. {
  5642. "__type__": "cc.Node",
  5643. "_name": "Item",
  5644. "_objFlags": 0,
  5645. "_parent": {
  5646. "__id__": 28
  5647. },
  5648. "_children": [
  5649. {
  5650. "__id__": 158
  5651. },
  5652. {
  5653. "__id__": 161
  5654. },
  5655. {
  5656. "__id__": 164
  5657. },
  5658. {
  5659. "__id__": 168
  5660. }
  5661. ],
  5662. "_active": true,
  5663. "_components": [],
  5664. "_prefab": {
  5665. "__id__": 172
  5666. },
  5667. "_opacity": 255,
  5668. "_color": {
  5669. "__type__": "cc.Color",
  5670. "r": 255,
  5671. "g": 255,
  5672. "b": 255,
  5673. "a": 255
  5674. },
  5675. "_contentSize": {
  5676. "__type__": "cc.Size",
  5677. "width": 508,
  5678. "height": 108
  5679. },
  5680. "_anchorPoint": {
  5681. "__type__": "cc.Vec2",
  5682. "x": 0.5,
  5683. "y": 0.5
  5684. },
  5685. "_trs": {
  5686. "__type__": "TypedArray",
  5687. "ctor": "Float64Array",
  5688. "array": [
  5689. 0,
  5690. 182,
  5691. 0,
  5692. 0,
  5693. 0,
  5694. 0,
  5695. 1,
  5696. 1,
  5697. 1,
  5698. 1
  5699. ]
  5700. },
  5701. "_eulerAngles": {
  5702. "__type__": "cc.Vec3",
  5703. "x": 0,
  5704. "y": 0,
  5705. "z": 0
  5706. },
  5707. "_skewX": 0,
  5708. "_skewY": 0,
  5709. "_is3DNode": false,
  5710. "_groupIndex": 0,
  5711. "groupIndex": 0,
  5712. "_id": ""
  5713. },
  5714. {
  5715. "__type__": "cc.Node",
  5716. "_name": "ItemBG",
  5717. "_objFlags": 0,
  5718. "_parent": {
  5719. "__id__": 157
  5720. },
  5721. "_children": [],
  5722. "_active": true,
  5723. "_components": [
  5724. {
  5725. "__id__": 159
  5726. }
  5727. ],
  5728. "_prefab": {
  5729. "__id__": 160
  5730. },
  5731. "_opacity": 255,
  5732. "_color": {
  5733. "__type__": "cc.Color",
  5734. "r": 255,
  5735. "g": 255,
  5736. "b": 255,
  5737. "a": 255
  5738. },
  5739. "_contentSize": {
  5740. "__type__": "cc.Size",
  5741. "width": 508,
  5742. "height": 108
  5743. },
  5744. "_anchorPoint": {
  5745. "__type__": "cc.Vec2",
  5746. "x": 0.5,
  5747. "y": 0.5
  5748. },
  5749. "_trs": {
  5750. "__type__": "TypedArray",
  5751. "ctor": "Float64Array",
  5752. "array": [
  5753. 0,
  5754. 0,
  5755. 0,
  5756. 0,
  5757. 0,
  5758. 0,
  5759. 1,
  5760. 1,
  5761. 1,
  5762. 1
  5763. ]
  5764. },
  5765. "_eulerAngles": {
  5766. "__type__": "cc.Vec3",
  5767. "x": 0,
  5768. "y": 0,
  5769. "z": 0
  5770. },
  5771. "_skewX": 0,
  5772. "_skewY": 0,
  5773. "_is3DNode": false,
  5774. "_groupIndex": 0,
  5775. "groupIndex": 0,
  5776. "_id": ""
  5777. },
  5778. {
  5779. "__type__": "cc.Sprite",
  5780. "_name": "",
  5781. "_objFlags": 0,
  5782. "node": {
  5783. "__id__": 158
  5784. },
  5785. "_enabled": true,
  5786. "_materials": [
  5787. {
  5788. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5789. }
  5790. ],
  5791. "_srcBlendFactor": 770,
  5792. "_dstBlendFactor": 771,
  5793. "_spriteFrame": {
  5794. "__uuid__": "ed881367-5fbb-4f49-af13-9c2ae787461d"
  5795. },
  5796. "_type": 0,
  5797. "_sizeMode": 1,
  5798. "_fillType": 0,
  5799. "_fillCenter": {
  5800. "__type__": "cc.Vec2",
  5801. "x": 0,
  5802. "y": 0
  5803. },
  5804. "_fillStart": 0,
  5805. "_fillRange": 0,
  5806. "_isTrimmedMode": true,
  5807. "_atlas": null,
  5808. "_id": ""
  5809. },
  5810. {
  5811. "__type__": "cc.PrefabInfo",
  5812. "root": {
  5813. "__id__": 1
  5814. },
  5815. "asset": {
  5816. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  5817. },
  5818. "fileId": "b5zyYsa0xEHKggm3o5hrPV",
  5819. "sync": false
  5820. },
  5821. {
  5822. "__type__": "cc.Node",
  5823. "_name": "Logo",
  5824. "_objFlags": 0,
  5825. "_parent": {
  5826. "__id__": 157
  5827. },
  5828. "_children": [],
  5829. "_active": true,
  5830. "_components": [
  5831. {
  5832. "__id__": 162
  5833. }
  5834. ],
  5835. "_prefab": {
  5836. "__id__": 163
  5837. },
  5838. "_opacity": 255,
  5839. "_color": {
  5840. "__type__": "cc.Color",
  5841. "r": 255,
  5842. "g": 255,
  5843. "b": 255,
  5844. "a": 255
  5845. },
  5846. "_contentSize": {
  5847. "__type__": "cc.Size",
  5848. "width": 78,
  5849. "height": 78
  5850. },
  5851. "_anchorPoint": {
  5852. "__type__": "cc.Vec2",
  5853. "x": 0.5,
  5854. "y": 0.5
  5855. },
  5856. "_trs": {
  5857. "__type__": "TypedArray",
  5858. "ctor": "Float64Array",
  5859. "array": [
  5860. -194.877,
  5861. 0,
  5862. 0,
  5863. 0,
  5864. 0,
  5865. 0,
  5866. 1,
  5867. 1,
  5868. 1,
  5869. 1
  5870. ]
  5871. },
  5872. "_eulerAngles": {
  5873. "__type__": "cc.Vec3",
  5874. "x": 0,
  5875. "y": 0,
  5876. "z": 0
  5877. },
  5878. "_skewX": 0,
  5879. "_skewY": 0,
  5880. "_is3DNode": false,
  5881. "_groupIndex": 0,
  5882. "groupIndex": 0,
  5883. "_id": ""
  5884. },
  5885. {
  5886. "__type__": "cc.Sprite",
  5887. "_name": "",
  5888. "_objFlags": 0,
  5889. "node": {
  5890. "__id__": 161
  5891. },
  5892. "_enabled": true,
  5893. "_materials": [
  5894. {
  5895. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5896. }
  5897. ],
  5898. "_srcBlendFactor": 770,
  5899. "_dstBlendFactor": 771,
  5900. "_spriteFrame": {
  5901. "__uuid__": "45602453-5884-4197-94c9-c98a6d81e501"
  5902. },
  5903. "_type": 0,
  5904. "_sizeMode": 1,
  5905. "_fillType": 0,
  5906. "_fillCenter": {
  5907. "__type__": "cc.Vec2",
  5908. "x": 0,
  5909. "y": 0
  5910. },
  5911. "_fillStart": 0,
  5912. "_fillRange": 0,
  5913. "_isTrimmedMode": true,
  5914. "_atlas": null,
  5915. "_id": ""
  5916. },
  5917. {
  5918. "__type__": "cc.PrefabInfo",
  5919. "root": {
  5920. "__id__": 1
  5921. },
  5922. "asset": {
  5923. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  5924. },
  5925. "fileId": "08b+ITsCdLML+YrmWnk1YI",
  5926. "sync": false
  5927. },
  5928. {
  5929. "__type__": "cc.Node",
  5930. "_name": "TitleLabel",
  5931. "_objFlags": 0,
  5932. "_parent": {
  5933. "__id__": 157
  5934. },
  5935. "_children": [],
  5936. "_active": true,
  5937. "_components": [
  5938. {
  5939. "__id__": 165
  5940. },
  5941. {
  5942. "__id__": 166
  5943. }
  5944. ],
  5945. "_prefab": {
  5946. "__id__": 167
  5947. },
  5948. "_opacity": 255,
  5949. "_color": {
  5950. "__type__": "cc.Color",
  5951. "r": 152,
  5952. "g": 102,
  5953. "b": 55,
  5954. "a": 255
  5955. },
  5956. "_contentSize": {
  5957. "__type__": "cc.Size",
  5958. "width": 364.56,
  5959. "height": 33.5
  5960. },
  5961. "_anchorPoint": {
  5962. "__type__": "cc.Vec2",
  5963. "x": 0,
  5964. "y": 0.5
  5965. },
  5966. "_trs": {
  5967. "__type__": "TypedArray",
  5968. "ctor": "Float64Array",
  5969. "array": [
  5970. -130.895,
  5971. 22.867,
  5972. 0,
  5973. 0,
  5974. 0,
  5975. 0,
  5976. 1,
  5977. 1,
  5978. 1,
  5979. 1
  5980. ]
  5981. },
  5982. "_eulerAngles": {
  5983. "__type__": "cc.Vec3",
  5984. "x": 0,
  5985. "y": 0,
  5986. "z": 0
  5987. },
  5988. "_skewX": 0,
  5989. "_skewY": 0,
  5990. "_is3DNode": false,
  5991. "_groupIndex": 0,
  5992. "groupIndex": 0,
  5993. "_id": ""
  5994. },
  5995. {
  5996. "__type__": "cc.Label",
  5997. "_name": "",
  5998. "_objFlags": 0,
  5999. "node": {
  6000. "__id__": 164
  6001. },
  6002. "_enabled": true,
  6003. "_materials": [
  6004. {
  6005. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6006. }
  6007. ],
  6008. "_srcBlendFactor": 770,
  6009. "_dstBlendFactor": 771,
  6010. "_string": "3D视界面安卓2.0.8版本已经发行",
  6011. "_N$string": "3D视界面安卓2.0.8版本已经发行",
  6012. "_fontSize": 25,
  6013. "_lineHeight": 25,
  6014. "_enableWrapText": true,
  6015. "_N$file": null,
  6016. "_isSystemFontUsed": true,
  6017. "_spacingX": 0,
  6018. "_batchAsBitmap": false,
  6019. "_styleFlags": 0,
  6020. "_underlineHeight": 0,
  6021. "_N$horizontalAlign": 0,
  6022. "_N$verticalAlign": 1,
  6023. "_N$fontFamily": "Arial",
  6024. "_N$overflow": 0,
  6025. "_N$cacheMode": 0,
  6026. "_id": ""
  6027. },
  6028. {
  6029. "__type__": "cc.LabelOutline",
  6030. "_name": "",
  6031. "_objFlags": 0,
  6032. "node": {
  6033. "__id__": 164
  6034. },
  6035. "_enabled": true,
  6036. "_color": {
  6037. "__type__": "cc.Color",
  6038. "r": 152,
  6039. "g": 102,
  6040. "b": 55,
  6041. "a": 255
  6042. },
  6043. "_width": 1,
  6044. "_id": ""
  6045. },
  6046. {
  6047. "__type__": "cc.PrefabInfo",
  6048. "root": {
  6049. "__id__": 1
  6050. },
  6051. "asset": {
  6052. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6053. },
  6054. "fileId": "d29YeHF8lGT6MssPV4hKsx",
  6055. "sync": false
  6056. },
  6057. {
  6058. "__type__": "cc.Node",
  6059. "_name": "TimeLabel",
  6060. "_objFlags": 0,
  6061. "_parent": {
  6062. "__id__": 157
  6063. },
  6064. "_children": [],
  6065. "_active": true,
  6066. "_components": [
  6067. {
  6068. "__id__": 169
  6069. },
  6070. {
  6071. "__id__": 170
  6072. }
  6073. ],
  6074. "_prefab": {
  6075. "__id__": 171
  6076. },
  6077. "_opacity": 255,
  6078. "_color": {
  6079. "__type__": "cc.Color",
  6080. "r": 181,
  6081. "g": 153,
  6082. "b": 114,
  6083. "a": 255
  6084. },
  6085. "_contentSize": {
  6086. "__type__": "cc.Size",
  6087. "width": 239.23,
  6088. "height": 33.5
  6089. },
  6090. "_anchorPoint": {
  6091. "__type__": "cc.Vec2",
  6092. "x": 0,
  6093. "y": 0.5
  6094. },
  6095. "_trs": {
  6096. "__type__": "TypedArray",
  6097. "ctor": "Float64Array",
  6098. "array": [
  6099. -130.895,
  6100. -19.926,
  6101. 0,
  6102. 0,
  6103. 0,
  6104. 0,
  6105. 1,
  6106. 1,
  6107. 1,
  6108. 1
  6109. ]
  6110. },
  6111. "_eulerAngles": {
  6112. "__type__": "cc.Vec3",
  6113. "x": 0,
  6114. "y": 0,
  6115. "z": 0
  6116. },
  6117. "_skewX": 0,
  6118. "_skewY": 0,
  6119. "_is3DNode": false,
  6120. "_groupIndex": 0,
  6121. "groupIndex": 0,
  6122. "_id": ""
  6123. },
  6124. {
  6125. "__type__": "cc.Label",
  6126. "_name": "",
  6127. "_objFlags": 0,
  6128. "node": {
  6129. "__id__": 168
  6130. },
  6131. "_enabled": true,
  6132. "_materials": [
  6133. {
  6134. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6135. }
  6136. ],
  6137. "_srcBlendFactor": 770,
  6138. "_dstBlendFactor": 771,
  6139. "_string": "2020-11-26 19:43:00",
  6140. "_N$string": "2020-11-26 19:43:00",
  6141. "_fontSize": 25,
  6142. "_lineHeight": 25,
  6143. "_enableWrapText": true,
  6144. "_N$file": null,
  6145. "_isSystemFontUsed": true,
  6146. "_spacingX": 0,
  6147. "_batchAsBitmap": false,
  6148. "_styleFlags": 0,
  6149. "_underlineHeight": 0,
  6150. "_N$horizontalAlign": 0,
  6151. "_N$verticalAlign": 1,
  6152. "_N$fontFamily": "Arial",
  6153. "_N$overflow": 0,
  6154. "_N$cacheMode": 0,
  6155. "_id": ""
  6156. },
  6157. {
  6158. "__type__": "cc.LabelOutline",
  6159. "_name": "",
  6160. "_objFlags": 0,
  6161. "node": {
  6162. "__id__": 168
  6163. },
  6164. "_enabled": true,
  6165. "_color": {
  6166. "__type__": "cc.Color",
  6167. "r": 181,
  6168. "g": 153,
  6169. "b": 114,
  6170. "a": 255
  6171. },
  6172. "_width": 1,
  6173. "_id": ""
  6174. },
  6175. {
  6176. "__type__": "cc.PrefabInfo",
  6177. "root": {
  6178. "__id__": 1
  6179. },
  6180. "asset": {
  6181. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6182. },
  6183. "fileId": "622Vs33+ND3ILFeRfgNUgJ",
  6184. "sync": false
  6185. },
  6186. {
  6187. "__type__": "cc.PrefabInfo",
  6188. "root": {
  6189. "__id__": 1
  6190. },
  6191. "asset": {
  6192. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6193. },
  6194. "fileId": "553k8CVVtIb4UAk7jFPfB/",
  6195. "sync": false
  6196. },
  6197. {
  6198. "__type__": "cc.Layout",
  6199. "_name": "",
  6200. "_objFlags": 0,
  6201. "node": {
  6202. "__id__": 28
  6203. },
  6204. "_enabled": true,
  6205. "_layoutSize": {
  6206. "__type__": "cc.Size",
  6207. "width": 530,
  6208. "height": 1500
  6209. },
  6210. "_resize": 0,
  6211. "_N$layoutType": 2,
  6212. "_N$cellSize": {
  6213. "__type__": "cc.Size",
  6214. "width": 40,
  6215. "height": 40
  6216. },
  6217. "_N$startAxis": 0,
  6218. "_N$paddingLeft": 0,
  6219. "_N$paddingRight": 0,
  6220. "_N$paddingTop": 0,
  6221. "_N$paddingBottom": 0,
  6222. "_N$spacingX": 0,
  6223. "_N$spacingY": 50,
  6224. "_N$verticalDirection": 1,
  6225. "_N$horizontalDirection": 0,
  6226. "_N$affectedByScale": false,
  6227. "_id": ""
  6228. },
  6229. {
  6230. "__type__": "cc.PrefabInfo",
  6231. "root": {
  6232. "__id__": 1
  6233. },
  6234. "asset": {
  6235. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6236. },
  6237. "fileId": "431FTX2wtBT7K6zLUBkEXs",
  6238. "sync": false
  6239. },
  6240. {
  6241. "__type__": "cc.PrefabInfo",
  6242. "root": {
  6243. "__id__": 1
  6244. },
  6245. "asset": {
  6246. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6247. },
  6248. "fileId": "e6MDANzy5DDJBef2otS6HU",
  6249. "sync": false
  6250. },
  6251. {
  6252. "__type__": "cc.Widget",
  6253. "_name": "",
  6254. "_objFlags": 0,
  6255. "node": {
  6256. "__id__": 18
  6257. },
  6258. "_enabled": true,
  6259. "alignMode": 0,
  6260. "_target": null,
  6261. "_alignFlags": 37,
  6262. "_left": 350.07654921020657,
  6263. "_right": 0,
  6264. "_top": 0,
  6265. "_bottom": 0,
  6266. "_verticalCenter": 0,
  6267. "_horizontalCenter": 0,
  6268. "_isAbsLeft": true,
  6269. "_isAbsRight": true,
  6270. "_isAbsTop": true,
  6271. "_isAbsBottom": true,
  6272. "_isAbsHorizontalCenter": true,
  6273. "_isAbsVerticalCenter": true,
  6274. "_originalWidth": 0,
  6275. "_originalHeight": 237,
  6276. "_id": ""
  6277. },
  6278. {
  6279. "__type__": "cc.Sprite",
  6280. "_name": "",
  6281. "_objFlags": 0,
  6282. "node": {
  6283. "__id__": 18
  6284. },
  6285. "_enabled": true,
  6286. "_materials": [
  6287. {
  6288. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6289. }
  6290. ],
  6291. "_srcBlendFactor": 770,
  6292. "_dstBlendFactor": 771,
  6293. "_spriteFrame": {
  6294. "__uuid__": "5fe5dcaa-b513-4dc5-a166-573627b3a159"
  6295. },
  6296. "_type": 1,
  6297. "_sizeMode": 0,
  6298. "_fillType": 0,
  6299. "_fillCenter": {
  6300. "__type__": "cc.Vec2",
  6301. "x": 0,
  6302. "y": 0
  6303. },
  6304. "_fillStart": 0,
  6305. "_fillRange": 0,
  6306. "_isTrimmedMode": true,
  6307. "_atlas": null,
  6308. "_id": ""
  6309. },
  6310. {
  6311. "__type__": "cc.PrefabInfo",
  6312. "root": {
  6313. "__id__": 1
  6314. },
  6315. "asset": {
  6316. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6317. },
  6318. "fileId": "8ag7V7XRNLN46aX/hoSAbt",
  6319. "sync": false
  6320. },
  6321. {
  6322. "__type__": "cc.Sprite",
  6323. "_name": "",
  6324. "_objFlags": 0,
  6325. "node": {
  6326. "__id__": 17
  6327. },
  6328. "_enabled": false,
  6329. "_materials": [
  6330. {
  6331. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6332. }
  6333. ],
  6334. "_srcBlendFactor": 770,
  6335. "_dstBlendFactor": 771,
  6336. "_spriteFrame": {
  6337. "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69"
  6338. },
  6339. "_type": 1,
  6340. "_sizeMode": 0,
  6341. "_fillType": 0,
  6342. "_fillCenter": {
  6343. "__type__": "cc.Vec2",
  6344. "x": 0,
  6345. "y": 0
  6346. },
  6347. "_fillStart": 0,
  6348. "_fillRange": 0,
  6349. "_isTrimmedMode": true,
  6350. "_atlas": null,
  6351. "_id": ""
  6352. },
  6353. {
  6354. "__type__": "cc.PrefabInfo",
  6355. "root": {
  6356. "__id__": 1
  6357. },
  6358. "asset": {
  6359. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6360. },
  6361. "fileId": "f1T4CwTN9B/KFqj17fnC9U",
  6362. "sync": false
  6363. },
  6364. {
  6365. "__type__": "cc.Node",
  6366. "_name": "Item",
  6367. "_objFlags": 0,
  6368. "_parent": {
  6369. "__id__": 1
  6370. },
  6371. "_children": [
  6372. {
  6373. "__id__": 182
  6374. },
  6375. {
  6376. "__id__": 185
  6377. },
  6378. {
  6379. "__id__": 188
  6380. },
  6381. {
  6382. "__id__": 192
  6383. }
  6384. ],
  6385. "_active": true,
  6386. "_components": [],
  6387. "_prefab": {
  6388. "__id__": 196
  6389. },
  6390. "_opacity": 255,
  6391. "_color": {
  6392. "__type__": "cc.Color",
  6393. "r": 255,
  6394. "g": 255,
  6395. "b": 255,
  6396. "a": 255
  6397. },
  6398. "_contentSize": {
  6399. "__type__": "cc.Size",
  6400. "width": 508,
  6401. "height": 108
  6402. },
  6403. "_anchorPoint": {
  6404. "__type__": "cc.Vec2",
  6405. "x": 0.5,
  6406. "y": 0.5
  6407. },
  6408. "_trs": {
  6409. "__type__": "TypedArray",
  6410. "ctor": "Float64Array",
  6411. "array": [
  6412. 700.725,
  6413. 0,
  6414. 0,
  6415. 0,
  6416. 0,
  6417. 0,
  6418. 1,
  6419. 1,
  6420. 1,
  6421. 1
  6422. ]
  6423. },
  6424. "_eulerAngles": {
  6425. "__type__": "cc.Vec3",
  6426. "x": 0,
  6427. "y": 0,
  6428. "z": 0
  6429. },
  6430. "_skewX": 0,
  6431. "_skewY": 0,
  6432. "_is3DNode": false,
  6433. "_groupIndex": 0,
  6434. "groupIndex": 0,
  6435. "_id": ""
  6436. },
  6437. {
  6438. "__type__": "cc.Node",
  6439. "_name": "ItemBG",
  6440. "_objFlags": 0,
  6441. "_parent": {
  6442. "__id__": 181
  6443. },
  6444. "_children": [],
  6445. "_active": true,
  6446. "_components": [
  6447. {
  6448. "__id__": 183
  6449. }
  6450. ],
  6451. "_prefab": {
  6452. "__id__": 184
  6453. },
  6454. "_opacity": 255,
  6455. "_color": {
  6456. "__type__": "cc.Color",
  6457. "r": 255,
  6458. "g": 255,
  6459. "b": 255,
  6460. "a": 255
  6461. },
  6462. "_contentSize": {
  6463. "__type__": "cc.Size",
  6464. "width": 508,
  6465. "height": 108
  6466. },
  6467. "_anchorPoint": {
  6468. "__type__": "cc.Vec2",
  6469. "x": 0.5,
  6470. "y": 0.5
  6471. },
  6472. "_trs": {
  6473. "__type__": "TypedArray",
  6474. "ctor": "Float64Array",
  6475. "array": [
  6476. 0,
  6477. 0,
  6478. 0,
  6479. 0,
  6480. 0,
  6481. 0,
  6482. 1,
  6483. 1,
  6484. 1,
  6485. 1
  6486. ]
  6487. },
  6488. "_eulerAngles": {
  6489. "__type__": "cc.Vec3",
  6490. "x": 0,
  6491. "y": 0,
  6492. "z": 0
  6493. },
  6494. "_skewX": 0,
  6495. "_skewY": 0,
  6496. "_is3DNode": false,
  6497. "_groupIndex": 0,
  6498. "groupIndex": 0,
  6499. "_id": ""
  6500. },
  6501. {
  6502. "__type__": "cc.Sprite",
  6503. "_name": "",
  6504. "_objFlags": 0,
  6505. "node": {
  6506. "__id__": 182
  6507. },
  6508. "_enabled": true,
  6509. "_materials": [
  6510. {
  6511. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6512. }
  6513. ],
  6514. "_srcBlendFactor": 770,
  6515. "_dstBlendFactor": 771,
  6516. "_spriteFrame": {
  6517. "__uuid__": "ed881367-5fbb-4f49-af13-9c2ae787461d"
  6518. },
  6519. "_type": 0,
  6520. "_sizeMode": 1,
  6521. "_fillType": 0,
  6522. "_fillCenter": {
  6523. "__type__": "cc.Vec2",
  6524. "x": 0,
  6525. "y": 0
  6526. },
  6527. "_fillStart": 0,
  6528. "_fillRange": 0,
  6529. "_isTrimmedMode": true,
  6530. "_atlas": null,
  6531. "_id": ""
  6532. },
  6533. {
  6534. "__type__": "cc.PrefabInfo",
  6535. "root": {
  6536. "__id__": 1
  6537. },
  6538. "asset": {
  6539. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6540. },
  6541. "fileId": "fferPSpyVJCrrlWgpYYDxk",
  6542. "sync": false
  6543. },
  6544. {
  6545. "__type__": "cc.Node",
  6546. "_name": "Logo",
  6547. "_objFlags": 0,
  6548. "_parent": {
  6549. "__id__": 181
  6550. },
  6551. "_children": [],
  6552. "_active": true,
  6553. "_components": [
  6554. {
  6555. "__id__": 186
  6556. }
  6557. ],
  6558. "_prefab": {
  6559. "__id__": 187
  6560. },
  6561. "_opacity": 255,
  6562. "_color": {
  6563. "__type__": "cc.Color",
  6564. "r": 255,
  6565. "g": 255,
  6566. "b": 255,
  6567. "a": 255
  6568. },
  6569. "_contentSize": {
  6570. "__type__": "cc.Size",
  6571. "width": 78,
  6572. "height": 78
  6573. },
  6574. "_anchorPoint": {
  6575. "__type__": "cc.Vec2",
  6576. "x": 0.5,
  6577. "y": 0.5
  6578. },
  6579. "_trs": {
  6580. "__type__": "TypedArray",
  6581. "ctor": "Float64Array",
  6582. "array": [
  6583. -194.877,
  6584. 0,
  6585. 0,
  6586. 0,
  6587. 0,
  6588. 0,
  6589. 1,
  6590. 1,
  6591. 1,
  6592. 1
  6593. ]
  6594. },
  6595. "_eulerAngles": {
  6596. "__type__": "cc.Vec3",
  6597. "x": 0,
  6598. "y": 0,
  6599. "z": 0
  6600. },
  6601. "_skewX": 0,
  6602. "_skewY": 0,
  6603. "_is3DNode": false,
  6604. "_groupIndex": 0,
  6605. "groupIndex": 0,
  6606. "_id": ""
  6607. },
  6608. {
  6609. "__type__": "cc.Sprite",
  6610. "_name": "",
  6611. "_objFlags": 0,
  6612. "node": {
  6613. "__id__": 185
  6614. },
  6615. "_enabled": true,
  6616. "_materials": [
  6617. {
  6618. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6619. }
  6620. ],
  6621. "_srcBlendFactor": 770,
  6622. "_dstBlendFactor": 771,
  6623. "_spriteFrame": {
  6624. "__uuid__": "45602453-5884-4197-94c9-c98a6d81e501"
  6625. },
  6626. "_type": 0,
  6627. "_sizeMode": 1,
  6628. "_fillType": 0,
  6629. "_fillCenter": {
  6630. "__type__": "cc.Vec2",
  6631. "x": 0,
  6632. "y": 0
  6633. },
  6634. "_fillStart": 0,
  6635. "_fillRange": 0,
  6636. "_isTrimmedMode": true,
  6637. "_atlas": null,
  6638. "_id": ""
  6639. },
  6640. {
  6641. "__type__": "cc.PrefabInfo",
  6642. "root": {
  6643. "__id__": 1
  6644. },
  6645. "asset": {
  6646. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6647. },
  6648. "fileId": "7146c41bVKqIKccKzkx5A8",
  6649. "sync": false
  6650. },
  6651. {
  6652. "__type__": "cc.Node",
  6653. "_name": "TitleLabel",
  6654. "_objFlags": 0,
  6655. "_parent": {
  6656. "__id__": 181
  6657. },
  6658. "_children": [],
  6659. "_active": true,
  6660. "_components": [
  6661. {
  6662. "__id__": 189
  6663. },
  6664. {
  6665. "__id__": 190
  6666. }
  6667. ],
  6668. "_prefab": {
  6669. "__id__": 191
  6670. },
  6671. "_opacity": 255,
  6672. "_color": {
  6673. "__type__": "cc.Color",
  6674. "r": 152,
  6675. "g": 102,
  6676. "b": 55,
  6677. "a": 255
  6678. },
  6679. "_contentSize": {
  6680. "__type__": "cc.Size",
  6681. "width": 364.56,
  6682. "height": 33.5
  6683. },
  6684. "_anchorPoint": {
  6685. "__type__": "cc.Vec2",
  6686. "x": 0,
  6687. "y": 0.5
  6688. },
  6689. "_trs": {
  6690. "__type__": "TypedArray",
  6691. "ctor": "Float64Array",
  6692. "array": [
  6693. -130.895,
  6694. 22.867,
  6695. 0,
  6696. 0,
  6697. 0,
  6698. 0,
  6699. 1,
  6700. 1,
  6701. 1,
  6702. 1
  6703. ]
  6704. },
  6705. "_eulerAngles": {
  6706. "__type__": "cc.Vec3",
  6707. "x": 0,
  6708. "y": 0,
  6709. "z": 0
  6710. },
  6711. "_skewX": 0,
  6712. "_skewY": 0,
  6713. "_is3DNode": false,
  6714. "_groupIndex": 0,
  6715. "groupIndex": 0,
  6716. "_id": ""
  6717. },
  6718. {
  6719. "__type__": "cc.Label",
  6720. "_name": "",
  6721. "_objFlags": 0,
  6722. "node": {
  6723. "__id__": 188
  6724. },
  6725. "_enabled": true,
  6726. "_materials": [
  6727. {
  6728. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6729. }
  6730. ],
  6731. "_srcBlendFactor": 770,
  6732. "_dstBlendFactor": 771,
  6733. "_string": "3D视界面安卓2.0.8版本已经发行",
  6734. "_N$string": "3D视界面安卓2.0.8版本已经发行",
  6735. "_fontSize": 25,
  6736. "_lineHeight": 25,
  6737. "_enableWrapText": true,
  6738. "_N$file": null,
  6739. "_isSystemFontUsed": true,
  6740. "_spacingX": 0,
  6741. "_batchAsBitmap": false,
  6742. "_styleFlags": 0,
  6743. "_underlineHeight": 0,
  6744. "_N$horizontalAlign": 0,
  6745. "_N$verticalAlign": 1,
  6746. "_N$fontFamily": "Arial",
  6747. "_N$overflow": 0,
  6748. "_N$cacheMode": 0,
  6749. "_id": ""
  6750. },
  6751. {
  6752. "__type__": "cc.LabelOutline",
  6753. "_name": "",
  6754. "_objFlags": 0,
  6755. "node": {
  6756. "__id__": 188
  6757. },
  6758. "_enabled": true,
  6759. "_color": {
  6760. "__type__": "cc.Color",
  6761. "r": 152,
  6762. "g": 102,
  6763. "b": 55,
  6764. "a": 255
  6765. },
  6766. "_width": 1,
  6767. "_id": ""
  6768. },
  6769. {
  6770. "__type__": "cc.PrefabInfo",
  6771. "root": {
  6772. "__id__": 1
  6773. },
  6774. "asset": {
  6775. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6776. },
  6777. "fileId": "e9lqgHlKJG87O2xt77wRbq",
  6778. "sync": false
  6779. },
  6780. {
  6781. "__type__": "cc.Node",
  6782. "_name": "TimeLabel",
  6783. "_objFlags": 0,
  6784. "_parent": {
  6785. "__id__": 181
  6786. },
  6787. "_children": [],
  6788. "_active": true,
  6789. "_components": [
  6790. {
  6791. "__id__": 193
  6792. },
  6793. {
  6794. "__id__": 194
  6795. }
  6796. ],
  6797. "_prefab": {
  6798. "__id__": 195
  6799. },
  6800. "_opacity": 255,
  6801. "_color": {
  6802. "__type__": "cc.Color",
  6803. "r": 181,
  6804. "g": 153,
  6805. "b": 114,
  6806. "a": 255
  6807. },
  6808. "_contentSize": {
  6809. "__type__": "cc.Size",
  6810. "width": 239.23,
  6811. "height": 33.5
  6812. },
  6813. "_anchorPoint": {
  6814. "__type__": "cc.Vec2",
  6815. "x": 0,
  6816. "y": 0.5
  6817. },
  6818. "_trs": {
  6819. "__type__": "TypedArray",
  6820. "ctor": "Float64Array",
  6821. "array": [
  6822. -130.895,
  6823. -19.926,
  6824. 0,
  6825. 0,
  6826. 0,
  6827. 0,
  6828. 1,
  6829. 1,
  6830. 1,
  6831. 1
  6832. ]
  6833. },
  6834. "_eulerAngles": {
  6835. "__type__": "cc.Vec3",
  6836. "x": 0,
  6837. "y": 0,
  6838. "z": 0
  6839. },
  6840. "_skewX": 0,
  6841. "_skewY": 0,
  6842. "_is3DNode": false,
  6843. "_groupIndex": 0,
  6844. "groupIndex": 0,
  6845. "_id": ""
  6846. },
  6847. {
  6848. "__type__": "cc.Label",
  6849. "_name": "",
  6850. "_objFlags": 0,
  6851. "node": {
  6852. "__id__": 192
  6853. },
  6854. "_enabled": true,
  6855. "_materials": [
  6856. {
  6857. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6858. }
  6859. ],
  6860. "_srcBlendFactor": 770,
  6861. "_dstBlendFactor": 771,
  6862. "_string": "2020-11-26 19:43:00",
  6863. "_N$string": "2020-11-26 19:43:00",
  6864. "_fontSize": 25,
  6865. "_lineHeight": 25,
  6866. "_enableWrapText": true,
  6867. "_N$file": null,
  6868. "_isSystemFontUsed": true,
  6869. "_spacingX": 0,
  6870. "_batchAsBitmap": false,
  6871. "_styleFlags": 0,
  6872. "_underlineHeight": 0,
  6873. "_N$horizontalAlign": 0,
  6874. "_N$verticalAlign": 1,
  6875. "_N$fontFamily": "Arial",
  6876. "_N$overflow": 0,
  6877. "_N$cacheMode": 0,
  6878. "_id": ""
  6879. },
  6880. {
  6881. "__type__": "cc.LabelOutline",
  6882. "_name": "",
  6883. "_objFlags": 0,
  6884. "node": {
  6885. "__id__": 192
  6886. },
  6887. "_enabled": true,
  6888. "_color": {
  6889. "__type__": "cc.Color",
  6890. "r": 181,
  6891. "g": 153,
  6892. "b": 114,
  6893. "a": 255
  6894. },
  6895. "_width": 1,
  6896. "_id": ""
  6897. },
  6898. {
  6899. "__type__": "cc.PrefabInfo",
  6900. "root": {
  6901. "__id__": 1
  6902. },
  6903. "asset": {
  6904. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6905. },
  6906. "fileId": "cd4a9wbUhNe74k4i7QiAh9",
  6907. "sync": false
  6908. },
  6909. {
  6910. "__type__": "cc.PrefabInfo",
  6911. "root": {
  6912. "__id__": 1
  6913. },
  6914. "asset": {
  6915. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6916. },
  6917. "fileId": "ddxZFc9mZGeZvOUpteZHB8",
  6918. "sync": false
  6919. },
  6920. {
  6921. "__type__": "cc.BlockInputEvents",
  6922. "_name": "",
  6923. "_objFlags": 0,
  6924. "node": {
  6925. "__id__": 1
  6926. },
  6927. "_enabled": true,
  6928. "_id": ""
  6929. },
  6930. {
  6931. "__type__": "d2447Ik5gtAzY2mPWwZdjIM",
  6932. "_name": "",
  6933. "_objFlags": 0,
  6934. "node": {
  6935. "__id__": 1
  6936. },
  6937. "_enabled": true,
  6938. "_id": ""
  6939. },
  6940. {
  6941. "__type__": "cc.PrefabInfo",
  6942. "root": {
  6943. "__id__": 1
  6944. },
  6945. "asset": {
  6946. "__uuid__": "d5b923fe-5969-4e69-b41d-35815f3b8d89"
  6947. },
  6948. "fileId": "",
  6949. "sync": false
  6950. }
  6951. ]