card_about_view.prefab 118 KB

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