MainUI.prefab 199 KB

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