MatchView.prefab 103 KB

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