eliminate.prefab 116 KB

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