TeamUI.prefab 198 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821
  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": "TeamUI",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 12
  28. },
  29. {
  30. "__id__": 75
  31. },
  32. {
  33. "__id__": 81
  34. },
  35. {
  36. "__id__": 105
  37. },
  38. {
  39. "__id__": 108
  40. },
  41. {
  42. "__id__": 113
  43. },
  44. {
  45. "__id__": 117
  46. },
  47. {
  48. "__id__": 131
  49. },
  50. {
  51. "__id__": 134
  52. },
  53. {
  54. "__id__": 189
  55. },
  56. {
  57. "__id__": 192
  58. },
  59. {
  60. "__id__": 195
  61. },
  62. {
  63. "__id__": 223
  64. },
  65. {
  66. "__id__": 281
  67. },
  68. {
  69. "__id__": 310
  70. },
  71. {
  72. "__id__": 315
  73. },
  74. {
  75. "__id__": 330
  76. },
  77. {
  78. "__id__": 335
  79. }
  80. ],
  81. "_active": true,
  82. "_components": [
  83. {
  84. "__id__": 340
  85. }
  86. ],
  87. "_prefab": {
  88. "__id__": 341
  89. },
  90. "_opacity": 255,
  91. "_color": {
  92. "__type__": "cc.Color",
  93. "r": 255,
  94. "g": 255,
  95. "b": 255,
  96. "a": 255
  97. },
  98. "_contentSize": {
  99. "__type__": "cc.Size",
  100. "width": 2400,
  101. "height": 1080
  102. },
  103. "_anchorPoint": {
  104. "__type__": "cc.Vec2",
  105. "x": 0.5,
  106. "y": 0.5
  107. },
  108. "_trs": {
  109. "__type__": "TypedArray",
  110. "ctor": "Float64Array",
  111. "array": [
  112. 0,
  113. 0,
  114. 0,
  115. 0,
  116. 0,
  117. 0,
  118. 1,
  119. 1,
  120. 1,
  121. 1
  122. ]
  123. },
  124. "_eulerAngles": {
  125. "__type__": "cc.Vec3",
  126. "x": 0,
  127. "y": 0,
  128. "z": 0
  129. },
  130. "_skewX": 0,
  131. "_skewY": 0,
  132. "_is3DNode": false,
  133. "_groupIndex": 0,
  134. "groupIndex": 0,
  135. "_id": ""
  136. },
  137. {
  138. "__type__": "cc.Node",
  139. "_name": "bg",
  140. "_objFlags": 0,
  141. "_parent": {
  142. "__id__": 1
  143. },
  144. "_children": [],
  145. "_active": true,
  146. "_components": [
  147. {
  148. "__id__": 3
  149. },
  150. {
  151. "__id__": 4
  152. },
  153. {
  154. "__id__": 5
  155. }
  156. ],
  157. "_prefab": {
  158. "__id__": 6
  159. },
  160. "_opacity": 255,
  161. "_color": {
  162. "__type__": "cc.Color",
  163. "r": 255,
  164. "g": 255,
  165. "b": 255,
  166. "a": 255
  167. },
  168. "_contentSize": {
  169. "__type__": "cc.Size",
  170. "width": 1920,
  171. "height": 1080
  172. },
  173. "_anchorPoint": {
  174. "__type__": "cc.Vec2",
  175. "x": 0.5,
  176. "y": 0.5
  177. },
  178. "_trs": {
  179. "__type__": "TypedArray",
  180. "ctor": "Float64Array",
  181. "array": [
  182. 0,
  183. 0,
  184. 0,
  185. 0,
  186. 0,
  187. 0,
  188. 1,
  189. 1,
  190. 1,
  191. 1
  192. ]
  193. },
  194. "_eulerAngles": {
  195. "__type__": "cc.Vec3",
  196. "x": 0,
  197. "y": 0,
  198. "z": 0
  199. },
  200. "_skewX": 0,
  201. "_skewY": 0,
  202. "_is3DNode": false,
  203. "_groupIndex": 0,
  204. "groupIndex": 0,
  205. "_id": ""
  206. },
  207. {
  208. "__type__": "cc.Sprite",
  209. "_name": "",
  210. "_objFlags": 0,
  211. "node": {
  212. "__id__": 2
  213. },
  214. "_enabled": true,
  215. "_materials": [
  216. {
  217. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  218. }
  219. ],
  220. "_srcBlendFactor": 770,
  221. "_dstBlendFactor": 771,
  222. "_spriteFrame": {
  223. "__uuid__": "9c65fb73-0545-4b53-9ecb-ee9eb1972867"
  224. },
  225. "_type": 0,
  226. "_sizeMode": 0,
  227. "_fillType": 0,
  228. "_fillCenter": {
  229. "__type__": "cc.Vec2",
  230. "x": 0,
  231. "y": 0
  232. },
  233. "_fillStart": 0,
  234. "_fillRange": 0,
  235. "_isTrimmedMode": true,
  236. "_atlas": null,
  237. "_id": ""
  238. },
  239. {
  240. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  241. "_name": "",
  242. "_objFlags": 0,
  243. "node": {
  244. "__id__": 2
  245. },
  246. "_enabled": true,
  247. "widthFit": true,
  248. "heightFit": true,
  249. "_id": ""
  250. },
  251. {
  252. "__type__": "cc.BlockInputEvents",
  253. "_name": "",
  254. "_objFlags": 0,
  255. "node": {
  256. "__id__": 2
  257. },
  258. "_enabled": true,
  259. "_id": ""
  260. },
  261. {
  262. "__type__": "cc.PrefabInfo",
  263. "root": {
  264. "__id__": 1
  265. },
  266. "asset": {
  267. "__id__": 0
  268. },
  269. "fileId": "95NwjKmOtDn4BlDR50HPju",
  270. "sync": false
  271. },
  272. {
  273. "__type__": "cc.Node",
  274. "_name": "lb",
  275. "_objFlags": 0,
  276. "_parent": {
  277. "__id__": 1
  278. },
  279. "_children": [],
  280. "_active": true,
  281. "_components": [
  282. {
  283. "__id__": 8
  284. },
  285. {
  286. "__id__": 9
  287. },
  288. {
  289. "__id__": 10
  290. }
  291. ],
  292. "_prefab": {
  293. "__id__": 11
  294. },
  295. "_opacity": 255,
  296. "_color": {
  297. "__type__": "cc.Color",
  298. "r": 255,
  299. "g": 255,
  300. "b": 255,
  301. "a": 255
  302. },
  303. "_contentSize": {
  304. "__type__": "cc.Size",
  305. "width": 132.3,
  306. "height": 73
  307. },
  308. "_anchorPoint": {
  309. "__type__": "cc.Vec2",
  310. "x": 0,
  311. "y": 0.5
  312. },
  313. "_trs": {
  314. "__type__": "TypedArray",
  315. "ctor": "Float64Array",
  316. "array": [
  317. -840,
  318. 480,
  319. 0,
  320. 0,
  321. 0,
  322. 0,
  323. 1,
  324. 1,
  325. 1,
  326. 1
  327. ]
  328. },
  329. "_eulerAngles": {
  330. "__type__": "cc.Vec3",
  331. "x": 0,
  332. "y": 0,
  333. "z": 0
  334. },
  335. "_skewX": 0,
  336. "_skewY": 0,
  337. "_is3DNode": false,
  338. "_groupIndex": 0,
  339. "groupIndex": 0,
  340. "_id": ""
  341. },
  342. {
  343. "__type__": "cc.Label",
  344. "_name": "",
  345. "_objFlags": 0,
  346. "node": {
  347. "__id__": 7
  348. },
  349. "_enabled": true,
  350. "_materials": [
  351. {
  352. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  353. }
  354. ],
  355. "_srcBlendFactor": 770,
  356. "_dstBlendFactor": 771,
  357. "_string": "Team",
  358. "_N$string": "Team",
  359. "_fontSize": 48,
  360. "_lineHeight": 50,
  361. "_enableWrapText": true,
  362. "_N$file": {
  363. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  364. },
  365. "_isSystemFontUsed": false,
  366. "_spacingX": 0,
  367. "_batchAsBitmap": false,
  368. "_styleFlags": 0,
  369. "_underlineHeight": 0,
  370. "_N$horizontalAlign": 1,
  371. "_N$verticalAlign": 1,
  372. "_N$fontFamily": "Arial",
  373. "_N$overflow": 0,
  374. "_N$cacheMode": 0,
  375. "_id": ""
  376. },
  377. {
  378. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  379. "_name": "",
  380. "_objFlags": 0,
  381. "node": {
  382. "__id__": 7
  383. },
  384. "_enabled": true,
  385. "_englishCase": 1,
  386. "i18n_string": "t6",
  387. "i18n_params": [],
  388. "_addColon": false,
  389. "_id": ""
  390. },
  391. {
  392. "__type__": "cc.LabelOutline",
  393. "_name": "",
  394. "_objFlags": 0,
  395. "node": {
  396. "__id__": 7
  397. },
  398. "_enabled": true,
  399. "_color": {
  400. "__type__": "cc.Color",
  401. "r": 38,
  402. "g": 17,
  403. "b": 12,
  404. "a": 255
  405. },
  406. "_width": 5,
  407. "_id": ""
  408. },
  409. {
  410. "__type__": "cc.PrefabInfo",
  411. "root": {
  412. "__id__": 1
  413. },
  414. "asset": {
  415. "__id__": 0
  416. },
  417. "fileId": "25Z1TZaNRFnZ6EGpm3mdP2",
  418. "sync": false
  419. },
  420. {
  421. "__type__": "cc.Node",
  422. "_name": "roles",
  423. "_objFlags": 0,
  424. "_parent": {
  425. "__id__": 1
  426. },
  427. "_children": [
  428. {
  429. "__id__": 13
  430. }
  431. ],
  432. "_active": true,
  433. "_components": [
  434. {
  435. "__id__": 73
  436. }
  437. ],
  438. "_prefab": {
  439. "__id__": 74
  440. },
  441. "_opacity": 255,
  442. "_color": {
  443. "__type__": "cc.Color",
  444. "r": 255,
  445. "g": 255,
  446. "b": 255,
  447. "a": 255
  448. },
  449. "_contentSize": {
  450. "__type__": "cc.Size",
  451. "width": 1000,
  452. "height": 800
  453. },
  454. "_anchorPoint": {
  455. "__type__": "cc.Vec2",
  456. "x": 0.5,
  457. "y": 0.5
  458. },
  459. "_trs": {
  460. "__type__": "TypedArray",
  461. "ctor": "Float64Array",
  462. "array": [
  463. -370,
  464. 40,
  465. 0,
  466. 0,
  467. 0,
  468. 0,
  469. 1,
  470. 1,
  471. 1,
  472. 1
  473. ]
  474. },
  475. "_eulerAngles": {
  476. "__type__": "cc.Vec3",
  477. "x": 0,
  478. "y": 0,
  479. "z": 0
  480. },
  481. "_skewX": 0,
  482. "_skewY": 0,
  483. "_is3DNode": false,
  484. "_groupIndex": 0,
  485. "groupIndex": 0,
  486. "_id": ""
  487. },
  488. {
  489. "__type__": "cc.Node",
  490. "_name": "item",
  491. "_objFlags": 0,
  492. "_parent": {
  493. "__id__": 12
  494. },
  495. "_children": [
  496. {
  497. "__id__": 14
  498. },
  499. {
  500. "__id__": 17
  501. },
  502. {
  503. "__id__": 60
  504. }
  505. ],
  506. "_active": true,
  507. "_components": [
  508. {
  509. "__id__": 70
  510. }
  511. ],
  512. "_prefab": {
  513. "__id__": 72
  514. },
  515. "_opacity": 255,
  516. "_color": {
  517. "__type__": "cc.Color",
  518. "r": 255,
  519. "g": 255,
  520. "b": 255,
  521. "a": 255
  522. },
  523. "_contentSize": {
  524. "__type__": "cc.Size",
  525. "width": 300,
  526. "height": 385
  527. },
  528. "_anchorPoint": {
  529. "__type__": "cc.Vec2",
  530. "x": 0.5,
  531. "y": 0.5
  532. },
  533. "_trs": {
  534. "__type__": "TypedArray",
  535. "ctor": "Float64Array",
  536. "array": [
  537. -350,
  538. 207.5,
  539. 0,
  540. 0,
  541. 0,
  542. 0,
  543. 1,
  544. 1,
  545. 1,
  546. 1
  547. ]
  548. },
  549. "_eulerAngles": {
  550. "__type__": "cc.Vec3",
  551. "x": 0,
  552. "y": 0,
  553. "z": 0
  554. },
  555. "_skewX": 0,
  556. "_skewY": 0,
  557. "_is3DNode": false,
  558. "_groupIndex": 0,
  559. "groupIndex": 0,
  560. "_id": ""
  561. },
  562. {
  563. "__type__": "cc.Node",
  564. "_name": "role_base",
  565. "_objFlags": 0,
  566. "_parent": {
  567. "__id__": 13
  568. },
  569. "_children": [],
  570. "_active": true,
  571. "_components": [
  572. {
  573. "__id__": 15
  574. }
  575. ],
  576. "_prefab": {
  577. "__id__": 16
  578. },
  579. "_opacity": 255,
  580. "_color": {
  581. "__type__": "cc.Color",
  582. "r": 255,
  583. "g": 255,
  584. "b": 255,
  585. "a": 255
  586. },
  587. "_contentSize": {
  588. "__type__": "cc.Size",
  589. "width": 252,
  590. "height": 137
  591. },
  592. "_anchorPoint": {
  593. "__type__": "cc.Vec2",
  594. "x": 0.5,
  595. "y": 0.5
  596. },
  597. "_trs": {
  598. "__type__": "TypedArray",
  599. "ctor": "Float64Array",
  600. "array": [
  601. 0,
  602. -120,
  603. 0,
  604. 0,
  605. 0,
  606. 0,
  607. 1,
  608. 1,
  609. 1,
  610. 1
  611. ]
  612. },
  613. "_eulerAngles": {
  614. "__type__": "cc.Vec3",
  615. "x": 0,
  616. "y": 0,
  617. "z": 0
  618. },
  619. "_skewX": 0,
  620. "_skewY": 0,
  621. "_is3DNode": false,
  622. "_groupIndex": 0,
  623. "groupIndex": 0,
  624. "_id": ""
  625. },
  626. {
  627. "__type__": "cc.Sprite",
  628. "_name": "",
  629. "_objFlags": 0,
  630. "node": {
  631. "__id__": 14
  632. },
  633. "_enabled": true,
  634. "_materials": [
  635. {
  636. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  637. }
  638. ],
  639. "_srcBlendFactor": 770,
  640. "_dstBlendFactor": 771,
  641. "_spriteFrame": {
  642. "__uuid__": "6e9b8f88-87c3-4d92-872c-4f3ba2e864b4"
  643. },
  644. "_type": 0,
  645. "_sizeMode": 1,
  646. "_fillType": 0,
  647. "_fillCenter": {
  648. "__type__": "cc.Vec2",
  649. "x": 0,
  650. "y": 0
  651. },
  652. "_fillStart": 0,
  653. "_fillRange": 0,
  654. "_isTrimmedMode": true,
  655. "_atlas": null,
  656. "_id": ""
  657. },
  658. {
  659. "__type__": "cc.PrefabInfo",
  660. "root": {
  661. "__id__": 1
  662. },
  663. "asset": {
  664. "__id__": 0
  665. },
  666. "fileId": "b2hPmNpqpCVLvqNUXqur4C",
  667. "sync": false
  668. },
  669. {
  670. "__type__": "cc.Node",
  671. "_name": "role",
  672. "_objFlags": 0,
  673. "_parent": {
  674. "__id__": 13
  675. },
  676. "_children": [
  677. {
  678. "__id__": 18
  679. },
  680. {
  681. "__id__": 21
  682. },
  683. {
  684. "__id__": 24
  685. },
  686. {
  687. "__id__": 27
  688. },
  689. {
  690. "__id__": 30
  691. },
  692. {
  693. "__id__": 34
  694. },
  695. {
  696. "__id__": 52
  697. }
  698. ],
  699. "_active": true,
  700. "_components": [],
  701. "_prefab": {
  702. "__id__": 59
  703. },
  704. "_opacity": 255,
  705. "_color": {
  706. "__type__": "cc.Color",
  707. "r": 255,
  708. "g": 255,
  709. "b": 255,
  710. "a": 255
  711. },
  712. "_contentSize": {
  713. "__type__": "cc.Size",
  714. "width": 0,
  715. "height": 0
  716. },
  717. "_anchorPoint": {
  718. "__type__": "cc.Vec2",
  719. "x": 0.5,
  720. "y": 0.5
  721. },
  722. "_trs": {
  723. "__type__": "TypedArray",
  724. "ctor": "Float64Array",
  725. "array": [
  726. 0,
  727. 0,
  728. 0,
  729. 0,
  730. 0,
  731. 0,
  732. 1,
  733. 1,
  734. 1,
  735. 1
  736. ]
  737. },
  738. "_eulerAngles": {
  739. "__type__": "cc.Vec3",
  740. "x": 0,
  741. "y": 0,
  742. "z": 0
  743. },
  744. "_skewX": 0,
  745. "_skewY": 0,
  746. "_is3DNode": false,
  747. "_groupIndex": 0,
  748. "groupIndex": 0,
  749. "_id": ""
  750. },
  751. {
  752. "__type__": "cc.Node",
  753. "_name": "base_light",
  754. "_objFlags": 0,
  755. "_parent": {
  756. "__id__": 17
  757. },
  758. "_children": [],
  759. "_active": true,
  760. "_components": [
  761. {
  762. "__id__": 19
  763. }
  764. ],
  765. "_prefab": {
  766. "__id__": 20
  767. },
  768. "_opacity": 255,
  769. "_color": {
  770. "__type__": "cc.Color",
  771. "r": 255,
  772. "g": 255,
  773. "b": 255,
  774. "a": 255
  775. },
  776. "_contentSize": {
  777. "__type__": "cc.Size",
  778. "width": 289,
  779. "height": 175
  780. },
  781. "_anchorPoint": {
  782. "__type__": "cc.Vec2",
  783. "x": 0.5,
  784. "y": 0.5
  785. },
  786. "_trs": {
  787. "__type__": "TypedArray",
  788. "ctor": "Float64Array",
  789. "array": [
  790. 0,
  791. -120,
  792. 0,
  793. 0,
  794. 0,
  795. 0,
  796. 1,
  797. 1,
  798. 1,
  799. 1
  800. ]
  801. },
  802. "_eulerAngles": {
  803. "__type__": "cc.Vec3",
  804. "x": 0,
  805. "y": 0,
  806. "z": 0
  807. },
  808. "_skewX": 0,
  809. "_skewY": 0,
  810. "_is3DNode": false,
  811. "_groupIndex": 0,
  812. "groupIndex": 0,
  813. "_id": ""
  814. },
  815. {
  816. "__type__": "cc.Sprite",
  817. "_name": "",
  818. "_objFlags": 0,
  819. "node": {
  820. "__id__": 18
  821. },
  822. "_enabled": true,
  823. "_materials": [
  824. {
  825. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  826. }
  827. ],
  828. "_srcBlendFactor": 770,
  829. "_dstBlendFactor": 771,
  830. "_spriteFrame": {
  831. "__uuid__": "04ec2b8b-b059-4435-b4c3-1b5106d35588"
  832. },
  833. "_type": 0,
  834. "_sizeMode": 1,
  835. "_fillType": 0,
  836. "_fillCenter": {
  837. "__type__": "cc.Vec2",
  838. "x": 0,
  839. "y": 0
  840. },
  841. "_fillStart": 0,
  842. "_fillRange": 0,
  843. "_isTrimmedMode": true,
  844. "_atlas": null,
  845. "_id": ""
  846. },
  847. {
  848. "__type__": "cc.PrefabInfo",
  849. "root": {
  850. "__id__": 1
  851. },
  852. "asset": {
  853. "__id__": 0
  854. },
  855. "fileId": "a0xJqoxWxPVaUT44xQBxhd",
  856. "sync": false
  857. },
  858. {
  859. "__type__": "cc.Node",
  860. "_name": "base_level",
  861. "_objFlags": 0,
  862. "_parent": {
  863. "__id__": 17
  864. },
  865. "_children": [],
  866. "_active": true,
  867. "_components": [
  868. {
  869. "__id__": 22
  870. }
  871. ],
  872. "_prefab": {
  873. "__id__": 23
  874. },
  875. "_opacity": 255,
  876. "_color": {
  877. "__type__": "cc.Color",
  878. "r": 255,
  879. "g": 255,
  880. "b": 255,
  881. "a": 255
  882. },
  883. "_contentSize": {
  884. "__type__": "cc.Size",
  885. "width": 202,
  886. "height": 51
  887. },
  888. "_anchorPoint": {
  889. "__type__": "cc.Vec2",
  890. "x": 0.5,
  891. "y": 0.5
  892. },
  893. "_trs": {
  894. "__type__": "TypedArray",
  895. "ctor": "Float64Array",
  896. "array": [
  897. 0,
  898. -163.264,
  899. 0,
  900. 0,
  901. 0,
  902. 0,
  903. 1,
  904. 1,
  905. 1,
  906. 1
  907. ]
  908. },
  909. "_eulerAngles": {
  910. "__type__": "cc.Vec3",
  911. "x": 0,
  912. "y": 0,
  913. "z": 0
  914. },
  915. "_skewX": 0,
  916. "_skewY": 0,
  917. "_is3DNode": false,
  918. "_groupIndex": 0,
  919. "groupIndex": 0,
  920. "_id": ""
  921. },
  922. {
  923. "__type__": "cc.Sprite",
  924. "_name": "",
  925. "_objFlags": 0,
  926. "node": {
  927. "__id__": 21
  928. },
  929. "_enabled": true,
  930. "_materials": [
  931. {
  932. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  933. }
  934. ],
  935. "_srcBlendFactor": 770,
  936. "_dstBlendFactor": 771,
  937. "_spriteFrame": {
  938. "__uuid__": "e2502aea-01d7-48fd-9ac0-2563d4cf9f3b"
  939. },
  940. "_type": 0,
  941. "_sizeMode": 1,
  942. "_fillType": 0,
  943. "_fillCenter": {
  944. "__type__": "cc.Vec2",
  945. "x": 0,
  946. "y": 0
  947. },
  948. "_fillStart": 0,
  949. "_fillRange": 0,
  950. "_isTrimmedMode": true,
  951. "_atlas": null,
  952. "_id": ""
  953. },
  954. {
  955. "__type__": "cc.PrefabInfo",
  956. "root": {
  957. "__id__": 1
  958. },
  959. "asset": {
  960. "__id__": 0
  961. },
  962. "fileId": "49qCF2Wp9JpLJ4KBTKFDvv",
  963. "sync": false
  964. },
  965. {
  966. "__type__": "cc.Node",
  967. "_name": "role_type",
  968. "_objFlags": 0,
  969. "_parent": {
  970. "__id__": 17
  971. },
  972. "_children": [],
  973. "_active": false,
  974. "_components": [
  975. {
  976. "__id__": 25
  977. }
  978. ],
  979. "_prefab": {
  980. "__id__": 26
  981. },
  982. "_opacity": 255,
  983. "_color": {
  984. "__type__": "cc.Color",
  985. "r": 255,
  986. "g": 255,
  987. "b": 255,
  988. "a": 255
  989. },
  990. "_contentSize": {
  991. "__type__": "cc.Size",
  992. "width": 53,
  993. "height": 60
  994. },
  995. "_anchorPoint": {
  996. "__type__": "cc.Vec2",
  997. "x": 0.5,
  998. "y": 0.5
  999. },
  1000. "_trs": {
  1001. "__type__": "TypedArray",
  1002. "ctor": "Float64Array",
  1003. "array": [
  1004. -73.435,
  1005. -166.536,
  1006. 0,
  1007. 0,
  1008. 0,
  1009. 0,
  1010. 1,
  1011. 1,
  1012. 1,
  1013. 1
  1014. ]
  1015. },
  1016. "_eulerAngles": {
  1017. "__type__": "cc.Vec3",
  1018. "x": 0,
  1019. "y": 0,
  1020. "z": 0
  1021. },
  1022. "_skewX": 0,
  1023. "_skewY": 0,
  1024. "_is3DNode": false,
  1025. "_groupIndex": 0,
  1026. "groupIndex": 0,
  1027. "_id": ""
  1028. },
  1029. {
  1030. "__type__": "cc.Sprite",
  1031. "_name": "",
  1032. "_objFlags": 0,
  1033. "node": {
  1034. "__id__": 24
  1035. },
  1036. "_enabled": true,
  1037. "_materials": [
  1038. {
  1039. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1040. }
  1041. ],
  1042. "_srcBlendFactor": 770,
  1043. "_dstBlendFactor": 771,
  1044. "_spriteFrame": {
  1045. "__uuid__": "c28c73ee-b69f-4d56-bc7b-8489aa25f6c3"
  1046. },
  1047. "_type": 0,
  1048. "_sizeMode": 1,
  1049. "_fillType": 0,
  1050. "_fillCenter": {
  1051. "__type__": "cc.Vec2",
  1052. "x": 0,
  1053. "y": 0
  1054. },
  1055. "_fillStart": 0,
  1056. "_fillRange": 0,
  1057. "_isTrimmedMode": true,
  1058. "_atlas": null,
  1059. "_id": ""
  1060. },
  1061. {
  1062. "__type__": "cc.PrefabInfo",
  1063. "root": {
  1064. "__id__": 1
  1065. },
  1066. "asset": {
  1067. "__id__": 0
  1068. },
  1069. "fileId": "13XSvXDgRGua8bUDr5FuE2",
  1070. "sync": false
  1071. },
  1072. {
  1073. "__type__": "cc.Node",
  1074. "_name": "spine",
  1075. "_objFlags": 0,
  1076. "_parent": {
  1077. "__id__": 17
  1078. },
  1079. "_children": [],
  1080. "_active": true,
  1081. "_components": [
  1082. {
  1083. "__id__": 28
  1084. }
  1085. ],
  1086. "_prefab": {
  1087. "__id__": 29
  1088. },
  1089. "_opacity": 255,
  1090. "_color": {
  1091. "__type__": "cc.Color",
  1092. "r": 255,
  1093. "g": 255,
  1094. "b": 255,
  1095. "a": 255
  1096. },
  1097. "_contentSize": {
  1098. "__type__": "cc.Size",
  1099. "width": 436.8602600097656,
  1100. "height": 515.7766723632812
  1101. },
  1102. "_anchorPoint": {
  1103. "__type__": "cc.Vec2",
  1104. "x": 0.5,
  1105. "y": 0.5
  1106. },
  1107. "_trs": {
  1108. "__type__": "TypedArray",
  1109. "ctor": "Float64Array",
  1110. "array": [
  1111. 0,
  1112. -116.27,
  1113. 0,
  1114. 0,
  1115. 0,
  1116. 0,
  1117. 1,
  1118. 0.6,
  1119. 0.6,
  1120. 0.6
  1121. ]
  1122. },
  1123. "_eulerAngles": {
  1124. "__type__": "cc.Vec3",
  1125. "x": 0,
  1126. "y": 0,
  1127. "z": 0
  1128. },
  1129. "_skewX": 0,
  1130. "_skewY": 0,
  1131. "_is3DNode": false,
  1132. "_groupIndex": 0,
  1133. "groupIndex": 0,
  1134. "_id": ""
  1135. },
  1136. {
  1137. "__type__": "sp.Skeleton",
  1138. "_name": "",
  1139. "_objFlags": 0,
  1140. "node": {
  1141. "__id__": 27
  1142. },
  1143. "_enabled": true,
  1144. "_materials": [
  1145. {
  1146. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  1147. }
  1148. ],
  1149. "paused": false,
  1150. "defaultSkin": "default",
  1151. "defaultAnimation": "",
  1152. "_preCacheMode": 0,
  1153. "_cacheMode": 1,
  1154. "loop": false,
  1155. "premultipliedAlpha": true,
  1156. "timeScale": 1,
  1157. "_accTime": 0,
  1158. "_playCount": 0,
  1159. "_frameCache": null,
  1160. "_curFrame": null,
  1161. "_skeletonCache": null,
  1162. "_animationName": "idle",
  1163. "_animationQueue": [],
  1164. "_headAniInfo": null,
  1165. "_playTimes": 0,
  1166. "_isAniComplete": true,
  1167. "_N$skeletonData": null,
  1168. "_N$_defaultCacheMode": 0,
  1169. "_N$debugSlots": false,
  1170. "_N$debugBones": false,
  1171. "_N$debugMesh": false,
  1172. "_N$useTint": false,
  1173. "_N$enableBatch": false,
  1174. "_id": ""
  1175. },
  1176. {
  1177. "__type__": "cc.PrefabInfo",
  1178. "root": {
  1179. "__id__": 1
  1180. },
  1181. "asset": {
  1182. "__id__": 0
  1183. },
  1184. "fileId": "41QMJtQ4JOwbLql978gdCL",
  1185. "sync": false
  1186. },
  1187. {
  1188. "__type__": "cc.Node",
  1189. "_name": "lv",
  1190. "_objFlags": 0,
  1191. "_parent": {
  1192. "__id__": 17
  1193. },
  1194. "_children": [],
  1195. "_active": true,
  1196. "_components": [
  1197. {
  1198. "__id__": 31
  1199. },
  1200. {
  1201. "__id__": 32
  1202. }
  1203. ],
  1204. "_prefab": {
  1205. "__id__": 33
  1206. },
  1207. "_opacity": 255,
  1208. "_color": {
  1209. "__type__": "cc.Color",
  1210. "r": 255,
  1211. "g": 255,
  1212. "b": 255,
  1213. "a": 255
  1214. },
  1215. "_contentSize": {
  1216. "__type__": "cc.Size",
  1217. "width": 74.48,
  1218. "height": 56.4
  1219. },
  1220. "_anchorPoint": {
  1221. "__type__": "cc.Vec2",
  1222. "x": 0.5,
  1223. "y": 0.5
  1224. },
  1225. "_trs": {
  1226. "__type__": "TypedArray",
  1227. "ctor": "Float64Array",
  1228. "array": [
  1229. 18.951,
  1230. -163.388,
  1231. 0,
  1232. 0,
  1233. 0,
  1234. 0,
  1235. 1,
  1236. 1,
  1237. 1,
  1238. 1
  1239. ]
  1240. },
  1241. "_eulerAngles": {
  1242. "__type__": "cc.Vec3",
  1243. "x": 0,
  1244. "y": 0,
  1245. "z": 0
  1246. },
  1247. "_skewX": 0,
  1248. "_skewY": 0,
  1249. "_is3DNode": false,
  1250. "_groupIndex": 0,
  1251. "groupIndex": 0,
  1252. "_id": ""
  1253. },
  1254. {
  1255. "__type__": "cc.Label",
  1256. "_name": "",
  1257. "_objFlags": 0,
  1258. "node": {
  1259. "__id__": 30
  1260. },
  1261. "_enabled": true,
  1262. "_materials": [
  1263. {
  1264. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1265. }
  1266. ],
  1267. "_srcBlendFactor": 770,
  1268. "_dstBlendFactor": 771,
  1269. "_string": "lv.99",
  1270. "_N$string": "lv.99",
  1271. "_fontSize": 30,
  1272. "_lineHeight": 40,
  1273. "_enableWrapText": true,
  1274. "_N$file": {
  1275. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1276. },
  1277. "_isSystemFontUsed": false,
  1278. "_spacingX": 0,
  1279. "_batchAsBitmap": false,
  1280. "_styleFlags": 0,
  1281. "_underlineHeight": 0,
  1282. "_N$horizontalAlign": 1,
  1283. "_N$verticalAlign": 1,
  1284. "_N$fontFamily": "Arial",
  1285. "_N$overflow": 0,
  1286. "_N$cacheMode": 0,
  1287. "_id": ""
  1288. },
  1289. {
  1290. "__type__": "cc.LabelOutline",
  1291. "_name": "",
  1292. "_objFlags": 0,
  1293. "node": {
  1294. "__id__": 30
  1295. },
  1296. "_enabled": true,
  1297. "_color": {
  1298. "__type__": "cc.Color",
  1299. "r": 38,
  1300. "g": 17,
  1301. "b": 12,
  1302. "a": 255
  1303. },
  1304. "_width": 3,
  1305. "_id": ""
  1306. },
  1307. {
  1308. "__type__": "cc.PrefabInfo",
  1309. "root": {
  1310. "__id__": 1
  1311. },
  1312. "asset": {
  1313. "__id__": 0
  1314. },
  1315. "fileId": "88RIXWwctEcJ/RCME75fSe",
  1316. "sync": false
  1317. },
  1318. {
  1319. "__type__": "cc.Node",
  1320. "_name": "stars",
  1321. "_objFlags": 0,
  1322. "_parent": {
  1323. "__id__": 17
  1324. },
  1325. "_children": [
  1326. {
  1327. "__id__": 35
  1328. },
  1329. {
  1330. "__id__": 38
  1331. },
  1332. {
  1333. "__id__": 41
  1334. },
  1335. {
  1336. "__id__": 44
  1337. },
  1338. {
  1339. "__id__": 47
  1340. }
  1341. ],
  1342. "_active": true,
  1343. "_components": [
  1344. {
  1345. "__id__": 50
  1346. }
  1347. ],
  1348. "_prefab": {
  1349. "__id__": 51
  1350. },
  1351. "_opacity": 255,
  1352. "_color": {
  1353. "__type__": "cc.Color",
  1354. "r": 255,
  1355. "g": 255,
  1356. "b": 255,
  1357. "a": 255
  1358. },
  1359. "_contentSize": {
  1360. "__type__": "cc.Size",
  1361. "width": 30.599999999999998,
  1362. "height": 100
  1363. },
  1364. "_anchorPoint": {
  1365. "__type__": "cc.Vec2",
  1366. "x": 0.5,
  1367. "y": 0.5
  1368. },
  1369. "_trs": {
  1370. "__type__": "TypedArray",
  1371. "ctor": "Float64Array",
  1372. "array": [
  1373. 15.136,
  1374. -186.121,
  1375. 0,
  1376. 0,
  1377. 0,
  1378. 0,
  1379. 1,
  1380. 1,
  1381. 1,
  1382. 1
  1383. ]
  1384. },
  1385. "_eulerAngles": {
  1386. "__type__": "cc.Vec3",
  1387. "x": 0,
  1388. "y": 0,
  1389. "z": 0
  1390. },
  1391. "_skewX": 0,
  1392. "_skewY": 0,
  1393. "_is3DNode": false,
  1394. "_groupIndex": 0,
  1395. "groupIndex": 0,
  1396. "_id": ""
  1397. },
  1398. {
  1399. "__type__": "cc.Node",
  1400. "_name": "star",
  1401. "_objFlags": 0,
  1402. "_parent": {
  1403. "__id__": 34
  1404. },
  1405. "_children": [],
  1406. "_active": true,
  1407. "_components": [
  1408. {
  1409. "__id__": 36
  1410. }
  1411. ],
  1412. "_prefab": {
  1413. "__id__": 37
  1414. },
  1415. "_opacity": 255,
  1416. "_color": {
  1417. "__type__": "cc.Color",
  1418. "r": 255,
  1419. "g": 255,
  1420. "b": 255,
  1421. "a": 255
  1422. },
  1423. "_contentSize": {
  1424. "__type__": "cc.Size",
  1425. "width": 51,
  1426. "height": 50
  1427. },
  1428. "_anchorPoint": {
  1429. "__type__": "cc.Vec2",
  1430. "x": 0.5,
  1431. "y": 0.5
  1432. },
  1433. "_trs": {
  1434. "__type__": "TypedArray",
  1435. "ctor": "Float64Array",
  1436. "array": [
  1437. 0,
  1438. 0,
  1439. 0,
  1440. 0,
  1441. 0,
  1442. 0,
  1443. 1,
  1444. 0.6,
  1445. 0.6,
  1446. 1
  1447. ]
  1448. },
  1449. "_eulerAngles": {
  1450. "__type__": "cc.Vec3",
  1451. "x": 0,
  1452. "y": 0,
  1453. "z": 0
  1454. },
  1455. "_skewX": 0,
  1456. "_skewY": 0,
  1457. "_is3DNode": false,
  1458. "_groupIndex": 0,
  1459. "groupIndex": 0,
  1460. "_id": ""
  1461. },
  1462. {
  1463. "__type__": "cc.Sprite",
  1464. "_name": "",
  1465. "_objFlags": 0,
  1466. "node": {
  1467. "__id__": 35
  1468. },
  1469. "_enabled": true,
  1470. "_materials": [
  1471. {
  1472. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1473. }
  1474. ],
  1475. "_srcBlendFactor": 770,
  1476. "_dstBlendFactor": 771,
  1477. "_spriteFrame": {
  1478. "__uuid__": "88e472a0-0849-4af9-a65b-7891928a24dd"
  1479. },
  1480. "_type": 0,
  1481. "_sizeMode": 1,
  1482. "_fillType": 0,
  1483. "_fillCenter": {
  1484. "__type__": "cc.Vec2",
  1485. "x": 0,
  1486. "y": 0
  1487. },
  1488. "_fillStart": 0,
  1489. "_fillRange": 0,
  1490. "_isTrimmedMode": true,
  1491. "_atlas": null,
  1492. "_id": ""
  1493. },
  1494. {
  1495. "__type__": "cc.PrefabInfo",
  1496. "root": {
  1497. "__id__": 1
  1498. },
  1499. "asset": {
  1500. "__id__": 0
  1501. },
  1502. "fileId": "7aNI8VVF1D6J5Shi1Kgoqt",
  1503. "sync": false
  1504. },
  1505. {
  1506. "__type__": "cc.Node",
  1507. "_name": "star",
  1508. "_objFlags": 0,
  1509. "_parent": {
  1510. "__id__": 34
  1511. },
  1512. "_children": [],
  1513. "_active": false,
  1514. "_components": [
  1515. {
  1516. "__id__": 39
  1517. }
  1518. ],
  1519. "_prefab": {
  1520. "__id__": 40
  1521. },
  1522. "_opacity": 255,
  1523. "_color": {
  1524. "__type__": "cc.Color",
  1525. "r": 255,
  1526. "g": 255,
  1527. "b": 255,
  1528. "a": 255
  1529. },
  1530. "_contentSize": {
  1531. "__type__": "cc.Size",
  1532. "width": 51,
  1533. "height": 50
  1534. },
  1535. "_anchorPoint": {
  1536. "__type__": "cc.Vec2",
  1537. "x": 0.5,
  1538. "y": 0.5
  1539. },
  1540. "_trs": {
  1541. "__type__": "TypedArray",
  1542. "ctor": "Float64Array",
  1543. "array": [
  1544. -20.60000000000001,
  1545. 0,
  1546. 0,
  1547. 0,
  1548. 0,
  1549. 0,
  1550. 1,
  1551. 0.6,
  1552. 0.6,
  1553. 1
  1554. ]
  1555. },
  1556. "_eulerAngles": {
  1557. "__type__": "cc.Vec3",
  1558. "x": 0,
  1559. "y": 0,
  1560. "z": 0
  1561. },
  1562. "_skewX": 0,
  1563. "_skewY": 0,
  1564. "_is3DNode": false,
  1565. "_groupIndex": 0,
  1566. "groupIndex": 0,
  1567. "_id": ""
  1568. },
  1569. {
  1570. "__type__": "cc.Sprite",
  1571. "_name": "",
  1572. "_objFlags": 0,
  1573. "node": {
  1574. "__id__": 38
  1575. },
  1576. "_enabled": true,
  1577. "_materials": [
  1578. {
  1579. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1580. }
  1581. ],
  1582. "_srcBlendFactor": 770,
  1583. "_dstBlendFactor": 771,
  1584. "_spriteFrame": {
  1585. "__uuid__": "88e472a0-0849-4af9-a65b-7891928a24dd"
  1586. },
  1587. "_type": 0,
  1588. "_sizeMode": 1,
  1589. "_fillType": 0,
  1590. "_fillCenter": {
  1591. "__type__": "cc.Vec2",
  1592. "x": 0,
  1593. "y": 0
  1594. },
  1595. "_fillStart": 0,
  1596. "_fillRange": 0,
  1597. "_isTrimmedMode": true,
  1598. "_atlas": null,
  1599. "_id": ""
  1600. },
  1601. {
  1602. "__type__": "cc.PrefabInfo",
  1603. "root": {
  1604. "__id__": 1
  1605. },
  1606. "asset": {
  1607. "__id__": 0
  1608. },
  1609. "fileId": "03DcLlWDdMPbVxnvsLOVLV",
  1610. "sync": false
  1611. },
  1612. {
  1613. "__type__": "cc.Node",
  1614. "_name": "star",
  1615. "_objFlags": 0,
  1616. "_parent": {
  1617. "__id__": 34
  1618. },
  1619. "_children": [],
  1620. "_active": false,
  1621. "_components": [
  1622. {
  1623. "__id__": 42
  1624. }
  1625. ],
  1626. "_prefab": {
  1627. "__id__": 43
  1628. },
  1629. "_opacity": 255,
  1630. "_color": {
  1631. "__type__": "cc.Color",
  1632. "r": 255,
  1633. "g": 255,
  1634. "b": 255,
  1635. "a": 255
  1636. },
  1637. "_contentSize": {
  1638. "__type__": "cc.Size",
  1639. "width": 51,
  1640. "height": 50
  1641. },
  1642. "_anchorPoint": {
  1643. "__type__": "cc.Vec2",
  1644. "x": 0.5,
  1645. "y": 0.5
  1646. },
  1647. "_trs": {
  1648. "__type__": "TypedArray",
  1649. "ctor": "Float64Array",
  1650. "array": [
  1651. -1.0658141036401503e-14,
  1652. 0,
  1653. 0,
  1654. 0,
  1655. 0,
  1656. 0,
  1657. 1,
  1658. 0.6,
  1659. 0.6,
  1660. 1
  1661. ]
  1662. },
  1663. "_eulerAngles": {
  1664. "__type__": "cc.Vec3",
  1665. "x": 0,
  1666. "y": 0,
  1667. "z": 0
  1668. },
  1669. "_skewX": 0,
  1670. "_skewY": 0,
  1671. "_is3DNode": false,
  1672. "_groupIndex": 0,
  1673. "groupIndex": 0,
  1674. "_id": ""
  1675. },
  1676. {
  1677. "__type__": "cc.Sprite",
  1678. "_name": "",
  1679. "_objFlags": 0,
  1680. "node": {
  1681. "__id__": 41
  1682. },
  1683. "_enabled": true,
  1684. "_materials": [
  1685. {
  1686. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1687. }
  1688. ],
  1689. "_srcBlendFactor": 770,
  1690. "_dstBlendFactor": 771,
  1691. "_spriteFrame": {
  1692. "__uuid__": "88e472a0-0849-4af9-a65b-7891928a24dd"
  1693. },
  1694. "_type": 0,
  1695. "_sizeMode": 1,
  1696. "_fillType": 0,
  1697. "_fillCenter": {
  1698. "__type__": "cc.Vec2",
  1699. "x": 0,
  1700. "y": 0
  1701. },
  1702. "_fillStart": 0,
  1703. "_fillRange": 0,
  1704. "_isTrimmedMode": true,
  1705. "_atlas": null,
  1706. "_id": ""
  1707. },
  1708. {
  1709. "__type__": "cc.PrefabInfo",
  1710. "root": {
  1711. "__id__": 1
  1712. },
  1713. "asset": {
  1714. "__id__": 0
  1715. },
  1716. "fileId": "9288FOH89CHKT34GYm9GNx",
  1717. "sync": false
  1718. },
  1719. {
  1720. "__type__": "cc.Node",
  1721. "_name": "star",
  1722. "_objFlags": 0,
  1723. "_parent": {
  1724. "__id__": 34
  1725. },
  1726. "_children": [],
  1727. "_active": false,
  1728. "_components": [
  1729. {
  1730. "__id__": 45
  1731. }
  1732. ],
  1733. "_prefab": {
  1734. "__id__": 46
  1735. },
  1736. "_opacity": 255,
  1737. "_color": {
  1738. "__type__": "cc.Color",
  1739. "r": 255,
  1740. "g": 255,
  1741. "b": 255,
  1742. "a": 255
  1743. },
  1744. "_contentSize": {
  1745. "__type__": "cc.Size",
  1746. "width": 51,
  1747. "height": 50
  1748. },
  1749. "_anchorPoint": {
  1750. "__type__": "cc.Vec2",
  1751. "x": 0.5,
  1752. "y": 0.5
  1753. },
  1754. "_trs": {
  1755. "__type__": "TypedArray",
  1756. "ctor": "Float64Array",
  1757. "array": [
  1758. 20.599999999999987,
  1759. 0,
  1760. 0,
  1761. 0,
  1762. 0,
  1763. 0,
  1764. 1,
  1765. 0.6,
  1766. 0.6,
  1767. 1
  1768. ]
  1769. },
  1770. "_eulerAngles": {
  1771. "__type__": "cc.Vec3",
  1772. "x": 0,
  1773. "y": 0,
  1774. "z": 0
  1775. },
  1776. "_skewX": 0,
  1777. "_skewY": 0,
  1778. "_is3DNode": false,
  1779. "_groupIndex": 0,
  1780. "groupIndex": 0,
  1781. "_id": ""
  1782. },
  1783. {
  1784. "__type__": "cc.Sprite",
  1785. "_name": "",
  1786. "_objFlags": 0,
  1787. "node": {
  1788. "__id__": 44
  1789. },
  1790. "_enabled": true,
  1791. "_materials": [
  1792. {
  1793. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1794. }
  1795. ],
  1796. "_srcBlendFactor": 770,
  1797. "_dstBlendFactor": 771,
  1798. "_spriteFrame": {
  1799. "__uuid__": "88e472a0-0849-4af9-a65b-7891928a24dd"
  1800. },
  1801. "_type": 0,
  1802. "_sizeMode": 1,
  1803. "_fillType": 0,
  1804. "_fillCenter": {
  1805. "__type__": "cc.Vec2",
  1806. "x": 0,
  1807. "y": 0
  1808. },
  1809. "_fillStart": 0,
  1810. "_fillRange": 0,
  1811. "_isTrimmedMode": true,
  1812. "_atlas": null,
  1813. "_id": ""
  1814. },
  1815. {
  1816. "__type__": "cc.PrefabInfo",
  1817. "root": {
  1818. "__id__": 1
  1819. },
  1820. "asset": {
  1821. "__id__": 0
  1822. },
  1823. "fileId": "e4z0LNI3lOn4FnDTitS10B",
  1824. "sync": false
  1825. },
  1826. {
  1827. "__type__": "cc.Node",
  1828. "_name": "star",
  1829. "_objFlags": 0,
  1830. "_parent": {
  1831. "__id__": 34
  1832. },
  1833. "_children": [],
  1834. "_active": false,
  1835. "_components": [
  1836. {
  1837. "__id__": 48
  1838. }
  1839. ],
  1840. "_prefab": {
  1841. "__id__": 49
  1842. },
  1843. "_opacity": 255,
  1844. "_color": {
  1845. "__type__": "cc.Color",
  1846. "r": 255,
  1847. "g": 255,
  1848. "b": 255,
  1849. "a": 255
  1850. },
  1851. "_contentSize": {
  1852. "__type__": "cc.Size",
  1853. "width": 51,
  1854. "height": 50
  1855. },
  1856. "_anchorPoint": {
  1857. "__type__": "cc.Vec2",
  1858. "x": 0.5,
  1859. "y": 0.5
  1860. },
  1861. "_trs": {
  1862. "__type__": "TypedArray",
  1863. "ctor": "Float64Array",
  1864. "array": [
  1865. 41.19999999999998,
  1866. 0,
  1867. 0,
  1868. 0,
  1869. 0,
  1870. 0,
  1871. 1,
  1872. 0.6,
  1873. 0.6,
  1874. 1
  1875. ]
  1876. },
  1877. "_eulerAngles": {
  1878. "__type__": "cc.Vec3",
  1879. "x": 0,
  1880. "y": 0,
  1881. "z": 0
  1882. },
  1883. "_skewX": 0,
  1884. "_skewY": 0,
  1885. "_is3DNode": false,
  1886. "_groupIndex": 0,
  1887. "groupIndex": 0,
  1888. "_id": ""
  1889. },
  1890. {
  1891. "__type__": "cc.Sprite",
  1892. "_name": "",
  1893. "_objFlags": 0,
  1894. "node": {
  1895. "__id__": 47
  1896. },
  1897. "_enabled": true,
  1898. "_materials": [
  1899. {
  1900. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1901. }
  1902. ],
  1903. "_srcBlendFactor": 770,
  1904. "_dstBlendFactor": 771,
  1905. "_spriteFrame": {
  1906. "__uuid__": "88e472a0-0849-4af9-a65b-7891928a24dd"
  1907. },
  1908. "_type": 0,
  1909. "_sizeMode": 1,
  1910. "_fillType": 0,
  1911. "_fillCenter": {
  1912. "__type__": "cc.Vec2",
  1913. "x": 0,
  1914. "y": 0
  1915. },
  1916. "_fillStart": 0,
  1917. "_fillRange": 0,
  1918. "_isTrimmedMode": true,
  1919. "_atlas": null,
  1920. "_id": ""
  1921. },
  1922. {
  1923. "__type__": "cc.PrefabInfo",
  1924. "root": {
  1925. "__id__": 1
  1926. },
  1927. "asset": {
  1928. "__id__": 0
  1929. },
  1930. "fileId": "44vGjGnIBOCoAswyWuFHVz",
  1931. "sync": false
  1932. },
  1933. {
  1934. "__type__": "cc.Layout",
  1935. "_name": "",
  1936. "_objFlags": 0,
  1937. "node": {
  1938. "__id__": 34
  1939. },
  1940. "_enabled": true,
  1941. "_layoutSize": {
  1942. "__type__": "cc.Size",
  1943. "width": 30.599999999999998,
  1944. "height": 100
  1945. },
  1946. "_resize": 1,
  1947. "_N$layoutType": 1,
  1948. "_N$cellSize": {
  1949. "__type__": "cc.Size",
  1950. "width": 40,
  1951. "height": 40
  1952. },
  1953. "_N$startAxis": 0,
  1954. "_N$paddingLeft": 0,
  1955. "_N$paddingRight": 0,
  1956. "_N$paddingTop": 0,
  1957. "_N$paddingBottom": 0,
  1958. "_N$spacingX": -10,
  1959. "_N$spacingY": 0,
  1960. "_N$verticalDirection": 1,
  1961. "_N$horizontalDirection": 0,
  1962. "_N$affectedByScale": true,
  1963. "_id": ""
  1964. },
  1965. {
  1966. "__type__": "cc.PrefabInfo",
  1967. "root": {
  1968. "__id__": 1
  1969. },
  1970. "asset": {
  1971. "__id__": 0
  1972. },
  1973. "fileId": "92Ni4/mXRIm6ZFiXIkjVUX",
  1974. "sync": false
  1975. },
  1976. {
  1977. "__type__": "cc.Node",
  1978. "_name": "cost",
  1979. "_objFlags": 0,
  1980. "_parent": {
  1981. "__id__": 17
  1982. },
  1983. "_children": [
  1984. {
  1985. "__id__": 53
  1986. }
  1987. ],
  1988. "_active": true,
  1989. "_components": [
  1990. {
  1991. "__id__": 57
  1992. }
  1993. ],
  1994. "_prefab": {
  1995. "__id__": 58
  1996. },
  1997. "_opacity": 255,
  1998. "_color": {
  1999. "__type__": "cc.Color",
  2000. "r": 255,
  2001. "g": 255,
  2002. "b": 255,
  2003. "a": 255
  2004. },
  2005. "_contentSize": {
  2006. "__type__": "cc.Size",
  2007. "width": 65,
  2008. "height": 74
  2009. },
  2010. "_anchorPoint": {
  2011. "__type__": "cc.Vec2",
  2012. "x": 0.5,
  2013. "y": 0.5
  2014. },
  2015. "_trs": {
  2016. "__type__": "TypedArray",
  2017. "ctor": "Float64Array",
  2018. "array": [
  2019. -71.928,
  2020. -162,
  2021. 0,
  2022. 0,
  2023. 0,
  2024. 0,
  2025. 1,
  2026. 1,
  2027. 1,
  2028. 1
  2029. ]
  2030. },
  2031. "_eulerAngles": {
  2032. "__type__": "cc.Vec3",
  2033. "x": 0,
  2034. "y": 0,
  2035. "z": 0
  2036. },
  2037. "_skewX": 0,
  2038. "_skewY": 0,
  2039. "_is3DNode": false,
  2040. "_groupIndex": 0,
  2041. "groupIndex": 0,
  2042. "_id": ""
  2043. },
  2044. {
  2045. "__type__": "cc.Node",
  2046. "_name": "lb",
  2047. "_objFlags": 0,
  2048. "_parent": {
  2049. "__id__": 52
  2050. },
  2051. "_children": [],
  2052. "_active": true,
  2053. "_components": [
  2054. {
  2055. "__id__": 54
  2056. },
  2057. {
  2058. "__id__": 55
  2059. }
  2060. ],
  2061. "_prefab": {
  2062. "__id__": 56
  2063. },
  2064. "_opacity": 255,
  2065. "_color": {
  2066. "__type__": "cc.Color",
  2067. "r": 255,
  2068. "g": 255,
  2069. "b": 255,
  2070. "a": 255
  2071. },
  2072. "_contentSize": {
  2073. "__type__": "cc.Size",
  2074. "width": 40.84,
  2075. "height": 60.4
  2076. },
  2077. "_anchorPoint": {
  2078. "__type__": "cc.Vec2",
  2079. "x": 0.5,
  2080. "y": 0.5
  2081. },
  2082. "_trs": {
  2083. "__type__": "TypedArray",
  2084. "ctor": "Float64Array",
  2085. "array": [
  2086. 0,
  2087. 0,
  2088. 0,
  2089. 0,
  2090. 0,
  2091. 0,
  2092. 1,
  2093. 0.83333,
  2094. 0.83333,
  2095. 0.83333
  2096. ]
  2097. },
  2098. "_eulerAngles": {
  2099. "__type__": "cc.Vec3",
  2100. "x": 0,
  2101. "y": 0,
  2102. "z": 0
  2103. },
  2104. "_skewX": 0,
  2105. "_skewY": 0,
  2106. "_is3DNode": false,
  2107. "_groupIndex": 0,
  2108. "groupIndex": 0,
  2109. "_id": ""
  2110. },
  2111. {
  2112. "__type__": "cc.Label",
  2113. "_name": "",
  2114. "_objFlags": 0,
  2115. "node": {
  2116. "__id__": 53
  2117. },
  2118. "_enabled": true,
  2119. "_materials": [
  2120. {
  2121. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2122. }
  2123. ],
  2124. "_srcBlendFactor": 770,
  2125. "_dstBlendFactor": 771,
  2126. "_string": "3",
  2127. "_N$string": "3",
  2128. "_fontSize": 48,
  2129. "_lineHeight": 40,
  2130. "_enableWrapText": true,
  2131. "_N$file": {
  2132. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2133. },
  2134. "_isSystemFontUsed": false,
  2135. "_spacingX": 0,
  2136. "_batchAsBitmap": false,
  2137. "_styleFlags": 0,
  2138. "_underlineHeight": 0,
  2139. "_N$horizontalAlign": 1,
  2140. "_N$verticalAlign": 1,
  2141. "_N$fontFamily": "Arial",
  2142. "_N$overflow": 0,
  2143. "_N$cacheMode": 0,
  2144. "_id": ""
  2145. },
  2146. {
  2147. "__type__": "cc.LabelOutline",
  2148. "_name": "",
  2149. "_objFlags": 0,
  2150. "node": {
  2151. "__id__": 53
  2152. },
  2153. "_enabled": true,
  2154. "_color": {
  2155. "__type__": "cc.Color",
  2156. "r": 38,
  2157. "g": 17,
  2158. "b": 12,
  2159. "a": 255
  2160. },
  2161. "_width": 5,
  2162. "_id": ""
  2163. },
  2164. {
  2165. "__type__": "cc.PrefabInfo",
  2166. "root": {
  2167. "__id__": 53
  2168. },
  2169. "asset": {
  2170. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  2171. },
  2172. "fileId": "4a0sI2tIJAl6BchcOKGLg0",
  2173. "sync": false
  2174. },
  2175. {
  2176. "__type__": "cc.Sprite",
  2177. "_name": "",
  2178. "_objFlags": 0,
  2179. "node": {
  2180. "__id__": 52
  2181. },
  2182. "_enabled": true,
  2183. "_materials": [
  2184. {
  2185. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2186. }
  2187. ],
  2188. "_srcBlendFactor": 770,
  2189. "_dstBlendFactor": 771,
  2190. "_spriteFrame": {
  2191. "__uuid__": "c203fd19-2f75-4c2f-9d64-e479205bb771"
  2192. },
  2193. "_type": 0,
  2194. "_sizeMode": 1,
  2195. "_fillType": 0,
  2196. "_fillCenter": {
  2197. "__type__": "cc.Vec2",
  2198. "x": 0,
  2199. "y": 0
  2200. },
  2201. "_fillStart": 0,
  2202. "_fillRange": 0,
  2203. "_isTrimmedMode": true,
  2204. "_atlas": null,
  2205. "_id": ""
  2206. },
  2207. {
  2208. "__type__": "cc.PrefabInfo",
  2209. "root": {
  2210. "__id__": 1
  2211. },
  2212. "asset": {
  2213. "__id__": 0
  2214. },
  2215. "fileId": "efMfDLDNtB3pKpXIDgFC4W",
  2216. "sync": false
  2217. },
  2218. {
  2219. "__type__": "cc.PrefabInfo",
  2220. "root": {
  2221. "__id__": 1
  2222. },
  2223. "asset": {
  2224. "__id__": 0
  2225. },
  2226. "fileId": "d4s45DFklJeKd/m3Wv6tVr",
  2227. "sync": false
  2228. },
  2229. {
  2230. "__type__": "cc.Node",
  2231. "_name": "lock",
  2232. "_objFlags": 0,
  2233. "_parent": {
  2234. "__id__": 13
  2235. },
  2236. "_children": [
  2237. {
  2238. "__id__": 61
  2239. },
  2240. {
  2241. "__id__": 64
  2242. }
  2243. ],
  2244. "_active": true,
  2245. "_components": [],
  2246. "_prefab": {
  2247. "__id__": 69
  2248. },
  2249. "_opacity": 255,
  2250. "_color": {
  2251. "__type__": "cc.Color",
  2252. "r": 255,
  2253. "g": 255,
  2254. "b": 255,
  2255. "a": 255
  2256. },
  2257. "_contentSize": {
  2258. "__type__": "cc.Size",
  2259. "width": 0,
  2260. "height": 0
  2261. },
  2262. "_anchorPoint": {
  2263. "__type__": "cc.Vec2",
  2264. "x": 0.5,
  2265. "y": 0.5
  2266. },
  2267. "_trs": {
  2268. "__type__": "TypedArray",
  2269. "ctor": "Float64Array",
  2270. "array": [
  2271. 0,
  2272. 0,
  2273. 0,
  2274. 0,
  2275. 0,
  2276. 0,
  2277. 1,
  2278. 1,
  2279. 1,
  2280. 1
  2281. ]
  2282. },
  2283. "_eulerAngles": {
  2284. "__type__": "cc.Vec3",
  2285. "x": 0,
  2286. "y": 0,
  2287. "z": 0
  2288. },
  2289. "_skewX": 0,
  2290. "_skewY": 0,
  2291. "_is3DNode": false,
  2292. "_groupIndex": 0,
  2293. "groupIndex": 0,
  2294. "_id": ""
  2295. },
  2296. {
  2297. "__type__": "cc.Node",
  2298. "_name": "lock_1",
  2299. "_objFlags": 0,
  2300. "_parent": {
  2301. "__id__": 60
  2302. },
  2303. "_children": [],
  2304. "_active": true,
  2305. "_components": [
  2306. {
  2307. "__id__": 62
  2308. }
  2309. ],
  2310. "_prefab": {
  2311. "__id__": 63
  2312. },
  2313. "_opacity": 255,
  2314. "_color": {
  2315. "__type__": "cc.Color",
  2316. "r": 255,
  2317. "g": 255,
  2318. "b": 255,
  2319. "a": 255
  2320. },
  2321. "_contentSize": {
  2322. "__type__": "cc.Size",
  2323. "width": 86,
  2324. "height": 101
  2325. },
  2326. "_anchorPoint": {
  2327. "__type__": "cc.Vec2",
  2328. "x": 0.5,
  2329. "y": 0.5
  2330. },
  2331. "_trs": {
  2332. "__type__": "TypedArray",
  2333. "ctor": "Float64Array",
  2334. "array": [
  2335. 0,
  2336. -56.372,
  2337. 0,
  2338. 0,
  2339. 0,
  2340. 0,
  2341. 1,
  2342. 1,
  2343. 1,
  2344. 1
  2345. ]
  2346. },
  2347. "_eulerAngles": {
  2348. "__type__": "cc.Vec3",
  2349. "x": 0,
  2350. "y": 0,
  2351. "z": 0
  2352. },
  2353. "_skewX": 0,
  2354. "_skewY": 0,
  2355. "_is3DNode": false,
  2356. "_groupIndex": 0,
  2357. "groupIndex": 0,
  2358. "_id": ""
  2359. },
  2360. {
  2361. "__type__": "cc.Sprite",
  2362. "_name": "",
  2363. "_objFlags": 0,
  2364. "node": {
  2365. "__id__": 61
  2366. },
  2367. "_enabled": true,
  2368. "_materials": [
  2369. {
  2370. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2371. }
  2372. ],
  2373. "_srcBlendFactor": 770,
  2374. "_dstBlendFactor": 771,
  2375. "_spriteFrame": {
  2376. "__uuid__": "954cc19b-81e3-49ef-94ce-3636e473a277"
  2377. },
  2378. "_type": 0,
  2379. "_sizeMode": 1,
  2380. "_fillType": 0,
  2381. "_fillCenter": {
  2382. "__type__": "cc.Vec2",
  2383. "x": 0,
  2384. "y": 0
  2385. },
  2386. "_fillStart": 0,
  2387. "_fillRange": 0,
  2388. "_isTrimmedMode": true,
  2389. "_atlas": null,
  2390. "_id": ""
  2391. },
  2392. {
  2393. "__type__": "cc.PrefabInfo",
  2394. "root": {
  2395. "__id__": 1
  2396. },
  2397. "asset": {
  2398. "__id__": 0
  2399. },
  2400. "fileId": "0fJGF9tFNIVqXLhqy1pDik",
  2401. "sync": false
  2402. },
  2403. {
  2404. "__type__": "cc.Node",
  2405. "_name": "lb",
  2406. "_objFlags": 0,
  2407. "_parent": {
  2408. "__id__": 60
  2409. },
  2410. "_children": [],
  2411. "_active": true,
  2412. "_components": [
  2413. {
  2414. "__id__": 65
  2415. },
  2416. {
  2417. "__id__": 66
  2418. },
  2419. {
  2420. "__id__": 67
  2421. }
  2422. ],
  2423. "_prefab": {
  2424. "__id__": 68
  2425. },
  2426. "_opacity": 255,
  2427. "_color": {
  2428. "__type__": "cc.Color",
  2429. "r": 255,
  2430. "g": 255,
  2431. "b": 255,
  2432. "a": 255
  2433. },
  2434. "_contentSize": {
  2435. "__type__": "cc.Size",
  2436. "width": 300,
  2437. "height": 56.4
  2438. },
  2439. "_anchorPoint": {
  2440. "__type__": "cc.Vec2",
  2441. "x": 0.5,
  2442. "y": 0.5
  2443. },
  2444. "_trs": {
  2445. "__type__": "TypedArray",
  2446. "ctor": "Float64Array",
  2447. "array": [
  2448. 0,
  2449. 64.062,
  2450. 0,
  2451. 0,
  2452. 0,
  2453. 0,
  2454. 1,
  2455. 1,
  2456. 1,
  2457. 1
  2458. ]
  2459. },
  2460. "_eulerAngles": {
  2461. "__type__": "cc.Vec3",
  2462. "x": 0,
  2463. "y": 0,
  2464. "z": 0
  2465. },
  2466. "_skewX": 0,
  2467. "_skewY": 0,
  2468. "_is3DNode": false,
  2469. "_groupIndex": 0,
  2470. "groupIndex": 0,
  2471. "_id": ""
  2472. },
  2473. {
  2474. "__type__": "cc.Label",
  2475. "_name": "",
  2476. "_objFlags": 0,
  2477. "node": {
  2478. "__id__": 64
  2479. },
  2480. "_enabled": true,
  2481. "_materials": [
  2482. {
  2483. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2484. }
  2485. ],
  2486. "_srcBlendFactor": 770,
  2487. "_dstBlendFactor": 771,
  2488. "_string": "Lv.1 Unlock",
  2489. "_N$string": "Lv.1 Unlock",
  2490. "_fontSize": 36,
  2491. "_lineHeight": 40,
  2492. "_enableWrapText": true,
  2493. "_N$file": {
  2494. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2495. },
  2496. "_isSystemFontUsed": false,
  2497. "_spacingX": 0,
  2498. "_batchAsBitmap": false,
  2499. "_styleFlags": 0,
  2500. "_underlineHeight": 0,
  2501. "_N$horizontalAlign": 1,
  2502. "_N$verticalAlign": 1,
  2503. "_N$fontFamily": "Arial",
  2504. "_N$overflow": 3,
  2505. "_N$cacheMode": 0,
  2506. "_id": ""
  2507. },
  2508. {
  2509. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2510. "_name": "",
  2511. "_objFlags": 0,
  2512. "node": {
  2513. "__id__": 64
  2514. },
  2515. "_enabled": true,
  2516. "_englishCase": 3,
  2517. "i18n_string": "t23",
  2518. "i18n_params": [
  2519. "1"
  2520. ],
  2521. "_addColon": false,
  2522. "_id": ""
  2523. },
  2524. {
  2525. "__type__": "cc.LabelOutline",
  2526. "_name": "",
  2527. "_objFlags": 0,
  2528. "node": {
  2529. "__id__": 64
  2530. },
  2531. "_enabled": true,
  2532. "_color": {
  2533. "__type__": "cc.Color",
  2534. "r": 38,
  2535. "g": 17,
  2536. "b": 12,
  2537. "a": 255
  2538. },
  2539. "_width": 3,
  2540. "_id": ""
  2541. },
  2542. {
  2543. "__type__": "cc.PrefabInfo",
  2544. "root": {
  2545. "__id__": 1
  2546. },
  2547. "asset": {
  2548. "__id__": 0
  2549. },
  2550. "fileId": "96mPZoA2ZAlbLdxsf1VZPj",
  2551. "sync": false
  2552. },
  2553. {
  2554. "__type__": "cc.PrefabInfo",
  2555. "root": {
  2556. "__id__": 1
  2557. },
  2558. "asset": {
  2559. "__id__": 0
  2560. },
  2561. "fileId": "41hzw9wCZGeaGP81hMVXV0",
  2562. "sync": false
  2563. },
  2564. {
  2565. "__type__": "cc.Button",
  2566. "_name": "",
  2567. "_objFlags": 0,
  2568. "node": {
  2569. "__id__": 13
  2570. },
  2571. "_enabled": true,
  2572. "_normalMaterial": null,
  2573. "_grayMaterial": null,
  2574. "duration": 0.1,
  2575. "zoomScale": 1.2,
  2576. "clickEvents": [
  2577. {
  2578. "__id__": 71
  2579. }
  2580. ],
  2581. "_N$interactable": true,
  2582. "_N$enableAutoGrayEffect": false,
  2583. "_N$transition": 0,
  2584. "transition": 0,
  2585. "_N$normalColor": {
  2586. "__type__": "cc.Color",
  2587. "r": 255,
  2588. "g": 255,
  2589. "b": 255,
  2590. "a": 255
  2591. },
  2592. "_N$pressedColor": {
  2593. "__type__": "cc.Color",
  2594. "r": 211,
  2595. "g": 211,
  2596. "b": 211,
  2597. "a": 255
  2598. },
  2599. "pressedColor": {
  2600. "__type__": "cc.Color",
  2601. "r": 211,
  2602. "g": 211,
  2603. "b": 211,
  2604. "a": 255
  2605. },
  2606. "_N$hoverColor": {
  2607. "__type__": "cc.Color",
  2608. "r": 255,
  2609. "g": 255,
  2610. "b": 255,
  2611. "a": 255
  2612. },
  2613. "hoverColor": {
  2614. "__type__": "cc.Color",
  2615. "r": 255,
  2616. "g": 255,
  2617. "b": 255,
  2618. "a": 255
  2619. },
  2620. "_N$disabledColor": {
  2621. "__type__": "cc.Color",
  2622. "r": 124,
  2623. "g": 124,
  2624. "b": 124,
  2625. "a": 255
  2626. },
  2627. "_N$normalSprite": null,
  2628. "_N$pressedSprite": null,
  2629. "pressedSprite": null,
  2630. "_N$hoverSprite": null,
  2631. "hoverSprite": null,
  2632. "_N$disabledSprite": null,
  2633. "_N$target": null,
  2634. "_id": ""
  2635. },
  2636. {
  2637. "__type__": "cc.ClickEvent",
  2638. "target": {
  2639. "__id__": 1
  2640. },
  2641. "component": "",
  2642. "_componentId": "424349zjmhIaKg9ABoHFkZs",
  2643. "handler": "onTeamRoleClick",
  2644. "customEventData": ""
  2645. },
  2646. {
  2647. "__type__": "cc.PrefabInfo",
  2648. "root": {
  2649. "__id__": 1
  2650. },
  2651. "asset": {
  2652. "__id__": 0
  2653. },
  2654. "fileId": "42oHmd4jBPLostC4j6gLZ7",
  2655. "sync": false
  2656. },
  2657. {
  2658. "__type__": "cc.Layout",
  2659. "_name": "",
  2660. "_objFlags": 0,
  2661. "node": {
  2662. "__id__": 12
  2663. },
  2664. "_enabled": true,
  2665. "_layoutSize": {
  2666. "__type__": "cc.Size",
  2667. "width": 1000,
  2668. "height": 800
  2669. },
  2670. "_resize": 0,
  2671. "_N$layoutType": 3,
  2672. "_N$cellSize": {
  2673. "__type__": "cc.Size",
  2674. "width": 40,
  2675. "height": 40
  2676. },
  2677. "_N$startAxis": 0,
  2678. "_N$paddingLeft": 0,
  2679. "_N$paddingRight": 0,
  2680. "_N$paddingTop": 0,
  2681. "_N$paddingBottom": 0,
  2682. "_N$spacingX": 35,
  2683. "_N$spacingY": 10,
  2684. "_N$verticalDirection": 1,
  2685. "_N$horizontalDirection": 0,
  2686. "_N$affectedByScale": false,
  2687. "_id": ""
  2688. },
  2689. {
  2690. "__type__": "cc.PrefabInfo",
  2691. "root": {
  2692. "__id__": 1
  2693. },
  2694. "asset": {
  2695. "__id__": 0
  2696. },
  2697. "fileId": "43YO3XJlFPkYr/52K17O4T",
  2698. "sync": false
  2699. },
  2700. {
  2701. "__type__": "cc.Node",
  2702. "_name": "return",
  2703. "_objFlags": 0,
  2704. "_parent": {
  2705. "__id__": 1
  2706. },
  2707. "_children": [],
  2708. "_active": true,
  2709. "_components": [
  2710. {
  2711. "__id__": 76
  2712. },
  2713. {
  2714. "__id__": 77
  2715. },
  2716. {
  2717. "__id__": 78
  2718. }
  2719. ],
  2720. "_prefab": {
  2721. "__id__": 80
  2722. },
  2723. "_opacity": 255,
  2724. "_color": {
  2725. "__type__": "cc.Color",
  2726. "r": 255,
  2727. "g": 255,
  2728. "b": 255,
  2729. "a": 255
  2730. },
  2731. "_contentSize": {
  2732. "__type__": "cc.Size",
  2733. "width": 106,
  2734. "height": 106
  2735. },
  2736. "_anchorPoint": {
  2737. "__type__": "cc.Vec2",
  2738. "x": 0.5,
  2739. "y": 0.5
  2740. },
  2741. "_trs": {
  2742. "__type__": "TypedArray",
  2743. "ctor": "Float64Array",
  2744. "array": [
  2745. -900,
  2746. 480,
  2747. 0,
  2748. 0,
  2749. 0,
  2750. 0,
  2751. 1,
  2752. 1,
  2753. 1,
  2754. 0
  2755. ]
  2756. },
  2757. "_eulerAngles": {
  2758. "__type__": "cc.Vec3",
  2759. "x": 0,
  2760. "y": 0,
  2761. "z": 0
  2762. },
  2763. "_skewX": 0,
  2764. "_skewY": 0,
  2765. "_is3DNode": false,
  2766. "_groupIndex": 0,
  2767. "groupIndex": 0,
  2768. "_id": ""
  2769. },
  2770. {
  2771. "__type__": "cc.Sprite",
  2772. "_name": "",
  2773. "_objFlags": 0,
  2774. "node": {
  2775. "__id__": 75
  2776. },
  2777. "_enabled": true,
  2778. "_materials": [
  2779. {
  2780. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2781. }
  2782. ],
  2783. "_srcBlendFactor": 770,
  2784. "_dstBlendFactor": 771,
  2785. "_spriteFrame": {
  2786. "__uuid__": "aad0ef4a-c231-4830-bea5-9b59c21d6548"
  2787. },
  2788. "_type": 0,
  2789. "_sizeMode": 1,
  2790. "_fillType": 0,
  2791. "_fillCenter": {
  2792. "__type__": "cc.Vec2",
  2793. "x": 0,
  2794. "y": 0
  2795. },
  2796. "_fillStart": 0,
  2797. "_fillRange": 0,
  2798. "_isTrimmedMode": true,
  2799. "_atlas": null,
  2800. "_id": ""
  2801. },
  2802. {
  2803. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  2804. "_name": "",
  2805. "_objFlags": 0,
  2806. "node": {
  2807. "__id__": 75
  2808. },
  2809. "_enabled": true,
  2810. "openContinuous": true,
  2811. "continuousTime": 0.2,
  2812. "multiTouch": false,
  2813. "_id": ""
  2814. },
  2815. {
  2816. "__type__": "61994AafntNFIbmt1zoyLq+",
  2817. "_name": "",
  2818. "_objFlags": 0,
  2819. "node": {
  2820. "__id__": 75
  2821. },
  2822. "_enabled": true,
  2823. "_normalMaterial": null,
  2824. "_grayMaterial": null,
  2825. "duration": 0.1,
  2826. "zoomScale": 1.2,
  2827. "clickEvents": [
  2828. {
  2829. "__id__": 79
  2830. }
  2831. ],
  2832. "_N$interactable": true,
  2833. "_N$enableAutoGrayEffect": false,
  2834. "_N$transition": 3,
  2835. "transition": 3,
  2836. "_N$normalColor": {
  2837. "__type__": "cc.Color",
  2838. "r": 255,
  2839. "g": 255,
  2840. "b": 255,
  2841. "a": 255
  2842. },
  2843. "_N$pressedColor": {
  2844. "__type__": "cc.Color",
  2845. "r": 211,
  2846. "g": 211,
  2847. "b": 211,
  2848. "a": 255
  2849. },
  2850. "pressedColor": {
  2851. "__type__": "cc.Color",
  2852. "r": 211,
  2853. "g": 211,
  2854. "b": 211,
  2855. "a": 255
  2856. },
  2857. "_N$hoverColor": {
  2858. "__type__": "cc.Color",
  2859. "r": 255,
  2860. "g": 255,
  2861. "b": 255,
  2862. "a": 255
  2863. },
  2864. "hoverColor": {
  2865. "__type__": "cc.Color",
  2866. "r": 255,
  2867. "g": 255,
  2868. "b": 255,
  2869. "a": 255
  2870. },
  2871. "_N$disabledColor": {
  2872. "__type__": "cc.Color",
  2873. "r": 124,
  2874. "g": 124,
  2875. "b": 124,
  2876. "a": 255
  2877. },
  2878. "_N$normalSprite": null,
  2879. "_N$pressedSprite": null,
  2880. "pressedSprite": null,
  2881. "_N$hoverSprite": null,
  2882. "hoverSprite": null,
  2883. "_N$disabledSprite": null,
  2884. "_N$target": null,
  2885. "_id": ""
  2886. },
  2887. {
  2888. "__type__": "cc.ClickEvent",
  2889. "target": {
  2890. "__id__": 1
  2891. },
  2892. "component": "",
  2893. "_componentId": "424349zjmhIaKg9ABoHFkZs",
  2894. "handler": "hide",
  2895. "customEventData": ""
  2896. },
  2897. {
  2898. "__type__": "cc.PrefabInfo",
  2899. "root": {
  2900. "__id__": 1
  2901. },
  2902. "asset": {
  2903. "__id__": 0
  2904. },
  2905. "fileId": "7fIMw04ZVOpKO4+0hUAAX4",
  2906. "sync": false
  2907. },
  2908. {
  2909. "__type__": "cc.Node",
  2910. "_name": "skills",
  2911. "_objFlags": 0,
  2912. "_parent": {
  2913. "__id__": 1
  2914. },
  2915. "_children": [
  2916. {
  2917. "__id__": 82
  2918. }
  2919. ],
  2920. "_active": true,
  2921. "_components": [],
  2922. "_prefab": {
  2923. "__id__": 104
  2924. },
  2925. "_opacity": 255,
  2926. "_color": {
  2927. "__type__": "cc.Color",
  2928. "r": 255,
  2929. "g": 255,
  2930. "b": 255,
  2931. "a": 255
  2932. },
  2933. "_contentSize": {
  2934. "__type__": "cc.Size",
  2935. "width": 0,
  2936. "height": 0
  2937. },
  2938. "_anchorPoint": {
  2939. "__type__": "cc.Vec2",
  2940. "x": 0.5,
  2941. "y": 0.5
  2942. },
  2943. "_trs": {
  2944. "__type__": "TypedArray",
  2945. "ctor": "Float64Array",
  2946. "array": [
  2947. 0,
  2948. 0,
  2949. 0,
  2950. 0,
  2951. 0,
  2952. 0,
  2953. 1,
  2954. 1,
  2955. 1,
  2956. 1
  2957. ]
  2958. },
  2959. "_eulerAngles": {
  2960. "__type__": "cc.Vec3",
  2961. "x": 0,
  2962. "y": 0,
  2963. "z": 0
  2964. },
  2965. "_skewX": 0,
  2966. "_skewY": 0,
  2967. "_is3DNode": false,
  2968. "_groupIndex": 0,
  2969. "groupIndex": 0,
  2970. "_id": ""
  2971. },
  2972. {
  2973. "__type__": "cc.Node",
  2974. "_name": "skill",
  2975. "_objFlags": 0,
  2976. "_parent": {
  2977. "__id__": 81
  2978. },
  2979. "_children": [
  2980. {
  2981. "__id__": 83
  2982. },
  2983. {
  2984. "__id__": 86
  2985. },
  2986. {
  2987. "__id__": 89
  2988. },
  2989. {
  2990. "__id__": 91
  2991. }
  2992. ],
  2993. "_active": true,
  2994. "_components": [
  2995. {
  2996. "__id__": 101
  2997. }
  2998. ],
  2999. "_prefab": {
  3000. "__id__": 103
  3001. },
  3002. "_opacity": 255,
  3003. "_color": {
  3004. "__type__": "cc.Color",
  3005. "r": 255,
  3006. "g": 255,
  3007. "b": 255,
  3008. "a": 255
  3009. },
  3010. "_contentSize": {
  3011. "__type__": "cc.Size",
  3012. "width": 218,
  3013. "height": 221
  3014. },
  3015. "_anchorPoint": {
  3016. "__type__": "cc.Vec2",
  3017. "x": 0.5,
  3018. "y": 0.5
  3019. },
  3020. "_trs": {
  3021. "__type__": "TypedArray",
  3022. "ctor": "Float64Array",
  3023. "array": [
  3024. -47.535,
  3025. -200.243,
  3026. 0,
  3027. 0,
  3028. 0,
  3029. 0,
  3030. 1,
  3031. 1,
  3032. 1,
  3033. 1
  3034. ]
  3035. },
  3036. "_eulerAngles": {
  3037. "__type__": "cc.Vec3",
  3038. "x": 0,
  3039. "y": 0,
  3040. "z": 0
  3041. },
  3042. "_skewX": 0,
  3043. "_skewY": 0,
  3044. "_is3DNode": false,
  3045. "_groupIndex": 0,
  3046. "groupIndex": 0,
  3047. "_id": ""
  3048. },
  3049. {
  3050. "__type__": "cc.Node",
  3051. "_name": "bg",
  3052. "_objFlags": 0,
  3053. "_parent": {
  3054. "__id__": 82
  3055. },
  3056. "_children": [],
  3057. "_active": true,
  3058. "_components": [
  3059. {
  3060. "__id__": 84
  3061. }
  3062. ],
  3063. "_prefab": {
  3064. "__id__": 85
  3065. },
  3066. "_opacity": 255,
  3067. "_color": {
  3068. "__type__": "cc.Color",
  3069. "r": 255,
  3070. "g": 255,
  3071. "b": 255,
  3072. "a": 255
  3073. },
  3074. "_contentSize": {
  3075. "__type__": "cc.Size",
  3076. "width": 218,
  3077. "height": 221
  3078. },
  3079. "_anchorPoint": {
  3080. "__type__": "cc.Vec2",
  3081. "x": 0.5,
  3082. "y": 0.5
  3083. },
  3084. "_trs": {
  3085. "__type__": "TypedArray",
  3086. "ctor": "Float64Array",
  3087. "array": [
  3088. 0,
  3089. 0,
  3090. 0,
  3091. 0,
  3092. 0,
  3093. 0,
  3094. 1,
  3095. 1.1,
  3096. 1.1,
  3097. 1
  3098. ]
  3099. },
  3100. "_eulerAngles": {
  3101. "__type__": "cc.Vec3",
  3102. "x": 0,
  3103. "y": 0,
  3104. "z": 0
  3105. },
  3106. "_skewX": 0,
  3107. "_skewY": 0,
  3108. "_is3DNode": false,
  3109. "_groupIndex": 0,
  3110. "groupIndex": 0,
  3111. "_id": ""
  3112. },
  3113. {
  3114. "__type__": "cc.Sprite",
  3115. "_name": "",
  3116. "_objFlags": 0,
  3117. "node": {
  3118. "__id__": 83
  3119. },
  3120. "_enabled": true,
  3121. "_materials": [
  3122. {
  3123. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3124. }
  3125. ],
  3126. "_srcBlendFactor": 770,
  3127. "_dstBlendFactor": 771,
  3128. "_spriteFrame": {
  3129. "__uuid__": "bcc6880a-b981-4e98-aac7-f823d618346d"
  3130. },
  3131. "_type": 0,
  3132. "_sizeMode": 1,
  3133. "_fillType": 0,
  3134. "_fillCenter": {
  3135. "__type__": "cc.Vec2",
  3136. "x": 0,
  3137. "y": 0
  3138. },
  3139. "_fillStart": 0,
  3140. "_fillRange": 0,
  3141. "_isTrimmedMode": true,
  3142. "_atlas": null,
  3143. "_id": ""
  3144. },
  3145. {
  3146. "__type__": "cc.PrefabInfo",
  3147. "root": {
  3148. "__id__": 1
  3149. },
  3150. "asset": {
  3151. "__id__": 0
  3152. },
  3153. "fileId": "f5GZPIQm1DDpJ7lOnIWYye",
  3154. "sync": false
  3155. },
  3156. {
  3157. "__type__": "cc.Node",
  3158. "_name": "add_2",
  3159. "_objFlags": 0,
  3160. "_parent": {
  3161. "__id__": 82
  3162. },
  3163. "_children": [],
  3164. "_active": true,
  3165. "_components": [
  3166. {
  3167. "__id__": 87
  3168. }
  3169. ],
  3170. "_prefab": {
  3171. "__id__": 88
  3172. },
  3173. "_opacity": 255,
  3174. "_color": {
  3175. "__type__": "cc.Color",
  3176. "r": 255,
  3177. "g": 255,
  3178. "b": 255,
  3179. "a": 255
  3180. },
  3181. "_contentSize": {
  3182. "__type__": "cc.Size",
  3183. "width": 101,
  3184. "height": 101
  3185. },
  3186. "_anchorPoint": {
  3187. "__type__": "cc.Vec2",
  3188. "x": 0.5,
  3189. "y": 0.5
  3190. },
  3191. "_trs": {
  3192. "__type__": "TypedArray",
  3193. "ctor": "Float64Array",
  3194. "array": [
  3195. 0,
  3196. 0,
  3197. 0,
  3198. 0,
  3199. 0,
  3200. 0,
  3201. 1,
  3202. 1,
  3203. 1,
  3204. 1
  3205. ]
  3206. },
  3207. "_eulerAngles": {
  3208. "__type__": "cc.Vec3",
  3209. "x": 0,
  3210. "y": 0,
  3211. "z": 0
  3212. },
  3213. "_skewX": 0,
  3214. "_skewY": 0,
  3215. "_is3DNode": false,
  3216. "_groupIndex": 0,
  3217. "groupIndex": 0,
  3218. "_id": ""
  3219. },
  3220. {
  3221. "__type__": "cc.Sprite",
  3222. "_name": "",
  3223. "_objFlags": 0,
  3224. "node": {
  3225. "__id__": 86
  3226. },
  3227. "_enabled": true,
  3228. "_materials": [
  3229. {
  3230. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3231. }
  3232. ],
  3233. "_srcBlendFactor": 770,
  3234. "_dstBlendFactor": 771,
  3235. "_spriteFrame": {
  3236. "__uuid__": "30fe9ffc-f695-4523-af2a-be031513db72"
  3237. },
  3238. "_type": 0,
  3239. "_sizeMode": 1,
  3240. "_fillType": 0,
  3241. "_fillCenter": {
  3242. "__type__": "cc.Vec2",
  3243. "x": 0,
  3244. "y": 0
  3245. },
  3246. "_fillStart": 0,
  3247. "_fillRange": 0,
  3248. "_isTrimmedMode": true,
  3249. "_atlas": null,
  3250. "_id": ""
  3251. },
  3252. {
  3253. "__type__": "cc.PrefabInfo",
  3254. "root": {
  3255. "__id__": 1
  3256. },
  3257. "asset": {
  3258. "__id__": 0
  3259. },
  3260. "fileId": "25dfjZSuxBhLUvw4bvXEaS",
  3261. "sync": false
  3262. },
  3263. {
  3264. "__type__": "cc.Node",
  3265. "_name": "card",
  3266. "_objFlags": 0,
  3267. "_parent": {
  3268. "__id__": 82
  3269. },
  3270. "_children": [],
  3271. "_active": true,
  3272. "_components": [],
  3273. "_prefab": {
  3274. "__id__": 90
  3275. },
  3276. "_opacity": 255,
  3277. "_color": {
  3278. "__type__": "cc.Color",
  3279. "r": 255,
  3280. "g": 255,
  3281. "b": 255,
  3282. "a": 255
  3283. },
  3284. "_contentSize": {
  3285. "__type__": "cc.Size",
  3286. "width": 0,
  3287. "height": 0
  3288. },
  3289. "_anchorPoint": {
  3290. "__type__": "cc.Vec2",
  3291. "x": 0.5,
  3292. "y": 0.5
  3293. },
  3294. "_trs": {
  3295. "__type__": "TypedArray",
  3296. "ctor": "Float64Array",
  3297. "array": [
  3298. 0,
  3299. 0,
  3300. 0,
  3301. 0,
  3302. 0,
  3303. 0,
  3304. 1,
  3305. 1,
  3306. 1,
  3307. 1
  3308. ]
  3309. },
  3310. "_eulerAngles": {
  3311. "__type__": "cc.Vec3",
  3312. "x": 0,
  3313. "y": 0,
  3314. "z": 0
  3315. },
  3316. "_skewX": 0,
  3317. "_skewY": 0,
  3318. "_is3DNode": false,
  3319. "_groupIndex": 0,
  3320. "groupIndex": 0,
  3321. "_id": ""
  3322. },
  3323. {
  3324. "__type__": "cc.PrefabInfo",
  3325. "root": {
  3326. "__id__": 89
  3327. },
  3328. "asset": {
  3329. "__uuid__": "862030fe-6b71-4cfa-a67b-2e1d62b79604"
  3330. },
  3331. "fileId": "579UkarC1F2qddI9OYGa/y",
  3332. "sync": false
  3333. },
  3334. {
  3335. "__type__": "cc.Node",
  3336. "_name": "lock",
  3337. "_objFlags": 0,
  3338. "_parent": {
  3339. "__id__": 82
  3340. },
  3341. "_children": [
  3342. {
  3343. "__id__": 92
  3344. },
  3345. {
  3346. "__id__": 95
  3347. }
  3348. ],
  3349. "_active": true,
  3350. "_components": [],
  3351. "_prefab": {
  3352. "__id__": 100
  3353. },
  3354. "_opacity": 255,
  3355. "_color": {
  3356. "__type__": "cc.Color",
  3357. "r": 255,
  3358. "g": 255,
  3359. "b": 255,
  3360. "a": 255
  3361. },
  3362. "_contentSize": {
  3363. "__type__": "cc.Size",
  3364. "width": 0,
  3365. "height": 0
  3366. },
  3367. "_anchorPoint": {
  3368. "__type__": "cc.Vec2",
  3369. "x": 0.5,
  3370. "y": 0.5
  3371. },
  3372. "_trs": {
  3373. "__type__": "TypedArray",
  3374. "ctor": "Float64Array",
  3375. "array": [
  3376. 0,
  3377. 0,
  3378. 0,
  3379. 0,
  3380. 0,
  3381. 0,
  3382. 1,
  3383. 1,
  3384. 1,
  3385. 1
  3386. ]
  3387. },
  3388. "_eulerAngles": {
  3389. "__type__": "cc.Vec3",
  3390. "x": 0,
  3391. "y": 0,
  3392. "z": 0
  3393. },
  3394. "_skewX": 0,
  3395. "_skewY": 0,
  3396. "_is3DNode": false,
  3397. "_groupIndex": 0,
  3398. "groupIndex": 0,
  3399. "_id": ""
  3400. },
  3401. {
  3402. "__type__": "cc.Node",
  3403. "_name": "lock_1",
  3404. "_objFlags": 0,
  3405. "_parent": {
  3406. "__id__": 91
  3407. },
  3408. "_children": [],
  3409. "_active": true,
  3410. "_components": [
  3411. {
  3412. "__id__": 93
  3413. }
  3414. ],
  3415. "_prefab": {
  3416. "__id__": 94
  3417. },
  3418. "_opacity": 255,
  3419. "_color": {
  3420. "__type__": "cc.Color",
  3421. "r": 255,
  3422. "g": 255,
  3423. "b": 255,
  3424. "a": 255
  3425. },
  3426. "_contentSize": {
  3427. "__type__": "cc.Size",
  3428. "width": 86,
  3429. "height": 101
  3430. },
  3431. "_anchorPoint": {
  3432. "__type__": "cc.Vec2",
  3433. "x": 0.5,
  3434. "y": 0.5
  3435. },
  3436. "_trs": {
  3437. "__type__": "TypedArray",
  3438. "ctor": "Float64Array",
  3439. "array": [
  3440. 0,
  3441. 0,
  3442. 0,
  3443. 0,
  3444. 0,
  3445. 0,
  3446. 1,
  3447. 1,
  3448. 1,
  3449. 1
  3450. ]
  3451. },
  3452. "_eulerAngles": {
  3453. "__type__": "cc.Vec3",
  3454. "x": 0,
  3455. "y": 0,
  3456. "z": 0
  3457. },
  3458. "_skewX": 0,
  3459. "_skewY": 0,
  3460. "_is3DNode": false,
  3461. "_groupIndex": 0,
  3462. "groupIndex": 0,
  3463. "_id": ""
  3464. },
  3465. {
  3466. "__type__": "cc.Sprite",
  3467. "_name": "",
  3468. "_objFlags": 0,
  3469. "node": {
  3470. "__id__": 92
  3471. },
  3472. "_enabled": true,
  3473. "_materials": [
  3474. {
  3475. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3476. }
  3477. ],
  3478. "_srcBlendFactor": 770,
  3479. "_dstBlendFactor": 771,
  3480. "_spriteFrame": {
  3481. "__uuid__": "954cc19b-81e3-49ef-94ce-3636e473a277"
  3482. },
  3483. "_type": 0,
  3484. "_sizeMode": 1,
  3485. "_fillType": 0,
  3486. "_fillCenter": {
  3487. "__type__": "cc.Vec2",
  3488. "x": 0,
  3489. "y": 0
  3490. },
  3491. "_fillStart": 0,
  3492. "_fillRange": 0,
  3493. "_isTrimmedMode": true,
  3494. "_atlas": null,
  3495. "_id": ""
  3496. },
  3497. {
  3498. "__type__": "cc.PrefabInfo",
  3499. "root": {
  3500. "__id__": 1
  3501. },
  3502. "asset": {
  3503. "__id__": 0
  3504. },
  3505. "fileId": "68Eg0FDsNIub2da7pU0EVR",
  3506. "sync": false
  3507. },
  3508. {
  3509. "__type__": "cc.Node",
  3510. "_name": "lb",
  3511. "_objFlags": 0,
  3512. "_parent": {
  3513. "__id__": 91
  3514. },
  3515. "_children": [],
  3516. "_active": false,
  3517. "_components": [
  3518. {
  3519. "__id__": 96
  3520. },
  3521. {
  3522. "__id__": 97
  3523. },
  3524. {
  3525. "__id__": 98
  3526. }
  3527. ],
  3528. "_prefab": {
  3529. "__id__": 99
  3530. },
  3531. "_opacity": 255,
  3532. "_color": {
  3533. "__type__": "cc.Color",
  3534. "r": 255,
  3535. "g": 255,
  3536. "b": 255,
  3537. "a": 255
  3538. },
  3539. "_contentSize": {
  3540. "__type__": "cc.Size",
  3541. "width": 300,
  3542. "height": 86
  3543. },
  3544. "_anchorPoint": {
  3545. "__type__": "cc.Vec2",
  3546. "x": 0.5,
  3547. "y": 0.5
  3548. },
  3549. "_trs": {
  3550. "__type__": "TypedArray",
  3551. "ctor": "Float64Array",
  3552. "array": [
  3553. 0,
  3554. 64.062,
  3555. 0,
  3556. 0,
  3557. 0,
  3558. 0,
  3559. 1,
  3560. 1,
  3561. 1,
  3562. 1
  3563. ]
  3564. },
  3565. "_eulerAngles": {
  3566. "__type__": "cc.Vec3",
  3567. "x": 0,
  3568. "y": 0,
  3569. "z": 0
  3570. },
  3571. "_skewX": 0,
  3572. "_skewY": 0,
  3573. "_is3DNode": false,
  3574. "_groupIndex": 0,
  3575. "groupIndex": 0,
  3576. "_id": ""
  3577. },
  3578. {
  3579. "__type__": "cc.Label",
  3580. "_name": "",
  3581. "_objFlags": 0,
  3582. "node": {
  3583. "__id__": 95
  3584. },
  3585. "_enabled": true,
  3586. "_materials": [
  3587. null
  3588. ],
  3589. "_srcBlendFactor": 770,
  3590. "_dstBlendFactor": 771,
  3591. "_string": "Castle lv.1 Unlock",
  3592. "_N$string": "Castle lv.1 Unlock",
  3593. "_fontSize": 36,
  3594. "_lineHeight": 40,
  3595. "_enableWrapText": true,
  3596. "_N$file": {
  3597. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3598. },
  3599. "_isSystemFontUsed": false,
  3600. "_spacingX": 0,
  3601. "_batchAsBitmap": false,
  3602. "_styleFlags": 0,
  3603. "_underlineHeight": 0,
  3604. "_N$horizontalAlign": 1,
  3605. "_N$verticalAlign": 1,
  3606. "_N$fontFamily": "Arial",
  3607. "_N$overflow": 3,
  3608. "_N$cacheMode": 0,
  3609. "_id": ""
  3610. },
  3611. {
  3612. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3613. "_name": "",
  3614. "_objFlags": 0,
  3615. "node": {
  3616. "__id__": 95
  3617. },
  3618. "_enabled": true,
  3619. "_englishCase": 0,
  3620. "i18n_string": "t23",
  3621. "i18n_params": [
  3622. "1"
  3623. ],
  3624. "_addColon": false,
  3625. "_id": ""
  3626. },
  3627. {
  3628. "__type__": "cc.LabelOutline",
  3629. "_name": "",
  3630. "_objFlags": 0,
  3631. "node": {
  3632. "__id__": 95
  3633. },
  3634. "_enabled": true,
  3635. "_color": {
  3636. "__type__": "cc.Color",
  3637. "r": 38,
  3638. "g": 17,
  3639. "b": 12,
  3640. "a": 255
  3641. },
  3642. "_width": 3,
  3643. "_id": ""
  3644. },
  3645. {
  3646. "__type__": "cc.PrefabInfo",
  3647. "root": {
  3648. "__id__": 1
  3649. },
  3650. "asset": {
  3651. "__id__": 0
  3652. },
  3653. "fileId": "6fu1zXNRVNRYMXmmc+tfZi",
  3654. "sync": false
  3655. },
  3656. {
  3657. "__type__": "cc.PrefabInfo",
  3658. "root": {
  3659. "__id__": 1
  3660. },
  3661. "asset": {
  3662. "__id__": 0
  3663. },
  3664. "fileId": "fcwd76kB9Iga/Jqfok5Ljn",
  3665. "sync": false
  3666. },
  3667. {
  3668. "__type__": "cc.Button",
  3669. "_name": "",
  3670. "_objFlags": 0,
  3671. "node": {
  3672. "__id__": 82
  3673. },
  3674. "_enabled": true,
  3675. "_normalMaterial": null,
  3676. "_grayMaterial": null,
  3677. "duration": 0.1,
  3678. "zoomScale": 1.2,
  3679. "clickEvents": [
  3680. {
  3681. "__id__": 102
  3682. }
  3683. ],
  3684. "_N$interactable": true,
  3685. "_N$enableAutoGrayEffect": false,
  3686. "_N$transition": 0,
  3687. "transition": 0,
  3688. "_N$normalColor": {
  3689. "__type__": "cc.Color",
  3690. "r": 255,
  3691. "g": 255,
  3692. "b": 255,
  3693. "a": 255
  3694. },
  3695. "_N$pressedColor": {
  3696. "__type__": "cc.Color",
  3697. "r": 211,
  3698. "g": 211,
  3699. "b": 211,
  3700. "a": 255
  3701. },
  3702. "pressedColor": {
  3703. "__type__": "cc.Color",
  3704. "r": 211,
  3705. "g": 211,
  3706. "b": 211,
  3707. "a": 255
  3708. },
  3709. "_N$hoverColor": {
  3710. "__type__": "cc.Color",
  3711. "r": 255,
  3712. "g": 255,
  3713. "b": 255,
  3714. "a": 255
  3715. },
  3716. "hoverColor": {
  3717. "__type__": "cc.Color",
  3718. "r": 255,
  3719. "g": 255,
  3720. "b": 255,
  3721. "a": 255
  3722. },
  3723. "_N$disabledColor": {
  3724. "__type__": "cc.Color",
  3725. "r": 124,
  3726. "g": 124,
  3727. "b": 124,
  3728. "a": 255
  3729. },
  3730. "_N$normalSprite": null,
  3731. "_N$pressedSprite": null,
  3732. "pressedSprite": null,
  3733. "_N$hoverSprite": null,
  3734. "hoverSprite": null,
  3735. "_N$disabledSprite": null,
  3736. "_N$target": null,
  3737. "_id": ""
  3738. },
  3739. {
  3740. "__type__": "cc.ClickEvent",
  3741. "target": {
  3742. "__id__": 1
  3743. },
  3744. "component": "",
  3745. "_componentId": "424349zjmhIaKg9ABoHFkZs",
  3746. "handler": "onTeamCardClick",
  3747. "customEventData": ""
  3748. },
  3749. {
  3750. "__type__": "cc.PrefabInfo",
  3751. "root": {
  3752. "__id__": 1
  3753. },
  3754. "asset": {
  3755. "__id__": 0
  3756. },
  3757. "fileId": "7dMzh+U2hNPYZ1XjAFJTvc",
  3758. "sync": false
  3759. },
  3760. {
  3761. "__type__": "cc.PrefabInfo",
  3762. "root": {
  3763. "__id__": 1
  3764. },
  3765. "asset": {
  3766. "__id__": 0
  3767. },
  3768. "fileId": "ebZPkxnypKmYYx6Us3xc/3",
  3769. "sync": false
  3770. },
  3771. {
  3772. "__type__": "cc.Node",
  3773. "_name": "bar_2",
  3774. "_objFlags": 0,
  3775. "_parent": {
  3776. "__id__": 1
  3777. },
  3778. "_children": [],
  3779. "_active": true,
  3780. "_components": [
  3781. {
  3782. "__id__": 106
  3783. }
  3784. ],
  3785. "_prefab": {
  3786. "__id__": 107
  3787. },
  3788. "_opacity": 255,
  3789. "_color": {
  3790. "__type__": "cc.Color",
  3791. "r": 255,
  3792. "g": 255,
  3793. "b": 255,
  3794. "a": 255
  3795. },
  3796. "_contentSize": {
  3797. "__type__": "cc.Size",
  3798. "width": 666,
  3799. "height": 101
  3800. },
  3801. "_anchorPoint": {
  3802. "__type__": "cc.Vec2",
  3803. "x": 0.5,
  3804. "y": 0.5
  3805. },
  3806. "_trs": {
  3807. "__type__": "TypedArray",
  3808. "ctor": "Float64Array",
  3809. "array": [
  3810. -557.628,
  3811. -429.537,
  3812. 0,
  3813. 0,
  3814. 0,
  3815. 0,
  3816. 1,
  3817. 1,
  3818. 1,
  3819. 1
  3820. ]
  3821. },
  3822. "_eulerAngles": {
  3823. "__type__": "cc.Vec3",
  3824. "x": 0,
  3825. "y": 0,
  3826. "z": 0
  3827. },
  3828. "_skewX": 0,
  3829. "_skewY": 0,
  3830. "_is3DNode": false,
  3831. "_groupIndex": 0,
  3832. "groupIndex": 0,
  3833. "_id": ""
  3834. },
  3835. {
  3836. "__type__": "cc.Sprite",
  3837. "_name": "",
  3838. "_objFlags": 0,
  3839. "node": {
  3840. "__id__": 105
  3841. },
  3842. "_enabled": true,
  3843. "_materials": [
  3844. {
  3845. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3846. }
  3847. ],
  3848. "_srcBlendFactor": 770,
  3849. "_dstBlendFactor": 771,
  3850. "_spriteFrame": {
  3851. "__uuid__": "42f31920-8483-4613-9f40-cb3a6ecab849"
  3852. },
  3853. "_type": 1,
  3854. "_sizeMode": 0,
  3855. "_fillType": 0,
  3856. "_fillCenter": {
  3857. "__type__": "cc.Vec2",
  3858. "x": 0,
  3859. "y": 0
  3860. },
  3861. "_fillStart": 0,
  3862. "_fillRange": 0,
  3863. "_isTrimmedMode": true,
  3864. "_atlas": null,
  3865. "_id": ""
  3866. },
  3867. {
  3868. "__type__": "cc.PrefabInfo",
  3869. "root": {
  3870. "__id__": 1
  3871. },
  3872. "asset": {
  3873. "__id__": 0
  3874. },
  3875. "fileId": "a8fajuil9FGrDGnoYmSck7",
  3876. "sync": false
  3877. },
  3878. {
  3879. "__type__": "cc.Node",
  3880. "_name": "lb",
  3881. "_objFlags": 0,
  3882. "_parent": {
  3883. "__id__": 1
  3884. },
  3885. "_children": [],
  3886. "_active": true,
  3887. "_components": [
  3888. {
  3889. "__id__": 109
  3890. },
  3891. {
  3892. "__id__": 110
  3893. },
  3894. {
  3895. "__id__": 111
  3896. }
  3897. ],
  3898. "_prefab": {
  3899. "__id__": 112
  3900. },
  3901. "_opacity": 255,
  3902. "_color": {
  3903. "__type__": "cc.Color",
  3904. "r": 255,
  3905. "g": 255,
  3906. "b": 255,
  3907. "a": 255
  3908. },
  3909. "_contentSize": {
  3910. "__type__": "cc.Size",
  3911. "width": 148.26,
  3912. "height": 73
  3913. },
  3914. "_anchorPoint": {
  3915. "__type__": "cc.Vec2",
  3916. "x": 0.5,
  3917. "y": 0.5
  3918. },
  3919. "_trs": {
  3920. "__type__": "TypedArray",
  3921. "ctor": "Float64Array",
  3922. "array": [
  3923. -754.979,
  3924. -431.303,
  3925. 0,
  3926. 0,
  3927. 0,
  3928. 0,
  3929. 1,
  3930. 1,
  3931. 1,
  3932. 1
  3933. ]
  3934. },
  3935. "_eulerAngles": {
  3936. "__type__": "cc.Vec3",
  3937. "x": 0,
  3938. "y": 0,
  3939. "z": 0
  3940. },
  3941. "_skewX": 0,
  3942. "_skewY": 0,
  3943. "_is3DNode": false,
  3944. "_groupIndex": 0,
  3945. "groupIndex": 0,
  3946. "_id": ""
  3947. },
  3948. {
  3949. "__type__": "cc.Label",
  3950. "_name": "",
  3951. "_objFlags": 0,
  3952. "node": {
  3953. "__id__": 108
  3954. },
  3955. "_enabled": true,
  3956. "_materials": [
  3957. {
  3958. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3959. }
  3960. ],
  3961. "_srcBlendFactor": 770,
  3962. "_dstBlendFactor": 771,
  3963. "_string": "Power:",
  3964. "_N$string": "Power:",
  3965. "_fontSize": 48,
  3966. "_lineHeight": 50,
  3967. "_enableWrapText": true,
  3968. "_N$file": {
  3969. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3970. },
  3971. "_isSystemFontUsed": false,
  3972. "_spacingX": 0,
  3973. "_batchAsBitmap": false,
  3974. "_styleFlags": 0,
  3975. "_underlineHeight": 0,
  3976. "_N$horizontalAlign": 1,
  3977. "_N$verticalAlign": 1,
  3978. "_N$fontFamily": "Arial",
  3979. "_N$overflow": 0,
  3980. "_N$cacheMode": 0,
  3981. "_id": ""
  3982. },
  3983. {
  3984. "__type__": "cc.LabelOutline",
  3985. "_name": "",
  3986. "_objFlags": 0,
  3987. "node": {
  3988. "__id__": 108
  3989. },
  3990. "_enabled": true,
  3991. "_color": {
  3992. "__type__": "cc.Color",
  3993. "r": 38,
  3994. "g": 17,
  3995. "b": 12,
  3996. "a": 255
  3997. },
  3998. "_width": 5,
  3999. "_id": ""
  4000. },
  4001. {
  4002. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4003. "_name": "",
  4004. "_objFlags": 0,
  4005. "node": {
  4006. "__id__": 108
  4007. },
  4008. "_enabled": true,
  4009. "_englishCase": 1,
  4010. "i18n_string": "t22",
  4011. "i18n_params": [
  4012. ":"
  4013. ],
  4014. "_addColon": true,
  4015. "_id": ""
  4016. },
  4017. {
  4018. "__type__": "cc.PrefabInfo",
  4019. "root": {
  4020. "__id__": 1
  4021. },
  4022. "asset": {
  4023. "__id__": 0
  4024. },
  4025. "fileId": "7ddAUlyOVNgJ5Jdb85ns0A",
  4026. "sync": false
  4027. },
  4028. {
  4029. "__type__": "cc.Node",
  4030. "_name": "power",
  4031. "_objFlags": 0,
  4032. "_parent": {
  4033. "__id__": 1
  4034. },
  4035. "_children": [],
  4036. "_active": true,
  4037. "_components": [
  4038. {
  4039. "__id__": 114
  4040. },
  4041. {
  4042. "__id__": 115
  4043. }
  4044. ],
  4045. "_prefab": {
  4046. "__id__": 116
  4047. },
  4048. "_opacity": 255,
  4049. "_color": {
  4050. "__type__": "cc.Color",
  4051. "r": 255,
  4052. "g": 198,
  4053. "b": 0,
  4054. "a": 255
  4055. },
  4056. "_contentSize": {
  4057. "__type__": "cc.Size",
  4058. "width": 298.75,
  4059. "height": 65
  4060. },
  4061. "_anchorPoint": {
  4062. "__type__": "cc.Vec2",
  4063. "x": 0.5,
  4064. "y": 0.5
  4065. },
  4066. "_trs": {
  4067. "__type__": "TypedArray",
  4068. "ctor": "Float64Array",
  4069. "array": [
  4070. -461.753,
  4071. -431.303,
  4072. 0,
  4073. 0,
  4074. 0,
  4075. 0,
  4076. 1,
  4077. 1,
  4078. 1,
  4079. 1
  4080. ]
  4081. },
  4082. "_eulerAngles": {
  4083. "__type__": "cc.Vec3",
  4084. "x": 0,
  4085. "y": 0,
  4086. "z": 0
  4087. },
  4088. "_skewX": 0,
  4089. "_skewY": 0,
  4090. "_is3DNode": false,
  4091. "_groupIndex": 0,
  4092. "groupIndex": 0,
  4093. "_id": ""
  4094. },
  4095. {
  4096. "__type__": "cc.Label",
  4097. "_name": "",
  4098. "_objFlags": 0,
  4099. "node": {
  4100. "__id__": 113
  4101. },
  4102. "_enabled": true,
  4103. "_materials": [
  4104. {
  4105. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4106. }
  4107. ],
  4108. "_srcBlendFactor": 770,
  4109. "_dstBlendFactor": 771,
  4110. "_string": "1000000",
  4111. "_N$string": "1000000",
  4112. "_fontSize": 60,
  4113. "_lineHeight": 65,
  4114. "_enableWrapText": true,
  4115. "_N$file": {
  4116. "__uuid__": "1ea1269b-2899-4901-832f-a2881c911116"
  4117. },
  4118. "_isSystemFontUsed": false,
  4119. "_spacingX": 0,
  4120. "_batchAsBitmap": false,
  4121. "_styleFlags": 0,
  4122. "_underlineHeight": 0,
  4123. "_N$horizontalAlign": 1,
  4124. "_N$verticalAlign": 1,
  4125. "_N$fontFamily": "Arial",
  4126. "_N$overflow": 0,
  4127. "_N$cacheMode": 0,
  4128. "_id": ""
  4129. },
  4130. {
  4131. "__type__": "cc.LabelOutline",
  4132. "_name": "",
  4133. "_objFlags": 0,
  4134. "node": {
  4135. "__id__": 113
  4136. },
  4137. "_enabled": true,
  4138. "_color": {
  4139. "__type__": "cc.Color",
  4140. "r": 38,
  4141. "g": 17,
  4142. "b": 12,
  4143. "a": 255
  4144. },
  4145. "_width": 5,
  4146. "_id": ""
  4147. },
  4148. {
  4149. "__type__": "cc.PrefabInfo",
  4150. "root": {
  4151. "__id__": 1
  4152. },
  4153. "asset": {
  4154. "__id__": 0
  4155. },
  4156. "fileId": "2f2ppBQklMtLsjnytzOhcZ",
  4157. "sync": false
  4158. },
  4159. {
  4160. "__type__": "cc.Node",
  4161. "_name": "btn_break",
  4162. "_objFlags": 0,
  4163. "_parent": {
  4164. "__id__": 1
  4165. },
  4166. "_children": [
  4167. {
  4168. "__id__": 118
  4169. },
  4170. {
  4171. "__id__": 123
  4172. }
  4173. ],
  4174. "_active": true,
  4175. "_components": [
  4176. {
  4177. "__id__": 126
  4178. },
  4179. {
  4180. "__id__": 127
  4181. },
  4182. {
  4183. "__id__": 128
  4184. }
  4185. ],
  4186. "_prefab": {
  4187. "__id__": 130
  4188. },
  4189. "_opacity": 255,
  4190. "_color": {
  4191. "__type__": "cc.Color",
  4192. "r": 255,
  4193. "g": 255,
  4194. "b": 255,
  4195. "a": 255
  4196. },
  4197. "_contentSize": {
  4198. "__type__": "cc.Size",
  4199. "width": 318,
  4200. "height": 129
  4201. },
  4202. "_anchorPoint": {
  4203. "__type__": "cc.Vec2",
  4204. "x": 0.5,
  4205. "y": 0.5
  4206. },
  4207. "_trs": {
  4208. "__type__": "TypedArray",
  4209. "ctor": "Float64Array",
  4210. "array": [
  4211. -26.053,
  4212. -434.53,
  4213. 0,
  4214. 0,
  4215. 0,
  4216. 0,
  4217. 1,
  4218. 1,
  4219. 1,
  4220. 0
  4221. ]
  4222. },
  4223. "_eulerAngles": {
  4224. "__type__": "cc.Vec3",
  4225. "x": 0,
  4226. "y": 0,
  4227. "z": 0
  4228. },
  4229. "_skewX": 0,
  4230. "_skewY": 0,
  4231. "_is3DNode": false,
  4232. "_groupIndex": 0,
  4233. "groupIndex": 0,
  4234. "_id": ""
  4235. },
  4236. {
  4237. "__type__": "cc.Node",
  4238. "_name": "lb",
  4239. "_objFlags": 0,
  4240. "_parent": {
  4241. "__id__": 117
  4242. },
  4243. "_children": [],
  4244. "_active": true,
  4245. "_components": [
  4246. {
  4247. "__id__": 119
  4248. },
  4249. {
  4250. "__id__": 120
  4251. },
  4252. {
  4253. "__id__": 121
  4254. }
  4255. ],
  4256. "_prefab": {
  4257. "__id__": 122
  4258. },
  4259. "_opacity": 255,
  4260. "_color": {
  4261. "__type__": "cc.Color",
  4262. "r": 68,
  4263. "g": 41,
  4264. "b": 0,
  4265. "a": 255
  4266. },
  4267. "_contentSize": {
  4268. "__type__": "cc.Size",
  4269. "width": 135.32,
  4270. "height": 73
  4271. },
  4272. "_anchorPoint": {
  4273. "__type__": "cc.Vec2",
  4274. "x": 0.5,
  4275. "y": 0.5
  4276. },
  4277. "_trs": {
  4278. "__type__": "TypedArray",
  4279. "ctor": "Float64Array",
  4280. "array": [
  4281. 0,
  4282. 5,
  4283. 0,
  4284. 0,
  4285. 0,
  4286. 0,
  4287. 1,
  4288. 1,
  4289. 1,
  4290. 1
  4291. ]
  4292. },
  4293. "_eulerAngles": {
  4294. "__type__": "cc.Vec3",
  4295. "x": 0,
  4296. "y": 0,
  4297. "z": 0
  4298. },
  4299. "_skewX": 0,
  4300. "_skewY": 0,
  4301. "_is3DNode": false,
  4302. "_groupIndex": 0,
  4303. "groupIndex": 0,
  4304. "_id": ""
  4305. },
  4306. {
  4307. "__type__": "cc.Label",
  4308. "_name": "",
  4309. "_objFlags": 0,
  4310. "node": {
  4311. "__id__": 118
  4312. },
  4313. "_enabled": true,
  4314. "_materials": [
  4315. {
  4316. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4317. }
  4318. ],
  4319. "_srcBlendFactor": 770,
  4320. "_dstBlendFactor": 771,
  4321. "_string": "Break",
  4322. "_N$string": "Break",
  4323. "_fontSize": 48,
  4324. "_lineHeight": 50,
  4325. "_enableWrapText": false,
  4326. "_N$file": {
  4327. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4328. },
  4329. "_isSystemFontUsed": false,
  4330. "_spacingX": 0,
  4331. "_batchAsBitmap": false,
  4332. "_styleFlags": 0,
  4333. "_underlineHeight": 0,
  4334. "_N$horizontalAlign": 1,
  4335. "_N$verticalAlign": 1,
  4336. "_N$fontFamily": "Arial",
  4337. "_N$overflow": 0,
  4338. "_N$cacheMode": 0,
  4339. "_id": ""
  4340. },
  4341. {
  4342. "__type__": "cc.LabelOutline",
  4343. "_name": "",
  4344. "_objFlags": 0,
  4345. "node": {
  4346. "__id__": 118
  4347. },
  4348. "_enabled": true,
  4349. "_color": {
  4350. "__type__": "cc.Color",
  4351. "r": 255,
  4352. "g": 210,
  4353. "b": 0,
  4354. "a": 255
  4355. },
  4356. "_width": 5,
  4357. "_id": ""
  4358. },
  4359. {
  4360. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4361. "_name": "",
  4362. "_objFlags": 0,
  4363. "node": {
  4364. "__id__": 118
  4365. },
  4366. "_enabled": true,
  4367. "_englishCase": 1,
  4368. "i18n_string": "t25",
  4369. "i18n_params": [],
  4370. "_addColon": false,
  4371. "_id": ""
  4372. },
  4373. {
  4374. "__type__": "cc.PrefabInfo",
  4375. "root": {
  4376. "__id__": 1
  4377. },
  4378. "asset": {
  4379. "__id__": 0
  4380. },
  4381. "fileId": "12tNP2G5xGpY9oecBiNRvR",
  4382. "sync": false
  4383. },
  4384. {
  4385. "__type__": "cc.Node",
  4386. "_name": "red_dots",
  4387. "_objFlags": 0,
  4388. "_parent": {
  4389. "__id__": 117
  4390. },
  4391. "_children": [],
  4392. "_active": false,
  4393. "_components": [
  4394. {
  4395. "__id__": 124
  4396. }
  4397. ],
  4398. "_prefab": {
  4399. "__id__": 125
  4400. },
  4401. "_opacity": 255,
  4402. "_color": {
  4403. "__type__": "cc.Color",
  4404. "r": 255,
  4405. "g": 255,
  4406. "b": 255,
  4407. "a": 255
  4408. },
  4409. "_contentSize": {
  4410. "__type__": "cc.Size",
  4411. "width": 40,
  4412. "height": 40
  4413. },
  4414. "_anchorPoint": {
  4415. "__type__": "cc.Vec2",
  4416. "x": 0.5,
  4417. "y": 0.5
  4418. },
  4419. "_trs": {
  4420. "__type__": "TypedArray",
  4421. "ctor": "Float64Array",
  4422. "array": [
  4423. 153.915,
  4424. 58.117,
  4425. 0,
  4426. 0,
  4427. 0,
  4428. 0,
  4429. 1,
  4430. 1,
  4431. 1,
  4432. 1
  4433. ]
  4434. },
  4435. "_eulerAngles": {
  4436. "__type__": "cc.Vec3",
  4437. "x": 0,
  4438. "y": 0,
  4439. "z": 0
  4440. },
  4441. "_skewX": 0,
  4442. "_skewY": 0,
  4443. "_is3DNode": false,
  4444. "_groupIndex": 0,
  4445. "groupIndex": 0,
  4446. "_id": ""
  4447. },
  4448. {
  4449. "__type__": "cc.Sprite",
  4450. "_name": "",
  4451. "_objFlags": 0,
  4452. "node": {
  4453. "__id__": 123
  4454. },
  4455. "_enabled": true,
  4456. "_materials": [
  4457. {
  4458. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4459. }
  4460. ],
  4461. "_srcBlendFactor": 770,
  4462. "_dstBlendFactor": 771,
  4463. "_spriteFrame": {
  4464. "__uuid__": "2e0bba47-213b-4d41-9454-69b2b6261500"
  4465. },
  4466. "_type": 0,
  4467. "_sizeMode": 0,
  4468. "_fillType": 0,
  4469. "_fillCenter": {
  4470. "__type__": "cc.Vec2",
  4471. "x": 0,
  4472. "y": 0
  4473. },
  4474. "_fillStart": 0,
  4475. "_fillRange": 0,
  4476. "_isTrimmedMode": true,
  4477. "_atlas": null,
  4478. "_id": ""
  4479. },
  4480. {
  4481. "__type__": "cc.PrefabInfo",
  4482. "root": {
  4483. "__id__": 1
  4484. },
  4485. "asset": {
  4486. "__id__": 0
  4487. },
  4488. "fileId": "20KcBDYbhFrrgoqzIMbbOQ",
  4489. "sync": false
  4490. },
  4491. {
  4492. "__type__": "cc.Sprite",
  4493. "_name": "",
  4494. "_objFlags": 0,
  4495. "node": {
  4496. "__id__": 117
  4497. },
  4498. "_enabled": true,
  4499. "_materials": [
  4500. {
  4501. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4502. }
  4503. ],
  4504. "_srcBlendFactor": 770,
  4505. "_dstBlendFactor": 771,
  4506. "_spriteFrame": {
  4507. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  4508. },
  4509. "_type": 0,
  4510. "_sizeMode": 1,
  4511. "_fillType": 0,
  4512. "_fillCenter": {
  4513. "__type__": "cc.Vec2",
  4514. "x": 0,
  4515. "y": 0
  4516. },
  4517. "_fillStart": 0,
  4518. "_fillRange": 0,
  4519. "_isTrimmedMode": true,
  4520. "_atlas": null,
  4521. "_id": ""
  4522. },
  4523. {
  4524. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  4525. "_name": "",
  4526. "_objFlags": 0,
  4527. "node": {
  4528. "__id__": 117
  4529. },
  4530. "_enabled": true,
  4531. "openContinuous": true,
  4532. "continuousTime": 0.2,
  4533. "multiTouch": false,
  4534. "_id": ""
  4535. },
  4536. {
  4537. "__type__": "61994AafntNFIbmt1zoyLq+",
  4538. "_name": "",
  4539. "_objFlags": 0,
  4540. "node": {
  4541. "__id__": 117
  4542. },
  4543. "_enabled": true,
  4544. "_normalMaterial": null,
  4545. "_grayMaterial": null,
  4546. "duration": 0.1,
  4547. "zoomScale": 1.2,
  4548. "clickEvents": [
  4549. {
  4550. "__id__": 129
  4551. }
  4552. ],
  4553. "_N$interactable": true,
  4554. "_N$enableAutoGrayEffect": false,
  4555. "_N$transition": 3,
  4556. "transition": 3,
  4557. "_N$normalColor": {
  4558. "__type__": "cc.Color",
  4559. "r": 255,
  4560. "g": 255,
  4561. "b": 255,
  4562. "a": 255
  4563. },
  4564. "_N$pressedColor": {
  4565. "__type__": "cc.Color",
  4566. "r": 211,
  4567. "g": 211,
  4568. "b": 211,
  4569. "a": 255
  4570. },
  4571. "pressedColor": {
  4572. "__type__": "cc.Color",
  4573. "r": 211,
  4574. "g": 211,
  4575. "b": 211,
  4576. "a": 255
  4577. },
  4578. "_N$hoverColor": {
  4579. "__type__": "cc.Color",
  4580. "r": 255,
  4581. "g": 255,
  4582. "b": 255,
  4583. "a": 255
  4584. },
  4585. "hoverColor": {
  4586. "__type__": "cc.Color",
  4587. "r": 255,
  4588. "g": 255,
  4589. "b": 255,
  4590. "a": 255
  4591. },
  4592. "_N$disabledColor": {
  4593. "__type__": "cc.Color",
  4594. "r": 124,
  4595. "g": 124,
  4596. "b": 124,
  4597. "a": 255
  4598. },
  4599. "_N$normalSprite": null,
  4600. "_N$pressedSprite": null,
  4601. "pressedSprite": null,
  4602. "_N$hoverSprite": null,
  4603. "hoverSprite": null,
  4604. "_N$disabledSprite": null,
  4605. "_N$target": null,
  4606. "_id": ""
  4607. },
  4608. {
  4609. "__type__": "cc.ClickEvent",
  4610. "target": {
  4611. "__id__": 1
  4612. },
  4613. "component": "",
  4614. "_componentId": "424349zjmhIaKg9ABoHFkZs",
  4615. "handler": "onBreakClick",
  4616. "customEventData": ""
  4617. },
  4618. {
  4619. "__type__": "cc.PrefabInfo",
  4620. "root": {
  4621. "__id__": 1
  4622. },
  4623. "asset": {
  4624. "__id__": 0
  4625. },
  4626. "fileId": "02LxR84C9Kk4w30JEoMB/E",
  4627. "sync": false
  4628. },
  4629. {
  4630. "__type__": "cc.Node",
  4631. "_name": "common_frame2",
  4632. "_objFlags": 0,
  4633. "_parent": {
  4634. "__id__": 1
  4635. },
  4636. "_children": [],
  4637. "_active": true,
  4638. "_components": [
  4639. {
  4640. "__id__": 132
  4641. }
  4642. ],
  4643. "_prefab": {
  4644. "__id__": 133
  4645. },
  4646. "_opacity": 255,
  4647. "_color": {
  4648. "__type__": "cc.Color",
  4649. "r": 255,
  4650. "g": 255,
  4651. "b": 255,
  4652. "a": 255
  4653. },
  4654. "_contentSize": {
  4655. "__type__": "cc.Size",
  4656. "width": 714,
  4657. "height": 914
  4658. },
  4659. "_anchorPoint": {
  4660. "__type__": "cc.Vec2",
  4661. "x": 0.5,
  4662. "y": 0.5
  4663. },
  4664. "_trs": {
  4665. "__type__": "TypedArray",
  4666. "ctor": "Float64Array",
  4667. "array": [
  4668. 577.913,
  4669. -44.837,
  4670. 0,
  4671. 0,
  4672. 0,
  4673. 0,
  4674. 1,
  4675. 1,
  4676. 1,
  4677. 1
  4678. ]
  4679. },
  4680. "_eulerAngles": {
  4681. "__type__": "cc.Vec3",
  4682. "x": 0,
  4683. "y": 0,
  4684. "z": 0
  4685. },
  4686. "_skewX": 0,
  4687. "_skewY": 0,
  4688. "_is3DNode": false,
  4689. "_groupIndex": 0,
  4690. "groupIndex": 0,
  4691. "_id": ""
  4692. },
  4693. {
  4694. "__type__": "cc.Sprite",
  4695. "_name": "",
  4696. "_objFlags": 0,
  4697. "node": {
  4698. "__id__": 131
  4699. },
  4700. "_enabled": true,
  4701. "_materials": [
  4702. {
  4703. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4704. }
  4705. ],
  4706. "_srcBlendFactor": 770,
  4707. "_dstBlendFactor": 771,
  4708. "_spriteFrame": {
  4709. "__uuid__": "081dc70f-4e06-4aa8-aed4-915ef25eff26"
  4710. },
  4711. "_type": 1,
  4712. "_sizeMode": 0,
  4713. "_fillType": 0,
  4714. "_fillCenter": {
  4715. "__type__": "cc.Vec2",
  4716. "x": 0,
  4717. "y": 0
  4718. },
  4719. "_fillStart": 0,
  4720. "_fillRange": 0,
  4721. "_isTrimmedMode": true,
  4722. "_atlas": null,
  4723. "_id": ""
  4724. },
  4725. {
  4726. "__type__": "cc.PrefabInfo",
  4727. "root": {
  4728. "__id__": 1
  4729. },
  4730. "asset": {
  4731. "__id__": 0
  4732. },
  4733. "fileId": "ccH/vjg9FGCoVOuGBzbEMC",
  4734. "sync": false
  4735. },
  4736. {
  4737. "__type__": "cc.Node",
  4738. "_name": "toggles",
  4739. "_objFlags": 0,
  4740. "_parent": {
  4741. "__id__": 1
  4742. },
  4743. "_children": [
  4744. {
  4745. "__id__": 135
  4746. },
  4747. {
  4748. "__id__": 155
  4749. }
  4750. ],
  4751. "_active": true,
  4752. "_components": [
  4753. {
  4754. "__id__": 186
  4755. },
  4756. {
  4757. "__id__": 187
  4758. }
  4759. ],
  4760. "_prefab": {
  4761. "__id__": 188
  4762. },
  4763. "_opacity": 255,
  4764. "_color": {
  4765. "__type__": "cc.Color",
  4766. "r": 255,
  4767. "g": 255,
  4768. "b": 255,
  4769. "a": 255
  4770. },
  4771. "_contentSize": {
  4772. "__type__": "cc.Size",
  4773. "width": 500,
  4774. "height": 61
  4775. },
  4776. "_anchorPoint": {
  4777. "__type__": "cc.Vec2",
  4778. "x": 0.5,
  4779. "y": 0.5
  4780. },
  4781. "_trs": {
  4782. "__type__": "TypedArray",
  4783. "ctor": "Float64Array",
  4784. "array": [
  4785. 498.544,
  4786. 346.209,
  4787. 0,
  4788. 0,
  4789. 0,
  4790. 0,
  4791. 1,
  4792. 1,
  4793. 1,
  4794. 1
  4795. ]
  4796. },
  4797. "_eulerAngles": {
  4798. "__type__": "cc.Vec3",
  4799. "x": 0,
  4800. "y": 0,
  4801. "z": 0
  4802. },
  4803. "_skewX": 0,
  4804. "_skewY": 0,
  4805. "_is3DNode": false,
  4806. "_groupIndex": 0,
  4807. "groupIndex": 0,
  4808. "_id": ""
  4809. },
  4810. {
  4811. "__type__": "cc.Node",
  4812. "_name": "toggle1",
  4813. "_objFlags": 0,
  4814. "_parent": {
  4815. "__id__": 134
  4816. },
  4817. "_children": [
  4818. {
  4819. "__id__": 136
  4820. },
  4821. {
  4822. "__id__": 144
  4823. }
  4824. ],
  4825. "_active": true,
  4826. "_components": [
  4827. {
  4828. "__id__": 152
  4829. }
  4830. ],
  4831. "_prefab": {
  4832. "__id__": 154
  4833. },
  4834. "_opacity": 255,
  4835. "_color": {
  4836. "__type__": "cc.Color",
  4837. "r": 255,
  4838. "g": 255,
  4839. "b": 255,
  4840. "a": 255
  4841. },
  4842. "_contentSize": {
  4843. "__type__": "cc.Size",
  4844. "width": 325,
  4845. "height": 82
  4846. },
  4847. "_anchorPoint": {
  4848. "__type__": "cc.Vec2",
  4849. "x": 0.5,
  4850. "y": 0.5
  4851. },
  4852. "_trs": {
  4853. "__type__": "TypedArray",
  4854. "ctor": "Float64Array",
  4855. "array": [
  4856. -87.5,
  4857. 3,
  4858. 0,
  4859. 0,
  4860. 0,
  4861. 0,
  4862. 1,
  4863. 1,
  4864. 1,
  4865. 0
  4866. ]
  4867. },
  4868. "_eulerAngles": {
  4869. "__type__": "cc.Vec3",
  4870. "x": 0,
  4871. "y": 0,
  4872. "z": 0
  4873. },
  4874. "_skewX": 0,
  4875. "_skewY": 0,
  4876. "_is3DNode": false,
  4877. "_groupIndex": 0,
  4878. "groupIndex": 0,
  4879. "_id": ""
  4880. },
  4881. {
  4882. "__type__": "cc.Node",
  4883. "_name": "Background",
  4884. "_objFlags": 0,
  4885. "_parent": {
  4886. "__id__": 135
  4887. },
  4888. "_children": [
  4889. {
  4890. "__id__": 137
  4891. }
  4892. ],
  4893. "_active": true,
  4894. "_components": [
  4895. {
  4896. "__id__": 142
  4897. }
  4898. ],
  4899. "_prefab": {
  4900. "__id__": 143
  4901. },
  4902. "_opacity": 255,
  4903. "_color": {
  4904. "__type__": "cc.Color",
  4905. "r": 255,
  4906. "g": 255,
  4907. "b": 255,
  4908. "a": 255
  4909. },
  4910. "_contentSize": {
  4911. "__type__": "cc.Size",
  4912. "width": 325,
  4913. "height": 82
  4914. },
  4915. "_anchorPoint": {
  4916. "__type__": "cc.Vec2",
  4917. "x": 0.5,
  4918. "y": 0.5
  4919. },
  4920. "_trs": {
  4921. "__type__": "TypedArray",
  4922. "ctor": "Float64Array",
  4923. "array": [
  4924. 0,
  4925. -0.633,
  4926. 0,
  4927. 0,
  4928. 0,
  4929. 0,
  4930. 1,
  4931. 1,
  4932. 1,
  4933. 1
  4934. ]
  4935. },
  4936. "_eulerAngles": {
  4937. "__type__": "cc.Vec3",
  4938. "x": 0,
  4939. "y": 0,
  4940. "z": 0
  4941. },
  4942. "_skewX": 0,
  4943. "_skewY": 0,
  4944. "_is3DNode": false,
  4945. "_groupIndex": 0,
  4946. "groupIndex": 0,
  4947. "_id": ""
  4948. },
  4949. {
  4950. "__type__": "cc.Node",
  4951. "_name": "lb",
  4952. "_objFlags": 0,
  4953. "_parent": {
  4954. "__id__": 136
  4955. },
  4956. "_children": [],
  4957. "_active": true,
  4958. "_components": [
  4959. {
  4960. "__id__": 138
  4961. },
  4962. {
  4963. "__id__": 139
  4964. },
  4965. {
  4966. "__id__": 140
  4967. }
  4968. ],
  4969. "_prefab": {
  4970. "__id__": 141
  4971. },
  4972. "_opacity": 255,
  4973. "_color": {
  4974. "__type__": "cc.Color",
  4975. "r": 170,
  4976. "g": 170,
  4977. "b": 170,
  4978. "a": 255
  4979. },
  4980. "_contentSize": {
  4981. "__type__": "cc.Size",
  4982. "width": 142.76,
  4983. "height": 69
  4984. },
  4985. "_anchorPoint": {
  4986. "__type__": "cc.Vec2",
  4987. "x": 0.5,
  4988. "y": 0.5
  4989. },
  4990. "_trs": {
  4991. "__type__": "TypedArray",
  4992. "ctor": "Float64Array",
  4993. "array": [
  4994. 0,
  4995. 0,
  4996. 0,
  4997. 0,
  4998. 0,
  4999. 0,
  5000. 1,
  5001. 1,
  5002. 1,
  5003. 1
  5004. ]
  5005. },
  5006. "_eulerAngles": {
  5007. "__type__": "cc.Vec3",
  5008. "x": 0,
  5009. "y": 0,
  5010. "z": 0
  5011. },
  5012. "_skewX": 0,
  5013. "_skewY": 0,
  5014. "_is3DNode": false,
  5015. "_groupIndex": 0,
  5016. "groupIndex": 0,
  5017. "_id": ""
  5018. },
  5019. {
  5020. "__type__": "cc.Label",
  5021. "_name": "",
  5022. "_objFlags": 0,
  5023. "node": {
  5024. "__id__": 137
  5025. },
  5026. "_enabled": true,
  5027. "_materials": [
  5028. {
  5029. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5030. }
  5031. ],
  5032. "_srcBlendFactor": 770,
  5033. "_dstBlendFactor": 771,
  5034. "_string": "TEAM",
  5035. "_N$string": "TEAM",
  5036. "_fontSize": 48,
  5037. "_lineHeight": 50,
  5038. "_enableWrapText": false,
  5039. "_N$file": {
  5040. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5041. },
  5042. "_isSystemFontUsed": false,
  5043. "_spacingX": 0,
  5044. "_batchAsBitmap": false,
  5045. "_styleFlags": 0,
  5046. "_underlineHeight": 0,
  5047. "_N$horizontalAlign": 1,
  5048. "_N$verticalAlign": 1,
  5049. "_N$fontFamily": "Arial",
  5050. "_N$overflow": 0,
  5051. "_N$cacheMode": 0,
  5052. "_id": ""
  5053. },
  5054. {
  5055. "__type__": "cc.LabelOutline",
  5056. "_name": "",
  5057. "_objFlags": 0,
  5058. "node": {
  5059. "__id__": 137
  5060. },
  5061. "_enabled": true,
  5062. "_color": {
  5063. "__type__": "cc.Color",
  5064. "r": 38,
  5065. "g": 17,
  5066. "b": 12,
  5067. "a": 255
  5068. },
  5069. "_width": 3,
  5070. "_id": ""
  5071. },
  5072. {
  5073. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  5074. "_name": "",
  5075. "_objFlags": 0,
  5076. "node": {
  5077. "__id__": 137
  5078. },
  5079. "_enabled": true,
  5080. "_englishCase": 2,
  5081. "i18n_string": "t6",
  5082. "i18n_params": [],
  5083. "_addColon": false,
  5084. "_id": ""
  5085. },
  5086. {
  5087. "__type__": "cc.PrefabInfo",
  5088. "root": {
  5089. "__id__": 1
  5090. },
  5091. "asset": {
  5092. "__id__": 0
  5093. },
  5094. "fileId": "e6/hosAIRN3bTMFbYSKR7q",
  5095. "sync": false
  5096. },
  5097. {
  5098. "__type__": "cc.Sprite",
  5099. "_name": "",
  5100. "_objFlags": 0,
  5101. "node": {
  5102. "__id__": 136
  5103. },
  5104. "_enabled": true,
  5105. "_materials": [
  5106. {
  5107. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5108. }
  5109. ],
  5110. "_srcBlendFactor": 770,
  5111. "_dstBlendFactor": 771,
  5112. "_spriteFrame": {
  5113. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  5114. },
  5115. "_type": 1,
  5116. "_sizeMode": 0,
  5117. "_fillType": 0,
  5118. "_fillCenter": {
  5119. "__type__": "cc.Vec2",
  5120. "x": 0,
  5121. "y": 0
  5122. },
  5123. "_fillStart": 0,
  5124. "_fillRange": 0,
  5125. "_isTrimmedMode": false,
  5126. "_atlas": null,
  5127. "_id": ""
  5128. },
  5129. {
  5130. "__type__": "cc.PrefabInfo",
  5131. "root": {
  5132. "__id__": 1
  5133. },
  5134. "asset": {
  5135. "__id__": 0
  5136. },
  5137. "fileId": "b5Lawt0WhMEok8JgPkytcZ",
  5138. "sync": false
  5139. },
  5140. {
  5141. "__type__": "cc.Node",
  5142. "_name": "checkmark",
  5143. "_objFlags": 0,
  5144. "_parent": {
  5145. "__id__": 135
  5146. },
  5147. "_children": [
  5148. {
  5149. "__id__": 145
  5150. }
  5151. ],
  5152. "_active": true,
  5153. "_components": [
  5154. {
  5155. "__id__": 150
  5156. }
  5157. ],
  5158. "_prefab": {
  5159. "__id__": 151
  5160. },
  5161. "_opacity": 255,
  5162. "_color": {
  5163. "__type__": "cc.Color",
  5164. "r": 255,
  5165. "g": 255,
  5166. "b": 255,
  5167. "a": 255
  5168. },
  5169. "_contentSize": {
  5170. "__type__": "cc.Size",
  5171. "width": 325,
  5172. "height": 82
  5173. },
  5174. "_anchorPoint": {
  5175. "__type__": "cc.Vec2",
  5176. "x": 0.5,
  5177. "y": 0.5
  5178. },
  5179. "_trs": {
  5180. "__type__": "TypedArray",
  5181. "ctor": "Float64Array",
  5182. "array": [
  5183. 0,
  5184. -0.633,
  5185. 0,
  5186. 0,
  5187. 0,
  5188. 0,
  5189. 1,
  5190. 1,
  5191. 1,
  5192. 1
  5193. ]
  5194. },
  5195. "_eulerAngles": {
  5196. "__type__": "cc.Vec3",
  5197. "x": 0,
  5198. "y": 0,
  5199. "z": 0
  5200. },
  5201. "_skewX": 0,
  5202. "_skewY": 0,
  5203. "_is3DNode": false,
  5204. "_groupIndex": 0,
  5205. "groupIndex": 0,
  5206. "_id": ""
  5207. },
  5208. {
  5209. "__type__": "cc.Node",
  5210. "_name": "lb",
  5211. "_objFlags": 0,
  5212. "_parent": {
  5213. "__id__": 144
  5214. },
  5215. "_children": [],
  5216. "_active": true,
  5217. "_components": [
  5218. {
  5219. "__id__": 146
  5220. },
  5221. {
  5222. "__id__": 147
  5223. },
  5224. {
  5225. "__id__": 148
  5226. }
  5227. ],
  5228. "_prefab": {
  5229. "__id__": 149
  5230. },
  5231. "_opacity": 255,
  5232. "_color": {
  5233. "__type__": "cc.Color",
  5234. "r": 255,
  5235. "g": 239,
  5236. "b": 129,
  5237. "a": 255
  5238. },
  5239. "_contentSize": {
  5240. "__type__": "cc.Size",
  5241. "width": 142.76,
  5242. "height": 69
  5243. },
  5244. "_anchorPoint": {
  5245. "__type__": "cc.Vec2",
  5246. "x": 0.5,
  5247. "y": 0.5
  5248. },
  5249. "_trs": {
  5250. "__type__": "TypedArray",
  5251. "ctor": "Float64Array",
  5252. "array": [
  5253. 0,
  5254. 0,
  5255. 0,
  5256. 0,
  5257. 0,
  5258. 0,
  5259. 1,
  5260. 1,
  5261. 1,
  5262. 1
  5263. ]
  5264. },
  5265. "_eulerAngles": {
  5266. "__type__": "cc.Vec3",
  5267. "x": 0,
  5268. "y": 0,
  5269. "z": 0
  5270. },
  5271. "_skewX": 0,
  5272. "_skewY": 0,
  5273. "_is3DNode": false,
  5274. "_groupIndex": 0,
  5275. "groupIndex": 0,
  5276. "_id": ""
  5277. },
  5278. {
  5279. "__type__": "cc.Label",
  5280. "_name": "",
  5281. "_objFlags": 0,
  5282. "node": {
  5283. "__id__": 145
  5284. },
  5285. "_enabled": true,
  5286. "_materials": [
  5287. {
  5288. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5289. }
  5290. ],
  5291. "_srcBlendFactor": 770,
  5292. "_dstBlendFactor": 771,
  5293. "_string": "TEAM",
  5294. "_N$string": "TEAM",
  5295. "_fontSize": 48,
  5296. "_lineHeight": 50,
  5297. "_enableWrapText": false,
  5298. "_N$file": {
  5299. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5300. },
  5301. "_isSystemFontUsed": false,
  5302. "_spacingX": 0,
  5303. "_batchAsBitmap": false,
  5304. "_styleFlags": 0,
  5305. "_underlineHeight": 0,
  5306. "_N$horizontalAlign": 1,
  5307. "_N$verticalAlign": 1,
  5308. "_N$fontFamily": "Arial",
  5309. "_N$overflow": 0,
  5310. "_N$cacheMode": 0,
  5311. "_id": ""
  5312. },
  5313. {
  5314. "__type__": "cc.LabelOutline",
  5315. "_name": "",
  5316. "_objFlags": 0,
  5317. "node": {
  5318. "__id__": 145
  5319. },
  5320. "_enabled": true,
  5321. "_color": {
  5322. "__type__": "cc.Color",
  5323. "r": 38,
  5324. "g": 17,
  5325. "b": 12,
  5326. "a": 255
  5327. },
  5328. "_width": 3,
  5329. "_id": ""
  5330. },
  5331. {
  5332. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  5333. "_name": "",
  5334. "_objFlags": 0,
  5335. "node": {
  5336. "__id__": 145
  5337. },
  5338. "_enabled": true,
  5339. "_englishCase": 2,
  5340. "i18n_string": "t6",
  5341. "i18n_params": [],
  5342. "_addColon": false,
  5343. "_id": ""
  5344. },
  5345. {
  5346. "__type__": "cc.PrefabInfo",
  5347. "root": {
  5348. "__id__": 1
  5349. },
  5350. "asset": {
  5351. "__id__": 0
  5352. },
  5353. "fileId": "8dxVYfYFVPf6mlA9ZwqHFT",
  5354. "sync": false
  5355. },
  5356. {
  5357. "__type__": "cc.Sprite",
  5358. "_name": "",
  5359. "_objFlags": 0,
  5360. "node": {
  5361. "__id__": 144
  5362. },
  5363. "_enabled": true,
  5364. "_materials": [
  5365. {
  5366. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5367. }
  5368. ],
  5369. "_srcBlendFactor": 770,
  5370. "_dstBlendFactor": 771,
  5371. "_spriteFrame": {
  5372. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  5373. },
  5374. "_type": 1,
  5375. "_sizeMode": 0,
  5376. "_fillType": 0,
  5377. "_fillCenter": {
  5378. "__type__": "cc.Vec2",
  5379. "x": 0,
  5380. "y": 0
  5381. },
  5382. "_fillStart": 0,
  5383. "_fillRange": 0,
  5384. "_isTrimmedMode": false,
  5385. "_atlas": null,
  5386. "_id": ""
  5387. },
  5388. {
  5389. "__type__": "cc.PrefabInfo",
  5390. "root": {
  5391. "__id__": 1
  5392. },
  5393. "asset": {
  5394. "__id__": 0
  5395. },
  5396. "fileId": "00UMTUGPpNeJIdGrotV4VE",
  5397. "sync": false
  5398. },
  5399. {
  5400. "__type__": "cc.Toggle",
  5401. "_name": "",
  5402. "_objFlags": 0,
  5403. "node": {
  5404. "__id__": 135
  5405. },
  5406. "_enabled": true,
  5407. "_normalMaterial": null,
  5408. "_grayMaterial": null,
  5409. "duration": 0.1,
  5410. "zoomScale": 1.2,
  5411. "clickEvents": [],
  5412. "_N$interactable": true,
  5413. "_N$enableAutoGrayEffect": false,
  5414. "_N$transition": 3,
  5415. "transition": 3,
  5416. "_N$normalColor": {
  5417. "__type__": "cc.Color",
  5418. "r": 214,
  5419. "g": 214,
  5420. "b": 214,
  5421. "a": 255
  5422. },
  5423. "_N$pressedColor": {
  5424. "__type__": "cc.Color",
  5425. "r": 211,
  5426. "g": 211,
  5427. "b": 211,
  5428. "a": 255
  5429. },
  5430. "pressedColor": {
  5431. "__type__": "cc.Color",
  5432. "r": 211,
  5433. "g": 211,
  5434. "b": 211,
  5435. "a": 255
  5436. },
  5437. "_N$hoverColor": {
  5438. "__type__": "cc.Color",
  5439. "r": 255,
  5440. "g": 255,
  5441. "b": 255,
  5442. "a": 255
  5443. },
  5444. "hoverColor": {
  5445. "__type__": "cc.Color",
  5446. "r": 255,
  5447. "g": 255,
  5448. "b": 255,
  5449. "a": 255
  5450. },
  5451. "_N$disabledColor": {
  5452. "__type__": "cc.Color",
  5453. "r": 124,
  5454. "g": 124,
  5455. "b": 124,
  5456. "a": 255
  5457. },
  5458. "_N$normalSprite": null,
  5459. "_N$pressedSprite": null,
  5460. "pressedSprite": null,
  5461. "_N$hoverSprite": null,
  5462. "hoverSprite": null,
  5463. "_N$disabledSprite": null,
  5464. "_N$target": {
  5465. "__id__": 135
  5466. },
  5467. "_N$isChecked": true,
  5468. "toggleGroup": null,
  5469. "checkMark": {
  5470. "__id__": 150
  5471. },
  5472. "checkEvents": [
  5473. {
  5474. "__id__": 153
  5475. }
  5476. ],
  5477. "_id": ""
  5478. },
  5479. {
  5480. "__type__": "cc.ClickEvent",
  5481. "target": {
  5482. "__id__": 1
  5483. },
  5484. "component": "",
  5485. "_componentId": "424349zjmhIaKg9ABoHFkZs",
  5486. "handler": "onToggleClick",
  5487. "customEventData": ""
  5488. },
  5489. {
  5490. "__type__": "cc.PrefabInfo",
  5491. "root": {
  5492. "__id__": 1
  5493. },
  5494. "asset": {
  5495. "__id__": 0
  5496. },
  5497. "fileId": "42+fsrGcROTpeJLb0FV6rP",
  5498. "sync": false
  5499. },
  5500. {
  5501. "__type__": "cc.Node",
  5502. "_name": "toggle2",
  5503. "_objFlags": 0,
  5504. "_parent": {
  5505. "__id__": 134
  5506. },
  5507. "_children": [
  5508. {
  5509. "__id__": 156
  5510. },
  5511. {
  5512. "__id__": 164
  5513. },
  5514. {
  5515. "__id__": 172
  5516. },
  5517. {
  5518. "__id__": 180
  5519. }
  5520. ],
  5521. "_active": true,
  5522. "_components": [
  5523. {
  5524. "__id__": 183
  5525. }
  5526. ],
  5527. "_prefab": {
  5528. "__id__": 185
  5529. },
  5530. "_opacity": 255,
  5531. "_color": {
  5532. "__type__": "cc.Color",
  5533. "r": 255,
  5534. "g": 255,
  5535. "b": 255,
  5536. "a": 255
  5537. },
  5538. "_contentSize": {
  5539. "__type__": "cc.Size",
  5540. "width": 325,
  5541. "height": 82
  5542. },
  5543. "_anchorPoint": {
  5544. "__type__": "cc.Vec2",
  5545. "x": 0.5,
  5546. "y": 0.5
  5547. },
  5548. "_trs": {
  5549. "__type__": "TypedArray",
  5550. "ctor": "Float64Array",
  5551. "array": [
  5552. 247.5,
  5553. 3,
  5554. 0,
  5555. 0,
  5556. 0,
  5557. 0,
  5558. 1,
  5559. 1,
  5560. 1,
  5561. 0
  5562. ]
  5563. },
  5564. "_eulerAngles": {
  5565. "__type__": "cc.Vec3",
  5566. "x": 0,
  5567. "y": 0,
  5568. "z": 0
  5569. },
  5570. "_skewX": 0,
  5571. "_skewY": 0,
  5572. "_is3DNode": false,
  5573. "_groupIndex": 0,
  5574. "groupIndex": 0,
  5575. "_id": ""
  5576. },
  5577. {
  5578. "__type__": "cc.Node",
  5579. "_name": "Background",
  5580. "_objFlags": 0,
  5581. "_parent": {
  5582. "__id__": 155
  5583. },
  5584. "_children": [
  5585. {
  5586. "__id__": 157
  5587. }
  5588. ],
  5589. "_active": true,
  5590. "_components": [
  5591. {
  5592. "__id__": 162
  5593. }
  5594. ],
  5595. "_prefab": {
  5596. "__id__": 163
  5597. },
  5598. "_opacity": 255,
  5599. "_color": {
  5600. "__type__": "cc.Color",
  5601. "r": 255,
  5602. "g": 255,
  5603. "b": 255,
  5604. "a": 255
  5605. },
  5606. "_contentSize": {
  5607. "__type__": "cc.Size",
  5608. "width": 325,
  5609. "height": 82
  5610. },
  5611. "_anchorPoint": {
  5612. "__type__": "cc.Vec2",
  5613. "x": 0.5,
  5614. "y": 0.5
  5615. },
  5616. "_trs": {
  5617. "__type__": "TypedArray",
  5618. "ctor": "Float64Array",
  5619. "array": [
  5620. 0,
  5621. -0.633,
  5622. 0,
  5623. 0,
  5624. 0,
  5625. 0,
  5626. 1,
  5627. 1,
  5628. 1,
  5629. 1
  5630. ]
  5631. },
  5632. "_eulerAngles": {
  5633. "__type__": "cc.Vec3",
  5634. "x": 0,
  5635. "y": 0,
  5636. "z": 0
  5637. },
  5638. "_skewX": 0,
  5639. "_skewY": 0,
  5640. "_is3DNode": false,
  5641. "_groupIndex": 0,
  5642. "groupIndex": 0,
  5643. "_id": ""
  5644. },
  5645. {
  5646. "__type__": "cc.Node",
  5647. "_name": "lb",
  5648. "_objFlags": 0,
  5649. "_parent": {
  5650. "__id__": 156
  5651. },
  5652. "_children": [],
  5653. "_active": true,
  5654. "_components": [
  5655. {
  5656. "__id__": 158
  5657. },
  5658. {
  5659. "__id__": 159
  5660. },
  5661. {
  5662. "__id__": 160
  5663. }
  5664. ],
  5665. "_prefab": {
  5666. "__id__": 161
  5667. },
  5668. "_opacity": 255,
  5669. "_color": {
  5670. "__type__": "cc.Color",
  5671. "r": 170,
  5672. "g": 170,
  5673. "b": 170,
  5674. "a": 255
  5675. },
  5676. "_contentSize": {
  5677. "__type__": "cc.Size",
  5678. "width": 178.41,
  5679. "height": 69
  5680. },
  5681. "_anchorPoint": {
  5682. "__type__": "cc.Vec2",
  5683. "x": 0.5,
  5684. "y": 0.5
  5685. },
  5686. "_trs": {
  5687. "__type__": "TypedArray",
  5688. "ctor": "Float64Array",
  5689. "array": [
  5690. 0,
  5691. 0,
  5692. 0,
  5693. 0,
  5694. 0,
  5695. 0,
  5696. 1,
  5697. 1,
  5698. 1,
  5699. 1
  5700. ]
  5701. },
  5702. "_eulerAngles": {
  5703. "__type__": "cc.Vec3",
  5704. "x": 0,
  5705. "y": 0,
  5706. "z": 0
  5707. },
  5708. "_skewX": 0,
  5709. "_skewY": 0,
  5710. "_is3DNode": false,
  5711. "_groupIndex": 0,
  5712. "groupIndex": 0,
  5713. "_id": ""
  5714. },
  5715. {
  5716. "__type__": "cc.Label",
  5717. "_name": "",
  5718. "_objFlags": 0,
  5719. "node": {
  5720. "__id__": 157
  5721. },
  5722. "_enabled": true,
  5723. "_materials": [
  5724. {
  5725. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5726. }
  5727. ],
  5728. "_srcBlendFactor": 770,
  5729. "_dstBlendFactor": 771,
  5730. "_string": "SKILLS",
  5731. "_N$string": "SKILLS",
  5732. "_fontSize": 48,
  5733. "_lineHeight": 50,
  5734. "_enableWrapText": false,
  5735. "_N$file": {
  5736. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5737. },
  5738. "_isSystemFontUsed": false,
  5739. "_spacingX": 0,
  5740. "_batchAsBitmap": false,
  5741. "_styleFlags": 0,
  5742. "_underlineHeight": 0,
  5743. "_N$horizontalAlign": 1,
  5744. "_N$verticalAlign": 1,
  5745. "_N$fontFamily": "Arial",
  5746. "_N$overflow": 0,
  5747. "_N$cacheMode": 0,
  5748. "_id": ""
  5749. },
  5750. {
  5751. "__type__": "cc.LabelOutline",
  5752. "_name": "",
  5753. "_objFlags": 0,
  5754. "node": {
  5755. "__id__": 157
  5756. },
  5757. "_enabled": true,
  5758. "_color": {
  5759. "__type__": "cc.Color",
  5760. "r": 38,
  5761. "g": 17,
  5762. "b": 12,
  5763. "a": 255
  5764. },
  5765. "_width": 3,
  5766. "_id": ""
  5767. },
  5768. {
  5769. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  5770. "_name": "",
  5771. "_objFlags": 0,
  5772. "node": {
  5773. "__id__": 157
  5774. },
  5775. "_enabled": true,
  5776. "_englishCase": 2,
  5777. "i18n_string": "t20",
  5778. "i18n_params": [],
  5779. "_addColon": false,
  5780. "_id": ""
  5781. },
  5782. {
  5783. "__type__": "cc.PrefabInfo",
  5784. "root": {
  5785. "__id__": 1
  5786. },
  5787. "asset": {
  5788. "__id__": 0
  5789. },
  5790. "fileId": "02Ae7QKHFMyqvUYRURFnWl",
  5791. "sync": false
  5792. },
  5793. {
  5794. "__type__": "cc.Sprite",
  5795. "_name": "",
  5796. "_objFlags": 0,
  5797. "node": {
  5798. "__id__": 156
  5799. },
  5800. "_enabled": true,
  5801. "_materials": [
  5802. {
  5803. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5804. }
  5805. ],
  5806. "_srcBlendFactor": 770,
  5807. "_dstBlendFactor": 771,
  5808. "_spriteFrame": {
  5809. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  5810. },
  5811. "_type": 1,
  5812. "_sizeMode": 0,
  5813. "_fillType": 0,
  5814. "_fillCenter": {
  5815. "__type__": "cc.Vec2",
  5816. "x": 0,
  5817. "y": 0
  5818. },
  5819. "_fillStart": 0,
  5820. "_fillRange": 0,
  5821. "_isTrimmedMode": false,
  5822. "_atlas": null,
  5823. "_id": ""
  5824. },
  5825. {
  5826. "__type__": "cc.PrefabInfo",
  5827. "root": {
  5828. "__id__": 1
  5829. },
  5830. "asset": {
  5831. "__id__": 0
  5832. },
  5833. "fileId": "e9dXa8lVlN5Z/3zfh7qc7m",
  5834. "sync": false
  5835. },
  5836. {
  5837. "__type__": "cc.Node",
  5838. "_name": "checkmark",
  5839. "_objFlags": 0,
  5840. "_parent": {
  5841. "__id__": 155
  5842. },
  5843. "_children": [
  5844. {
  5845. "__id__": 165
  5846. }
  5847. ],
  5848. "_active": false,
  5849. "_components": [
  5850. {
  5851. "__id__": 170
  5852. }
  5853. ],
  5854. "_prefab": {
  5855. "__id__": 171
  5856. },
  5857. "_opacity": 255,
  5858. "_color": {
  5859. "__type__": "cc.Color",
  5860. "r": 255,
  5861. "g": 255,
  5862. "b": 255,
  5863. "a": 255
  5864. },
  5865. "_contentSize": {
  5866. "__type__": "cc.Size",
  5867. "width": 325,
  5868. "height": 82
  5869. },
  5870. "_anchorPoint": {
  5871. "__type__": "cc.Vec2",
  5872. "x": 0.5,
  5873. "y": 0.5
  5874. },
  5875. "_trs": {
  5876. "__type__": "TypedArray",
  5877. "ctor": "Float64Array",
  5878. "array": [
  5879. 0,
  5880. -0.633,
  5881. 0,
  5882. 0,
  5883. 0,
  5884. 0,
  5885. 1,
  5886. 1,
  5887. 1,
  5888. 1
  5889. ]
  5890. },
  5891. "_eulerAngles": {
  5892. "__type__": "cc.Vec3",
  5893. "x": 0,
  5894. "y": 0,
  5895. "z": 0
  5896. },
  5897. "_skewX": 0,
  5898. "_skewY": 0,
  5899. "_is3DNode": false,
  5900. "_groupIndex": 0,
  5901. "groupIndex": 0,
  5902. "_id": ""
  5903. },
  5904. {
  5905. "__type__": "cc.Node",
  5906. "_name": "lb",
  5907. "_objFlags": 0,
  5908. "_parent": {
  5909. "__id__": 164
  5910. },
  5911. "_children": [],
  5912. "_active": true,
  5913. "_components": [
  5914. {
  5915. "__id__": 166
  5916. },
  5917. {
  5918. "__id__": 167
  5919. },
  5920. {
  5921. "__id__": 168
  5922. }
  5923. ],
  5924. "_prefab": {
  5925. "__id__": 169
  5926. },
  5927. "_opacity": 255,
  5928. "_color": {
  5929. "__type__": "cc.Color",
  5930. "r": 255,
  5931. "g": 239,
  5932. "b": 129,
  5933. "a": 255
  5934. },
  5935. "_contentSize": {
  5936. "__type__": "cc.Size",
  5937. "width": 63.63,
  5938. "height": 69
  5939. },
  5940. "_anchorPoint": {
  5941. "__type__": "cc.Vec2",
  5942. "x": 0.5,
  5943. "y": 0.5
  5944. },
  5945. "_trs": {
  5946. "__type__": "TypedArray",
  5947. "ctor": "Float64Array",
  5948. "array": [
  5949. 0,
  5950. 0,
  5951. 0,
  5952. 0,
  5953. 0,
  5954. 0,
  5955. 1,
  5956. 1,
  5957. 1,
  5958. 1
  5959. ]
  5960. },
  5961. "_eulerAngles": {
  5962. "__type__": "cc.Vec3",
  5963. "x": 0,
  5964. "y": 0,
  5965. "z": 0
  5966. },
  5967. "_skewX": 0,
  5968. "_skewY": 0,
  5969. "_is3DNode": false,
  5970. "_groupIndex": 0,
  5971. "groupIndex": 0,
  5972. "_id": ""
  5973. },
  5974. {
  5975. "__type__": "cc.Label",
  5976. "_name": "",
  5977. "_objFlags": 0,
  5978. "node": {
  5979. "__id__": 165
  5980. },
  5981. "_enabled": true,
  5982. "_materials": [
  5983. {
  5984. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5985. }
  5986. ],
  5987. "_srcBlendFactor": 770,
  5988. "_dstBlendFactor": 771,
  5989. "_string": "",
  5990. "_N$string": "",
  5991. "_fontSize": 48,
  5992. "_lineHeight": 50,
  5993. "_enableWrapText": false,
  5994. "_N$file": {
  5995. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5996. },
  5997. "_isSystemFontUsed": false,
  5998. "_spacingX": 0,
  5999. "_batchAsBitmap": false,
  6000. "_styleFlags": 0,
  6001. "_underlineHeight": 0,
  6002. "_N$horizontalAlign": 1,
  6003. "_N$verticalAlign": 1,
  6004. "_N$fontFamily": "Arial",
  6005. "_N$overflow": 0,
  6006. "_N$cacheMode": 0,
  6007. "_id": ""
  6008. },
  6009. {
  6010. "__type__": "cc.LabelOutline",
  6011. "_name": "",
  6012. "_objFlags": 0,
  6013. "node": {
  6014. "__id__": 165
  6015. },
  6016. "_enabled": true,
  6017. "_color": {
  6018. "__type__": "cc.Color",
  6019. "r": 38,
  6020. "g": 17,
  6021. "b": 12,
  6022. "a": 255
  6023. },
  6024. "_width": 3,
  6025. "_id": ""
  6026. },
  6027. {
  6028. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  6029. "_name": "",
  6030. "_objFlags": 0,
  6031. "node": {
  6032. "__id__": 165
  6033. },
  6034. "_enabled": true,
  6035. "_englishCase": 2,
  6036. "i18n_string": "t20",
  6037. "i18n_params": [],
  6038. "_addColon": false,
  6039. "_id": ""
  6040. },
  6041. {
  6042. "__type__": "cc.PrefabInfo",
  6043. "root": {
  6044. "__id__": 1
  6045. },
  6046. "asset": {
  6047. "__id__": 0
  6048. },
  6049. "fileId": "d9qcU7YtBGfoEYBwGPEFnr",
  6050. "sync": false
  6051. },
  6052. {
  6053. "__type__": "cc.Sprite",
  6054. "_name": "",
  6055. "_objFlags": 0,
  6056. "node": {
  6057. "__id__": 164
  6058. },
  6059. "_enabled": true,
  6060. "_materials": [],
  6061. "_srcBlendFactor": 770,
  6062. "_dstBlendFactor": 771,
  6063. "_spriteFrame": {
  6064. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  6065. },
  6066. "_type": 1,
  6067. "_sizeMode": 0,
  6068. "_fillType": 0,
  6069. "_fillCenter": {
  6070. "__type__": "cc.Vec2",
  6071. "x": 0,
  6072. "y": 0
  6073. },
  6074. "_fillStart": 0,
  6075. "_fillRange": 0,
  6076. "_isTrimmedMode": false,
  6077. "_atlas": null,
  6078. "_id": ""
  6079. },
  6080. {
  6081. "__type__": "cc.PrefabInfo",
  6082. "root": {
  6083. "__id__": 1
  6084. },
  6085. "asset": {
  6086. "__id__": 0
  6087. },
  6088. "fileId": "40+LVu2uFJCpNR4PexmH3U",
  6089. "sync": false
  6090. },
  6091. {
  6092. "__type__": "cc.Node",
  6093. "_name": "lock",
  6094. "_objFlags": 0,
  6095. "_parent": {
  6096. "__id__": 155
  6097. },
  6098. "_children": [
  6099. {
  6100. "__id__": 173
  6101. }
  6102. ],
  6103. "_active": false,
  6104. "_components": [
  6105. {
  6106. "__id__": 176
  6107. },
  6108. {
  6109. "__id__": 177
  6110. }
  6111. ],
  6112. "_prefab": {
  6113. "__id__": 179
  6114. },
  6115. "_opacity": 255,
  6116. "_color": {
  6117. "__type__": "cc.Color",
  6118. "r": 255,
  6119. "g": 255,
  6120. "b": 255,
  6121. "a": 255
  6122. },
  6123. "_contentSize": {
  6124. "__type__": "cc.Size",
  6125. "width": 325,
  6126. "height": 82
  6127. },
  6128. "_anchorPoint": {
  6129. "__type__": "cc.Vec2",
  6130. "x": 0.5,
  6131. "y": 0.5
  6132. },
  6133. "_trs": {
  6134. "__type__": "TypedArray",
  6135. "ctor": "Float64Array",
  6136. "array": [
  6137. 0,
  6138. 0,
  6139. 0,
  6140. 0,
  6141. 0,
  6142. 0,
  6143. 1,
  6144. 1,
  6145. 1,
  6146. 1
  6147. ]
  6148. },
  6149. "_eulerAngles": {
  6150. "__type__": "cc.Vec3",
  6151. "x": 0,
  6152. "y": 0,
  6153. "z": 0
  6154. },
  6155. "_skewX": 0,
  6156. "_skewY": 0,
  6157. "_is3DNode": false,
  6158. "_groupIndex": 0,
  6159. "groupIndex": 0,
  6160. "_id": ""
  6161. },
  6162. {
  6163. "__type__": "cc.Node",
  6164. "_name": "lock_1",
  6165. "_objFlags": 0,
  6166. "_parent": {
  6167. "__id__": 172
  6168. },
  6169. "_children": [],
  6170. "_active": true,
  6171. "_components": [
  6172. {
  6173. "__id__": 174
  6174. }
  6175. ],
  6176. "_prefab": {
  6177. "__id__": 175
  6178. },
  6179. "_opacity": 255,
  6180. "_color": {
  6181. "__type__": "cc.Color",
  6182. "r": 255,
  6183. "g": 255,
  6184. "b": 255,
  6185. "a": 255
  6186. },
  6187. "_contentSize": {
  6188. "__type__": "cc.Size",
  6189. "width": 86,
  6190. "height": 101
  6191. },
  6192. "_anchorPoint": {
  6193. "__type__": "cc.Vec2",
  6194. "x": 0.5,
  6195. "y": 0.5
  6196. },
  6197. "_trs": {
  6198. "__type__": "TypedArray",
  6199. "ctor": "Float64Array",
  6200. "array": [
  6201. -119.723,
  6202. 0,
  6203. 0,
  6204. 0,
  6205. 0,
  6206. 0,
  6207. 1,
  6208. 0.5,
  6209. 0.5,
  6210. 0
  6211. ]
  6212. },
  6213. "_eulerAngles": {
  6214. "__type__": "cc.Vec3",
  6215. "x": 0,
  6216. "y": 0,
  6217. "z": 0
  6218. },
  6219. "_skewX": 0,
  6220. "_skewY": 0,
  6221. "_is3DNode": false,
  6222. "_groupIndex": 0,
  6223. "groupIndex": 0,
  6224. "_id": ""
  6225. },
  6226. {
  6227. "__type__": "cc.Sprite",
  6228. "_name": "",
  6229. "_objFlags": 0,
  6230. "node": {
  6231. "__id__": 173
  6232. },
  6233. "_enabled": true,
  6234. "_materials": [
  6235. {
  6236. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6237. }
  6238. ],
  6239. "_srcBlendFactor": 770,
  6240. "_dstBlendFactor": 771,
  6241. "_spriteFrame": {
  6242. "__uuid__": "954cc19b-81e3-49ef-94ce-3636e473a277"
  6243. },
  6244. "_type": 0,
  6245. "_sizeMode": 1,
  6246. "_fillType": 0,
  6247. "_fillCenter": {
  6248. "__type__": "cc.Vec2",
  6249. "x": 0,
  6250. "y": 0
  6251. },
  6252. "_fillStart": 0,
  6253. "_fillRange": 0,
  6254. "_isTrimmedMode": true,
  6255. "_atlas": null,
  6256. "_id": ""
  6257. },
  6258. {
  6259. "__type__": "cc.PrefabInfo",
  6260. "root": {
  6261. "__id__": 1
  6262. },
  6263. "asset": {
  6264. "__id__": 0
  6265. },
  6266. "fileId": "dfMjqT+P1DEoT5byb6BZ0C",
  6267. "sync": false
  6268. },
  6269. {
  6270. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  6271. "_name": "",
  6272. "_objFlags": 0,
  6273. "node": {
  6274. "__id__": 172
  6275. },
  6276. "_enabled": true,
  6277. "openContinuous": true,
  6278. "continuousTime": 0.2,
  6279. "multiTouch": false,
  6280. "_id": ""
  6281. },
  6282. {
  6283. "__type__": "61994AafntNFIbmt1zoyLq+",
  6284. "_name": "",
  6285. "_objFlags": 0,
  6286. "node": {
  6287. "__id__": 172
  6288. },
  6289. "_enabled": true,
  6290. "_normalMaterial": null,
  6291. "_grayMaterial": null,
  6292. "duration": 0.1,
  6293. "zoomScale": 1.2,
  6294. "clickEvents": [
  6295. {
  6296. "__id__": 178
  6297. }
  6298. ],
  6299. "_N$interactable": true,
  6300. "_N$enableAutoGrayEffect": false,
  6301. "_N$transition": 0,
  6302. "transition": 0,
  6303. "_N$normalColor": {
  6304. "__type__": "cc.Color",
  6305. "r": 255,
  6306. "g": 255,
  6307. "b": 255,
  6308. "a": 255
  6309. },
  6310. "_N$pressedColor": {
  6311. "__type__": "cc.Color",
  6312. "r": 211,
  6313. "g": 211,
  6314. "b": 211,
  6315. "a": 255
  6316. },
  6317. "pressedColor": {
  6318. "__type__": "cc.Color",
  6319. "r": 211,
  6320. "g": 211,
  6321. "b": 211,
  6322. "a": 255
  6323. },
  6324. "_N$hoverColor": {
  6325. "__type__": "cc.Color",
  6326. "r": 255,
  6327. "g": 255,
  6328. "b": 255,
  6329. "a": 255
  6330. },
  6331. "hoverColor": {
  6332. "__type__": "cc.Color",
  6333. "r": 255,
  6334. "g": 255,
  6335. "b": 255,
  6336. "a": 255
  6337. },
  6338. "_N$disabledColor": {
  6339. "__type__": "cc.Color",
  6340. "r": 124,
  6341. "g": 124,
  6342. "b": 124,
  6343. "a": 255
  6344. },
  6345. "_N$normalSprite": null,
  6346. "_N$pressedSprite": null,
  6347. "pressedSprite": null,
  6348. "_N$hoverSprite": null,
  6349. "hoverSprite": null,
  6350. "_N$disabledSprite": null,
  6351. "_N$target": null,
  6352. "_id": ""
  6353. },
  6354. {
  6355. "__type__": "cc.ClickEvent",
  6356. "target": {
  6357. "__id__": 1
  6358. },
  6359. "component": "",
  6360. "_componentId": "424349zjmhIaKg9ABoHFkZs",
  6361. "handler": "onLockCardClick",
  6362. "customEventData": ""
  6363. },
  6364. {
  6365. "__type__": "cc.PrefabInfo",
  6366. "root": {
  6367. "__id__": 1
  6368. },
  6369. "asset": {
  6370. "__id__": 0
  6371. },
  6372. "fileId": "07iX8prO1MT44USX84zKUc",
  6373. "sync": false
  6374. },
  6375. {
  6376. "__type__": "cc.Node",
  6377. "_name": "red_dots",
  6378. "_objFlags": 0,
  6379. "_parent": {
  6380. "__id__": 155
  6381. },
  6382. "_children": [],
  6383. "_active": true,
  6384. "_components": [
  6385. {
  6386. "__id__": 181
  6387. }
  6388. ],
  6389. "_prefab": {
  6390. "__id__": 182
  6391. },
  6392. "_opacity": 255,
  6393. "_color": {
  6394. "__type__": "cc.Color",
  6395. "r": 255,
  6396. "g": 255,
  6397. "b": 255,
  6398. "a": 255
  6399. },
  6400. "_contentSize": {
  6401. "__type__": "cc.Size",
  6402. "width": 40,
  6403. "height": 40
  6404. },
  6405. "_anchorPoint": {
  6406. "__type__": "cc.Vec2",
  6407. "x": 0.5,
  6408. "y": 0.5
  6409. },
  6410. "_trs": {
  6411. "__type__": "TypedArray",
  6412. "ctor": "Float64Array",
  6413. "array": [
  6414. 153.915,
  6415. 32.828,
  6416. 0,
  6417. 0,
  6418. 0,
  6419. 0,
  6420. 1,
  6421. 1,
  6422. 1,
  6423. 1
  6424. ]
  6425. },
  6426. "_eulerAngles": {
  6427. "__type__": "cc.Vec3",
  6428. "x": 0,
  6429. "y": 0,
  6430. "z": 0
  6431. },
  6432. "_skewX": 0,
  6433. "_skewY": 0,
  6434. "_is3DNode": false,
  6435. "_groupIndex": 0,
  6436. "groupIndex": 0,
  6437. "_id": ""
  6438. },
  6439. {
  6440. "__type__": "cc.Sprite",
  6441. "_name": "",
  6442. "_objFlags": 0,
  6443. "node": {
  6444. "__id__": 180
  6445. },
  6446. "_enabled": true,
  6447. "_materials": [
  6448. {
  6449. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6450. }
  6451. ],
  6452. "_srcBlendFactor": 770,
  6453. "_dstBlendFactor": 771,
  6454. "_spriteFrame": {
  6455. "__uuid__": "2e0bba47-213b-4d41-9454-69b2b6261500"
  6456. },
  6457. "_type": 0,
  6458. "_sizeMode": 0,
  6459. "_fillType": 0,
  6460. "_fillCenter": {
  6461. "__type__": "cc.Vec2",
  6462. "x": 0,
  6463. "y": 0
  6464. },
  6465. "_fillStart": 0,
  6466. "_fillRange": 0,
  6467. "_isTrimmedMode": true,
  6468. "_atlas": null,
  6469. "_id": ""
  6470. },
  6471. {
  6472. "__type__": "cc.PrefabInfo",
  6473. "root": {
  6474. "__id__": 1
  6475. },
  6476. "asset": {
  6477. "__id__": 0
  6478. },
  6479. "fileId": "20oMrnEgBM3IaKjp6giKGn",
  6480. "sync": false
  6481. },
  6482. {
  6483. "__type__": "cc.Toggle",
  6484. "_name": "",
  6485. "_objFlags": 0,
  6486. "node": {
  6487. "__id__": 155
  6488. },
  6489. "_enabled": true,
  6490. "_normalMaterial": null,
  6491. "_grayMaterial": null,
  6492. "duration": 0.1,
  6493. "zoomScale": 1.2,
  6494. "clickEvents": [],
  6495. "_N$interactable": true,
  6496. "_N$enableAutoGrayEffect": false,
  6497. "_N$transition": 3,
  6498. "transition": 3,
  6499. "_N$normalColor": {
  6500. "__type__": "cc.Color",
  6501. "r": 214,
  6502. "g": 214,
  6503. "b": 214,
  6504. "a": 255
  6505. },
  6506. "_N$pressedColor": {
  6507. "__type__": "cc.Color",
  6508. "r": 211,
  6509. "g": 211,
  6510. "b": 211,
  6511. "a": 255
  6512. },
  6513. "pressedColor": {
  6514. "__type__": "cc.Color",
  6515. "r": 211,
  6516. "g": 211,
  6517. "b": 211,
  6518. "a": 255
  6519. },
  6520. "_N$hoverColor": {
  6521. "__type__": "cc.Color",
  6522. "r": 255,
  6523. "g": 255,
  6524. "b": 255,
  6525. "a": 255
  6526. },
  6527. "hoverColor": {
  6528. "__type__": "cc.Color",
  6529. "r": 255,
  6530. "g": 255,
  6531. "b": 255,
  6532. "a": 255
  6533. },
  6534. "_N$disabledColor": {
  6535. "__type__": "cc.Color",
  6536. "r": 124,
  6537. "g": 124,
  6538. "b": 124,
  6539. "a": 255
  6540. },
  6541. "_N$normalSprite": null,
  6542. "_N$pressedSprite": null,
  6543. "pressedSprite": null,
  6544. "_N$hoverSprite": null,
  6545. "hoverSprite": null,
  6546. "_N$disabledSprite": null,
  6547. "_N$target": {
  6548. "__id__": 155
  6549. },
  6550. "_N$isChecked": false,
  6551. "toggleGroup": null,
  6552. "checkMark": {
  6553. "__id__": 170
  6554. },
  6555. "checkEvents": [
  6556. {
  6557. "__id__": 184
  6558. }
  6559. ],
  6560. "_id": ""
  6561. },
  6562. {
  6563. "__type__": "cc.ClickEvent",
  6564. "target": {
  6565. "__id__": 1
  6566. },
  6567. "component": "",
  6568. "_componentId": "424349zjmhIaKg9ABoHFkZs",
  6569. "handler": "onToggleClick",
  6570. "customEventData": ""
  6571. },
  6572. {
  6573. "__type__": "cc.PrefabInfo",
  6574. "root": {
  6575. "__id__": 1
  6576. },
  6577. "asset": {
  6578. "__id__": 0
  6579. },
  6580. "fileId": "29pHZhIYtKOLfSCH4L4SOe",
  6581. "sync": false
  6582. },
  6583. {
  6584. "__type__": "cc.ToggleContainer",
  6585. "_name": "",
  6586. "_objFlags": 0,
  6587. "node": {
  6588. "__id__": 134
  6589. },
  6590. "_enabled": true,
  6591. "allowSwitchOff": false,
  6592. "checkEvents": [],
  6593. "_id": ""
  6594. },
  6595. {
  6596. "__type__": "cc.Layout",
  6597. "_name": "",
  6598. "_objFlags": 0,
  6599. "node": {
  6600. "__id__": 134
  6601. },
  6602. "_enabled": true,
  6603. "_layoutSize": {
  6604. "__type__": "cc.Size",
  6605. "width": 500,
  6606. "height": 61
  6607. },
  6608. "_resize": 0,
  6609. "_N$layoutType": 1,
  6610. "_N$cellSize": {
  6611. "__type__": "cc.Size",
  6612. "width": 40,
  6613. "height": 40
  6614. },
  6615. "_N$startAxis": 0,
  6616. "_N$paddingLeft": 0,
  6617. "_N$paddingRight": 0,
  6618. "_N$paddingTop": 0,
  6619. "_N$paddingBottom": 0,
  6620. "_N$spacingX": 10,
  6621. "_N$spacingY": 0,
  6622. "_N$verticalDirection": 1,
  6623. "_N$horizontalDirection": 0,
  6624. "_N$affectedByScale": false,
  6625. "_id": ""
  6626. },
  6627. {
  6628. "__type__": "cc.PrefabInfo",
  6629. "root": {
  6630. "__id__": 1
  6631. },
  6632. "asset": {
  6633. "__id__": 0
  6634. },
  6635. "fileId": "aco22+MOxOUqYxoXoRo1pG",
  6636. "sync": false
  6637. },
  6638. {
  6639. "__type__": "cc.Node",
  6640. "_name": "bg",
  6641. "_objFlags": 0,
  6642. "_parent": {
  6643. "__id__": 1
  6644. },
  6645. "_children": [],
  6646. "_active": true,
  6647. "_components": [
  6648. {
  6649. "__id__": 190
  6650. }
  6651. ],
  6652. "_prefab": {
  6653. "__id__": 191
  6654. },
  6655. "_opacity": 255,
  6656. "_color": {
  6657. "__type__": "cc.Color",
  6658. "r": 255,
  6659. "g": 255,
  6660. "b": 255,
  6661. "a": 255
  6662. },
  6663. "_contentSize": {
  6664. "__type__": "cc.Size",
  6665. "width": 0,
  6666. "height": 0
  6667. },
  6668. "_anchorPoint": {
  6669. "__type__": "cc.Vec2",
  6670. "x": 0.5,
  6671. "y": 0.5
  6672. },
  6673. "_trs": {
  6674. "__type__": "TypedArray",
  6675. "ctor": "Float64Array",
  6676. "array": [
  6677. 576.727,
  6678. -79,
  6679. 0,
  6680. 0,
  6681. 0,
  6682. 0,
  6683. 1,
  6684. 1,
  6685. 1,
  6686. 1
  6687. ]
  6688. },
  6689. "_eulerAngles": {
  6690. "__type__": "cc.Vec3",
  6691. "x": 0,
  6692. "y": 0,
  6693. "z": 0
  6694. },
  6695. "_skewX": 0,
  6696. "_skewY": 0,
  6697. "_is3DNode": false,
  6698. "_groupIndex": 0,
  6699. "groupIndex": 0,
  6700. "_id": ""
  6701. },
  6702. {
  6703. "__type__": "cc.Sprite",
  6704. "_name": "",
  6705. "_objFlags": 0,
  6706. "node": {
  6707. "__id__": 189
  6708. },
  6709. "_enabled": true,
  6710. "_materials": [
  6711. {
  6712. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6713. }
  6714. ],
  6715. "_srcBlendFactor": 770,
  6716. "_dstBlendFactor": 771,
  6717. "_spriteFrame": {
  6718. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  6719. },
  6720. "_type": 1,
  6721. "_sizeMode": 0,
  6722. "_fillType": 0,
  6723. "_fillCenter": {
  6724. "__type__": "cc.Vec2",
  6725. "x": 0,
  6726. "y": 0
  6727. },
  6728. "_fillStart": 0,
  6729. "_fillRange": 0,
  6730. "_isTrimmedMode": true,
  6731. "_atlas": null,
  6732. "_id": ""
  6733. },
  6734. {
  6735. "__type__": "cc.PrefabInfo",
  6736. "root": {
  6737. "__id__": 1
  6738. },
  6739. "asset": {
  6740. "__id__": 0
  6741. },
  6742. "fileId": "a1liQC0ARCNIq45EN6g6wZ",
  6743. "sync": false
  6744. },
  6745. {
  6746. "__type__": "cc.Node",
  6747. "_name": "guidePrevent",
  6748. "_objFlags": 0,
  6749. "_parent": {
  6750. "__id__": 1
  6751. },
  6752. "_children": [],
  6753. "_active": false,
  6754. "_components": [
  6755. {
  6756. "__id__": 193
  6757. }
  6758. ],
  6759. "_prefab": {
  6760. "__id__": 194
  6761. },
  6762. "_opacity": 255,
  6763. "_color": {
  6764. "__type__": "cc.Color",
  6765. "r": 255,
  6766. "g": 255,
  6767. "b": 255,
  6768. "a": 255
  6769. },
  6770. "_contentSize": {
  6771. "__type__": "cc.Size",
  6772. "width": 2600,
  6773. "height": 1080
  6774. },
  6775. "_anchorPoint": {
  6776. "__type__": "cc.Vec2",
  6777. "x": 0.5,
  6778. "y": 0.5
  6779. },
  6780. "_trs": {
  6781. "__type__": "TypedArray",
  6782. "ctor": "Float64Array",
  6783. "array": [
  6784. 0,
  6785. 0,
  6786. 0,
  6787. 0,
  6788. 0,
  6789. 0,
  6790. 1,
  6791. 1,
  6792. 1,
  6793. 1
  6794. ]
  6795. },
  6796. "_eulerAngles": {
  6797. "__type__": "cc.Vec3",
  6798. "x": 0,
  6799. "y": 0,
  6800. "z": 0
  6801. },
  6802. "_skewX": 0,
  6803. "_skewY": 0,
  6804. "_is3DNode": false,
  6805. "_groupIndex": 0,
  6806. "groupIndex": 0,
  6807. "_id": ""
  6808. },
  6809. {
  6810. "__type__": "cc.BlockInputEvents",
  6811. "_name": "",
  6812. "_objFlags": 0,
  6813. "node": {
  6814. "__id__": 192
  6815. },
  6816. "_enabled": true,
  6817. "_id": ""
  6818. },
  6819. {
  6820. "__type__": "cc.PrefabInfo",
  6821. "root": {
  6822. "__id__": 1
  6823. },
  6824. "asset": {
  6825. "__id__": 0
  6826. },
  6827. "fileId": "c4wKUROQ9FSJGHlC61utkn",
  6828. "sync": false
  6829. },
  6830. {
  6831. "__type__": "cc.Node",
  6832. "_name": "roleList",
  6833. "_objFlags": 0,
  6834. "_parent": {
  6835. "__id__": 1
  6836. },
  6837. "_children": [
  6838. {
  6839. "__id__": 196
  6840. },
  6841. {
  6842. "__id__": 212
  6843. }
  6844. ],
  6845. "_active": true,
  6846. "_components": [
  6847. {
  6848. "__id__": 217
  6849. },
  6850. {
  6851. "__id__": 218
  6852. },
  6853. {
  6854. "__id__": 219
  6855. }
  6856. ],
  6857. "_prefab": {
  6858. "__id__": 222
  6859. },
  6860. "_opacity": 255,
  6861. "_color": {
  6862. "__type__": "cc.Color",
  6863. "r": 255,
  6864. "g": 255,
  6865. "b": 255,
  6866. "a": 255
  6867. },
  6868. "_contentSize": {
  6869. "__type__": "cc.Size",
  6870. "width": 650,
  6871. "height": 760
  6872. },
  6873. "_anchorPoint": {
  6874. "__type__": "cc.Vec2",
  6875. "x": 0.5,
  6876. "y": 0.5
  6877. },
  6878. "_trs": {
  6879. "__type__": "TypedArray",
  6880. "ctor": "Float64Array",
  6881. "array": [
  6882. 576.727,
  6883. -79,
  6884. 0,
  6885. 0,
  6886. 0,
  6887. 0,
  6888. 1,
  6889. 1,
  6890. 1,
  6891. 1
  6892. ]
  6893. },
  6894. "_eulerAngles": {
  6895. "__type__": "cc.Vec3",
  6896. "x": 0,
  6897. "y": 0,
  6898. "z": 0
  6899. },
  6900. "_skewX": 0,
  6901. "_skewY": 0,
  6902. "_is3DNode": false,
  6903. "_groupIndex": 0,
  6904. "groupIndex": 0,
  6905. "_id": ""
  6906. },
  6907. {
  6908. "__type__": "cc.Node",
  6909. "_name": "view",
  6910. "_objFlags": 0,
  6911. "_parent": {
  6912. "__id__": 195
  6913. },
  6914. "_children": [
  6915. {
  6916. "__id__": 197
  6917. }
  6918. ],
  6919. "_active": true,
  6920. "_components": [
  6921. {
  6922. "__id__": 210
  6923. }
  6924. ],
  6925. "_prefab": {
  6926. "__id__": 211
  6927. },
  6928. "_opacity": 255,
  6929. "_color": {
  6930. "__type__": "cc.Color",
  6931. "r": 255,
  6932. "g": 255,
  6933. "b": 255,
  6934. "a": 255
  6935. },
  6936. "_contentSize": {
  6937. "__type__": "cc.Size",
  6938. "width": 650,
  6939. "height": 760
  6940. },
  6941. "_anchorPoint": {
  6942. "__type__": "cc.Vec2",
  6943. "x": 0.5,
  6944. "y": 1
  6945. },
  6946. "_trs": {
  6947. "__type__": "TypedArray",
  6948. "ctor": "Float64Array",
  6949. "array": [
  6950. 0,
  6951. 380,
  6952. 0,
  6953. 0,
  6954. 0,
  6955. 0,
  6956. 1,
  6957. 1,
  6958. 1,
  6959. 1
  6960. ]
  6961. },
  6962. "_eulerAngles": {
  6963. "__type__": "cc.Vec3",
  6964. "x": 0,
  6965. "y": 0,
  6966. "z": 0
  6967. },
  6968. "_skewX": 0,
  6969. "_skewY": 0,
  6970. "_is3DNode": false,
  6971. "_groupIndex": 0,
  6972. "groupIndex": 0,
  6973. "_id": ""
  6974. },
  6975. {
  6976. "__type__": "cc.Node",
  6977. "_name": "content",
  6978. "_objFlags": 0,
  6979. "_parent": {
  6980. "__id__": 196
  6981. },
  6982. "_children": [
  6983. {
  6984. "__id__": 198
  6985. }
  6986. ],
  6987. "_active": true,
  6988. "_components": [
  6989. {
  6990. "__id__": 208
  6991. }
  6992. ],
  6993. "_prefab": {
  6994. "__id__": 209
  6995. },
  6996. "_opacity": 255,
  6997. "_color": {
  6998. "__type__": "cc.Color",
  6999. "r": 255,
  7000. "g": 255,
  7001. "b": 255,
  7002. "a": 255
  7003. },
  7004. "_contentSize": {
  7005. "__type__": "cc.Size",
  7006. "width": 650,
  7007. "height": 760
  7008. },
  7009. "_anchorPoint": {
  7010. "__type__": "cc.Vec2",
  7011. "x": 0.5,
  7012. "y": 1
  7013. },
  7014. "_trs": {
  7015. "__type__": "TypedArray",
  7016. "ctor": "Float64Array",
  7017. "array": [
  7018. 0,
  7019. 0,
  7020. 0,
  7021. 0,
  7022. 0,
  7023. 0,
  7024. 1,
  7025. 1,
  7026. 1,
  7027. 1
  7028. ]
  7029. },
  7030. "_eulerAngles": {
  7031. "__type__": "cc.Vec3",
  7032. "x": 0,
  7033. "y": 0,
  7034. "z": 0
  7035. },
  7036. "_skewX": 0,
  7037. "_skewY": 0,
  7038. "_is3DNode": false,
  7039. "_groupIndex": 0,
  7040. "groupIndex": 0,
  7041. "_id": ""
  7042. },
  7043. {
  7044. "__type__": "cc.Node",
  7045. "_name": "item",
  7046. "_objFlags": 0,
  7047. "_parent": {
  7048. "__id__": 197
  7049. },
  7050. "_children": [
  7051. {
  7052. "__id__": 199
  7053. },
  7054. {
  7055. "__id__": 201
  7056. },
  7057. {
  7058. "__id__": 204
  7059. }
  7060. ],
  7061. "_active": true,
  7062. "_components": [],
  7063. "_prefab": {
  7064. "__id__": 207
  7065. },
  7066. "_opacity": 255,
  7067. "_color": {
  7068. "__type__": "cc.Color",
  7069. "r": 255,
  7070. "g": 255,
  7071. "b": 255,
  7072. "a": 255
  7073. },
  7074. "_contentSize": {
  7075. "__type__": "cc.Size",
  7076. "width": 150,
  7077. "height": 150
  7078. },
  7079. "_anchorPoint": {
  7080. "__type__": "cc.Vec2",
  7081. "x": 0.5,
  7082. "y": 0.5
  7083. },
  7084. "_trs": {
  7085. "__type__": "TypedArray",
  7086. "ctor": "Float64Array",
  7087. "array": [
  7088. -238,
  7089. -94,
  7090. 0,
  7091. 0,
  7092. 0,
  7093. 0,
  7094. 1,
  7095. 1,
  7096. 1,
  7097. 1
  7098. ]
  7099. },
  7100. "_eulerAngles": {
  7101. "__type__": "cc.Vec3",
  7102. "x": 0,
  7103. "y": 0,
  7104. "z": 0
  7105. },
  7106. "_skewX": 0,
  7107. "_skewY": 0,
  7108. "_is3DNode": false,
  7109. "_groupIndex": 0,
  7110. "groupIndex": 0,
  7111. "_id": ""
  7112. },
  7113. {
  7114. "__type__": "cc.Node",
  7115. "_name": "role",
  7116. "_objFlags": 0,
  7117. "_parent": {
  7118. "__id__": 198
  7119. },
  7120. "_children": [],
  7121. "_active": true,
  7122. "_components": [],
  7123. "_prefab": {
  7124. "__id__": 200
  7125. },
  7126. "_opacity": 255,
  7127. "_color": {
  7128. "__type__": "cc.Color",
  7129. "r": 255,
  7130. "g": 255,
  7131. "b": 255,
  7132. "a": 255
  7133. },
  7134. "_contentSize": {
  7135. "__type__": "cc.Size",
  7136. "width": 166,
  7137. "height": 166
  7138. },
  7139. "_anchorPoint": {
  7140. "__type__": "cc.Vec2",
  7141. "x": 0.5,
  7142. "y": 0.5
  7143. },
  7144. "_trs": {
  7145. "__type__": "TypedArray",
  7146. "ctor": "Float64Array",
  7147. "array": [
  7148. 0,
  7149. 0,
  7150. 0,
  7151. 0,
  7152. 0,
  7153. 0,
  7154. 1,
  7155. 0.9,
  7156. 0.9,
  7157. 1
  7158. ]
  7159. },
  7160. "_eulerAngles": {
  7161. "__type__": "cc.Vec3",
  7162. "x": 0,
  7163. "y": 0,
  7164. "z": 0
  7165. },
  7166. "_skewX": 0,
  7167. "_skewY": 0,
  7168. "_is3DNode": false,
  7169. "_groupIndex": 0,
  7170. "groupIndex": 0,
  7171. "_id": ""
  7172. },
  7173. {
  7174. "__type__": "cc.PrefabInfo",
  7175. "root": {
  7176. "__id__": 199
  7177. },
  7178. "asset": {
  7179. "__uuid__": "340ee43b-3eff-4c7f-a186-2efac8f6fa66"
  7180. },
  7181. "fileId": "3b8XcuWpxDL5sm67kWdO1O",
  7182. "sync": false
  7183. },
  7184. {
  7185. "__type__": "cc.Node",
  7186. "_name": "icon_battle",
  7187. "_objFlags": 0,
  7188. "_parent": {
  7189. "__id__": 198
  7190. },
  7191. "_children": [],
  7192. "_active": true,
  7193. "_components": [
  7194. {
  7195. "__id__": 202
  7196. }
  7197. ],
  7198. "_prefab": {
  7199. "__id__": 203
  7200. },
  7201. "_opacity": 255,
  7202. "_color": {
  7203. "__type__": "cc.Color",
  7204. "r": 255,
  7205. "g": 255,
  7206. "b": 255,
  7207. "a": 255
  7208. },
  7209. "_contentSize": {
  7210. "__type__": "cc.Size",
  7211. "width": 46,
  7212. "height": 45
  7213. },
  7214. "_anchorPoint": {
  7215. "__type__": "cc.Vec2",
  7216. "x": 0.5,
  7217. "y": 0.5
  7218. },
  7219. "_trs": {
  7220. "__type__": "TypedArray",
  7221. "ctor": "Float64Array",
  7222. "array": [
  7223. -51.184,
  7224. 52.216,
  7225. 0,
  7226. 0,
  7227. 0,
  7228. 0,
  7229. 1,
  7230. 1,
  7231. 1,
  7232. 1
  7233. ]
  7234. },
  7235. "_eulerAngles": {
  7236. "__type__": "cc.Vec3",
  7237. "x": 0,
  7238. "y": 0,
  7239. "z": 0
  7240. },
  7241. "_skewX": 0,
  7242. "_skewY": 0,
  7243. "_is3DNode": false,
  7244. "_groupIndex": 0,
  7245. "groupIndex": 0,
  7246. "_id": ""
  7247. },
  7248. {
  7249. "__type__": "cc.Sprite",
  7250. "_name": "",
  7251. "_objFlags": 0,
  7252. "node": {
  7253. "__id__": 201
  7254. },
  7255. "_enabled": true,
  7256. "_materials": [
  7257. {
  7258. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7259. }
  7260. ],
  7261. "_srcBlendFactor": 770,
  7262. "_dstBlendFactor": 771,
  7263. "_spriteFrame": {
  7264. "__uuid__": "bea32121-3c6a-4215-b53e-6b76f7073b31"
  7265. },
  7266. "_type": 0,
  7267. "_sizeMode": 1,
  7268. "_fillType": 0,
  7269. "_fillCenter": {
  7270. "__type__": "cc.Vec2",
  7271. "x": 0,
  7272. "y": 0
  7273. },
  7274. "_fillStart": 0,
  7275. "_fillRange": 0,
  7276. "_isTrimmedMode": true,
  7277. "_atlas": null,
  7278. "_id": ""
  7279. },
  7280. {
  7281. "__type__": "cc.PrefabInfo",
  7282. "root": {
  7283. "__id__": 1
  7284. },
  7285. "asset": {
  7286. "__id__": 0
  7287. },
  7288. "fileId": "60dFZ1l+dCpatpkssVTe2F",
  7289. "sync": false
  7290. },
  7291. {
  7292. "__type__": "cc.Node",
  7293. "_name": "red_dots",
  7294. "_objFlags": 0,
  7295. "_parent": {
  7296. "__id__": 198
  7297. },
  7298. "_children": [],
  7299. "_active": true,
  7300. "_components": [
  7301. {
  7302. "__id__": 205
  7303. }
  7304. ],
  7305. "_prefab": {
  7306. "__id__": 206
  7307. },
  7308. "_opacity": 255,
  7309. "_color": {
  7310. "__type__": "cc.Color",
  7311. "r": 255,
  7312. "g": 255,
  7313. "b": 255,
  7314. "a": 255
  7315. },
  7316. "_contentSize": {
  7317. "__type__": "cc.Size",
  7318. "width": 40,
  7319. "height": 40
  7320. },
  7321. "_anchorPoint": {
  7322. "__type__": "cc.Vec2",
  7323. "x": 0.5,
  7324. "y": 0.5
  7325. },
  7326. "_trs": {
  7327. "__type__": "TypedArray",
  7328. "ctor": "Float64Array",
  7329. "array": [
  7330. 57.556,
  7331. 58.117,
  7332. 0,
  7333. 0,
  7334. 0,
  7335. 0,
  7336. 1,
  7337. 1,
  7338. 1,
  7339. 1
  7340. ]
  7341. },
  7342. "_eulerAngles": {
  7343. "__type__": "cc.Vec3",
  7344. "x": 0,
  7345. "y": 0,
  7346. "z": 0
  7347. },
  7348. "_skewX": 0,
  7349. "_skewY": 0,
  7350. "_is3DNode": false,
  7351. "_groupIndex": 0,
  7352. "groupIndex": 0,
  7353. "_id": ""
  7354. },
  7355. {
  7356. "__type__": "cc.Sprite",
  7357. "_name": "",
  7358. "_objFlags": 0,
  7359. "node": {
  7360. "__id__": 204
  7361. },
  7362. "_enabled": true,
  7363. "_materials": [
  7364. {
  7365. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7366. }
  7367. ],
  7368. "_srcBlendFactor": 770,
  7369. "_dstBlendFactor": 771,
  7370. "_spriteFrame": {
  7371. "__uuid__": "2e0bba47-213b-4d41-9454-69b2b6261500"
  7372. },
  7373. "_type": 0,
  7374. "_sizeMode": 0,
  7375. "_fillType": 0,
  7376. "_fillCenter": {
  7377. "__type__": "cc.Vec2",
  7378. "x": 0,
  7379. "y": 0
  7380. },
  7381. "_fillStart": 0,
  7382. "_fillRange": 0,
  7383. "_isTrimmedMode": true,
  7384. "_atlas": null,
  7385. "_id": ""
  7386. },
  7387. {
  7388. "__type__": "cc.PrefabInfo",
  7389. "root": {
  7390. "__id__": 1
  7391. },
  7392. "asset": {
  7393. "__id__": 0
  7394. },
  7395. "fileId": "c60GRDahxC+J5R/kQxCrmL",
  7396. "sync": false
  7397. },
  7398. {
  7399. "__type__": "cc.PrefabInfo",
  7400. "root": {
  7401. "__id__": 1
  7402. },
  7403. "asset": {
  7404. "__id__": 0
  7405. },
  7406. "fileId": "e4EMN3EqNIwYDivtFkV1EC",
  7407. "sync": false
  7408. },
  7409. {
  7410. "__type__": "cc.Layout",
  7411. "_name": "",
  7412. "_objFlags": 0,
  7413. "node": {
  7414. "__id__": 197
  7415. },
  7416. "_enabled": true,
  7417. "_layoutSize": {
  7418. "__type__": "cc.Size",
  7419. "width": 650,
  7420. "height": 760
  7421. },
  7422. "_resize": 0,
  7423. "_N$layoutType": 3,
  7424. "_N$cellSize": {
  7425. "__type__": "cc.Size",
  7426. "width": 40,
  7427. "height": 40
  7428. },
  7429. "_N$startAxis": 0,
  7430. "_N$paddingLeft": 12,
  7431. "_N$paddingRight": 0,
  7432. "_N$paddingTop": 19,
  7433. "_N$paddingBottom": 10,
  7434. "_N$spacingX": 11,
  7435. "_N$spacingY": 11,
  7436. "_N$verticalDirection": 1,
  7437. "_N$horizontalDirection": 0,
  7438. "_N$affectedByScale": false,
  7439. "_id": ""
  7440. },
  7441. {
  7442. "__type__": "cc.PrefabInfo",
  7443. "root": {
  7444. "__id__": 1
  7445. },
  7446. "asset": {
  7447. "__id__": 0
  7448. },
  7449. "fileId": "d8mxR1CF1LyqM/PYbWUePy",
  7450. "sync": false
  7451. },
  7452. {
  7453. "__type__": "cc.Mask",
  7454. "_name": "",
  7455. "_objFlags": 0,
  7456. "node": {
  7457. "__id__": 196
  7458. },
  7459. "_enabled": true,
  7460. "_materials": [
  7461. {
  7462. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7463. }
  7464. ],
  7465. "_spriteFrame": null,
  7466. "_type": 0,
  7467. "_segments": 64,
  7468. "_N$alphaThreshold": 0,
  7469. "_N$inverted": false,
  7470. "_id": ""
  7471. },
  7472. {
  7473. "__type__": "cc.PrefabInfo",
  7474. "root": {
  7475. "__id__": 1
  7476. },
  7477. "asset": {
  7478. "__id__": 0
  7479. },
  7480. "fileId": "79x1oT9V9ASoCJdab3t2aj",
  7481. "sync": false
  7482. },
  7483. {
  7484. "__type__": "cc.Node",
  7485. "_name": "lb",
  7486. "_objFlags": 0,
  7487. "_parent": {
  7488. "__id__": 195
  7489. },
  7490. "_children": [],
  7491. "_active": true,
  7492. "_components": [
  7493. {
  7494. "__id__": 213
  7495. },
  7496. {
  7497. "__id__": 214
  7498. },
  7499. {
  7500. "__id__": 215
  7501. }
  7502. ],
  7503. "_prefab": {
  7504. "__id__": 216
  7505. },
  7506. "_opacity": 255,
  7507. "_color": {
  7508. "__type__": "cc.Color",
  7509. "r": 255,
  7510. "g": 255,
  7511. "b": 255,
  7512. "a": 255
  7513. },
  7514. "_contentSize": {
  7515. "__type__": "cc.Size",
  7516. "width": 161.11,
  7517. "height": 56.4
  7518. },
  7519. "_anchorPoint": {
  7520. "__type__": "cc.Vec2",
  7521. "x": 0.5,
  7522. "y": 0.5
  7523. },
  7524. "_trs": {
  7525. "__type__": "TypedArray",
  7526. "ctor": "Float64Array",
  7527. "array": [
  7528. 0,
  7529. 0,
  7530. 0,
  7531. 0,
  7532. 0,
  7533. 0,
  7534. 1,
  7535. 1,
  7536. 1,
  7537. 1
  7538. ]
  7539. },
  7540. "_eulerAngles": {
  7541. "__type__": "cc.Vec3",
  7542. "x": 0,
  7543. "y": 0,
  7544. "z": 0
  7545. },
  7546. "_skewX": 0,
  7547. "_skewY": 0,
  7548. "_is3DNode": false,
  7549. "_groupIndex": 0,
  7550. "groupIndex": 0,
  7551. "_id": ""
  7552. },
  7553. {
  7554. "__type__": "cc.Label",
  7555. "_name": "",
  7556. "_objFlags": 0,
  7557. "node": {
  7558. "__id__": 212
  7559. },
  7560. "_enabled": true,
  7561. "_materials": [
  7562. {
  7563. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7564. }
  7565. ],
  7566. "_srcBlendFactor": 770,
  7567. "_dstBlendFactor": 771,
  7568. "_string": "no heroes",
  7569. "_N$string": "no heroes",
  7570. "_fontSize": 36,
  7571. "_lineHeight": 40,
  7572. "_enableWrapText": true,
  7573. "_N$file": {
  7574. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  7575. },
  7576. "_isSystemFontUsed": false,
  7577. "_spacingX": 0,
  7578. "_batchAsBitmap": false,
  7579. "_styleFlags": 0,
  7580. "_underlineHeight": 0,
  7581. "_N$horizontalAlign": 1,
  7582. "_N$verticalAlign": 1,
  7583. "_N$fontFamily": "Arial",
  7584. "_N$overflow": 0,
  7585. "_N$cacheMode": 0,
  7586. "_id": ""
  7587. },
  7588. {
  7589. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  7590. "_name": "",
  7591. "_objFlags": 0,
  7592. "node": {
  7593. "__id__": 212
  7594. },
  7595. "_enabled": true,
  7596. "_englishCase": 0,
  7597. "i18n_string": "t50",
  7598. "i18n_params": [
  7599. "1"
  7600. ],
  7601. "_addColon": false,
  7602. "_id": ""
  7603. },
  7604. {
  7605. "__type__": "cc.LabelOutline",
  7606. "_name": "",
  7607. "_objFlags": 0,
  7608. "node": {
  7609. "__id__": 212
  7610. },
  7611. "_enabled": true,
  7612. "_color": {
  7613. "__type__": "cc.Color",
  7614. "r": 38,
  7615. "g": 17,
  7616. "b": 12,
  7617. "a": 255
  7618. },
  7619. "_width": 3,
  7620. "_id": ""
  7621. },
  7622. {
  7623. "__type__": "cc.PrefabInfo",
  7624. "root": {
  7625. "__id__": 1
  7626. },
  7627. "asset": {
  7628. "__id__": 0
  7629. },
  7630. "fileId": "53F7IAf+tPvJnchlA0Tuc/",
  7631. "sync": false
  7632. },
  7633. {
  7634. "__type__": "cc.ScrollView",
  7635. "_name": "",
  7636. "_objFlags": 0,
  7637. "node": {
  7638. "__id__": 195
  7639. },
  7640. "_enabled": true,
  7641. "horizontal": false,
  7642. "vertical": true,
  7643. "inertia": true,
  7644. "brake": 0.75,
  7645. "elastic": false,
  7646. "bounceDuration": 0.23,
  7647. "scrollEvents": [],
  7648. "cancelInnerEvents": false,
  7649. "_N$content": {
  7650. "__id__": 197
  7651. },
  7652. "content": {
  7653. "__id__": 197
  7654. },
  7655. "_N$horizontalScrollBar": null,
  7656. "_N$verticalScrollBar": null,
  7657. "_id": ""
  7658. },
  7659. {
  7660. "__type__": "cc.Sprite",
  7661. "_name": "",
  7662. "_objFlags": 0,
  7663. "node": {
  7664. "__id__": 195
  7665. },
  7666. "_enabled": true,
  7667. "_materials": [
  7668. {
  7669. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7670. }
  7671. ],
  7672. "_srcBlendFactor": 770,
  7673. "_dstBlendFactor": 771,
  7674. "_spriteFrame": {
  7675. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  7676. },
  7677. "_type": 1,
  7678. "_sizeMode": 0,
  7679. "_fillType": 0,
  7680. "_fillCenter": {
  7681. "__type__": "cc.Vec2",
  7682. "x": 0,
  7683. "y": 0
  7684. },
  7685. "_fillStart": 0,
  7686. "_fillRange": 0,
  7687. "_isTrimmedMode": true,
  7688. "_atlas": null,
  7689. "_id": ""
  7690. },
  7691. {
  7692. "__type__": "c8b0avBBlRLLLMX0ufI4l6A",
  7693. "_name": "",
  7694. "_objFlags": 0,
  7695. "node": {
  7696. "__id__": 195
  7697. },
  7698. "_enabled": true,
  7699. "templateType": 1,
  7700. "tmpNode": {
  7701. "__id__": 198
  7702. },
  7703. "tmpPrefab": null,
  7704. "_slideMode": 1,
  7705. "pageDistance": 0.3,
  7706. "pageChangeEvent": {
  7707. "__id__": 220
  7708. },
  7709. "_virtual": true,
  7710. "cyclic": false,
  7711. "lackCenter": false,
  7712. "lackSlide": false,
  7713. "_updateRate": 0,
  7714. "frameByFrameRenderNum": 0,
  7715. "renderEvent": {
  7716. "__id__": 221
  7717. },
  7718. "selectedMode": 0,
  7719. "repeatEventSingle": false,
  7720. "selectedEvent": null,
  7721. "_id": ""
  7722. },
  7723. {
  7724. "__type__": "cc.ClickEvent",
  7725. "target": null,
  7726. "component": "",
  7727. "_componentId": "",
  7728. "handler": "",
  7729. "customEventData": ""
  7730. },
  7731. {
  7732. "__type__": "cc.ClickEvent",
  7733. "target": {
  7734. "__id__": 1
  7735. },
  7736. "component": "",
  7737. "_componentId": "424349zjmhIaKg9ABoHFkZs",
  7738. "handler": "initRoleListItem",
  7739. "customEventData": ""
  7740. },
  7741. {
  7742. "__type__": "cc.PrefabInfo",
  7743. "root": {
  7744. "__id__": 1
  7745. },
  7746. "asset": {
  7747. "__id__": 0
  7748. },
  7749. "fileId": "8dJSw0q1VCcKy145ma1rYf",
  7750. "sync": false
  7751. },
  7752. {
  7753. "__type__": "cc.Node",
  7754. "_name": "cardList",
  7755. "_objFlags": 0,
  7756. "_parent": {
  7757. "__id__": 1
  7758. },
  7759. "_children": [
  7760. {
  7761. "__id__": 224
  7762. },
  7763. {
  7764. "__id__": 270
  7765. }
  7766. ],
  7767. "_active": false,
  7768. "_components": [
  7769. {
  7770. "__id__": 275
  7771. },
  7772. {
  7773. "__id__": 276
  7774. },
  7775. {
  7776. "__id__": 279
  7777. }
  7778. ],
  7779. "_prefab": {
  7780. "__id__": 280
  7781. },
  7782. "_opacity": 255,
  7783. "_color": {
  7784. "__type__": "cc.Color",
  7785. "r": 255,
  7786. "g": 255,
  7787. "b": 255,
  7788. "a": 255
  7789. },
  7790. "_contentSize": {
  7791. "__type__": "cc.Size",
  7792. "width": 650,
  7793. "height": 760
  7794. },
  7795. "_anchorPoint": {
  7796. "__type__": "cc.Vec2",
  7797. "x": 0.5,
  7798. "y": 0.5
  7799. },
  7800. "_trs": {
  7801. "__type__": "TypedArray",
  7802. "ctor": "Float64Array",
  7803. "array": [
  7804. 576.727,
  7805. -79,
  7806. 0,
  7807. 0,
  7808. 0,
  7809. 0,
  7810. 1,
  7811. 1,
  7812. 1,
  7813. 1
  7814. ]
  7815. },
  7816. "_eulerAngles": {
  7817. "__type__": "cc.Vec3",
  7818. "x": 0,
  7819. "y": 0,
  7820. "z": 0
  7821. },
  7822. "_skewX": 0,
  7823. "_skewY": 0,
  7824. "_is3DNode": false,
  7825. "_groupIndex": 0,
  7826. "groupIndex": 0,
  7827. "_id": ""
  7828. },
  7829. {
  7830. "__type__": "cc.Node",
  7831. "_name": "view",
  7832. "_objFlags": 0,
  7833. "_parent": {
  7834. "__id__": 223
  7835. },
  7836. "_children": [
  7837. {
  7838. "__id__": 225
  7839. }
  7840. ],
  7841. "_active": true,
  7842. "_components": [
  7843. {
  7844. "__id__": 268
  7845. }
  7846. ],
  7847. "_prefab": {
  7848. "__id__": 269
  7849. },
  7850. "_opacity": 255,
  7851. "_color": {
  7852. "__type__": "cc.Color",
  7853. "r": 255,
  7854. "g": 255,
  7855. "b": 255,
  7856. "a": 255
  7857. },
  7858. "_contentSize": {
  7859. "__type__": "cc.Size",
  7860. "width": 650,
  7861. "height": 760
  7862. },
  7863. "_anchorPoint": {
  7864. "__type__": "cc.Vec2",
  7865. "x": 0.5,
  7866. "y": 1
  7867. },
  7868. "_trs": {
  7869. "__type__": "TypedArray",
  7870. "ctor": "Float64Array",
  7871. "array": [
  7872. 0,
  7873. 380,
  7874. 0,
  7875. 0,
  7876. 0,
  7877. 0,
  7878. 1,
  7879. 1,
  7880. 1,
  7881. 1
  7882. ]
  7883. },
  7884. "_eulerAngles": {
  7885. "__type__": "cc.Vec3",
  7886. "x": 0,
  7887. "y": 0,
  7888. "z": 0
  7889. },
  7890. "_skewX": 0,
  7891. "_skewY": 0,
  7892. "_is3DNode": false,
  7893. "_groupIndex": 0,
  7894. "groupIndex": 0,
  7895. "_id": ""
  7896. },
  7897. {
  7898. "__type__": "cc.Node",
  7899. "_name": "content",
  7900. "_objFlags": 0,
  7901. "_parent": {
  7902. "__id__": 224
  7903. },
  7904. "_children": [
  7905. {
  7906. "__id__": 226
  7907. }
  7908. ],
  7909. "_active": true,
  7910. "_components": [
  7911. {
  7912. "__id__": 266
  7913. }
  7914. ],
  7915. "_prefab": {
  7916. "__id__": 267
  7917. },
  7918. "_opacity": 255,
  7919. "_color": {
  7920. "__type__": "cc.Color",
  7921. "r": 255,
  7922. "g": 255,
  7923. "b": 255,
  7924. "a": 255
  7925. },
  7926. "_contentSize": {
  7927. "__type__": "cc.Size",
  7928. "width": 650,
  7929. "height": 760
  7930. },
  7931. "_anchorPoint": {
  7932. "__type__": "cc.Vec2",
  7933. "x": 0.5,
  7934. "y": 1
  7935. },
  7936. "_trs": {
  7937. "__type__": "TypedArray",
  7938. "ctor": "Float64Array",
  7939. "array": [
  7940. 0,
  7941. 0,
  7942. 0,
  7943. 0,
  7944. 0,
  7945. 0,
  7946. 1,
  7947. 1,
  7948. 1,
  7949. 1
  7950. ]
  7951. },
  7952. "_eulerAngles": {
  7953. "__type__": "cc.Vec3",
  7954. "x": 0,
  7955. "y": 0,
  7956. "z": 0
  7957. },
  7958. "_skewX": 0,
  7959. "_skewY": 0,
  7960. "_is3DNode": false,
  7961. "_groupIndex": 0,
  7962. "groupIndex": 0,
  7963. "_id": ""
  7964. },
  7965. {
  7966. "__type__": "cc.Node",
  7967. "_name": "item",
  7968. "_objFlags": 0,
  7969. "_parent": {
  7970. "__id__": 225
  7971. },
  7972. "_children": [
  7973. {
  7974. "__id__": 227
  7975. },
  7976. {
  7977. "__id__": 229
  7978. },
  7979. {
  7980. "__id__": 232
  7981. },
  7982. {
  7983. "__id__": 262
  7984. }
  7985. ],
  7986. "_active": true,
  7987. "_components": [],
  7988. "_prefab": {
  7989. "__id__": 265
  7990. },
  7991. "_opacity": 255,
  7992. "_color": {
  7993. "__type__": "cc.Color",
  7994. "r": 255,
  7995. "g": 255,
  7996. "b": 255,
  7997. "a": 255
  7998. },
  7999. "_contentSize": {
  8000. "__type__": "cc.Size",
  8001. "width": 150,
  8002. "height": 150
  8003. },
  8004. "_anchorPoint": {
  8005. "__type__": "cc.Vec2",
  8006. "x": 0.5,
  8007. "y": 0.5
  8008. },
  8009. "_trs": {
  8010. "__type__": "TypedArray",
  8011. "ctor": "Float64Array",
  8012. "array": [
  8013. -238,
  8014. -94,
  8015. 0,
  8016. 0,
  8017. 0,
  8018. 0,
  8019. 1,
  8020. 1,
  8021. 1,
  8022. 1
  8023. ]
  8024. },
  8025. "_eulerAngles": {
  8026. "__type__": "cc.Vec3",
  8027. "x": 0,
  8028. "y": 0,
  8029. "z": 0
  8030. },
  8031. "_skewX": 0,
  8032. "_skewY": 0,
  8033. "_is3DNode": false,
  8034. "_groupIndex": 0,
  8035. "groupIndex": 0,
  8036. "_id": ""
  8037. },
  8038. {
  8039. "__type__": "cc.Node",
  8040. "_name": "itemParent",
  8041. "_objFlags": 0,
  8042. "_parent": {
  8043. "__id__": 226
  8044. },
  8045. "_children": [],
  8046. "_active": true,
  8047. "_components": [],
  8048. "_prefab": {
  8049. "__id__": 228
  8050. },
  8051. "_opacity": 255,
  8052. "_color": {
  8053. "__type__": "cc.Color",
  8054. "r": 255,
  8055. "g": 255,
  8056. "b": 255,
  8057. "a": 255
  8058. },
  8059. "_contentSize": {
  8060. "__type__": "cc.Size",
  8061. "width": 0,
  8062. "height": 0
  8063. },
  8064. "_anchorPoint": {
  8065. "__type__": "cc.Vec2",
  8066. "x": 0.5,
  8067. "y": 0.5
  8068. },
  8069. "_trs": {
  8070. "__type__": "TypedArray",
  8071. "ctor": "Float64Array",
  8072. "array": [
  8073. 0,
  8074. 0,
  8075. 0,
  8076. 0,
  8077. 0,
  8078. 0,
  8079. 1,
  8080. 0.9,
  8081. 0.9,
  8082. 1
  8083. ]
  8084. },
  8085. "_eulerAngles": {
  8086. "__type__": "cc.Vec3",
  8087. "x": 0,
  8088. "y": 0,
  8089. "z": 0
  8090. },
  8091. "_skewX": 0,
  8092. "_skewY": 0,
  8093. "_is3DNode": false,
  8094. "_groupIndex": 0,
  8095. "groupIndex": 0,
  8096. "_id": ""
  8097. },
  8098. {
  8099. "__type__": "cc.PrefabInfo",
  8100. "root": {
  8101. "__id__": 227
  8102. },
  8103. "asset": {
  8104. "__uuid__": "862030fe-6b71-4cfa-a67b-2e1d62b79604"
  8105. },
  8106. "fileId": "c4nHYc2cBCA4JTRxkjQhf9",
  8107. "sync": false
  8108. },
  8109. {
  8110. "__type__": "cc.Node",
  8111. "_name": "icon_battle",
  8112. "_objFlags": 0,
  8113. "_parent": {
  8114. "__id__": 226
  8115. },
  8116. "_children": [],
  8117. "_active": true,
  8118. "_components": [
  8119. {
  8120. "__id__": 230
  8121. }
  8122. ],
  8123. "_prefab": {
  8124. "__id__": 231
  8125. },
  8126. "_opacity": 255,
  8127. "_color": {
  8128. "__type__": "cc.Color",
  8129. "r": 255,
  8130. "g": 255,
  8131. "b": 255,
  8132. "a": 255
  8133. },
  8134. "_contentSize": {
  8135. "__type__": "cc.Size",
  8136. "width": 46,
  8137. "height": 45
  8138. },
  8139. "_anchorPoint": {
  8140. "__type__": "cc.Vec2",
  8141. "x": 0.5,
  8142. "y": 0.5
  8143. },
  8144. "_trs": {
  8145. "__type__": "TypedArray",
  8146. "ctor": "Float64Array",
  8147. "array": [
  8148. -51.184,
  8149. 52.216,
  8150. 0,
  8151. 0,
  8152. 0,
  8153. 0,
  8154. 1,
  8155. 1,
  8156. 1,
  8157. 1
  8158. ]
  8159. },
  8160. "_eulerAngles": {
  8161. "__type__": "cc.Vec3",
  8162. "x": 0,
  8163. "y": 0,
  8164. "z": 0
  8165. },
  8166. "_skewX": 0,
  8167. "_skewY": 0,
  8168. "_is3DNode": false,
  8169. "_groupIndex": 0,
  8170. "groupIndex": 0,
  8171. "_id": ""
  8172. },
  8173. {
  8174. "__type__": "cc.Sprite",
  8175. "_name": "",
  8176. "_objFlags": 0,
  8177. "node": {
  8178. "__id__": 229
  8179. },
  8180. "_enabled": true,
  8181. "_materials": [
  8182. {
  8183. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8184. }
  8185. ],
  8186. "_srcBlendFactor": 770,
  8187. "_dstBlendFactor": 771,
  8188. "_spriteFrame": {
  8189. "__uuid__": "bea32121-3c6a-4215-b53e-6b76f7073b31"
  8190. },
  8191. "_type": 0,
  8192. "_sizeMode": 1,
  8193. "_fillType": 0,
  8194. "_fillCenter": {
  8195. "__type__": "cc.Vec2",
  8196. "x": 0,
  8197. "y": 0
  8198. },
  8199. "_fillStart": 0,
  8200. "_fillRange": 0,
  8201. "_isTrimmedMode": true,
  8202. "_atlas": null,
  8203. "_id": ""
  8204. },
  8205. {
  8206. "__type__": "cc.PrefabInfo",
  8207. "root": {
  8208. "__id__": 1
  8209. },
  8210. "asset": {
  8211. "__id__": 0
  8212. },
  8213. "fileId": "6eWIptxYNHoLjx+7753SRI",
  8214. "sync": false
  8215. },
  8216. {
  8217. "__type__": "cc.Node",
  8218. "_name": "debris",
  8219. "_objFlags": 0,
  8220. "_parent": {
  8221. "__id__": 226
  8222. },
  8223. "_children": [
  8224. {
  8225. "__id__": 233
  8226. },
  8227. {
  8228. "__id__": 238
  8229. },
  8230. {
  8231. "__id__": 241
  8232. },
  8233. {
  8234. "__id__": 247
  8235. },
  8236. {
  8237. "__id__": 253
  8238. },
  8239. {
  8240. "__id__": 256
  8241. }
  8242. ],
  8243. "_active": true,
  8244. "_components": [],
  8245. "_prefab": {
  8246. "__id__": 261
  8247. },
  8248. "_opacity": 255,
  8249. "_color": {
  8250. "__type__": "cc.Color",
  8251. "r": 255,
  8252. "g": 255,
  8253. "b": 255,
  8254. "a": 255
  8255. },
  8256. "_contentSize": {
  8257. "__type__": "cc.Size",
  8258. "width": 0,
  8259. "height": 0
  8260. },
  8261. "_anchorPoint": {
  8262. "__type__": "cc.Vec2",
  8263. "x": 0.5,
  8264. "y": 0.5
  8265. },
  8266. "_trs": {
  8267. "__type__": "TypedArray",
  8268. "ctor": "Float64Array",
  8269. "array": [
  8270. 0,
  8271. 0,
  8272. 0,
  8273. 0,
  8274. 0,
  8275. 0,
  8276. 1,
  8277. 1,
  8278. 1,
  8279. 1
  8280. ]
  8281. },
  8282. "_eulerAngles": {
  8283. "__type__": "cc.Vec3",
  8284. "x": 0,
  8285. "y": 0,
  8286. "z": 0
  8287. },
  8288. "_skewX": 0,
  8289. "_skewY": 0,
  8290. "_is3DNode": false,
  8291. "_groupIndex": 0,
  8292. "groupIndex": 0,
  8293. "_id": ""
  8294. },
  8295. {
  8296. "__type__": "cc.Node",
  8297. "_name": "conflate",
  8298. "_objFlags": 0,
  8299. "_parent": {
  8300. "__id__": 232
  8301. },
  8302. "_children": [],
  8303. "_active": true,
  8304. "_components": [
  8305. {
  8306. "__id__": 234
  8307. },
  8308. {
  8309. "__id__": 235
  8310. },
  8311. {
  8312. "__id__": 236
  8313. }
  8314. ],
  8315. "_prefab": {
  8316. "__id__": 237
  8317. },
  8318. "_opacity": 255,
  8319. "_color": {
  8320. "__type__": "cc.Color",
  8321. "r": 255,
  8322. "g": 246,
  8323. "b": 0,
  8324. "a": 255
  8325. },
  8326. "_contentSize": {
  8327. "__type__": "cc.Size",
  8328. "width": 120,
  8329. "height": 46
  8330. },
  8331. "_anchorPoint": {
  8332. "__type__": "cc.Vec2",
  8333. "x": 0.5,
  8334. "y": 0.5
  8335. },
  8336. "_trs": {
  8337. "__type__": "TypedArray",
  8338. "ctor": "Float64Array",
  8339. "array": [
  8340. 0,
  8341. 0,
  8342. 0,
  8343. 0,
  8344. 0,
  8345. 0,
  8346. 1,
  8347. 1,
  8348. 1,
  8349. 1
  8350. ]
  8351. },
  8352. "_eulerAngles": {
  8353. "__type__": "cc.Vec3",
  8354. "x": 0,
  8355. "y": 0,
  8356. "z": 0
  8357. },
  8358. "_skewX": 0,
  8359. "_skewY": 0,
  8360. "_is3DNode": false,
  8361. "_groupIndex": 0,
  8362. "groupIndex": 0,
  8363. "_id": ""
  8364. },
  8365. {
  8366. "__type__": "cc.Label",
  8367. "_name": "",
  8368. "_objFlags": 0,
  8369. "node": {
  8370. "__id__": 233
  8371. },
  8372. "_enabled": true,
  8373. "_materials": [
  8374. {
  8375. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8376. }
  8377. ],
  8378. "_srcBlendFactor": 770,
  8379. "_dstBlendFactor": 771,
  8380. "_string": "conflate",
  8381. "_N$string": "conflate",
  8382. "_fontSize": 30,
  8383. "_lineHeight": 40,
  8384. "_enableWrapText": true,
  8385. "_N$file": {
  8386. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  8387. },
  8388. "_isSystemFontUsed": false,
  8389. "_spacingX": 0,
  8390. "_batchAsBitmap": false,
  8391. "_styleFlags": 0,
  8392. "_underlineHeight": 0,
  8393. "_N$horizontalAlign": 1,
  8394. "_N$verticalAlign": 1,
  8395. "_N$fontFamily": "Arial",
  8396. "_N$overflow": 2,
  8397. "_N$cacheMode": 0,
  8398. "_id": ""
  8399. },
  8400. {
  8401. "__type__": "cc.LabelOutline",
  8402. "_name": "",
  8403. "_objFlags": 0,
  8404. "node": {
  8405. "__id__": 233
  8406. },
  8407. "_enabled": true,
  8408. "_color": {
  8409. "__type__": "cc.Color",
  8410. "r": 38,
  8411. "g": 17,
  8412. "b": 12,
  8413. "a": 255
  8414. },
  8415. "_width": 3,
  8416. "_id": ""
  8417. },
  8418. {
  8419. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  8420. "_name": "",
  8421. "_objFlags": 0,
  8422. "node": {
  8423. "__id__": 233
  8424. },
  8425. "_enabled": true,
  8426. "_englishCase": 0,
  8427. "i18n_string": "t57",
  8428. "i18n_params": [],
  8429. "_addColon": false,
  8430. "_id": ""
  8431. },
  8432. {
  8433. "__type__": "cc.PrefabInfo",
  8434. "root": {
  8435. "__id__": 233
  8436. },
  8437. "asset": {
  8438. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  8439. },
  8440. "fileId": "90yw9TZndH2Z6yDx7RjAQZ",
  8441. "sync": false
  8442. },
  8443. {
  8444. "__type__": "cc.Node",
  8445. "_name": "pbBg",
  8446. "_objFlags": 0,
  8447. "_parent": {
  8448. "__id__": 232
  8449. },
  8450. "_children": [],
  8451. "_active": true,
  8452. "_components": [
  8453. {
  8454. "__id__": 239
  8455. }
  8456. ],
  8457. "_prefab": {
  8458. "__id__": 240
  8459. },
  8460. "_opacity": 153,
  8461. "_color": {
  8462. "__type__": "cc.Color",
  8463. "r": 0,
  8464. "g": 0,
  8465. "b": 0,
  8466. "a": 255
  8467. },
  8468. "_contentSize": {
  8469. "__type__": "cc.Size",
  8470. "width": 100,
  8471. "height": 20
  8472. },
  8473. "_anchorPoint": {
  8474. "__type__": "cc.Vec2",
  8475. "x": 0.5,
  8476. "y": 0.5
  8477. },
  8478. "_trs": {
  8479. "__type__": "TypedArray",
  8480. "ctor": "Float64Array",
  8481. "array": [
  8482. 12.227,
  8483. -53.238,
  8484. 0,
  8485. 0,
  8486. 0,
  8487. 0,
  8488. 1,
  8489. 1,
  8490. 1,
  8491. 1
  8492. ]
  8493. },
  8494. "_eulerAngles": {
  8495. "__type__": "cc.Vec3",
  8496. "x": 0,
  8497. "y": 0,
  8498. "z": 0
  8499. },
  8500. "_skewX": 0,
  8501. "_skewY": 0,
  8502. "_is3DNode": false,
  8503. "_groupIndex": 0,
  8504. "groupIndex": 0,
  8505. "_id": ""
  8506. },
  8507. {
  8508. "__type__": "cc.Sprite",
  8509. "_name": "",
  8510. "_objFlags": 0,
  8511. "node": {
  8512. "__id__": 238
  8513. },
  8514. "_enabled": true,
  8515. "_materials": [
  8516. {
  8517. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8518. }
  8519. ],
  8520. "_srcBlendFactor": 770,
  8521. "_dstBlendFactor": 771,
  8522. "_spriteFrame": {
  8523. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  8524. },
  8525. "_type": 0,
  8526. "_sizeMode": 0,
  8527. "_fillType": 0,
  8528. "_fillCenter": {
  8529. "__type__": "cc.Vec2",
  8530. "x": 0,
  8531. "y": 0
  8532. },
  8533. "_fillStart": 0,
  8534. "_fillRange": 0,
  8535. "_isTrimmedMode": true,
  8536. "_atlas": null,
  8537. "_id": ""
  8538. },
  8539. {
  8540. "__type__": "cc.PrefabInfo",
  8541. "root": {
  8542. "__id__": 1
  8543. },
  8544. "asset": {
  8545. "__id__": 0
  8546. },
  8547. "fileId": "aagKIuvGFLIZxCzgMgD8Kr",
  8548. "sync": false
  8549. },
  8550. {
  8551. "__type__": "cc.Node",
  8552. "_name": "pb",
  8553. "_objFlags": 0,
  8554. "_parent": {
  8555. "__id__": 232
  8556. },
  8557. "_children": [
  8558. {
  8559. "__id__": 242
  8560. }
  8561. ],
  8562. "_active": true,
  8563. "_components": [
  8564. {
  8565. "__id__": 245
  8566. }
  8567. ],
  8568. "_prefab": {
  8569. "__id__": 246
  8570. },
  8571. "_opacity": 255,
  8572. "_color": {
  8573. "__type__": "cc.Color",
  8574. "r": 255,
  8575. "g": 255,
  8576. "b": 255,
  8577. "a": 255
  8578. },
  8579. "_contentSize": {
  8580. "__type__": "cc.Size",
  8581. "width": 100,
  8582. "height": 20
  8583. },
  8584. "_anchorPoint": {
  8585. "__type__": "cc.Vec2",
  8586. "x": 0.5,
  8587. "y": 0.5
  8588. },
  8589. "_trs": {
  8590. "__type__": "TypedArray",
  8591. "ctor": "Float64Array",
  8592. "array": [
  8593. 12.227,
  8594. -53.238,
  8595. 0,
  8596. 0,
  8597. 0,
  8598. 0,
  8599. 1,
  8600. 1,
  8601. 1,
  8602. 1
  8603. ]
  8604. },
  8605. "_eulerAngles": {
  8606. "__type__": "cc.Vec3",
  8607. "x": 0,
  8608. "y": 0,
  8609. "z": 0
  8610. },
  8611. "_skewX": 0,
  8612. "_skewY": 0,
  8613. "_is3DNode": false,
  8614. "_groupIndex": 0,
  8615. "groupIndex": 0,
  8616. "_id": ""
  8617. },
  8618. {
  8619. "__type__": "cc.Node",
  8620. "_name": "bar",
  8621. "_objFlags": 0,
  8622. "_parent": {
  8623. "__id__": 241
  8624. },
  8625. "_children": [],
  8626. "_active": true,
  8627. "_components": [
  8628. {
  8629. "__id__": 243
  8630. }
  8631. ],
  8632. "_prefab": {
  8633. "__id__": 244
  8634. },
  8635. "_opacity": 255,
  8636. "_color": {
  8637. "__type__": "cc.Color",
  8638. "r": 255,
  8639. "g": 255,
  8640. "b": 255,
  8641. "a": 255
  8642. },
  8643. "_contentSize": {
  8644. "__type__": "cc.Size",
  8645. "width": 48,
  8646. "height": 16
  8647. },
  8648. "_anchorPoint": {
  8649. "__type__": "cc.Vec2",
  8650. "x": 0,
  8651. "y": 0.5
  8652. },
  8653. "_trs": {
  8654. "__type__": "TypedArray",
  8655. "ctor": "Float64Array",
  8656. "array": [
  8657. -48,
  8658. 0,
  8659. 0,
  8660. 0,
  8661. 0,
  8662. 0,
  8663. 1,
  8664. 1,
  8665. 1,
  8666. 1
  8667. ]
  8668. },
  8669. "_eulerAngles": {
  8670. "__type__": "cc.Vec3",
  8671. "x": 0,
  8672. "y": 0,
  8673. "z": 0
  8674. },
  8675. "_skewX": 0,
  8676. "_skewY": 0,
  8677. "_is3DNode": false,
  8678. "_groupIndex": 0,
  8679. "groupIndex": 0,
  8680. "_id": ""
  8681. },
  8682. {
  8683. "__type__": "cc.Sprite",
  8684. "_name": "",
  8685. "_objFlags": 0,
  8686. "node": {
  8687. "__id__": 242
  8688. },
  8689. "_enabled": true,
  8690. "_materials": [
  8691. {
  8692. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8693. }
  8694. ],
  8695. "_srcBlendFactor": 770,
  8696. "_dstBlendFactor": 771,
  8697. "_spriteFrame": {
  8698. "__uuid__": "4f4cfcfc-dd4f-4752-86cc-09c99ea7df9f"
  8699. },
  8700. "_type": 1,
  8701. "_sizeMode": 0,
  8702. "_fillType": 0,
  8703. "_fillCenter": {
  8704. "__type__": "cc.Vec2",
  8705. "x": 0,
  8706. "y": 0
  8707. },
  8708. "_fillStart": 0,
  8709. "_fillRange": 0,
  8710. "_isTrimmedMode": true,
  8711. "_atlas": null,
  8712. "_id": ""
  8713. },
  8714. {
  8715. "__type__": "cc.PrefabInfo",
  8716. "root": {
  8717. "__id__": 1
  8718. },
  8719. "asset": {
  8720. "__id__": 0
  8721. },
  8722. "fileId": "e9DCZlDhpI5LHiN/B245rN",
  8723. "sync": false
  8724. },
  8725. {
  8726. "__type__": "cc.ProgressBar",
  8727. "_name": "",
  8728. "_objFlags": 0,
  8729. "node": {
  8730. "__id__": 241
  8731. },
  8732. "_enabled": true,
  8733. "_N$totalLength": 96,
  8734. "_N$barSprite": {
  8735. "__id__": 243
  8736. },
  8737. "_N$mode": 0,
  8738. "_N$progress": 0.5,
  8739. "_N$reverse": false,
  8740. "_id": ""
  8741. },
  8742. {
  8743. "__type__": "cc.PrefabInfo",
  8744. "root": {
  8745. "__id__": 1
  8746. },
  8747. "asset": {
  8748. "__id__": 0
  8749. },
  8750. "fileId": "254ugWWcVARpMnTwIKS44V",
  8751. "sync": false
  8752. },
  8753. {
  8754. "__type__": "cc.Node",
  8755. "_name": "pb_all",
  8756. "_objFlags": 0,
  8757. "_parent": {
  8758. "__id__": 232
  8759. },
  8760. "_children": [
  8761. {
  8762. "__id__": 248
  8763. }
  8764. ],
  8765. "_active": true,
  8766. "_components": [
  8767. {
  8768. "__id__": 251
  8769. }
  8770. ],
  8771. "_prefab": {
  8772. "__id__": 252
  8773. },
  8774. "_opacity": 255,
  8775. "_color": {
  8776. "__type__": "cc.Color",
  8777. "r": 255,
  8778. "g": 255,
  8779. "b": 255,
  8780. "a": 255
  8781. },
  8782. "_contentSize": {
  8783. "__type__": "cc.Size",
  8784. "width": 100,
  8785. "height": 20
  8786. },
  8787. "_anchorPoint": {
  8788. "__type__": "cc.Vec2",
  8789. "x": 0.5,
  8790. "y": 0.5
  8791. },
  8792. "_trs": {
  8793. "__type__": "TypedArray",
  8794. "ctor": "Float64Array",
  8795. "array": [
  8796. 12.227,
  8797. -53.238,
  8798. 0,
  8799. 0,
  8800. 0,
  8801. 0,
  8802. 1,
  8803. 1,
  8804. 1,
  8805. 1
  8806. ]
  8807. },
  8808. "_eulerAngles": {
  8809. "__type__": "cc.Vec3",
  8810. "x": 0,
  8811. "y": 0,
  8812. "z": 0
  8813. },
  8814. "_skewX": 0,
  8815. "_skewY": 0,
  8816. "_is3DNode": false,
  8817. "_groupIndex": 0,
  8818. "groupIndex": 0,
  8819. "_id": ""
  8820. },
  8821. {
  8822. "__type__": "cc.Node",
  8823. "_name": "bar",
  8824. "_objFlags": 0,
  8825. "_parent": {
  8826. "__id__": 247
  8827. },
  8828. "_children": [],
  8829. "_active": true,
  8830. "_components": [
  8831. {
  8832. "__id__": 249
  8833. }
  8834. ],
  8835. "_prefab": {
  8836. "__id__": 250
  8837. },
  8838. "_opacity": 255,
  8839. "_color": {
  8840. "__type__": "cc.Color",
  8841. "r": 255,
  8842. "g": 255,
  8843. "b": 255,
  8844. "a": 255
  8845. },
  8846. "_contentSize": {
  8847. "__type__": "cc.Size",
  8848. "width": 96,
  8849. "height": 16
  8850. },
  8851. "_anchorPoint": {
  8852. "__type__": "cc.Vec2",
  8853. "x": 0,
  8854. "y": 0.5
  8855. },
  8856. "_trs": {
  8857. "__type__": "TypedArray",
  8858. "ctor": "Float64Array",
  8859. "array": [
  8860. -48,
  8861. 0,
  8862. 0,
  8863. 0,
  8864. 0,
  8865. 0,
  8866. 1,
  8867. 1,
  8868. 1,
  8869. 1
  8870. ]
  8871. },
  8872. "_eulerAngles": {
  8873. "__type__": "cc.Vec3",
  8874. "x": 0,
  8875. "y": 0,
  8876. "z": 0
  8877. },
  8878. "_skewX": 0,
  8879. "_skewY": 0,
  8880. "_is3DNode": false,
  8881. "_groupIndex": 0,
  8882. "groupIndex": 0,
  8883. "_id": ""
  8884. },
  8885. {
  8886. "__type__": "cc.Sprite",
  8887. "_name": "",
  8888. "_objFlags": 0,
  8889. "node": {
  8890. "__id__": 248
  8891. },
  8892. "_enabled": true,
  8893. "_materials": [
  8894. {
  8895. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8896. }
  8897. ],
  8898. "_srcBlendFactor": 770,
  8899. "_dstBlendFactor": 771,
  8900. "_spriteFrame": {
  8901. "__uuid__": "71e7d413-f0e5-421a-bf12-a2478164a0e1"
  8902. },
  8903. "_type": 1,
  8904. "_sizeMode": 0,
  8905. "_fillType": 0,
  8906. "_fillCenter": {
  8907. "__type__": "cc.Vec2",
  8908. "x": 0,
  8909. "y": 0
  8910. },
  8911. "_fillStart": 0,
  8912. "_fillRange": 0,
  8913. "_isTrimmedMode": true,
  8914. "_atlas": null,
  8915. "_id": ""
  8916. },
  8917. {
  8918. "__type__": "cc.PrefabInfo",
  8919. "root": {
  8920. "__id__": 1
  8921. },
  8922. "asset": {
  8923. "__id__": 0
  8924. },
  8925. "fileId": "d8mKRpd4pMmoU6CIUwRYoy",
  8926. "sync": false
  8927. },
  8928. {
  8929. "__type__": "cc.ProgressBar",
  8930. "_name": "",
  8931. "_objFlags": 0,
  8932. "node": {
  8933. "__id__": 247
  8934. },
  8935. "_enabled": true,
  8936. "_N$totalLength": 96,
  8937. "_N$barSprite": {
  8938. "__id__": 249
  8939. },
  8940. "_N$mode": 0,
  8941. "_N$progress": 1,
  8942. "_N$reverse": false,
  8943. "_id": ""
  8944. },
  8945. {
  8946. "__type__": "cc.PrefabInfo",
  8947. "root": {
  8948. "__id__": 1
  8949. },
  8950. "asset": {
  8951. "__id__": 0
  8952. },
  8953. "fileId": "11xxgwt5BCzrQObOH5Q8ip",
  8954. "sync": false
  8955. },
  8956. {
  8957. "__type__": "cc.Node",
  8958. "_name": "debris",
  8959. "_objFlags": 0,
  8960. "_parent": {
  8961. "__id__": 232
  8962. },
  8963. "_children": [],
  8964. "_active": true,
  8965. "_components": [
  8966. {
  8967. "__id__": 254
  8968. }
  8969. ],
  8970. "_prefab": {
  8971. "__id__": 255
  8972. },
  8973. "_opacity": 255,
  8974. "_color": {
  8975. "__type__": "cc.Color",
  8976. "r": 255,
  8977. "g": 255,
  8978. "b": 255,
  8979. "a": 255
  8980. },
  8981. "_contentSize": {
  8982. "__type__": "cc.Size",
  8983. "width": 40,
  8984. "height": 40
  8985. },
  8986. "_anchorPoint": {
  8987. "__type__": "cc.Vec2",
  8988. "x": 0.5,
  8989. "y": 0.5
  8990. },
  8991. "_trs": {
  8992. "__type__": "TypedArray",
  8993. "ctor": "Float64Array",
  8994. "array": [
  8995. -52.735,
  8996. -51.822,
  8997. 0,
  8998. 0,
  8999. 0,
  9000. 0,
  9001. 1,
  9002. 1,
  9003. 1,
  9004. 1
  9005. ]
  9006. },
  9007. "_eulerAngles": {
  9008. "__type__": "cc.Vec3",
  9009. "x": 0,
  9010. "y": 0,
  9011. "z": 0
  9012. },
  9013. "_skewX": 0,
  9014. "_skewY": 0,
  9015. "_is3DNode": false,
  9016. "_groupIndex": 0,
  9017. "groupIndex": 0,
  9018. "_id": ""
  9019. },
  9020. {
  9021. "__type__": "cc.Sprite",
  9022. "_name": "",
  9023. "_objFlags": 0,
  9024. "node": {
  9025. "__id__": 253
  9026. },
  9027. "_enabled": true,
  9028. "_materials": [
  9029. {
  9030. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9031. }
  9032. ],
  9033. "_srcBlendFactor": 770,
  9034. "_dstBlendFactor": 771,
  9035. "_spriteFrame": {
  9036. "__uuid__": "6e7416e4-19fb-4e76-b1bb-1b353854aac0"
  9037. },
  9038. "_type": 0,
  9039. "_sizeMode": 0,
  9040. "_fillType": 0,
  9041. "_fillCenter": {
  9042. "__type__": "cc.Vec2",
  9043. "x": 0,
  9044. "y": 0
  9045. },
  9046. "_fillStart": 0,
  9047. "_fillRange": 0,
  9048. "_isTrimmedMode": true,
  9049. "_atlas": null,
  9050. "_id": ""
  9051. },
  9052. {
  9053. "__type__": "cc.PrefabInfo",
  9054. "root": {
  9055. "__id__": 1
  9056. },
  9057. "asset": {
  9058. "__id__": 0
  9059. },
  9060. "fileId": "4dSGwQ01NHQ5M4I8r2c8jX",
  9061. "sync": false
  9062. },
  9063. {
  9064. "__type__": "cc.Node",
  9065. "_name": "num",
  9066. "_objFlags": 0,
  9067. "_parent": {
  9068. "__id__": 232
  9069. },
  9070. "_children": [],
  9071. "_active": true,
  9072. "_components": [
  9073. {
  9074. "__id__": 257
  9075. },
  9076. {
  9077. "__id__": 258
  9078. },
  9079. {
  9080. "__id__": 259
  9081. }
  9082. ],
  9083. "_prefab": {
  9084. "__id__": 260
  9085. },
  9086. "_opacity": 255,
  9087. "_color": {
  9088. "__type__": "cc.Color",
  9089. "r": 255,
  9090. "g": 255,
  9091. "b": 255,
  9092. "a": 255
  9093. },
  9094. "_contentSize": {
  9095. "__type__": "cc.Size",
  9096. "width": 76.13,
  9097. "height": 38.76
  9098. },
  9099. "_anchorPoint": {
  9100. "__type__": "cc.Vec2",
  9101. "x": 0.5,
  9102. "y": 0.5
  9103. },
  9104. "_trs": {
  9105. "__type__": "TypedArray",
  9106. "ctor": "Float64Array",
  9107. "array": [
  9108. 12.227,
  9109. -53.238,
  9110. 0,
  9111. 0,
  9112. 0,
  9113. 0,
  9114. 1,
  9115. 1,
  9116. 1,
  9117. 1
  9118. ]
  9119. },
  9120. "_eulerAngles": {
  9121. "__type__": "cc.Vec3",
  9122. "x": 0,
  9123. "y": 0,
  9124. "z": 0
  9125. },
  9126. "_skewX": 0,
  9127. "_skewY": 0,
  9128. "_is3DNode": false,
  9129. "_groupIndex": 0,
  9130. "groupIndex": 0,
  9131. "_id": ""
  9132. },
  9133. {
  9134. "__type__": "cc.Label",
  9135. "_name": "",
  9136. "_objFlags": 0,
  9137. "node": {
  9138. "__id__": 256
  9139. },
  9140. "_enabled": true,
  9141. "_materials": [
  9142. {
  9143. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9144. }
  9145. ],
  9146. "_srcBlendFactor": 770,
  9147. "_dstBlendFactor": 771,
  9148. "_string": "0/90",
  9149. "_N$string": "0/90",
  9150. "_fontSize": 26,
  9151. "_lineHeight": 26,
  9152. "_enableWrapText": true,
  9153. "_N$file": {
  9154. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  9155. },
  9156. "_isSystemFontUsed": false,
  9157. "_spacingX": 0,
  9158. "_batchAsBitmap": false,
  9159. "_styleFlags": 0,
  9160. "_underlineHeight": 0,
  9161. "_N$horizontalAlign": 1,
  9162. "_N$verticalAlign": 1,
  9163. "_N$fontFamily": "Arial",
  9164. "_N$overflow": 0,
  9165. "_N$cacheMode": 0,
  9166. "_id": ""
  9167. },
  9168. {
  9169. "__type__": "cc.LabelOutline",
  9170. "_name": "",
  9171. "_objFlags": 0,
  9172. "node": {
  9173. "__id__": 256
  9174. },
  9175. "_enabled": true,
  9176. "_color": {
  9177. "__type__": "cc.Color",
  9178. "r": 38,
  9179. "g": 17,
  9180. "b": 12,
  9181. "a": 255
  9182. },
  9183. "_width": 3,
  9184. "_id": ""
  9185. },
  9186. {
  9187. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  9188. "_name": "",
  9189. "_objFlags": 0,
  9190. "node": {
  9191. "__id__": 256
  9192. },
  9193. "_enabled": true,
  9194. "_englishCase": 0,
  9195. "i18n_string": "",
  9196. "i18n_params": [],
  9197. "_addColon": false,
  9198. "_id": ""
  9199. },
  9200. {
  9201. "__type__": "cc.PrefabInfo",
  9202. "root": {
  9203. "__id__": 256
  9204. },
  9205. "asset": {
  9206. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  9207. },
  9208. "fileId": "07u5tHWphOj7y5FZo5wTXv",
  9209. "sync": false
  9210. },
  9211. {
  9212. "__type__": "cc.PrefabInfo",
  9213. "root": {
  9214. "__id__": 1
  9215. },
  9216. "asset": {
  9217. "__id__": 0
  9218. },
  9219. "fileId": "a4zrjlesJBOp2ujyIaLnwZ",
  9220. "sync": false
  9221. },
  9222. {
  9223. "__type__": "cc.Node",
  9224. "_name": "red_dots",
  9225. "_objFlags": 0,
  9226. "_parent": {
  9227. "__id__": 226
  9228. },
  9229. "_children": [],
  9230. "_active": true,
  9231. "_components": [
  9232. {
  9233. "__id__": 263
  9234. }
  9235. ],
  9236. "_prefab": {
  9237. "__id__": 264
  9238. },
  9239. "_opacity": 255,
  9240. "_color": {
  9241. "__type__": "cc.Color",
  9242. "r": 255,
  9243. "g": 255,
  9244. "b": 255,
  9245. "a": 255
  9246. },
  9247. "_contentSize": {
  9248. "__type__": "cc.Size",
  9249. "width": 40,
  9250. "height": 40
  9251. },
  9252. "_anchorPoint": {
  9253. "__type__": "cc.Vec2",
  9254. "x": 0.5,
  9255. "y": 0.5
  9256. },
  9257. "_trs": {
  9258. "__type__": "TypedArray",
  9259. "ctor": "Float64Array",
  9260. "array": [
  9261. 57.556,
  9262. 58.117,
  9263. 0,
  9264. 0,
  9265. 0,
  9266. 0,
  9267. 1,
  9268. 1,
  9269. 1,
  9270. 1
  9271. ]
  9272. },
  9273. "_eulerAngles": {
  9274. "__type__": "cc.Vec3",
  9275. "x": 0,
  9276. "y": 0,
  9277. "z": 0
  9278. },
  9279. "_skewX": 0,
  9280. "_skewY": 0,
  9281. "_is3DNode": false,
  9282. "_groupIndex": 0,
  9283. "groupIndex": 0,
  9284. "_id": ""
  9285. },
  9286. {
  9287. "__type__": "cc.Sprite",
  9288. "_name": "",
  9289. "_objFlags": 0,
  9290. "node": {
  9291. "__id__": 262
  9292. },
  9293. "_enabled": true,
  9294. "_materials": [
  9295. {
  9296. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9297. }
  9298. ],
  9299. "_srcBlendFactor": 770,
  9300. "_dstBlendFactor": 771,
  9301. "_spriteFrame": {
  9302. "__uuid__": "2e0bba47-213b-4d41-9454-69b2b6261500"
  9303. },
  9304. "_type": 0,
  9305. "_sizeMode": 0,
  9306. "_fillType": 0,
  9307. "_fillCenter": {
  9308. "__type__": "cc.Vec2",
  9309. "x": 0,
  9310. "y": 0
  9311. },
  9312. "_fillStart": 0,
  9313. "_fillRange": 0,
  9314. "_isTrimmedMode": true,
  9315. "_atlas": null,
  9316. "_id": ""
  9317. },
  9318. {
  9319. "__type__": "cc.PrefabInfo",
  9320. "root": {
  9321. "__id__": 1
  9322. },
  9323. "asset": {
  9324. "__id__": 0
  9325. },
  9326. "fileId": "a7CLJ3aapHpaCr27RfAQsF",
  9327. "sync": false
  9328. },
  9329. {
  9330. "__type__": "cc.PrefabInfo",
  9331. "root": {
  9332. "__id__": 1
  9333. },
  9334. "asset": {
  9335. "__id__": 0
  9336. },
  9337. "fileId": "30j1MrqalMYLpDyzSxI1o3",
  9338. "sync": false
  9339. },
  9340. {
  9341. "__type__": "cc.Layout",
  9342. "_name": "",
  9343. "_objFlags": 0,
  9344. "node": {
  9345. "__id__": 225
  9346. },
  9347. "_enabled": true,
  9348. "_layoutSize": {
  9349. "__type__": "cc.Size",
  9350. "width": 650,
  9351. "height": 760
  9352. },
  9353. "_resize": 0,
  9354. "_N$layoutType": 3,
  9355. "_N$cellSize": {
  9356. "__type__": "cc.Size",
  9357. "width": 40,
  9358. "height": 40
  9359. },
  9360. "_N$startAxis": 0,
  9361. "_N$paddingLeft": 12,
  9362. "_N$paddingRight": 0,
  9363. "_N$paddingTop": 19,
  9364. "_N$paddingBottom": 10,
  9365. "_N$spacingX": 11,
  9366. "_N$spacingY": 11,
  9367. "_N$verticalDirection": 1,
  9368. "_N$horizontalDirection": 0,
  9369. "_N$affectedByScale": false,
  9370. "_id": ""
  9371. },
  9372. {
  9373. "__type__": "cc.PrefabInfo",
  9374. "root": {
  9375. "__id__": 1
  9376. },
  9377. "asset": {
  9378. "__id__": 0
  9379. },
  9380. "fileId": "ffV/Rc+v9PMJdbLbXJTD7o",
  9381. "sync": false
  9382. },
  9383. {
  9384. "__type__": "cc.Mask",
  9385. "_name": "",
  9386. "_objFlags": 0,
  9387. "node": {
  9388. "__id__": 224
  9389. },
  9390. "_enabled": true,
  9391. "_materials": [
  9392. {
  9393. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9394. }
  9395. ],
  9396. "_spriteFrame": null,
  9397. "_type": 0,
  9398. "_segments": 64,
  9399. "_N$alphaThreshold": 0,
  9400. "_N$inverted": false,
  9401. "_id": ""
  9402. },
  9403. {
  9404. "__type__": "cc.PrefabInfo",
  9405. "root": {
  9406. "__id__": 1
  9407. },
  9408. "asset": {
  9409. "__id__": 0
  9410. },
  9411. "fileId": "97c2YJrl9BRbZ662V0DPYX",
  9412. "sync": false
  9413. },
  9414. {
  9415. "__type__": "cc.Node",
  9416. "_name": "lb",
  9417. "_objFlags": 0,
  9418. "_parent": {
  9419. "__id__": 223
  9420. },
  9421. "_children": [],
  9422. "_active": true,
  9423. "_components": [
  9424. {
  9425. "__id__": 271
  9426. },
  9427. {
  9428. "__id__": 272
  9429. },
  9430. {
  9431. "__id__": 273
  9432. }
  9433. ],
  9434. "_prefab": {
  9435. "__id__": 274
  9436. },
  9437. "_opacity": 255,
  9438. "_color": {
  9439. "__type__": "cc.Color",
  9440. "r": 255,
  9441. "g": 255,
  9442. "b": 255,
  9443. "a": 255
  9444. },
  9445. "_contentSize": {
  9446. "__type__": "cc.Size",
  9447. "width": 218.12,
  9448. "height": 56.4
  9449. },
  9450. "_anchorPoint": {
  9451. "__type__": "cc.Vec2",
  9452. "x": 0.5,
  9453. "y": 0.5
  9454. },
  9455. "_trs": {
  9456. "__type__": "TypedArray",
  9457. "ctor": "Float64Array",
  9458. "array": [
  9459. 0,
  9460. 0,
  9461. 0,
  9462. 0,
  9463. 0,
  9464. 0,
  9465. 1,
  9466. 1,
  9467. 1,
  9468. 1
  9469. ]
  9470. },
  9471. "_eulerAngles": {
  9472. "__type__": "cc.Vec3",
  9473. "x": 0,
  9474. "y": 0,
  9475. "z": 0
  9476. },
  9477. "_skewX": 0,
  9478. "_skewY": 0,
  9479. "_is3DNode": false,
  9480. "_groupIndex": 0,
  9481. "groupIndex": 0,
  9482. "_id": ""
  9483. },
  9484. {
  9485. "__type__": "cc.Label",
  9486. "_name": "",
  9487. "_objFlags": 0,
  9488. "node": {
  9489. "__id__": 270
  9490. },
  9491. "_enabled": true,
  9492. "_materials": [
  9493. {
  9494. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9495. }
  9496. ],
  9497. "_srcBlendFactor": 770,
  9498. "_dstBlendFactor": 771,
  9499. "_string": "No skill cards",
  9500. "_N$string": "No skill cards",
  9501. "_fontSize": 36,
  9502. "_lineHeight": 40,
  9503. "_enableWrapText": true,
  9504. "_N$file": {
  9505. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  9506. },
  9507. "_isSystemFontUsed": false,
  9508. "_spacingX": 0,
  9509. "_batchAsBitmap": false,
  9510. "_styleFlags": 0,
  9511. "_underlineHeight": 0,
  9512. "_N$horizontalAlign": 1,
  9513. "_N$verticalAlign": 1,
  9514. "_N$fontFamily": "Arial",
  9515. "_N$overflow": 0,
  9516. "_N$cacheMode": 0,
  9517. "_id": ""
  9518. },
  9519. {
  9520. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  9521. "_name": "",
  9522. "_objFlags": 0,
  9523. "node": {
  9524. "__id__": 270
  9525. },
  9526. "_enabled": true,
  9527. "_englishCase": 1,
  9528. "i18n_string": "t51",
  9529. "i18n_params": [
  9530. "1"
  9531. ],
  9532. "_addColon": false,
  9533. "_id": ""
  9534. },
  9535. {
  9536. "__type__": "cc.LabelOutline",
  9537. "_name": "",
  9538. "_objFlags": 0,
  9539. "node": {
  9540. "__id__": 270
  9541. },
  9542. "_enabled": true,
  9543. "_color": {
  9544. "__type__": "cc.Color",
  9545. "r": 38,
  9546. "g": 17,
  9547. "b": 12,
  9548. "a": 255
  9549. },
  9550. "_width": 3,
  9551. "_id": ""
  9552. },
  9553. {
  9554. "__type__": "cc.PrefabInfo",
  9555. "root": {
  9556. "__id__": 1
  9557. },
  9558. "asset": {
  9559. "__id__": 0
  9560. },
  9561. "fileId": "6dlJaYHBhBKL+K6IS6dFrJ",
  9562. "sync": false
  9563. },
  9564. {
  9565. "__type__": "cc.ScrollView",
  9566. "_name": "",
  9567. "_objFlags": 0,
  9568. "node": {
  9569. "__id__": 223
  9570. },
  9571. "_enabled": true,
  9572. "horizontal": false,
  9573. "vertical": true,
  9574. "inertia": true,
  9575. "brake": 0.75,
  9576. "elastic": false,
  9577. "bounceDuration": 0.23,
  9578. "scrollEvents": [],
  9579. "cancelInnerEvents": false,
  9580. "_N$content": {
  9581. "__id__": 225
  9582. },
  9583. "content": {
  9584. "__id__": 225
  9585. },
  9586. "_N$horizontalScrollBar": null,
  9587. "_N$verticalScrollBar": null,
  9588. "_id": ""
  9589. },
  9590. {
  9591. "__type__": "c8b0avBBlRLLLMX0ufI4l6A",
  9592. "_name": "",
  9593. "_objFlags": 0,
  9594. "node": {
  9595. "__id__": 223
  9596. },
  9597. "_enabled": true,
  9598. "templateType": 1,
  9599. "tmpNode": {
  9600. "__id__": 226
  9601. },
  9602. "tmpPrefab": null,
  9603. "_slideMode": 1,
  9604. "pageDistance": 0.3,
  9605. "pageChangeEvent": {
  9606. "__id__": 277
  9607. },
  9608. "_virtual": true,
  9609. "cyclic": false,
  9610. "lackCenter": false,
  9611. "lackSlide": false,
  9612. "_updateRate": 0,
  9613. "frameByFrameRenderNum": 0,
  9614. "renderEvent": {
  9615. "__id__": 278
  9616. },
  9617. "selectedMode": 0,
  9618. "repeatEventSingle": false,
  9619. "selectedEvent": null,
  9620. "_id": ""
  9621. },
  9622. {
  9623. "__type__": "cc.ClickEvent",
  9624. "target": null,
  9625. "component": "",
  9626. "_componentId": "",
  9627. "handler": "",
  9628. "customEventData": ""
  9629. },
  9630. {
  9631. "__type__": "cc.ClickEvent",
  9632. "target": {
  9633. "__id__": 1
  9634. },
  9635. "component": "",
  9636. "_componentId": "424349zjmhIaKg9ABoHFkZs",
  9637. "handler": "initCardListItem",
  9638. "customEventData": ""
  9639. },
  9640. {
  9641. "__type__": "cc.Sprite",
  9642. "_name": "",
  9643. "_objFlags": 0,
  9644. "node": {
  9645. "__id__": 223
  9646. },
  9647. "_enabled": true,
  9648. "_materials": [
  9649. {
  9650. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9651. }
  9652. ],
  9653. "_srcBlendFactor": 770,
  9654. "_dstBlendFactor": 771,
  9655. "_spriteFrame": {
  9656. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  9657. },
  9658. "_type": 1,
  9659. "_sizeMode": 0,
  9660. "_fillType": 0,
  9661. "_fillCenter": {
  9662. "__type__": "cc.Vec2",
  9663. "x": 0,
  9664. "y": 0
  9665. },
  9666. "_fillStart": 0,
  9667. "_fillRange": 0,
  9668. "_isTrimmedMode": true,
  9669. "_atlas": null,
  9670. "_id": ""
  9671. },
  9672. {
  9673. "__type__": "cc.PrefabInfo",
  9674. "root": {
  9675. "__id__": 1
  9676. },
  9677. "asset": {
  9678. "__id__": 0
  9679. },
  9680. "fileId": "b1rcKuE1tHPrELOSbTINis",
  9681. "sync": false
  9682. },
  9683. {
  9684. "__type__": "cc.Node",
  9685. "_name": "guide",
  9686. "_objFlags": 0,
  9687. "_parent": {
  9688. "__id__": 1
  9689. },
  9690. "_children": [
  9691. {
  9692. "__id__": 282
  9693. },
  9694. {
  9695. "__id__": 306
  9696. }
  9697. ],
  9698. "_active": false,
  9699. "_components": [],
  9700. "_prefab": {
  9701. "__id__": 309
  9702. },
  9703. "_opacity": 255,
  9704. "_color": {
  9705. "__type__": "cc.Color",
  9706. "r": 255,
  9707. "g": 255,
  9708. "b": 255,
  9709. "a": 255
  9710. },
  9711. "_contentSize": {
  9712. "__type__": "cc.Size",
  9713. "width": 0,
  9714. "height": 0
  9715. },
  9716. "_anchorPoint": {
  9717. "__type__": "cc.Vec2",
  9718. "x": 0.5,
  9719. "y": 0.5
  9720. },
  9721. "_trs": {
  9722. "__type__": "TypedArray",
  9723. "ctor": "Float64Array",
  9724. "array": [
  9725. 0,
  9726. 0,
  9727. 0,
  9728. 0,
  9729. 0,
  9730. 0,
  9731. 1,
  9732. 1,
  9733. 1,
  9734. 1
  9735. ]
  9736. },
  9737. "_eulerAngles": {
  9738. "__type__": "cc.Vec3",
  9739. "x": 0,
  9740. "y": 0,
  9741. "z": 0
  9742. },
  9743. "_skewX": 0,
  9744. "_skewY": 0,
  9745. "_is3DNode": false,
  9746. "_groupIndex": 0,
  9747. "groupIndex": 0,
  9748. "_id": ""
  9749. },
  9750. {
  9751. "__type__": "cc.Node",
  9752. "_name": "masks",
  9753. "_objFlags": 0,
  9754. "_parent": {
  9755. "__id__": 281
  9756. },
  9757. "_children": [
  9758. {
  9759. "__id__": 283
  9760. },
  9761. {
  9762. "__id__": 294
  9763. }
  9764. ],
  9765. "_active": true,
  9766. "_components": [],
  9767. "_prefab": {
  9768. "__id__": 305
  9769. },
  9770. "_opacity": 255,
  9771. "_color": {
  9772. "__type__": "cc.Color",
  9773. "r": 255,
  9774. "g": 255,
  9775. "b": 255,
  9776. "a": 255
  9777. },
  9778. "_contentSize": {
  9779. "__type__": "cc.Size",
  9780. "width": 0,
  9781. "height": 0
  9782. },
  9783. "_anchorPoint": {
  9784. "__type__": "cc.Vec2",
  9785. "x": 0.5,
  9786. "y": 0.5
  9787. },
  9788. "_trs": {
  9789. "__type__": "TypedArray",
  9790. "ctor": "Float64Array",
  9791. "array": [
  9792. 0,
  9793. 0,
  9794. 0,
  9795. 0,
  9796. 0,
  9797. 0,
  9798. 1,
  9799. 1,
  9800. 1,
  9801. 1
  9802. ]
  9803. },
  9804. "_eulerAngles": {
  9805. "__type__": "cc.Vec3",
  9806. "x": 0,
  9807. "y": 0,
  9808. "z": 0
  9809. },
  9810. "_skewX": 0,
  9811. "_skewY": 0,
  9812. "_is3DNode": false,
  9813. "_groupIndex": 0,
  9814. "groupIndex": 0,
  9815. "_id": ""
  9816. },
  9817. {
  9818. "__type__": "cc.Node",
  9819. "_name": "mask",
  9820. "_objFlags": 0,
  9821. "_parent": {
  9822. "__id__": 282
  9823. },
  9824. "_children": [
  9825. {
  9826. "__id__": 284
  9827. },
  9828. {
  9829. "__id__": 287
  9830. }
  9831. ],
  9832. "_active": true,
  9833. "_components": [],
  9834. "_prefab": {
  9835. "__id__": 293
  9836. },
  9837. "_opacity": 255,
  9838. "_color": {
  9839. "__type__": "cc.Color",
  9840. "r": 255,
  9841. "g": 255,
  9842. "b": 255,
  9843. "a": 255
  9844. },
  9845. "_contentSize": {
  9846. "__type__": "cc.Size",
  9847. "width": 0,
  9848. "height": 0
  9849. },
  9850. "_anchorPoint": {
  9851. "__type__": "cc.Vec2",
  9852. "x": 0.5,
  9853. "y": 0.5
  9854. },
  9855. "_trs": {
  9856. "__type__": "TypedArray",
  9857. "ctor": "Float64Array",
  9858. "array": [
  9859. -721,
  9860. 235,
  9861. 0,
  9862. 0,
  9863. 0,
  9864. 0,
  9865. 1,
  9866. 1,
  9867. 1,
  9868. 1
  9869. ]
  9870. },
  9871. "_eulerAngles": {
  9872. "__type__": "cc.Vec3",
  9873. "x": 0,
  9874. "y": 0,
  9875. "z": 0
  9876. },
  9877. "_skewX": 0,
  9878. "_skewY": 0,
  9879. "_is3DNode": false,
  9880. "_groupIndex": 0,
  9881. "groupIndex": 0,
  9882. "_id": ""
  9883. },
  9884. {
  9885. "__type__": "cc.Node",
  9886. "_name": "light_effect_3",
  9887. "_objFlags": 0,
  9888. "_parent": {
  9889. "__id__": 283
  9890. },
  9891. "_children": [],
  9892. "_active": true,
  9893. "_components": [
  9894. {
  9895. "__id__": 285
  9896. }
  9897. ],
  9898. "_prefab": {
  9899. "__id__": 286
  9900. },
  9901. "_opacity": 255,
  9902. "_color": {
  9903. "__type__": "cc.Color",
  9904. "r": 255,
  9905. "g": 255,
  9906. "b": 255,
  9907. "a": 255
  9908. },
  9909. "_contentSize": {
  9910. "__type__": "cc.Size",
  9911. "width": 350,
  9912. "height": 370
  9913. },
  9914. "_anchorPoint": {
  9915. "__type__": "cc.Vec2",
  9916. "x": 0.5,
  9917. "y": 0.5
  9918. },
  9919. "_trs": {
  9920. "__type__": "TypedArray",
  9921. "ctor": "Float64Array",
  9922. "array": [
  9923. 0,
  9924. 0,
  9925. 0,
  9926. 0,
  9927. 0,
  9928. 0,
  9929. 1,
  9930. 1,
  9931. 1,
  9932. 1
  9933. ]
  9934. },
  9935. "_eulerAngles": {
  9936. "__type__": "cc.Vec3",
  9937. "x": 0,
  9938. "y": 0,
  9939. "z": 0
  9940. },
  9941. "_skewX": 0,
  9942. "_skewY": 0,
  9943. "_is3DNode": false,
  9944. "_groupIndex": 0,
  9945. "groupIndex": 0,
  9946. "_id": ""
  9947. },
  9948. {
  9949. "__type__": "cc.Sprite",
  9950. "_name": "",
  9951. "_objFlags": 0,
  9952. "node": {
  9953. "__id__": 284
  9954. },
  9955. "_enabled": true,
  9956. "_materials": [
  9957. {
  9958. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9959. }
  9960. ],
  9961. "_srcBlendFactor": 770,
  9962. "_dstBlendFactor": 771,
  9963. "_spriteFrame": {
  9964. "__uuid__": "16a8749f-4023-4134-983d-716fbd9d9548"
  9965. },
  9966. "_type": 1,
  9967. "_sizeMode": 0,
  9968. "_fillType": 0,
  9969. "_fillCenter": {
  9970. "__type__": "cc.Vec2",
  9971. "x": 0,
  9972. "y": 0
  9973. },
  9974. "_fillStart": 0,
  9975. "_fillRange": 0,
  9976. "_isTrimmedMode": true,
  9977. "_atlas": null,
  9978. "_id": ""
  9979. },
  9980. {
  9981. "__type__": "cc.PrefabInfo",
  9982. "root": {
  9983. "__id__": 1
  9984. },
  9985. "asset": {
  9986. "__id__": 0
  9987. },
  9988. "fileId": "83XhlzxeBBuLxQepwnMqt/",
  9989. "sync": false
  9990. },
  9991. {
  9992. "__type__": "cc.Node",
  9993. "_name": "mask",
  9994. "_objFlags": 0,
  9995. "_parent": {
  9996. "__id__": 283
  9997. },
  9998. "_children": [
  9999. {
  10000. "__id__": 288
  10001. }
  10002. ],
  10003. "_active": true,
  10004. "_components": [
  10005. {
  10006. "__id__": 291
  10007. }
  10008. ],
  10009. "_prefab": {
  10010. "__id__": 292
  10011. },
  10012. "_opacity": 255,
  10013. "_color": {
  10014. "__type__": "cc.Color",
  10015. "r": 255,
  10016. "g": 255,
  10017. "b": 255,
  10018. "a": 255
  10019. },
  10020. "_contentSize": {
  10021. "__type__": "cc.Size",
  10022. "width": 320,
  10023. "height": 350
  10024. },
  10025. "_anchorPoint": {
  10026. "__type__": "cc.Vec2",
  10027. "x": 0.5,
  10028. "y": 0.5
  10029. },
  10030. "_trs": {
  10031. "__type__": "TypedArray",
  10032. "ctor": "Float64Array",
  10033. "array": [
  10034. 0,
  10035. 0,
  10036. 0,
  10037. 0,
  10038. 0,
  10039. 0,
  10040. 1,
  10041. 1,
  10042. 1,
  10043. 1
  10044. ]
  10045. },
  10046. "_eulerAngles": {
  10047. "__type__": "cc.Vec3",
  10048. "x": 0,
  10049. "y": 0,
  10050. "z": 0
  10051. },
  10052. "_skewX": 0,
  10053. "_skewY": 0,
  10054. "_is3DNode": false,
  10055. "_groupIndex": 0,
  10056. "groupIndex": 0,
  10057. "_id": ""
  10058. },
  10059. {
  10060. "__type__": "cc.Node",
  10061. "_name": "mask",
  10062. "_objFlags": 0,
  10063. "_parent": {
  10064. "__id__": 287
  10065. },
  10066. "_children": [],
  10067. "_active": true,
  10068. "_components": [
  10069. {
  10070. "__id__": 289
  10071. }
  10072. ],
  10073. "_prefab": {
  10074. "__id__": 290
  10075. },
  10076. "_opacity": 200,
  10077. "_color": {
  10078. "__type__": "cc.Color",
  10079. "r": 0,
  10080. "g": 0,
  10081. "b": 0,
  10082. "a": 255
  10083. },
  10084. "_contentSize": {
  10085. "__type__": "cc.Size",
  10086. "width": 1300,
  10087. "height": 1080
  10088. },
  10089. "_anchorPoint": {
  10090. "__type__": "cc.Vec2",
  10091. "x": 0.5,
  10092. "y": 0.5
  10093. },
  10094. "_trs": {
  10095. "__type__": "TypedArray",
  10096. "ctor": "Float64Array",
  10097. "array": [
  10098. 71,
  10099. -235,
  10100. 0,
  10101. 0,
  10102. 0,
  10103. 0,
  10104. 1,
  10105. 1,
  10106. 1,
  10107. 1
  10108. ]
  10109. },
  10110. "_eulerAngles": {
  10111. "__type__": "cc.Vec3",
  10112. "x": 0,
  10113. "y": 0,
  10114. "z": 0
  10115. },
  10116. "_skewX": 0,
  10117. "_skewY": 0,
  10118. "_is3DNode": false,
  10119. "_groupIndex": 0,
  10120. "groupIndex": 0,
  10121. "_id": ""
  10122. },
  10123. {
  10124. "__type__": "cc.Sprite",
  10125. "_name": "",
  10126. "_objFlags": 0,
  10127. "node": {
  10128. "__id__": 288
  10129. },
  10130. "_enabled": true,
  10131. "_materials": [
  10132. {
  10133. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10134. }
  10135. ],
  10136. "_srcBlendFactor": 770,
  10137. "_dstBlendFactor": 771,
  10138. "_spriteFrame": {
  10139. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  10140. },
  10141. "_type": 0,
  10142. "_sizeMode": 0,
  10143. "_fillType": 0,
  10144. "_fillCenter": {
  10145. "__type__": "cc.Vec2",
  10146. "x": 0,
  10147. "y": 0
  10148. },
  10149. "_fillStart": 0,
  10150. "_fillRange": 0,
  10151. "_isTrimmedMode": true,
  10152. "_atlas": null,
  10153. "_id": ""
  10154. },
  10155. {
  10156. "__type__": "cc.PrefabInfo",
  10157. "root": {
  10158. "__id__": 1
  10159. },
  10160. "asset": {
  10161. "__id__": 0
  10162. },
  10163. "fileId": "61yhhPqPlJUaqHi/sXQ3fb",
  10164. "sync": false
  10165. },
  10166. {
  10167. "__type__": "cc.Mask",
  10168. "_name": "",
  10169. "_objFlags": 0,
  10170. "node": {
  10171. "__id__": 287
  10172. },
  10173. "_enabled": true,
  10174. "_materials": [
  10175. {
  10176. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10177. }
  10178. ],
  10179. "_spriteFrame": null,
  10180. "_type": 0,
  10181. "_segments": 64,
  10182. "_N$alphaThreshold": 0.1,
  10183. "_N$inverted": true,
  10184. "_id": ""
  10185. },
  10186. {
  10187. "__type__": "cc.PrefabInfo",
  10188. "root": {
  10189. "__id__": 1
  10190. },
  10191. "asset": {
  10192. "__id__": 0
  10193. },
  10194. "fileId": "608ZiIiuRHNrLMCx2XUuon",
  10195. "sync": false
  10196. },
  10197. {
  10198. "__type__": "cc.PrefabInfo",
  10199. "root": {
  10200. "__id__": 1
  10201. },
  10202. "asset": {
  10203. "__id__": 0
  10204. },
  10205. "fileId": "332B/aQ+FG0IdgZMyvFaE5",
  10206. "sync": false
  10207. },
  10208. {
  10209. "__type__": "cc.Node",
  10210. "_name": "mask",
  10211. "_objFlags": 0,
  10212. "_parent": {
  10213. "__id__": 282
  10214. },
  10215. "_children": [
  10216. {
  10217. "__id__": 295
  10218. },
  10219. {
  10220. "__id__": 298
  10221. }
  10222. ],
  10223. "_active": true,
  10224. "_components": [],
  10225. "_prefab": {
  10226. "__id__": 304
  10227. },
  10228. "_opacity": 255,
  10229. "_color": {
  10230. "__type__": "cc.Color",
  10231. "r": 255,
  10232. "g": 255,
  10233. "b": 255,
  10234. "a": 255
  10235. },
  10236. "_contentSize": {
  10237. "__type__": "cc.Size",
  10238. "width": 0,
  10239. "height": 0
  10240. },
  10241. "_anchorPoint": {
  10242. "__type__": "cc.Vec2",
  10243. "x": 0.5,
  10244. "y": 0.5
  10245. },
  10246. "_trs": {
  10247. "__type__": "TypedArray",
  10248. "ctor": "Float64Array",
  10249. "array": [
  10250. 340,
  10251. 210,
  10252. 0,
  10253. 0,
  10254. 0,
  10255. 0,
  10256. 1,
  10257. 1,
  10258. 1,
  10259. 1
  10260. ]
  10261. },
  10262. "_eulerAngles": {
  10263. "__type__": "cc.Vec3",
  10264. "x": 0,
  10265. "y": 0,
  10266. "z": 0
  10267. },
  10268. "_skewX": 0,
  10269. "_skewY": 0,
  10270. "_is3DNode": false,
  10271. "_groupIndex": 0,
  10272. "groupIndex": 0,
  10273. "_id": ""
  10274. },
  10275. {
  10276. "__type__": "cc.Node",
  10277. "_name": "light_effect_3",
  10278. "_objFlags": 0,
  10279. "_parent": {
  10280. "__id__": 294
  10281. },
  10282. "_children": [],
  10283. "_active": true,
  10284. "_components": [
  10285. {
  10286. "__id__": 296
  10287. }
  10288. ],
  10289. "_prefab": {
  10290. "__id__": 297
  10291. },
  10292. "_opacity": 255,
  10293. "_color": {
  10294. "__type__": "cc.Color",
  10295. "r": 255,
  10296. "g": 255,
  10297. "b": 255,
  10298. "a": 255
  10299. },
  10300. "_contentSize": {
  10301. "__type__": "cc.Size",
  10302. "width": 200,
  10303. "height": 200
  10304. },
  10305. "_anchorPoint": {
  10306. "__type__": "cc.Vec2",
  10307. "x": 0.5,
  10308. "y": 0.5
  10309. },
  10310. "_trs": {
  10311. "__type__": "TypedArray",
  10312. "ctor": "Float64Array",
  10313. "array": [
  10314. 0,
  10315. 0,
  10316. 0,
  10317. 0,
  10318. 0,
  10319. 0,
  10320. 1,
  10321. 1,
  10322. 1,
  10323. 1
  10324. ]
  10325. },
  10326. "_eulerAngles": {
  10327. "__type__": "cc.Vec3",
  10328. "x": 0,
  10329. "y": 0,
  10330. "z": 0
  10331. },
  10332. "_skewX": 0,
  10333. "_skewY": 0,
  10334. "_is3DNode": false,
  10335. "_groupIndex": 0,
  10336. "groupIndex": 0,
  10337. "_id": ""
  10338. },
  10339. {
  10340. "__type__": "cc.Sprite",
  10341. "_name": "",
  10342. "_objFlags": 0,
  10343. "node": {
  10344. "__id__": 295
  10345. },
  10346. "_enabled": true,
  10347. "_materials": [
  10348. {
  10349. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10350. }
  10351. ],
  10352. "_srcBlendFactor": 770,
  10353. "_dstBlendFactor": 771,
  10354. "_spriteFrame": {
  10355. "__uuid__": "16a8749f-4023-4134-983d-716fbd9d9548"
  10356. },
  10357. "_type": 1,
  10358. "_sizeMode": 0,
  10359. "_fillType": 0,
  10360. "_fillCenter": {
  10361. "__type__": "cc.Vec2",
  10362. "x": 0,
  10363. "y": 0
  10364. },
  10365. "_fillStart": 0,
  10366. "_fillRange": 0,
  10367. "_isTrimmedMode": true,
  10368. "_atlas": null,
  10369. "_id": ""
  10370. },
  10371. {
  10372. "__type__": "cc.PrefabInfo",
  10373. "root": {
  10374. "__id__": 1
  10375. },
  10376. "asset": {
  10377. "__id__": 0
  10378. },
  10379. "fileId": "e4poI8kSxGdYQe60E80qQZ",
  10380. "sync": false
  10381. },
  10382. {
  10383. "__type__": "cc.Node",
  10384. "_name": "mask",
  10385. "_objFlags": 0,
  10386. "_parent": {
  10387. "__id__": 294
  10388. },
  10389. "_children": [
  10390. {
  10391. "__id__": 299
  10392. }
  10393. ],
  10394. "_active": true,
  10395. "_components": [
  10396. {
  10397. "__id__": 302
  10398. }
  10399. ],
  10400. "_prefab": {
  10401. "__id__": 303
  10402. },
  10403. "_opacity": 255,
  10404. "_color": {
  10405. "__type__": "cc.Color",
  10406. "r": 255,
  10407. "g": 255,
  10408. "b": 255,
  10409. "a": 255
  10410. },
  10411. "_contentSize": {
  10412. "__type__": "cc.Size",
  10413. "width": 170,
  10414. "height": 170
  10415. },
  10416. "_anchorPoint": {
  10417. "__type__": "cc.Vec2",
  10418. "x": 0.5,
  10419. "y": 0.5
  10420. },
  10421. "_trs": {
  10422. "__type__": "TypedArray",
  10423. "ctor": "Float64Array",
  10424. "array": [
  10425. 0,
  10426. 0,
  10427. 0,
  10428. 0,
  10429. 0,
  10430. 0,
  10431. 1,
  10432. 1,
  10433. 1,
  10434. 1
  10435. ]
  10436. },
  10437. "_eulerAngles": {
  10438. "__type__": "cc.Vec3",
  10439. "x": 0,
  10440. "y": 0,
  10441. "z": 0
  10442. },
  10443. "_skewX": 0,
  10444. "_skewY": 0,
  10445. "_is3DNode": false,
  10446. "_groupIndex": 0,
  10447. "groupIndex": 0,
  10448. "_id": ""
  10449. },
  10450. {
  10451. "__type__": "cc.Node",
  10452. "_name": "mask",
  10453. "_objFlags": 0,
  10454. "_parent": {
  10455. "__id__": 298
  10456. },
  10457. "_children": [],
  10458. "_active": true,
  10459. "_components": [
  10460. {
  10461. "__id__": 300
  10462. }
  10463. ],
  10464. "_prefab": {
  10465. "__id__": 301
  10466. },
  10467. "_opacity": 200,
  10468. "_color": {
  10469. "__type__": "cc.Color",
  10470. "r": 0,
  10471. "g": 0,
  10472. "b": 0,
  10473. "a": 255
  10474. },
  10475. "_contentSize": {
  10476. "__type__": "cc.Size",
  10477. "width": 1300,
  10478. "height": 1080
  10479. },
  10480. "_anchorPoint": {
  10481. "__type__": "cc.Vec2",
  10482. "x": 0.5,
  10483. "y": 0.5
  10484. },
  10485. "_trs": {
  10486. "__type__": "TypedArray",
  10487. "ctor": "Float64Array",
  10488. "array": [
  10489. 310,
  10490. -216,
  10491. 0,
  10492. 0,
  10493. 0,
  10494. 0,
  10495. 1,
  10496. 1,
  10497. 1,
  10498. 1
  10499. ]
  10500. },
  10501. "_eulerAngles": {
  10502. "__type__": "cc.Vec3",
  10503. "x": 0,
  10504. "y": 0,
  10505. "z": 0
  10506. },
  10507. "_skewX": 0,
  10508. "_skewY": 0,
  10509. "_is3DNode": false,
  10510. "_groupIndex": 0,
  10511. "groupIndex": 0,
  10512. "_id": ""
  10513. },
  10514. {
  10515. "__type__": "cc.Sprite",
  10516. "_name": "",
  10517. "_objFlags": 0,
  10518. "node": {
  10519. "__id__": 299
  10520. },
  10521. "_enabled": true,
  10522. "_materials": [
  10523. {
  10524. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10525. }
  10526. ],
  10527. "_srcBlendFactor": 770,
  10528. "_dstBlendFactor": 771,
  10529. "_spriteFrame": {
  10530. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  10531. },
  10532. "_type": 0,
  10533. "_sizeMode": 0,
  10534. "_fillType": 0,
  10535. "_fillCenter": {
  10536. "__type__": "cc.Vec2",
  10537. "x": 0,
  10538. "y": 0
  10539. },
  10540. "_fillStart": 0,
  10541. "_fillRange": 0,
  10542. "_isTrimmedMode": true,
  10543. "_atlas": null,
  10544. "_id": ""
  10545. },
  10546. {
  10547. "__type__": "cc.PrefabInfo",
  10548. "root": {
  10549. "__id__": 1
  10550. },
  10551. "asset": {
  10552. "__id__": 0
  10553. },
  10554. "fileId": "53BvLSA9dMW5bFIbJB3tvZ",
  10555. "sync": false
  10556. },
  10557. {
  10558. "__type__": "cc.Mask",
  10559. "_name": "",
  10560. "_objFlags": 0,
  10561. "node": {
  10562. "__id__": 298
  10563. },
  10564. "_enabled": true,
  10565. "_materials": [
  10566. {
  10567. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10568. }
  10569. ],
  10570. "_spriteFrame": null,
  10571. "_type": 0,
  10572. "_segments": 64,
  10573. "_N$alphaThreshold": 0.1,
  10574. "_N$inverted": true,
  10575. "_id": ""
  10576. },
  10577. {
  10578. "__type__": "cc.PrefabInfo",
  10579. "root": {
  10580. "__id__": 1
  10581. },
  10582. "asset": {
  10583. "__id__": 0
  10584. },
  10585. "fileId": "32R4sVvWtLEJ3guoXqG0K9",
  10586. "sync": false
  10587. },
  10588. {
  10589. "__type__": "cc.PrefabInfo",
  10590. "root": {
  10591. "__id__": 1
  10592. },
  10593. "asset": {
  10594. "__id__": 0
  10595. },
  10596. "fileId": "ad4homsGRPkac63UyH2f/Z",
  10597. "sync": false
  10598. },
  10599. {
  10600. "__type__": "cc.PrefabInfo",
  10601. "root": {
  10602. "__id__": 1
  10603. },
  10604. "asset": {
  10605. "__id__": 0
  10606. },
  10607. "fileId": "10OvHfj4hNrI4viJSKoqQz",
  10608. "sync": false
  10609. },
  10610. {
  10611. "__type__": "cc.Node",
  10612. "_name": "guide_finger",
  10613. "_objFlags": 0,
  10614. "_parent": {
  10615. "__id__": 281
  10616. },
  10617. "_children": [],
  10618. "_active": true,
  10619. "_components": [
  10620. {
  10621. "__id__": 307
  10622. }
  10623. ],
  10624. "_prefab": {
  10625. "__id__": 308
  10626. },
  10627. "_opacity": 255,
  10628. "_color": {
  10629. "__type__": "cc.Color",
  10630. "r": 255,
  10631. "g": 255,
  10632. "b": 255,
  10633. "a": 255
  10634. },
  10635. "_contentSize": {
  10636. "__type__": "cc.Size",
  10637. "width": 113,
  10638. "height": 117
  10639. },
  10640. "_anchorPoint": {
  10641. "__type__": "cc.Vec2",
  10642. "x": 0.5,
  10643. "y": 0.5
  10644. },
  10645. "_trs": {
  10646. "__type__": "TypedArray",
  10647. "ctor": "Float64Array",
  10648. "array": [
  10649. 381,
  10650. 110,
  10651. 0,
  10652. 0,
  10653. 0,
  10654. 0,
  10655. 1,
  10656. 1,
  10657. 1,
  10658. 1
  10659. ]
  10660. },
  10661. "_eulerAngles": {
  10662. "__type__": "cc.Vec3",
  10663. "x": 0,
  10664. "y": 0,
  10665. "z": 0
  10666. },
  10667. "_skewX": 0,
  10668. "_skewY": 0,
  10669. "_is3DNode": false,
  10670. "_groupIndex": 0,
  10671. "groupIndex": 0,
  10672. "_id": ""
  10673. },
  10674. {
  10675. "__type__": "cc.Sprite",
  10676. "_name": "",
  10677. "_objFlags": 0,
  10678. "node": {
  10679. "__id__": 306
  10680. },
  10681. "_enabled": true,
  10682. "_materials": [
  10683. {
  10684. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10685. }
  10686. ],
  10687. "_srcBlendFactor": 770,
  10688. "_dstBlendFactor": 771,
  10689. "_spriteFrame": {
  10690. "__uuid__": "9c74e976-3908-4d96-91ae-4be80f36afce"
  10691. },
  10692. "_type": 0,
  10693. "_sizeMode": 1,
  10694. "_fillType": 0,
  10695. "_fillCenter": {
  10696. "__type__": "cc.Vec2",
  10697. "x": 0,
  10698. "y": 0
  10699. },
  10700. "_fillStart": 0,
  10701. "_fillRange": 0,
  10702. "_isTrimmedMode": true,
  10703. "_atlas": null,
  10704. "_id": ""
  10705. },
  10706. {
  10707. "__type__": "cc.PrefabInfo",
  10708. "root": {
  10709. "__id__": 1
  10710. },
  10711. "asset": {
  10712. "__id__": 0
  10713. },
  10714. "fileId": "426retIYxN87OqKwq5a5t7",
  10715. "sync": false
  10716. },
  10717. {
  10718. "__type__": "cc.PrefabInfo",
  10719. "root": {
  10720. "__id__": 1
  10721. },
  10722. "asset": {
  10723. "__id__": 0
  10724. },
  10725. "fileId": "d4vRN3ffpE650yi2xm2pOS",
  10726. "sync": false
  10727. },
  10728. {
  10729. "__type__": "cc.Node",
  10730. "_name": "touchSpine",
  10731. "_objFlags": 0,
  10732. "_parent": {
  10733. "__id__": 1
  10734. },
  10735. "_children": [
  10736. {
  10737. "__id__": 311
  10738. }
  10739. ],
  10740. "_active": true,
  10741. "_components": [],
  10742. "_prefab": {
  10743. "__id__": 314
  10744. },
  10745. "_opacity": 255,
  10746. "_color": {
  10747. "__type__": "cc.Color",
  10748. "r": 255,
  10749. "g": 255,
  10750. "b": 255,
  10751. "a": 255
  10752. },
  10753. "_contentSize": {
  10754. "__type__": "cc.Size",
  10755. "width": 300,
  10756. "height": 380
  10757. },
  10758. "_anchorPoint": {
  10759. "__type__": "cc.Vec2",
  10760. "x": 0.5,
  10761. "y": 0.5
  10762. },
  10763. "_trs": {
  10764. "__type__": "TypedArray",
  10765. "ctor": "Float64Array",
  10766. "array": [
  10767. 0,
  10768. -1500,
  10769. 0,
  10770. 0,
  10771. 0,
  10772. 0,
  10773. 1,
  10774. 1,
  10775. 1,
  10776. 0.6
  10777. ]
  10778. },
  10779. "_eulerAngles": {
  10780. "__type__": "cc.Vec3",
  10781. "x": 0,
  10782. "y": 0,
  10783. "z": 0
  10784. },
  10785. "_skewX": 0,
  10786. "_skewY": 0,
  10787. "_is3DNode": false,
  10788. "_groupIndex": 0,
  10789. "groupIndex": 0,
  10790. "_id": ""
  10791. },
  10792. {
  10793. "__type__": "cc.Node",
  10794. "_name": "spine",
  10795. "_objFlags": 0,
  10796. "_parent": {
  10797. "__id__": 310
  10798. },
  10799. "_children": [],
  10800. "_active": true,
  10801. "_components": [
  10802. {
  10803. "__id__": 312
  10804. }
  10805. ],
  10806. "_prefab": {
  10807. "__id__": 313
  10808. },
  10809. "_opacity": 255,
  10810. "_color": {
  10811. "__type__": "cc.Color",
  10812. "r": 255,
  10813. "g": 255,
  10814. "b": 255,
  10815. "a": 255
  10816. },
  10817. "_contentSize": {
  10818. "__type__": "cc.Size",
  10819. "width": 412.36175537109375,
  10820. "height": 509
  10821. },
  10822. "_anchorPoint": {
  10823. "__type__": "cc.Vec2",
  10824. "x": 0.5,
  10825. "y": 0.5
  10826. },
  10827. "_trs": {
  10828. "__type__": "TypedArray",
  10829. "ctor": "Float64Array",
  10830. "array": [
  10831. 0,
  10832. -190,
  10833. 0,
  10834. 0,
  10835. 0,
  10836. 0,
  10837. 1,
  10838. 0.6,
  10839. 0.6,
  10840. 1
  10841. ]
  10842. },
  10843. "_eulerAngles": {
  10844. "__type__": "cc.Vec3",
  10845. "x": 0,
  10846. "y": 0,
  10847. "z": 0
  10848. },
  10849. "_skewX": 0,
  10850. "_skewY": 0,
  10851. "_is3DNode": false,
  10852. "_groupIndex": 0,
  10853. "groupIndex": 0,
  10854. "_id": ""
  10855. },
  10856. {
  10857. "__type__": "sp.Skeleton",
  10858. "_name": "",
  10859. "_objFlags": 0,
  10860. "node": {
  10861. "__id__": 311
  10862. },
  10863. "_enabled": true,
  10864. "_materials": [
  10865. {
  10866. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  10867. }
  10868. ],
  10869. "paused": false,
  10870. "defaultSkin": "default",
  10871. "defaultAnimation": "",
  10872. "_preCacheMode": 1,
  10873. "_cacheMode": 0,
  10874. "loop": false,
  10875. "premultipliedAlpha": true,
  10876. "timeScale": 1,
  10877. "_accTime": 0,
  10878. "_playCount": 0,
  10879. "_frameCache": null,
  10880. "_curFrame": null,
  10881. "_skeletonCache": null,
  10882. "_animationName": "idle",
  10883. "_animationQueue": [],
  10884. "_headAniInfo": null,
  10885. "_playTimes": 0,
  10886. "_isAniComplete": true,
  10887. "_N$skeletonData": null,
  10888. "_N$_defaultCacheMode": 0,
  10889. "_N$debugSlots": false,
  10890. "_N$debugBones": false,
  10891. "_N$debugMesh": false,
  10892. "_N$useTint": false,
  10893. "_N$enableBatch": false,
  10894. "_id": ""
  10895. },
  10896. {
  10897. "__type__": "cc.PrefabInfo",
  10898. "root": {
  10899. "__id__": 1
  10900. },
  10901. "asset": {
  10902. "__id__": 0
  10903. },
  10904. "fileId": "30pYTM49VDkY3cz0n3Rk8e",
  10905. "sync": false
  10906. },
  10907. {
  10908. "__type__": "cc.PrefabInfo",
  10909. "root": {
  10910. "__id__": 1
  10911. },
  10912. "asset": {
  10913. "__id__": 0
  10914. },
  10915. "fileId": "2fGRwWUsVKkp0wBpN9i6Tz",
  10916. "sync": false
  10917. },
  10918. {
  10919. "__type__": "cc.Node",
  10920. "_name": "touchCard",
  10921. "_objFlags": 0,
  10922. "_parent": {
  10923. "__id__": 1
  10924. },
  10925. "_children": [
  10926. {
  10927. "__id__": 316
  10928. },
  10929. {
  10930. "__id__": 319
  10931. },
  10932. {
  10933. "__id__": 322
  10934. },
  10935. {
  10936. "__id__": 325
  10937. }
  10938. ],
  10939. "_active": true,
  10940. "_components": [],
  10941. "_prefab": {
  10942. "__id__": 329
  10943. },
  10944. "_opacity": 255,
  10945. "_color": {
  10946. "__type__": "cc.Color",
  10947. "r": 0,
  10948. "g": 0,
  10949. "b": 0,
  10950. "a": 255
  10951. },
  10952. "_contentSize": {
  10953. "__type__": "cc.Size",
  10954. "width": 150,
  10955. "height": 150
  10956. },
  10957. "_anchorPoint": {
  10958. "__type__": "cc.Vec2",
  10959. "x": 0.5,
  10960. "y": 0.5
  10961. },
  10962. "_trs": {
  10963. "__type__": "TypedArray",
  10964. "ctor": "Float64Array",
  10965. "array": [
  10966. -238,
  10967. -1109.89,
  10968. 0,
  10969. 0,
  10970. 0,
  10971. 0,
  10972. 1,
  10973. 1,
  10974. 1,
  10975. 1
  10976. ]
  10977. },
  10978. "_eulerAngles": {
  10979. "__type__": "cc.Vec3",
  10980. "x": 0,
  10981. "y": 0,
  10982. "z": 0
  10983. },
  10984. "_skewX": 0,
  10985. "_skewY": 0,
  10986. "_is3DNode": false,
  10987. "_groupIndex": 0,
  10988. "groupIndex": 0,
  10989. "_id": ""
  10990. },
  10991. {
  10992. "__type__": "cc.Node",
  10993. "_name": "item_frame",
  10994. "_objFlags": 0,
  10995. "_parent": {
  10996. "__id__": 315
  10997. },
  10998. "_children": [],
  10999. "_active": true,
  11000. "_components": [
  11001. {
  11002. "__id__": 317
  11003. }
  11004. ],
  11005. "_prefab": {
  11006. "__id__": 318
  11007. },
  11008. "_opacity": 255,
  11009. "_color": {
  11010. "__type__": "cc.Color",
  11011. "r": 255,
  11012. "g": 255,
  11013. "b": 255,
  11014. "a": 255
  11015. },
  11016. "_contentSize": {
  11017. "__type__": "cc.Size",
  11018. "width": 150,
  11019. "height": 150
  11020. },
  11021. "_anchorPoint": {
  11022. "__type__": "cc.Vec2",
  11023. "x": 0.5,
  11024. "y": 0.5
  11025. },
  11026. "_trs": {
  11027. "__type__": "TypedArray",
  11028. "ctor": "Float64Array",
  11029. "array": [
  11030. 0,
  11031. 0,
  11032. 0,
  11033. 0,
  11034. 0,
  11035. 0,
  11036. 1,
  11037. 1,
  11038. 1,
  11039. 1
  11040. ]
  11041. },
  11042. "_eulerAngles": {
  11043. "__type__": "cc.Vec3",
  11044. "x": 0,
  11045. "y": 0,
  11046. "z": 0
  11047. },
  11048. "_skewX": 0,
  11049. "_skewY": 0,
  11050. "_is3DNode": false,
  11051. "_groupIndex": 0,
  11052. "groupIndex": 0,
  11053. "_id": ""
  11054. },
  11055. {
  11056. "__type__": "cc.Sprite",
  11057. "_name": "",
  11058. "_objFlags": 0,
  11059. "node": {
  11060. "__id__": 316
  11061. },
  11062. "_enabled": true,
  11063. "_materials": [
  11064. {
  11065. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11066. }
  11067. ],
  11068. "_srcBlendFactor": 770,
  11069. "_dstBlendFactor": 771,
  11070. "_spriteFrame": {
  11071. "__uuid__": "9001cedd-06f1-4884-8ed1-17038fad7fa6"
  11072. },
  11073. "_type": 0,
  11074. "_sizeMode": 0,
  11075. "_fillType": 0,
  11076. "_fillCenter": {
  11077. "__type__": "cc.Vec2",
  11078. "x": 0,
  11079. "y": 0
  11080. },
  11081. "_fillStart": 0,
  11082. "_fillRange": 0,
  11083. "_isTrimmedMode": true,
  11084. "_atlas": null,
  11085. "_id": ""
  11086. },
  11087. {
  11088. "__type__": "cc.PrefabInfo",
  11089. "root": {
  11090. "__id__": 1
  11091. },
  11092. "asset": {
  11093. "__id__": 0
  11094. },
  11095. "fileId": "71YknkoodKT4xQTKLfurye",
  11096. "sync": false
  11097. },
  11098. {
  11099. "__type__": "cc.Node",
  11100. "_name": "skill_quality",
  11101. "_objFlags": 0,
  11102. "_parent": {
  11103. "__id__": 315
  11104. },
  11105. "_children": [],
  11106. "_active": true,
  11107. "_components": [
  11108. {
  11109. "__id__": 320
  11110. }
  11111. ],
  11112. "_prefab": {
  11113. "__id__": 321
  11114. },
  11115. "_opacity": 255,
  11116. "_color": {
  11117. "__type__": "cc.Color",
  11118. "r": 255,
  11119. "g": 255,
  11120. "b": 255,
  11121. "a": 255
  11122. },
  11123. "_contentSize": {
  11124. "__type__": "cc.Size",
  11125. "width": 140,
  11126. "height": 140
  11127. },
  11128. "_anchorPoint": {
  11129. "__type__": "cc.Vec2",
  11130. "x": 0.5,
  11131. "y": 0.5
  11132. },
  11133. "_trs": {
  11134. "__type__": "TypedArray",
  11135. "ctor": "Float64Array",
  11136. "array": [
  11137. 0,
  11138. 0,
  11139. 0,
  11140. 0,
  11141. 0,
  11142. 0,
  11143. 1,
  11144. 1,
  11145. 1,
  11146. 1
  11147. ]
  11148. },
  11149. "_eulerAngles": {
  11150. "__type__": "cc.Vec3",
  11151. "x": 0,
  11152. "y": 0,
  11153. "z": 0
  11154. },
  11155. "_skewX": 0,
  11156. "_skewY": 0,
  11157. "_is3DNode": false,
  11158. "_groupIndex": 0,
  11159. "groupIndex": 0,
  11160. "_id": ""
  11161. },
  11162. {
  11163. "__type__": "cc.Sprite",
  11164. "_name": "",
  11165. "_objFlags": 0,
  11166. "node": {
  11167. "__id__": 319
  11168. },
  11169. "_enabled": true,
  11170. "_materials": [
  11171. {
  11172. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11173. }
  11174. ],
  11175. "_srcBlendFactor": 770,
  11176. "_dstBlendFactor": 771,
  11177. "_spriteFrame": null,
  11178. "_type": 0,
  11179. "_sizeMode": 1,
  11180. "_fillType": 0,
  11181. "_fillCenter": {
  11182. "__type__": "cc.Vec2",
  11183. "x": 0,
  11184. "y": 0
  11185. },
  11186. "_fillStart": 0,
  11187. "_fillRange": 0,
  11188. "_isTrimmedMode": true,
  11189. "_atlas": null,
  11190. "_id": ""
  11191. },
  11192. {
  11193. "__type__": "cc.PrefabInfo",
  11194. "root": {
  11195. "__id__": 1
  11196. },
  11197. "asset": {
  11198. "__id__": 0
  11199. },
  11200. "fileId": "2bYlzFpotJH4fiEf8YseFN",
  11201. "sync": false
  11202. },
  11203. {
  11204. "__type__": "cc.Node",
  11205. "_name": "icon",
  11206. "_objFlags": 0,
  11207. "_parent": {
  11208. "__id__": 315
  11209. },
  11210. "_children": [],
  11211. "_active": true,
  11212. "_components": [
  11213. {
  11214. "__id__": 323
  11215. }
  11216. ],
  11217. "_prefab": {
  11218. "__id__": 324
  11219. },
  11220. "_opacity": 255,
  11221. "_color": {
  11222. "__type__": "cc.Color",
  11223. "r": 255,
  11224. "g": 255,
  11225. "b": 255,
  11226. "a": 255
  11227. },
  11228. "_contentSize": {
  11229. "__type__": "cc.Size",
  11230. "width": 150,
  11231. "height": 150
  11232. },
  11233. "_anchorPoint": {
  11234. "__type__": "cc.Vec2",
  11235. "x": 0.5,
  11236. "y": 0.5
  11237. },
  11238. "_trs": {
  11239. "__type__": "TypedArray",
  11240. "ctor": "Float64Array",
  11241. "array": [
  11242. 0,
  11243. 0,
  11244. 0,
  11245. 0,
  11246. 0,
  11247. 0,
  11248. 1,
  11249. 1,
  11250. 1,
  11251. 1
  11252. ]
  11253. },
  11254. "_eulerAngles": {
  11255. "__type__": "cc.Vec3",
  11256. "x": 0,
  11257. "y": 0,
  11258. "z": 0
  11259. },
  11260. "_skewX": 0,
  11261. "_skewY": 0,
  11262. "_is3DNode": false,
  11263. "_groupIndex": 0,
  11264. "groupIndex": 0,
  11265. "_id": ""
  11266. },
  11267. {
  11268. "__type__": "cc.Sprite",
  11269. "_name": "",
  11270. "_objFlags": 0,
  11271. "node": {
  11272. "__id__": 322
  11273. },
  11274. "_enabled": true,
  11275. "_materials": [
  11276. {
  11277. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11278. }
  11279. ],
  11280. "_srcBlendFactor": 770,
  11281. "_dstBlendFactor": 771,
  11282. "_spriteFrame": null,
  11283. "_type": 0,
  11284. "_sizeMode": 0,
  11285. "_fillType": 0,
  11286. "_fillCenter": {
  11287. "__type__": "cc.Vec2",
  11288. "x": 0,
  11289. "y": 0
  11290. },
  11291. "_fillStart": 0,
  11292. "_fillRange": 0,
  11293. "_isTrimmedMode": false,
  11294. "_atlas": null,
  11295. "_id": ""
  11296. },
  11297. {
  11298. "__type__": "cc.PrefabInfo",
  11299. "root": {
  11300. "__id__": 1
  11301. },
  11302. "asset": {
  11303. "__id__": 0
  11304. },
  11305. "fileId": "14CU82k61MV49KdTxVzrJT",
  11306. "sync": false
  11307. },
  11308. {
  11309. "__type__": "cc.Node",
  11310. "_name": "lv",
  11311. "_objFlags": 0,
  11312. "_parent": {
  11313. "__id__": 315
  11314. },
  11315. "_children": [],
  11316. "_active": true,
  11317. "_components": [
  11318. {
  11319. "__id__": 326
  11320. },
  11321. {
  11322. "__id__": 327
  11323. }
  11324. ],
  11325. "_prefab": {
  11326. "__id__": 328
  11327. },
  11328. "_opacity": 255,
  11329. "_color": {
  11330. "__type__": "cc.Color",
  11331. "r": 255,
  11332. "g": 255,
  11333. "b": 255,
  11334. "a": 255
  11335. },
  11336. "_contentSize": {
  11337. "__type__": "cc.Size",
  11338. "width": 78.44,
  11339. "height": 56.4
  11340. },
  11341. "_anchorPoint": {
  11342. "__type__": "cc.Vec2",
  11343. "x": 0.5,
  11344. "y": 0.5
  11345. },
  11346. "_trs": {
  11347. "__type__": "TypedArray",
  11348. "ctor": "Float64Array",
  11349. "array": [
  11350. 0,
  11351. -45.959,
  11352. 0,
  11353. 0,
  11354. 0,
  11355. 0,
  11356. 1,
  11357. 1,
  11358. 1,
  11359. 1
  11360. ]
  11361. },
  11362. "_eulerAngles": {
  11363. "__type__": "cc.Vec3",
  11364. "x": 0,
  11365. "y": 0,
  11366. "z": 0
  11367. },
  11368. "_skewX": 0,
  11369. "_skewY": 0,
  11370. "_is3DNode": false,
  11371. "_groupIndex": 0,
  11372. "groupIndex": 0,
  11373. "_id": ""
  11374. },
  11375. {
  11376. "__type__": "cc.Label",
  11377. "_name": "",
  11378. "_objFlags": 0,
  11379. "node": {
  11380. "__id__": 325
  11381. },
  11382. "_enabled": true,
  11383. "_materials": [
  11384. {
  11385. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11386. }
  11387. ],
  11388. "_srcBlendFactor": 770,
  11389. "_dstBlendFactor": 771,
  11390. "_string": "lv.99",
  11391. "_N$string": "lv.99",
  11392. "_fontSize": 30,
  11393. "_lineHeight": 40,
  11394. "_enableWrapText": true,
  11395. "_N$file": {
  11396. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  11397. },
  11398. "_isSystemFontUsed": false,
  11399. "_spacingX": 0,
  11400. "_batchAsBitmap": false,
  11401. "_styleFlags": 0,
  11402. "_underlineHeight": 0,
  11403. "_N$horizontalAlign": 1,
  11404. "_N$verticalAlign": 1,
  11405. "_N$fontFamily": "Arial",
  11406. "_N$overflow": 2,
  11407. "_N$cacheMode": 0,
  11408. "_id": ""
  11409. },
  11410. {
  11411. "__type__": "cc.LabelOutline",
  11412. "_name": "",
  11413. "_objFlags": 0,
  11414. "node": {
  11415. "__id__": 325
  11416. },
  11417. "_enabled": true,
  11418. "_color": {
  11419. "__type__": "cc.Color",
  11420. "r": 38,
  11421. "g": 17,
  11422. "b": 12,
  11423. "a": 255
  11424. },
  11425. "_width": 3,
  11426. "_id": ""
  11427. },
  11428. {
  11429. "__type__": "cc.PrefabInfo",
  11430. "root": {
  11431. "__id__": 1
  11432. },
  11433. "asset": {
  11434. "__id__": 0
  11435. },
  11436. "fileId": "e24iEpuVpOuJHDJtk/ZlwU",
  11437. "sync": false
  11438. },
  11439. {
  11440. "__type__": "cc.PrefabInfo",
  11441. "root": {
  11442. "__id__": 1
  11443. },
  11444. "asset": {
  11445. "__id__": 0
  11446. },
  11447. "fileId": "0e+/yioNVLepUA176iMEpF",
  11448. "sync": false
  11449. },
  11450. {
  11451. "__type__": "cc.Node",
  11452. "_name": "levelGuide",
  11453. "_objFlags": 0,
  11454. "_parent": {
  11455. "__id__": 1
  11456. },
  11457. "_children": [],
  11458. "_active": false,
  11459. "_components": [
  11460. {
  11461. "__id__": 331
  11462. },
  11463. {
  11464. "__id__": 332
  11465. }
  11466. ],
  11467. "_prefab": {
  11468. "__id__": 334
  11469. },
  11470. "_opacity": 255,
  11471. "_color": {
  11472. "__type__": "cc.Color",
  11473. "r": 255,
  11474. "g": 255,
  11475. "b": 255,
  11476. "a": 255
  11477. },
  11478. "_contentSize": {
  11479. "__type__": "cc.Size",
  11480. "width": 160,
  11481. "height": 160
  11482. },
  11483. "_anchorPoint": {
  11484. "__type__": "cc.Vec2",
  11485. "x": 0.5,
  11486. "y": 0.5
  11487. },
  11488. "_trs": {
  11489. "__type__": "TypedArray",
  11490. "ctor": "Float64Array",
  11491. "array": [
  11492. 500,
  11493. 206,
  11494. 0,
  11495. 0,
  11496. 0,
  11497. 0,
  11498. 1,
  11499. 1,
  11500. 1,
  11501. 1
  11502. ]
  11503. },
  11504. "_eulerAngles": {
  11505. "__type__": "cc.Vec3",
  11506. "x": 0,
  11507. "y": 0,
  11508. "z": 0
  11509. },
  11510. "_skewX": 0,
  11511. "_skewY": 0,
  11512. "_is3DNode": false,
  11513. "_groupIndex": 0,
  11514. "groupIndex": 0,
  11515. "_id": ""
  11516. },
  11517. {
  11518. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  11519. "_name": "",
  11520. "_objFlags": 0,
  11521. "node": {
  11522. "__id__": 330
  11523. },
  11524. "_enabled": true,
  11525. "openContinuous": true,
  11526. "continuousTime": 0.2,
  11527. "multiTouch": false,
  11528. "_id": ""
  11529. },
  11530. {
  11531. "__type__": "61994AafntNFIbmt1zoyLq+",
  11532. "_name": "",
  11533. "_objFlags": 0,
  11534. "node": {
  11535. "__id__": 330
  11536. },
  11537. "_enabled": true,
  11538. "_normalMaterial": null,
  11539. "_grayMaterial": null,
  11540. "duration": 0.1,
  11541. "zoomScale": 1.2,
  11542. "clickEvents": [
  11543. {
  11544. "__id__": 333
  11545. }
  11546. ],
  11547. "_N$interactable": true,
  11548. "_N$enableAutoGrayEffect": false,
  11549. "_N$transition": 0,
  11550. "transition": 0,
  11551. "_N$normalColor": {
  11552. "__type__": "cc.Color",
  11553. "r": 255,
  11554. "g": 255,
  11555. "b": 255,
  11556. "a": 255
  11557. },
  11558. "_N$pressedColor": {
  11559. "__type__": "cc.Color",
  11560. "r": 211,
  11561. "g": 211,
  11562. "b": 211,
  11563. "a": 255
  11564. },
  11565. "pressedColor": {
  11566. "__type__": "cc.Color",
  11567. "r": 211,
  11568. "g": 211,
  11569. "b": 211,
  11570. "a": 255
  11571. },
  11572. "_N$hoverColor": {
  11573. "__type__": "cc.Color",
  11574. "r": 255,
  11575. "g": 255,
  11576. "b": 255,
  11577. "a": 255
  11578. },
  11579. "hoverColor": {
  11580. "__type__": "cc.Color",
  11581. "r": 255,
  11582. "g": 255,
  11583. "b": 255,
  11584. "a": 255
  11585. },
  11586. "_N$disabledColor": {
  11587. "__type__": "cc.Color",
  11588. "r": 124,
  11589. "g": 124,
  11590. "b": 124,
  11591. "a": 255
  11592. },
  11593. "_N$normalSprite": null,
  11594. "_N$pressedSprite": null,
  11595. "pressedSprite": null,
  11596. "_N$hoverSprite": null,
  11597. "hoverSprite": null,
  11598. "_N$disabledSprite": null,
  11599. "_N$target": null,
  11600. "_id": ""
  11601. },
  11602. {
  11603. "__type__": "cc.ClickEvent",
  11604. "target": {
  11605. "__id__": 1
  11606. },
  11607. "component": "",
  11608. "_componentId": "424349zjmhIaKg9ABoHFkZs",
  11609. "handler": "onTeamRoleClick",
  11610. "customEventData": ""
  11611. },
  11612. {
  11613. "__type__": "cc.PrefabInfo",
  11614. "root": {
  11615. "__id__": 1
  11616. },
  11617. "asset": {
  11618. "__id__": 0
  11619. },
  11620. "fileId": "b0kFlteEBHW7+Fx4sGUVPO",
  11621. "sync": false
  11622. },
  11623. {
  11624. "__type__": "cc.Node",
  11625. "_name": "cardGuide",
  11626. "_objFlags": 0,
  11627. "_parent": {
  11628. "__id__": 1
  11629. },
  11630. "_children": [],
  11631. "_active": false,
  11632. "_components": [
  11633. {
  11634. "__id__": 336
  11635. },
  11636. {
  11637. "__id__": 337
  11638. }
  11639. ],
  11640. "_prefab": {
  11641. "__id__": 339
  11642. },
  11643. "_opacity": 255,
  11644. "_color": {
  11645. "__type__": "cc.Color",
  11646. "r": 255,
  11647. "g": 255,
  11648. "b": 255,
  11649. "a": 255
  11650. },
  11651. "_contentSize": {
  11652. "__type__": "cc.Size",
  11653. "width": 160,
  11654. "height": 160
  11655. },
  11656. "_anchorPoint": {
  11657. "__type__": "cc.Vec2",
  11658. "x": 0.5,
  11659. "y": 0.5
  11660. },
  11661. "_trs": {
  11662. "__type__": "TypedArray",
  11663. "ctor": "Float64Array",
  11664. "array": [
  11665. 338,
  11666. 206,
  11667. 0,
  11668. 0,
  11669. 0,
  11670. 0,
  11671. 1,
  11672. 1,
  11673. 1,
  11674. 1
  11675. ]
  11676. },
  11677. "_eulerAngles": {
  11678. "__type__": "cc.Vec3",
  11679. "x": 0,
  11680. "y": 0,
  11681. "z": 0
  11682. },
  11683. "_skewX": 0,
  11684. "_skewY": 0,
  11685. "_is3DNode": false,
  11686. "_groupIndex": 0,
  11687. "groupIndex": 0,
  11688. "_id": ""
  11689. },
  11690. {
  11691. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  11692. "_name": "",
  11693. "_objFlags": 0,
  11694. "node": {
  11695. "__id__": 335
  11696. },
  11697. "_enabled": true,
  11698. "openContinuous": true,
  11699. "continuousTime": 0.2,
  11700. "multiTouch": false,
  11701. "_id": ""
  11702. },
  11703. {
  11704. "__type__": "61994AafntNFIbmt1zoyLq+",
  11705. "_name": "",
  11706. "_objFlags": 0,
  11707. "node": {
  11708. "__id__": 335
  11709. },
  11710. "_enabled": true,
  11711. "_normalMaterial": null,
  11712. "_grayMaterial": null,
  11713. "duration": 0.1,
  11714. "zoomScale": 1.2,
  11715. "clickEvents": [
  11716. {
  11717. "__id__": 338
  11718. }
  11719. ],
  11720. "_N$interactable": true,
  11721. "_N$enableAutoGrayEffect": false,
  11722. "_N$transition": 0,
  11723. "transition": 0,
  11724. "_N$normalColor": {
  11725. "__type__": "cc.Color",
  11726. "r": 255,
  11727. "g": 255,
  11728. "b": 255,
  11729. "a": 255
  11730. },
  11731. "_N$pressedColor": {
  11732. "__type__": "cc.Color",
  11733. "r": 211,
  11734. "g": 211,
  11735. "b": 211,
  11736. "a": 255
  11737. },
  11738. "pressedColor": {
  11739. "__type__": "cc.Color",
  11740. "r": 211,
  11741. "g": 211,
  11742. "b": 211,
  11743. "a": 255
  11744. },
  11745. "_N$hoverColor": {
  11746. "__type__": "cc.Color",
  11747. "r": 255,
  11748. "g": 255,
  11749. "b": 255,
  11750. "a": 255
  11751. },
  11752. "hoverColor": {
  11753. "__type__": "cc.Color",
  11754. "r": 255,
  11755. "g": 255,
  11756. "b": 255,
  11757. "a": 255
  11758. },
  11759. "_N$disabledColor": {
  11760. "__type__": "cc.Color",
  11761. "r": 124,
  11762. "g": 124,
  11763. "b": 124,
  11764. "a": 255
  11765. },
  11766. "_N$normalSprite": null,
  11767. "_N$pressedSprite": null,
  11768. "pressedSprite": null,
  11769. "_N$hoverSprite": null,
  11770. "hoverSprite": null,
  11771. "_N$disabledSprite": null,
  11772. "_N$target": null,
  11773. "_id": ""
  11774. },
  11775. {
  11776. "__type__": "cc.ClickEvent",
  11777. "target": {
  11778. "__id__": 1
  11779. },
  11780. "component": "",
  11781. "_componentId": "424349zjmhIaKg9ABoHFkZs",
  11782. "handler": "onCardMergeClick",
  11783. "customEventData": ""
  11784. },
  11785. {
  11786. "__type__": "cc.PrefabInfo",
  11787. "root": {
  11788. "__id__": 1
  11789. },
  11790. "asset": {
  11791. "__id__": 0
  11792. },
  11793. "fileId": "43WABQUYhL+ZDaY3j6ffL8",
  11794. "sync": false
  11795. },
  11796. {
  11797. "__type__": "424349zjmhIaKg9ABoHFkZs",
  11798. "_name": "",
  11799. "_objFlags": 0,
  11800. "node": {
  11801. "__id__": 1
  11802. },
  11803. "_enabled": true,
  11804. "quickClose": false,
  11805. "cache": false,
  11806. "showType": 0,
  11807. "prevent": true,
  11808. "_id": ""
  11809. },
  11810. {
  11811. "__type__": "cc.PrefabInfo",
  11812. "root": {
  11813. "__id__": 1
  11814. },
  11815. "asset": {
  11816. "__id__": 0
  11817. },
  11818. "fileId": "",
  11819. "sync": false
  11820. }
  11821. ]