eliminate.prefab 113 KB

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