PrepareUI.prefab 147 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false
  12. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "PrepareUI",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 7
  24. },
  25. {
  26. "__id__": 13
  27. },
  28. {
  29. "__id__": 29
  30. },
  31. {
  32. "__id__": 32
  33. },
  34. {
  35. "__id__": 41
  36. },
  37. {
  38. "__id__": 56
  39. },
  40. {
  41. "__id__": 60
  42. },
  43. {
  44. "__id__": 144
  45. },
  46. {
  47. "__id__": 207
  48. },
  49. {
  50. "__id__": 259
  51. },
  52. {
  53. "__id__": 267
  54. }
  55. ],
  56. "_active": true,
  57. "_components": [
  58. {
  59. "__id__": 272
  60. },
  61. {
  62. "__id__": 273
  63. },
  64. {
  65. "__id__": 274
  66. }
  67. ],
  68. "_prefab": {
  69. "__id__": 275
  70. },
  71. "_lpos": {
  72. "__type__": "cc.Vec3",
  73. "x": -375,
  74. "y": -667,
  75. "z": 0
  76. },
  77. "_lrot": {
  78. "__type__": "cc.Quat",
  79. "x": 0,
  80. "y": 0,
  81. "z": 0,
  82. "w": 1
  83. },
  84. "_lscale": {
  85. "__type__": "cc.Vec3",
  86. "x": 1,
  87. "y": 1,
  88. "z": 1
  89. },
  90. "_layer": 33554432,
  91. "_euler": {
  92. "__type__": "cc.Vec3",
  93. "x": 0,
  94. "y": 0,
  95. "z": 0
  96. },
  97. "_id": ""
  98. },
  99. {
  100. "__type__": "cc.Node",
  101. "_name": "BG",
  102. "_objFlags": 0,
  103. "_parent": {
  104. "__id__": 1
  105. },
  106. "_children": [],
  107. "_active": true,
  108. "_components": [
  109. {
  110. "__id__": 3
  111. },
  112. {
  113. "__id__": 4
  114. },
  115. {
  116. "__id__": 5
  117. }
  118. ],
  119. "_prefab": {
  120. "__id__": 6
  121. },
  122. "_lpos": {
  123. "__type__": "cc.Vec3",
  124. "x": 375,
  125. "y": 974,
  126. "z": 0
  127. },
  128. "_lrot": {
  129. "__type__": "cc.Quat",
  130. "x": 0,
  131. "y": 0,
  132. "z": 0,
  133. "w": 1
  134. },
  135. "_lscale": {
  136. "__type__": "cc.Vec3",
  137. "x": 1,
  138. "y": 1,
  139. "z": 1
  140. },
  141. "_layer": 33554432,
  142. "_euler": {
  143. "__type__": "cc.Vec3",
  144. "x": 0,
  145. "y": 0,
  146. "z": 0
  147. },
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.UITransformComponent",
  152. "_name": "BG<UITransformComponent>",
  153. "_objFlags": 0,
  154. "node": {
  155. "__id__": 2
  156. },
  157. "_enabled": true,
  158. "_priority": 0,
  159. "_contentSize": {
  160. "__type__": "cc.Size",
  161. "width": 750,
  162. "height": 720
  163. },
  164. "_anchorPoint": {
  165. "__type__": "cc.Vec2",
  166. "x": 0.5,
  167. "y": 0.5
  168. },
  169. "_id": ""
  170. },
  171. {
  172. "__type__": "cc.SpriteComponent",
  173. "_name": "BG<SpriteComponent>",
  174. "_objFlags": 0,
  175. "node": {
  176. "__id__": 2
  177. },
  178. "_enabled": true,
  179. "_srcBlendFactor": 2,
  180. "_dstBlendFactor": 4,
  181. "_color": {
  182. "__type__": "cc.Color",
  183. "r": 255,
  184. "g": 255,
  185. "b": 255,
  186. "a": 255
  187. },
  188. "_sharedMaterial": null,
  189. "_spriteFrame": {
  190. "__uuid__": "27063f83-8d04-4a43-8251-a1b58ff8fd42@f9941"
  191. },
  192. "_type": 0,
  193. "_fillType": 0,
  194. "_sizeMode": 1,
  195. "_fillCenter": {
  196. "__type__": "cc.Vec2",
  197. "x": 0,
  198. "y": 0
  199. },
  200. "_fillStart": 0,
  201. "_fillRange": 0,
  202. "_isTrimmedMode": true,
  203. "_useGrayscale": false,
  204. "_atlas": null,
  205. "_id": ""
  206. },
  207. {
  208. "__type__": "cc.WidgetComponent",
  209. "_name": "BG<WidgetComponent>",
  210. "_objFlags": 0,
  211. "node": {
  212. "__id__": 2
  213. },
  214. "_enabled": true,
  215. "_alignFlags": 45,
  216. "_target": null,
  217. "_left": 0,
  218. "_right": 0,
  219. "_top": 0,
  220. "_bottom": 614,
  221. "_horizontalCenter": 0,
  222. "_verticalCenter": 0,
  223. "_isAbsLeft": true,
  224. "_isAbsRight": true,
  225. "_isAbsTop": true,
  226. "_isAbsBottom": true,
  227. "_isAbsHorizontalCenter": true,
  228. "_isAbsVerticalCenter": true,
  229. "_originalWidth": 750,
  230. "_originalHeight": 720,
  231. "_alignMode": 2,
  232. "_lockFlags": 0,
  233. "_id": ""
  234. },
  235. {
  236. "__type__": "cc.PrefabInfo",
  237. "root": {
  238. "__id__": 1
  239. },
  240. "asset": {
  241. "__id__": 0
  242. },
  243. "fileId": "21PRF71UhN3aIHPRmPcF6K",
  244. "sync": false,
  245. "_synced": {
  246. "default": false,
  247. "serializable": false
  248. }
  249. },
  250. {
  251. "__type__": "cc.Node",
  252. "_name": "ModelView",
  253. "_objFlags": 0,
  254. "_parent": {
  255. "__id__": 1
  256. },
  257. "_children": [],
  258. "_active": true,
  259. "_components": [
  260. {
  261. "__id__": 8
  262. },
  263. {
  264. "__id__": 9
  265. },
  266. {
  267. "__id__": 11
  268. }
  269. ],
  270. "_prefab": {
  271. "__id__": 12
  272. },
  273. "_lpos": {
  274. "__type__": "cc.Vec3",
  275. "x": 378.518,
  276. "y": 968.794,
  277. "z": 0
  278. },
  279. "_lrot": {
  280. "__type__": "cc.Quat",
  281. "x": 0,
  282. "y": 0.7071067811865475,
  283. "z": 0,
  284. "w": 0.7071067811865476
  285. },
  286. "_lscale": {
  287. "__type__": "cc.Vec3",
  288. "x": 650,
  289. "y": 650,
  290. "z": 650
  291. },
  292. "_layer": 1073741824,
  293. "_euler": {
  294. "__type__": "cc.Vec3",
  295. "x": 0,
  296. "y": 89.99999999999999,
  297. "z": 0
  298. },
  299. "_id": ""
  300. },
  301. {
  302. "__type__": "cc.UITransformComponent",
  303. "_name": "Node<UITransformComponent>",
  304. "_objFlags": 0,
  305. "node": {
  306. "__id__": 7
  307. },
  308. "_enabled": true,
  309. "_priority": 0,
  310. "_contentSize": {
  311. "__type__": "cc.Size",
  312. "width": 100,
  313. "height": 100
  314. },
  315. "_anchorPoint": {
  316. "__type__": "cc.Vec2",
  317. "x": 0.5,
  318. "y": 0.5
  319. },
  320. "_id": ""
  321. },
  322. {
  323. "__type__": "cc.ModelComponent",
  324. "_name": "Node<ModelComponent>",
  325. "_objFlags": 0,
  326. "node": {
  327. "__id__": 7
  328. },
  329. "_enabled": true,
  330. "_materials": [
  331. {
  332. "__uuid__": "c4281467-2b47-441c-9fbb-8cd2f7223ac1"
  333. }
  334. ],
  335. "_visFlags": 0,
  336. "lightmapSettings": {
  337. "__id__": 10
  338. },
  339. "_mesh": null,
  340. "_shadowCastingMode": 0,
  341. "_enableMorph": true,
  342. "_id": ""
  343. },
  344. {
  345. "__type__": "cc.ModelLightmapSettings",
  346. "texture": null,
  347. "uvParam": {
  348. "__type__": "cc.Vec4",
  349. "x": 0,
  350. "y": 0,
  351. "z": 0,
  352. "w": 0
  353. },
  354. "_bakeable": false,
  355. "_castShadow": false,
  356. "_receiveShadow": false,
  357. "_recieveShadow": false,
  358. "_lightmapSize": 64
  359. },
  360. {
  361. "__type__": "cc.UIModelComponent",
  362. "_name": "Node<UIModelComponent>",
  363. "_objFlags": 0,
  364. "node": {
  365. "__id__": 7
  366. },
  367. "_enabled": true,
  368. "_id": ""
  369. },
  370. {
  371. "__type__": "cc.PrefabInfo",
  372. "root": {
  373. "__id__": 1
  374. },
  375. "asset": {
  376. "__id__": 0
  377. },
  378. "fileId": "d4Ffvl4wlIpIsPZ26IqeS+",
  379. "sync": false,
  380. "_synced": {
  381. "default": false,
  382. "serializable": false
  383. }
  384. },
  385. {
  386. "__type__": "cc.Node",
  387. "_name": "BGFrame",
  388. "_objFlags": 0,
  389. "_parent": {
  390. "__id__": 1
  391. },
  392. "_children": [
  393. {
  394. "__id__": 14
  395. },
  396. {
  397. "__id__": 18
  398. },
  399. {
  400. "__id__": 22
  401. }
  402. ],
  403. "_active": true,
  404. "_components": [
  405. {
  406. "__id__": 26
  407. },
  408. {
  409. "__id__": 27
  410. }
  411. ],
  412. "_prefab": {
  413. "__id__": 28
  414. },
  415. "_lpos": {
  416. "__type__": "cc.Vec3",
  417. "x": 375,
  418. "y": 700,
  419. "z": 0
  420. },
  421. "_lrot": {
  422. "__type__": "cc.Quat",
  423. "x": 0,
  424. "y": 0,
  425. "z": 0,
  426. "w": 1
  427. },
  428. "_lscale": {
  429. "__type__": "cc.Vec3",
  430. "x": 1,
  431. "y": 1,
  432. "z": 1
  433. },
  434. "_layer": 1073741824,
  435. "_euler": {
  436. "__type__": "cc.Vec3",
  437. "x": 0,
  438. "y": 0,
  439. "z": 0
  440. },
  441. "_id": ""
  442. },
  443. {
  444. "__type__": "cc.Node",
  445. "_name": "BG1",
  446. "_objFlags": 0,
  447. "_parent": {
  448. "__id__": 13
  449. },
  450. "_children": [],
  451. "_active": true,
  452. "_components": [
  453. {
  454. "__id__": 15
  455. },
  456. {
  457. "__id__": 16
  458. }
  459. ],
  460. "_prefab": {
  461. "__id__": 17
  462. },
  463. "_lpos": {
  464. "__type__": "cc.Vec3",
  465. "x": 0,
  466. "y": -150,
  467. "z": 0
  468. },
  469. "_lrot": {
  470. "__type__": "cc.Quat",
  471. "x": 0,
  472. "y": 0,
  473. "z": 0,
  474. "w": 1
  475. },
  476. "_lscale": {
  477. "__type__": "cc.Vec3",
  478. "x": 1,
  479. "y": 1,
  480. "z": 1
  481. },
  482. "_layer": 33554432,
  483. "_euler": {
  484. "__type__": "cc.Vec3",
  485. "x": 0,
  486. "y": 0,
  487. "z": 0
  488. },
  489. "_id": ""
  490. },
  491. {
  492. "__type__": "cc.UITransformComponent",
  493. "_name": "BG1<UITransformComponent>",
  494. "_objFlags": 0,
  495. "node": {
  496. "__id__": 14
  497. },
  498. "_enabled": true,
  499. "_priority": 0,
  500. "_contentSize": {
  501. "__type__": "cc.Size",
  502. "width": 750,
  503. "height": 400
  504. },
  505. "_anchorPoint": {
  506. "__type__": "cc.Vec2",
  507. "x": 0.5,
  508. "y": 0.5
  509. },
  510. "_id": ""
  511. },
  512. {
  513. "__type__": "cc.SpriteComponent",
  514. "_name": "BG1<SpriteComponent>",
  515. "_objFlags": 0,
  516. "node": {
  517. "__id__": 14
  518. },
  519. "_enabled": true,
  520. "_srcBlendFactor": 2,
  521. "_dstBlendFactor": 4,
  522. "_color": {
  523. "__type__": "cc.Color",
  524. "r": 255,
  525. "g": 255,
  526. "b": 255,
  527. "a": 255
  528. },
  529. "_sharedMaterial": null,
  530. "_spriteFrame": {
  531. "__uuid__": "41ca8d43-c744-4018-848e-a0c6b0a2088c@f9941"
  532. },
  533. "_type": 0,
  534. "_fillType": 0,
  535. "_sizeMode": 0,
  536. "_fillCenter": {
  537. "__type__": "cc.Vec2",
  538. "x": 0,
  539. "y": 0
  540. },
  541. "_fillStart": 0,
  542. "_fillRange": 0,
  543. "_isTrimmedMode": true,
  544. "_useGrayscale": false,
  545. "_atlas": null,
  546. "_id": ""
  547. },
  548. {
  549. "__type__": "cc.PrefabInfo",
  550. "root": {
  551. "__id__": 1
  552. },
  553. "asset": {
  554. "__id__": 0
  555. },
  556. "fileId": "c7w0CHR9dBHYTdZHnFh+XS",
  557. "sync": false,
  558. "_synced": {
  559. "default": false,
  560. "serializable": false
  561. }
  562. },
  563. {
  564. "__type__": "cc.Node",
  565. "_name": "BG2",
  566. "_objFlags": 0,
  567. "_parent": {
  568. "__id__": 13
  569. },
  570. "_children": [],
  571. "_active": true,
  572. "_components": [
  573. {
  574. "__id__": 19
  575. },
  576. {
  577. "__id__": 20
  578. }
  579. ],
  580. "_prefab": {
  581. "__id__": 21
  582. },
  583. "_lpos": {
  584. "__type__": "cc.Vec3",
  585. "x": 0,
  586. "y": 51,
  587. "z": 0
  588. },
  589. "_lrot": {
  590. "__type__": "cc.Quat",
  591. "x": 0,
  592. "y": 0,
  593. "z": 0,
  594. "w": 1
  595. },
  596. "_lscale": {
  597. "__type__": "cc.Vec3",
  598. "x": 1,
  599. "y": 1,
  600. "z": 1
  601. },
  602. "_layer": 33554432,
  603. "_euler": {
  604. "__type__": "cc.Vec3",
  605. "x": 0,
  606. "y": 0,
  607. "z": 0
  608. },
  609. "_id": ""
  610. },
  611. {
  612. "__type__": "cc.UITransformComponent",
  613. "_name": "BG1<UITransformComponent>",
  614. "_objFlags": 0,
  615. "node": {
  616. "__id__": 18
  617. },
  618. "_enabled": true,
  619. "_priority": 0,
  620. "_contentSize": {
  621. "__type__": "cc.Size",
  622. "width": 750,
  623. "height": 5
  624. },
  625. "_anchorPoint": {
  626. "__type__": "cc.Vec2",
  627. "x": 0.5,
  628. "y": 0.5
  629. },
  630. "_id": ""
  631. },
  632. {
  633. "__type__": "cc.SpriteComponent",
  634. "_name": "BG1<SpriteComponent>",
  635. "_objFlags": 0,
  636. "node": {
  637. "__id__": 18
  638. },
  639. "_enabled": true,
  640. "_srcBlendFactor": 2,
  641. "_dstBlendFactor": 4,
  642. "_color": {
  643. "__type__": "cc.Color",
  644. "r": 255,
  645. "g": 255,
  646. "b": 255,
  647. "a": 255
  648. },
  649. "_sharedMaterial": null,
  650. "_spriteFrame": {
  651. "__uuid__": "de2a68fd-64a1-43eb-bfb7-07e8100ada89@f9941"
  652. },
  653. "_type": 0,
  654. "_fillType": 0,
  655. "_sizeMode": 0,
  656. "_fillCenter": {
  657. "__type__": "cc.Vec2",
  658. "x": 0,
  659. "y": 0
  660. },
  661. "_fillStart": 0,
  662. "_fillRange": 0,
  663. "_isTrimmedMode": true,
  664. "_useGrayscale": false,
  665. "_atlas": null,
  666. "_id": ""
  667. },
  668. {
  669. "__type__": "cc.PrefabInfo",
  670. "root": {
  671. "__id__": 1
  672. },
  673. "asset": {
  674. "__id__": 0
  675. },
  676. "fileId": "9d4WvQrZRBcLu7Qfc6udGd",
  677. "sync": false,
  678. "_synced": {
  679. "default": false,
  680. "serializable": false
  681. }
  682. },
  683. {
  684. "__type__": "cc.Node",
  685. "_name": "BG3",
  686. "_objFlags": 0,
  687. "_parent": {
  688. "__id__": 13
  689. },
  690. "_children": [],
  691. "_active": true,
  692. "_components": [
  693. {
  694. "__id__": 23
  695. },
  696. {
  697. "__id__": 24
  698. }
  699. ],
  700. "_prefab": {
  701. "__id__": 25
  702. },
  703. "_lpos": {
  704. "__type__": "cc.Vec3",
  705. "x": 0,
  706. "y": -391,
  707. "z": 0
  708. },
  709. "_lrot": {
  710. "__type__": "cc.Quat",
  711. "x": 0,
  712. "y": 0,
  713. "z": 0,
  714. "w": 1
  715. },
  716. "_lscale": {
  717. "__type__": "cc.Vec3",
  718. "x": 1,
  719. "y": 1,
  720. "z": 1
  721. },
  722. "_layer": 33554432,
  723. "_euler": {
  724. "__type__": "cc.Vec3",
  725. "x": 0,
  726. "y": 0,
  727. "z": 0
  728. },
  729. "_id": ""
  730. },
  731. {
  732. "__type__": "cc.UITransformComponent",
  733. "_name": "BG1<UITransformComponent>",
  734. "_objFlags": 0,
  735. "node": {
  736. "__id__": 22
  737. },
  738. "_enabled": true,
  739. "_priority": 0,
  740. "_contentSize": {
  741. "__type__": "cc.Size",
  742. "width": 750,
  743. "height": 120
  744. },
  745. "_anchorPoint": {
  746. "__type__": "cc.Vec2",
  747. "x": 0.5,
  748. "y": 0.5
  749. },
  750. "_id": ""
  751. },
  752. {
  753. "__type__": "cc.SpriteComponent",
  754. "_name": "BG1<SpriteComponent>",
  755. "_objFlags": 0,
  756. "node": {
  757. "__id__": 22
  758. },
  759. "_enabled": true,
  760. "_srcBlendFactor": 2,
  761. "_dstBlendFactor": 4,
  762. "_color": {
  763. "__type__": "cc.Color",
  764. "r": 255,
  765. "g": 255,
  766. "b": 255,
  767. "a": 255
  768. },
  769. "_sharedMaterial": null,
  770. "_spriteFrame": {
  771. "__uuid__": "9940c8a3-5755-4f43-81f1-b57b492b5e57@f9941"
  772. },
  773. "_type": 0,
  774. "_fillType": 0,
  775. "_sizeMode": 0,
  776. "_fillCenter": {
  777. "__type__": "cc.Vec2",
  778. "x": 0,
  779. "y": 0
  780. },
  781. "_fillStart": 0,
  782. "_fillRange": 0,
  783. "_isTrimmedMode": true,
  784. "_useGrayscale": false,
  785. "_atlas": null,
  786. "_id": ""
  787. },
  788. {
  789. "__type__": "cc.PrefabInfo",
  790. "root": {
  791. "__id__": 1
  792. },
  793. "asset": {
  794. "__id__": 0
  795. },
  796. "fileId": "51w57YNCBLu4qxGVrvIgI/",
  797. "sync": false,
  798. "_synced": {
  799. "default": false,
  800. "serializable": false
  801. }
  802. },
  803. {
  804. "__type__": "cc.UITransformComponent",
  805. "_name": "BGFrame<UITransformComponent>",
  806. "_objFlags": 0,
  807. "node": {
  808. "__id__": 13
  809. },
  810. "_enabled": true,
  811. "_priority": 0,
  812. "_contentSize": {
  813. "__type__": "cc.Size",
  814. "width": 100,
  815. "height": 100
  816. },
  817. "_anchorPoint": {
  818. "__type__": "cc.Vec2",
  819. "x": 0.5,
  820. "y": 0.5
  821. },
  822. "_id": ""
  823. },
  824. {
  825. "__type__": "cc.WidgetComponent",
  826. "_name": "BGFrame<WidgetComponent>",
  827. "_objFlags": 0,
  828. "node": {
  829. "__id__": 13
  830. },
  831. "_enabled": true,
  832. "_alignFlags": 20,
  833. "_target": null,
  834. "_left": 0,
  835. "_right": 0,
  836. "_top": 0,
  837. "_bottom": 650,
  838. "_horizontalCenter": 0,
  839. "_verticalCenter": 0,
  840. "_isAbsLeft": true,
  841. "_isAbsRight": true,
  842. "_isAbsTop": true,
  843. "_isAbsBottom": true,
  844. "_isAbsHorizontalCenter": true,
  845. "_isAbsVerticalCenter": true,
  846. "_originalWidth": 0,
  847. "_originalHeight": 0,
  848. "_alignMode": 2,
  849. "_lockFlags": 0,
  850. "_id": ""
  851. },
  852. {
  853. "__type__": "cc.PrefabInfo",
  854. "root": {
  855. "__id__": 1
  856. },
  857. "asset": {
  858. "__id__": 0
  859. },
  860. "fileId": "47pK1TjrFPC4lefcAokSZJ",
  861. "sync": false,
  862. "_synced": {
  863. "default": false,
  864. "serializable": false
  865. }
  866. },
  867. {
  868. "__type__": "cc.Node",
  869. "_name": "GunLoad3D",
  870. "_objFlags": 0,
  871. "_parent": {
  872. "__id__": 1
  873. },
  874. "_children": [],
  875. "_active": true,
  876. "_components": [
  877. {
  878. "__id__": 30
  879. }
  880. ],
  881. "_prefab": {
  882. "__id__": 31
  883. },
  884. "_lpos": {
  885. "__type__": "cc.Vec3",
  886. "x": 390.319,
  887. "y": 974.411,
  888. "z": 0
  889. },
  890. "_lrot": {
  891. "__type__": "cc.Quat",
  892. "x": 0,
  893. "y": 0,
  894. "z": 0,
  895. "w": 1
  896. },
  897. "_lscale": {
  898. "__type__": "cc.Vec3",
  899. "x": 1,
  900. "y": 1,
  901. "z": 1
  902. },
  903. "_layer": 1073741824,
  904. "_euler": {
  905. "__type__": "cc.Vec3",
  906. "x": 0,
  907. "y": 0,
  908. "z": 0
  909. },
  910. "_id": ""
  911. },
  912. {
  913. "__type__": "cc.UITransformComponent",
  914. "_name": "GunLoad3D<UITransformComponent>",
  915. "_objFlags": 0,
  916. "node": {
  917. "__id__": 29
  918. },
  919. "_enabled": true,
  920. "_priority": 0,
  921. "_contentSize": {
  922. "__type__": "cc.Size",
  923. "width": 480,
  924. "height": 250
  925. },
  926. "_anchorPoint": {
  927. "__type__": "cc.Vec2",
  928. "x": 0.5,
  929. "y": 0.5
  930. },
  931. "_id": ""
  932. },
  933. {
  934. "__type__": "cc.PrefabInfo",
  935. "root": {
  936. "__id__": 1
  937. },
  938. "asset": {
  939. "__id__": 0
  940. },
  941. "fileId": "f13PV6oJRFtLUIcjXlebWA",
  942. "sync": false,
  943. "_synced": {
  944. "default": false,
  945. "serializable": false
  946. }
  947. },
  948. {
  949. "__type__": "cc.Node",
  950. "_name": "GunName",
  951. "_objFlags": 0,
  952. "_parent": {
  953. "__id__": 1
  954. },
  955. "_children": [
  956. {
  957. "__id__": 33
  958. }
  959. ],
  960. "_active": true,
  961. "_components": [
  962. {
  963. "__id__": 37
  964. },
  965. {
  966. "__id__": 38
  967. },
  968. {
  969. "__id__": 39
  970. }
  971. ],
  972. "_prefab": {
  973. "__id__": 40
  974. },
  975. "_lpos": {
  976. "__type__": "cc.Vec3",
  977. "x": 375.849,
  978. "y": 1106.993,
  979. "z": 0
  980. },
  981. "_lrot": {
  982. "__type__": "cc.Quat",
  983. "x": 0,
  984. "y": 0,
  985. "z": 0,
  986. "w": 1
  987. },
  988. "_lscale": {
  989. "__type__": "cc.Vec3",
  990. "x": 1,
  991. "y": 1,
  992. "z": 1
  993. },
  994. "_layer": 33554432,
  995. "_euler": {
  996. "__type__": "cc.Vec3",
  997. "x": 0,
  998. "y": 0,
  999. "z": 0
  1000. },
  1001. "_id": ""
  1002. },
  1003. {
  1004. "__type__": "cc.Node",
  1005. "_name": "Label",
  1006. "_objFlags": 0,
  1007. "_parent": {
  1008. "__id__": 32
  1009. },
  1010. "_children": [],
  1011. "_active": true,
  1012. "_components": [
  1013. {
  1014. "__id__": 34
  1015. },
  1016. {
  1017. "__id__": 35
  1018. }
  1019. ],
  1020. "_prefab": {
  1021. "__id__": 36
  1022. },
  1023. "_lpos": {
  1024. "__type__": "cc.Vec3",
  1025. "x": 0,
  1026. "y": -1,
  1027. "z": 0
  1028. },
  1029. "_lrot": {
  1030. "__type__": "cc.Quat",
  1031. "x": 0,
  1032. "y": 0,
  1033. "z": 0,
  1034. "w": 1
  1035. },
  1036. "_lscale": {
  1037. "__type__": "cc.Vec3",
  1038. "x": 1,
  1039. "y": 1,
  1040. "z": 1
  1041. },
  1042. "_layer": 33554432,
  1043. "_euler": {
  1044. "__type__": "cc.Vec3",
  1045. "x": 0,
  1046. "y": 0,
  1047. "z": 0
  1048. },
  1049. "_id": ""
  1050. },
  1051. {
  1052. "__type__": "cc.UITransformComponent",
  1053. "_name": "",
  1054. "_objFlags": 0,
  1055. "node": {
  1056. "__id__": 33
  1057. },
  1058. "_enabled": true,
  1059. "_priority": 0,
  1060. "_contentSize": {
  1061. "__type__": "cc.Size",
  1062. "width": 112,
  1063. "height": 50.4
  1064. },
  1065. "_anchorPoint": {
  1066. "__type__": "cc.Vec2",
  1067. "x": 0.5,
  1068. "y": 0.5
  1069. },
  1070. "_id": ""
  1071. },
  1072. {
  1073. "__type__": "cc.LabelComponent",
  1074. "_name": "",
  1075. "_objFlags": 0,
  1076. "node": {
  1077. "__id__": 33
  1078. },
  1079. "_enabled": true,
  1080. "_srcBlendFactor": 2,
  1081. "_dstBlendFactor": 4,
  1082. "_color": {
  1083. "__type__": "cc.Color",
  1084. "r": 255,
  1085. "g": 255,
  1086. "b": 255,
  1087. "a": 255
  1088. },
  1089. "_sharedMaterial": null,
  1090. "_useOriginalSize": true,
  1091. "_string": "毛瑟手枪",
  1092. "_horizontalAlign": 1,
  1093. "_verticalAlign": 1,
  1094. "_actualFontSize": 28,
  1095. "_fontSize": 28,
  1096. "_fontFamily": "Arial",
  1097. "_lineHeight": 40,
  1098. "_overflow": 0,
  1099. "_enableWrapText": true,
  1100. "_font": null,
  1101. "_isSystemFontUsed": true,
  1102. "_isItalic": false,
  1103. "_isBold": false,
  1104. "_isUnderline": false,
  1105. "_cacheMode": 0,
  1106. "_id": ""
  1107. },
  1108. {
  1109. "__type__": "cc.PrefabInfo",
  1110. "root": {
  1111. "__id__": 1
  1112. },
  1113. "asset": {
  1114. "__id__": 0
  1115. },
  1116. "fileId": "dckK/ZP9ZNA6D3ClTL7kl8",
  1117. "sync": false,
  1118. "_synced": {
  1119. "default": false,
  1120. "serializable": false
  1121. }
  1122. },
  1123. {
  1124. "__type__": "cc.UITransformComponent",
  1125. "_name": "Background<UITransformComponent>",
  1126. "_objFlags": 0,
  1127. "node": {
  1128. "__id__": 32
  1129. },
  1130. "_enabled": true,
  1131. "_priority": 0,
  1132. "_contentSize": {
  1133. "__type__": "cc.Size",
  1134. "width": 250,
  1135. "height": 50
  1136. },
  1137. "_anchorPoint": {
  1138. "__type__": "cc.Vec2",
  1139. "x": 0.5,
  1140. "y": 0.5
  1141. },
  1142. "_id": ""
  1143. },
  1144. {
  1145. "__type__": "cc.SpriteComponent",
  1146. "_name": "Background<SpriteComponent>",
  1147. "_objFlags": 0,
  1148. "node": {
  1149. "__id__": 32
  1150. },
  1151. "_enabled": true,
  1152. "_srcBlendFactor": 2,
  1153. "_dstBlendFactor": 4,
  1154. "_color": {
  1155. "__type__": "cc.Color",
  1156. "r": 255,
  1157. "g": 255,
  1158. "b": 255,
  1159. "a": 255
  1160. },
  1161. "_sharedMaterial": null,
  1162. "_spriteFrame": {
  1163. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  1164. },
  1165. "_type": 1,
  1166. "_fillType": 0,
  1167. "_sizeMode": 0,
  1168. "_fillCenter": {
  1169. "__type__": "cc.Vec2",
  1170. "x": 0,
  1171. "y": 0
  1172. },
  1173. "_fillStart": 0,
  1174. "_fillRange": 0,
  1175. "_isTrimmedMode": true,
  1176. "_useGrayscale": false,
  1177. "_atlas": null,
  1178. "_id": ""
  1179. },
  1180. {
  1181. "__type__": "cc.UIOpacityComponent",
  1182. "_name": "Background<UIOpacityComponent>",
  1183. "_objFlags": 0,
  1184. "node": {
  1185. "__id__": 32
  1186. },
  1187. "_enabled": true,
  1188. "_opacity": 125,
  1189. "_id": ""
  1190. },
  1191. {
  1192. "__type__": "cc.PrefabInfo",
  1193. "root": {
  1194. "__id__": 1
  1195. },
  1196. "asset": {
  1197. "__id__": 0
  1198. },
  1199. "fileId": "04IwBBaZBNZJS99hZLbaF7",
  1200. "sync": false,
  1201. "_synced": {
  1202. "default": false,
  1203. "serializable": false
  1204. }
  1205. },
  1206. {
  1207. "__type__": "cc.Node",
  1208. "_name": "StartGameButton",
  1209. "_objFlags": 0,
  1210. "_parent": {
  1211. "__id__": 1
  1212. },
  1213. "_children": [
  1214. {
  1215. "__id__": 42
  1216. },
  1217. {
  1218. "__id__": 46
  1219. }
  1220. ],
  1221. "_active": true,
  1222. "_components": [
  1223. {
  1224. "__id__": 50
  1225. },
  1226. {
  1227. "__id__": 51
  1228. },
  1229. {
  1230. "__id__": 52
  1231. },
  1232. {
  1233. "__id__": 54
  1234. }
  1235. ],
  1236. "_prefab": {
  1237. "__id__": 55
  1238. },
  1239. "_lpos": {
  1240. "__type__": "cc.Vec3",
  1241. "x": 375,
  1242. "y": 810,
  1243. "z": 0
  1244. },
  1245. "_lrot": {
  1246. "__type__": "cc.Quat",
  1247. "x": 0,
  1248. "y": 0,
  1249. "z": 0,
  1250. "w": 1
  1251. },
  1252. "_lscale": {
  1253. "__type__": "cc.Vec3",
  1254. "x": 1,
  1255. "y": 1,
  1256. "z": 1
  1257. },
  1258. "_layer": 33554432,
  1259. "_euler": {
  1260. "__type__": "cc.Vec3",
  1261. "x": 0,
  1262. "y": 0,
  1263. "z": 0
  1264. },
  1265. "_id": ""
  1266. },
  1267. {
  1268. "__type__": "cc.Node",
  1269. "_name": "Label",
  1270. "_objFlags": 0,
  1271. "_parent": {
  1272. "__id__": 41
  1273. },
  1274. "_children": [],
  1275. "_active": true,
  1276. "_components": [
  1277. {
  1278. "__id__": 43
  1279. },
  1280. {
  1281. "__id__": 44
  1282. }
  1283. ],
  1284. "_prefab": {
  1285. "__id__": 45
  1286. },
  1287. "_lpos": {
  1288. "__type__": "cc.Vec3",
  1289. "x": 0,
  1290. "y": 24,
  1291. "z": 0
  1292. },
  1293. "_lrot": {
  1294. "__type__": "cc.Quat",
  1295. "x": 0,
  1296. "y": 0,
  1297. "z": 0,
  1298. "w": 1
  1299. },
  1300. "_lscale": {
  1301. "__type__": "cc.Vec3",
  1302. "x": 1,
  1303. "y": 1,
  1304. "z": 1
  1305. },
  1306. "_layer": 33554432,
  1307. "_euler": {
  1308. "__type__": "cc.Vec3",
  1309. "x": 0,
  1310. "y": 0,
  1311. "z": 0
  1312. },
  1313. "_id": ""
  1314. },
  1315. {
  1316. "__type__": "cc.UITransformComponent",
  1317. "_name": "Label<UITransformComponent>",
  1318. "_objFlags": 0,
  1319. "node": {
  1320. "__id__": 42
  1321. },
  1322. "_enabled": true,
  1323. "_priority": 0,
  1324. "_contentSize": {
  1325. "__type__": "cc.Size",
  1326. "width": 206,
  1327. "height": 57
  1328. },
  1329. "_anchorPoint": {
  1330. "__type__": "cc.Vec2",
  1331. "x": 0.5,
  1332. "y": 0.5
  1333. },
  1334. "_id": ""
  1335. },
  1336. {
  1337. "__type__": "cc.LabelComponent",
  1338. "_name": "Label<LabelComponent>",
  1339. "_objFlags": 0,
  1340. "node": {
  1341. "__id__": 42
  1342. },
  1343. "_enabled": true,
  1344. "_srcBlendFactor": 2,
  1345. "_dstBlendFactor": 4,
  1346. "_color": {
  1347. "__type__": "cc.Color",
  1348. "r": 255,
  1349. "g": 255,
  1350. "b": 255,
  1351. "a": 255
  1352. },
  1353. "_sharedMaterial": null,
  1354. "_useOriginalSize": true,
  1355. "_string": "开始游戏",
  1356. "_horizontalAlign": 1,
  1357. "_verticalAlign": 1,
  1358. "_actualFontSize": 40,
  1359. "_fontSize": 40,
  1360. "_fontFamily": "Arial",
  1361. "_lineHeight": 40,
  1362. "_overflow": 1,
  1363. "_enableWrapText": false,
  1364. "_font": null,
  1365. "_isSystemFontUsed": true,
  1366. "_isItalic": false,
  1367. "_isBold": false,
  1368. "_isUnderline": false,
  1369. "_cacheMode": 0,
  1370. "_id": ""
  1371. },
  1372. {
  1373. "__type__": "cc.PrefabInfo",
  1374. "root": {
  1375. "__id__": 1
  1376. },
  1377. "asset": {
  1378. "__id__": 0
  1379. },
  1380. "fileId": "a5UZh69z5J3I+XgBQBFgUC",
  1381. "sync": false,
  1382. "_synced": {
  1383. "default": false,
  1384. "serializable": false
  1385. }
  1386. },
  1387. {
  1388. "__type__": "cc.Node",
  1389. "_name": "LevelLabel",
  1390. "_objFlags": 0,
  1391. "_parent": {
  1392. "__id__": 41
  1393. },
  1394. "_children": [],
  1395. "_active": true,
  1396. "_components": [
  1397. {
  1398. "__id__": 47
  1399. },
  1400. {
  1401. "__id__": 48
  1402. }
  1403. ],
  1404. "_prefab": {
  1405. "__id__": 49
  1406. },
  1407. "_lpos": {
  1408. "__type__": "cc.Vec3",
  1409. "x": 0,
  1410. "y": -17,
  1411. "z": 0
  1412. },
  1413. "_lrot": {
  1414. "__type__": "cc.Quat",
  1415. "x": 0,
  1416. "y": 0,
  1417. "z": 0,
  1418. "w": 1
  1419. },
  1420. "_lscale": {
  1421. "__type__": "cc.Vec3",
  1422. "x": 1,
  1423. "y": 1,
  1424. "z": 1
  1425. },
  1426. "_layer": 33554432,
  1427. "_euler": {
  1428. "__type__": "cc.Vec3",
  1429. "x": 0,
  1430. "y": 0,
  1431. "z": 0
  1432. },
  1433. "_id": ""
  1434. },
  1435. {
  1436. "__type__": "cc.UITransformComponent",
  1437. "_name": "",
  1438. "_objFlags": 0,
  1439. "node": {
  1440. "__id__": 46
  1441. },
  1442. "_enabled": true,
  1443. "_priority": 0,
  1444. "_contentSize": {
  1445. "__type__": "cc.Size",
  1446. "width": 71.57,
  1447. "height": 50.4
  1448. },
  1449. "_anchorPoint": {
  1450. "__type__": "cc.Vec2",
  1451. "x": 0.5,
  1452. "y": 0.5
  1453. },
  1454. "_id": ""
  1455. },
  1456. {
  1457. "__type__": "cc.LabelComponent",
  1458. "_name": "",
  1459. "_objFlags": 0,
  1460. "node": {
  1461. "__id__": 46
  1462. },
  1463. "_enabled": true,
  1464. "_srcBlendFactor": 2,
  1465. "_dstBlendFactor": 4,
  1466. "_color": {
  1467. "__type__": "cc.Color",
  1468. "r": 255,
  1469. "g": 255,
  1470. "b": 255,
  1471. "a": 255
  1472. },
  1473. "_sharedMaterial": null,
  1474. "_useOriginalSize": true,
  1475. "_string": "第1关",
  1476. "_horizontalAlign": 1,
  1477. "_verticalAlign": 1,
  1478. "_actualFontSize": 28,
  1479. "_fontSize": 28,
  1480. "_fontFamily": "Arial",
  1481. "_lineHeight": 40,
  1482. "_overflow": 0,
  1483. "_enableWrapText": true,
  1484. "_font": null,
  1485. "_isSystemFontUsed": true,
  1486. "_isItalic": false,
  1487. "_isBold": false,
  1488. "_isUnderline": false,
  1489. "_cacheMode": 0,
  1490. "_id": ""
  1491. },
  1492. {
  1493. "__type__": "cc.PrefabInfo",
  1494. "root": {
  1495. "__id__": 1
  1496. },
  1497. "asset": {
  1498. "__id__": 0
  1499. },
  1500. "fileId": "9e/M9MQz5GPJ5wkdWVRkzT",
  1501. "sync": false,
  1502. "_synced": {
  1503. "default": false,
  1504. "serializable": false
  1505. }
  1506. },
  1507. {
  1508. "__type__": "cc.UITransformComponent",
  1509. "_name": "StartGameButton<UITransformComponent>",
  1510. "_objFlags": 0,
  1511. "node": {
  1512. "__id__": 41
  1513. },
  1514. "_enabled": true,
  1515. "_priority": 0,
  1516. "_contentSize": {
  1517. "__type__": "cc.Size",
  1518. "width": 328,
  1519. "height": 126
  1520. },
  1521. "_anchorPoint": {
  1522. "__type__": "cc.Vec2",
  1523. "x": 0.5,
  1524. "y": 0.5
  1525. },
  1526. "_id": ""
  1527. },
  1528. {
  1529. "__type__": "cc.SpriteComponent",
  1530. "_name": "StartGameButton<SpriteComponent>",
  1531. "_objFlags": 0,
  1532. "node": {
  1533. "__id__": 41
  1534. },
  1535. "_enabled": true,
  1536. "_srcBlendFactor": 2,
  1537. "_dstBlendFactor": 4,
  1538. "_color": {
  1539. "__type__": "cc.Color",
  1540. "r": 255,
  1541. "g": 255,
  1542. "b": 255,
  1543. "a": 255
  1544. },
  1545. "_sharedMaterial": null,
  1546. "_spriteFrame": {
  1547. "__uuid__": "3bfc8929-26a4-4b30-b54a-8ae3dc61f4a7@f9941"
  1548. },
  1549. "_type": 1,
  1550. "_fillType": 0,
  1551. "_sizeMode": 0,
  1552. "_fillCenter": {
  1553. "__type__": "cc.Vec2",
  1554. "x": 0,
  1555. "y": 0
  1556. },
  1557. "_fillStart": 0,
  1558. "_fillRange": 0,
  1559. "_isTrimmedMode": true,
  1560. "_useGrayscale": false,
  1561. "_atlas": null,
  1562. "_id": ""
  1563. },
  1564. {
  1565. "__type__": "cc.ButtonComponent",
  1566. "_name": "StartGameButton<ButtonComponent>",
  1567. "_objFlags": 0,
  1568. "node": {
  1569. "__id__": 41
  1570. },
  1571. "_enabled": true,
  1572. "clickEvents": [
  1573. {
  1574. "__id__": 53
  1575. }
  1576. ],
  1577. "_interactable": true,
  1578. "_transition": 2,
  1579. "_normalColor": {
  1580. "__type__": "cc.Color",
  1581. "r": 214,
  1582. "g": 214,
  1583. "b": 214,
  1584. "a": 255
  1585. },
  1586. "_hoverColor": {
  1587. "__type__": "cc.Color",
  1588. "r": 211,
  1589. "g": 211,
  1590. "b": 211,
  1591. "a": 255
  1592. },
  1593. "_pressColor": {
  1594. "__type__": "cc.Color",
  1595. "r": 255,
  1596. "g": 255,
  1597. "b": 255,
  1598. "a": 255
  1599. },
  1600. "_disabledColor": {
  1601. "__type__": "cc.Color",
  1602. "r": 124,
  1603. "g": 124,
  1604. "b": 124,
  1605. "a": 255
  1606. },
  1607. "_normalSprite": {
  1608. "__uuid__": "3bfc8929-26a4-4b30-b54a-8ae3dc61f4a7@f9941"
  1609. },
  1610. "_hoverSprite": {
  1611. "__uuid__": "3bfc8929-26a4-4b30-b54a-8ae3dc61f4a7@f9941"
  1612. },
  1613. "_pressedSprite": {
  1614. "__uuid__": "3bfc8929-26a4-4b30-b54a-8ae3dc61f4a7@f9941"
  1615. },
  1616. "_disabledSprite": {
  1617. "__uuid__": "3bfc8929-26a4-4b30-b54a-8ae3dc61f4a7@f9941"
  1618. },
  1619. "_duration": 0.1,
  1620. "_zoomScale": 1.2,
  1621. "_target": {
  1622. "__id__": 41
  1623. },
  1624. "_id": ""
  1625. },
  1626. {
  1627. "__type__": "cc.ClickEvent",
  1628. "target": {
  1629. "__id__": 1
  1630. },
  1631. "component": "",
  1632. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  1633. "handler": "StartGame",
  1634. "customEventData": ""
  1635. },
  1636. {
  1637. "__type__": "cc.WidgetComponent",
  1638. "_name": "StartGameButton<WidgetComponent>",
  1639. "_objFlags": 0,
  1640. "node": {
  1641. "__id__": 41
  1642. },
  1643. "_enabled": true,
  1644. "_alignFlags": 20,
  1645. "_target": null,
  1646. "_left": 0,
  1647. "_right": 0,
  1648. "_top": 0,
  1649. "_bottom": 747,
  1650. "_horizontalCenter": 0,
  1651. "_verticalCenter": 0,
  1652. "_isAbsLeft": true,
  1653. "_isAbsRight": true,
  1654. "_isAbsTop": true,
  1655. "_isAbsBottom": true,
  1656. "_isAbsHorizontalCenter": true,
  1657. "_isAbsVerticalCenter": true,
  1658. "_originalWidth": 0,
  1659. "_originalHeight": 0,
  1660. "_alignMode": 2,
  1661. "_lockFlags": 0,
  1662. "_id": ""
  1663. },
  1664. {
  1665. "__type__": "cc.PrefabInfo",
  1666. "root": {
  1667. "__id__": 1
  1668. },
  1669. "asset": {
  1670. "__id__": 0
  1671. },
  1672. "fileId": "a9QMw5al5ANa8t9fMUxbRz",
  1673. "sync": false,
  1674. "_synced": {
  1675. "default": false,
  1676. "serializable": false
  1677. }
  1678. },
  1679. {
  1680. "__type__": "cc.Node",
  1681. "_name": "WeaponList",
  1682. "_objFlags": 0,
  1683. "_parent": {
  1684. "__id__": 1
  1685. },
  1686. "_children": [],
  1687. "_active": true,
  1688. "_components": [
  1689. {
  1690. "__id__": 57
  1691. },
  1692. {
  1693. "__id__": 58
  1694. }
  1695. ],
  1696. "_prefab": {
  1697. "__id__": 59
  1698. },
  1699. "_lpos": {
  1700. "__type__": "cc.Vec3",
  1701. "x": 373.439,
  1702. "y": 560.129,
  1703. "z": 0
  1704. },
  1705. "_lrot": {
  1706. "__type__": "cc.Quat",
  1707. "x": 0,
  1708. "y": 0,
  1709. "z": 0,
  1710. "w": 1
  1711. },
  1712. "_lscale": {
  1713. "__type__": "cc.Vec3",
  1714. "x": 1,
  1715. "y": 1,
  1716. "z": 1
  1717. },
  1718. "_layer": 33554432,
  1719. "_euler": {
  1720. "__type__": "cc.Vec3",
  1721. "x": 0,
  1722. "y": 0,
  1723. "z": 0
  1724. },
  1725. "_id": ""
  1726. },
  1727. {
  1728. "__type__": "cc.UITransformComponent",
  1729. "_name": "Layout<UITransformComponent>",
  1730. "_objFlags": 0,
  1731. "node": {
  1732. "__id__": 56
  1733. },
  1734. "_enabled": true,
  1735. "_priority": 0,
  1736. "_contentSize": {
  1737. "__type__": "cc.Size",
  1738. "width": 728,
  1739. "height": 360
  1740. },
  1741. "_anchorPoint": {
  1742. "__type__": "cc.Vec2",
  1743. "x": 0.5,
  1744. "y": 0.5
  1745. },
  1746. "_id": ""
  1747. },
  1748. {
  1749. "__type__": "cc.LayoutComponent",
  1750. "_name": "Layout<LayoutComponent>",
  1751. "_objFlags": 0,
  1752. "node": {
  1753. "__id__": 56
  1754. },
  1755. "_enabled": true,
  1756. "_resizeMode": 0,
  1757. "_N$layoutType": 3,
  1758. "_N$padding": 0,
  1759. "_cellSize": {
  1760. "__type__": "cc.Size",
  1761. "width": 40,
  1762. "height": 40
  1763. },
  1764. "_startAxis": 0,
  1765. "_paddingLeft": 0,
  1766. "_paddingRight": 0,
  1767. "_paddingTop": 0,
  1768. "_paddingBottom": 0,
  1769. "_spacingX": 15,
  1770. "_spacingY": 15,
  1771. "_verticalDirection": 1,
  1772. "_horizontalDirection": 0,
  1773. "_affectedByScale": false,
  1774. "_id": ""
  1775. },
  1776. {
  1777. "__type__": "cc.PrefabInfo",
  1778. "root": {
  1779. "__id__": 1
  1780. },
  1781. "asset": {
  1782. "__id__": 0
  1783. },
  1784. "fileId": "082BxdO39J5Z7rrAw7sTVo",
  1785. "sync": false,
  1786. "_synced": {
  1787. "default": false,
  1788. "serializable": false
  1789. }
  1790. },
  1791. {
  1792. "__type__": "cc.Node",
  1793. "_name": "TopGroup",
  1794. "_objFlags": 0,
  1795. "_parent": {
  1796. "__id__": 1
  1797. },
  1798. "_children": [
  1799. {
  1800. "__id__": 61
  1801. },
  1802. {
  1803. "__id__": 66
  1804. },
  1805. {
  1806. "__id__": 88
  1807. },
  1808. {
  1809. "__id__": 106
  1810. },
  1811. {
  1812. "__id__": 123
  1813. },
  1814. {
  1815. "__id__": 132
  1816. }
  1817. ],
  1818. "_active": true,
  1819. "_components": [
  1820. {
  1821. "__id__": 141
  1822. },
  1823. {
  1824. "__id__": 142
  1825. }
  1826. ],
  1827. "_prefab": {
  1828. "__id__": 143
  1829. },
  1830. "_lpos": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 50,
  1833. "y": 1267,
  1834. "z": 0
  1835. },
  1836. "_lrot": {
  1837. "__type__": "cc.Quat",
  1838. "x": 0,
  1839. "y": 0,
  1840. "z": 0,
  1841. "w": 1
  1842. },
  1843. "_lscale": {
  1844. "__type__": "cc.Vec3",
  1845. "x": 1,
  1846. "y": 1,
  1847. "z": 1
  1848. },
  1849. "_layer": 1073741824,
  1850. "_euler": {
  1851. "__type__": "cc.Vec3",
  1852. "x": 0,
  1853. "y": 0,
  1854. "z": 0
  1855. },
  1856. "_id": ""
  1857. },
  1858. {
  1859. "__type__": "cc.Node",
  1860. "_name": "BGIcondi",
  1861. "_objFlags": 0,
  1862. "_parent": {
  1863. "__id__": 60
  1864. },
  1865. "_children": [],
  1866. "_active": true,
  1867. "_components": [
  1868. {
  1869. "__id__": 62
  1870. },
  1871. {
  1872. "__id__": 63
  1873. },
  1874. {
  1875. "__id__": 64
  1876. }
  1877. ],
  1878. "_prefab": {
  1879. "__id__": 65
  1880. },
  1881. "_lpos": {
  1882. "__type__": "cc.Vec3",
  1883. "x": -50,
  1884. "y": -39,
  1885. "z": 0
  1886. },
  1887. "_lrot": {
  1888. "__type__": "cc.Quat",
  1889. "x": 0,
  1890. "y": 0,
  1891. "z": 0,
  1892. "w": 1
  1893. },
  1894. "_lscale": {
  1895. "__type__": "cc.Vec3",
  1896. "x": 1,
  1897. "y": 1,
  1898. "z": 1
  1899. },
  1900. "_layer": 33554432,
  1901. "_euler": {
  1902. "__type__": "cc.Vec3",
  1903. "x": 0,
  1904. "y": 0,
  1905. "z": 0
  1906. },
  1907. "_id": ""
  1908. },
  1909. {
  1910. "__type__": "cc.UITransformComponent",
  1911. "_name": "BGIcondi<UITransformComponent>",
  1912. "_objFlags": 0,
  1913. "node": {
  1914. "__id__": 61
  1915. },
  1916. "_enabled": true,
  1917. "_priority": 0,
  1918. "_contentSize": {
  1919. "__type__": "cc.Size",
  1920. "width": 703,
  1921. "height": 76
  1922. },
  1923. "_anchorPoint": {
  1924. "__type__": "cc.Vec2",
  1925. "x": 0,
  1926. "y": 0.5
  1927. },
  1928. "_id": ""
  1929. },
  1930. {
  1931. "__type__": "cc.SpriteComponent",
  1932. "_name": "BGIcondi<SpriteComponent>",
  1933. "_objFlags": 0,
  1934. "node": {
  1935. "__id__": 61
  1936. },
  1937. "_enabled": true,
  1938. "_srcBlendFactor": 2,
  1939. "_dstBlendFactor": 4,
  1940. "_color": {
  1941. "__type__": "cc.Color",
  1942. "r": 255,
  1943. "g": 255,
  1944. "b": 255,
  1945. "a": 255
  1946. },
  1947. "_sharedMaterial": null,
  1948. "_spriteFrame": {
  1949. "__uuid__": "86138ab3-01a0-4ce6-97d3-15225731f529@f9941"
  1950. },
  1951. "_type": 0,
  1952. "_fillType": 0,
  1953. "_sizeMode": 1,
  1954. "_fillCenter": {
  1955. "__type__": "cc.Vec2",
  1956. "x": 0,
  1957. "y": 0
  1958. },
  1959. "_fillStart": 0,
  1960. "_fillRange": 0,
  1961. "_isTrimmedMode": true,
  1962. "_useGrayscale": false,
  1963. "_atlas": null,
  1964. "_id": ""
  1965. },
  1966. {
  1967. "__type__": "cc.WidgetComponent",
  1968. "_name": "BGIcondi<WidgetComponent>",
  1969. "_objFlags": 0,
  1970. "node": {
  1971. "__id__": 61
  1972. },
  1973. "_enabled": true,
  1974. "_alignFlags": 9,
  1975. "_target": null,
  1976. "_left": 0,
  1977. "_right": 0,
  1978. "_top": 51,
  1979. "_bottom": 0,
  1980. "_horizontalCenter": 0,
  1981. "_verticalCenter": 0,
  1982. "_isAbsLeft": true,
  1983. "_isAbsRight": true,
  1984. "_isAbsTop": true,
  1985. "_isAbsBottom": true,
  1986. "_isAbsHorizontalCenter": true,
  1987. "_isAbsVerticalCenter": true,
  1988. "_originalWidth": 0,
  1989. "_originalHeight": 0,
  1990. "_alignMode": 2,
  1991. "_lockFlags": 0,
  1992. "_id": ""
  1993. },
  1994. {
  1995. "__type__": "cc.PrefabInfo",
  1996. "root": {
  1997. "__id__": 1
  1998. },
  1999. "asset": {
  2000. "__id__": 0
  2001. },
  2002. "fileId": "eaCRXFpdVIZ5V2P+0e8T8L",
  2003. "sync": false,
  2004. "_synced": {
  2005. "default": false,
  2006. "serializable": false
  2007. }
  2008. },
  2009. {
  2010. "__type__": "cc.Node",
  2011. "_name": "GlodView",
  2012. "_objFlags": 0,
  2013. "_parent": {
  2014. "__id__": 60
  2015. },
  2016. "_children": [
  2017. {
  2018. "__id__": 67
  2019. },
  2020. {
  2021. "__id__": 72
  2022. },
  2023. {
  2024. "__id__": 76
  2025. },
  2026. {
  2027. "__id__": 80
  2028. }
  2029. ],
  2030. "_active": true,
  2031. "_components": [
  2032. {
  2033. "__id__": 84
  2034. },
  2035. {
  2036. "__id__": 85
  2037. },
  2038. {
  2039. "__id__": 86
  2040. }
  2041. ],
  2042. "_prefab": {
  2043. "__id__": 87
  2044. },
  2045. "_lpos": {
  2046. "__type__": "cc.Vec3",
  2047. "x": 56,
  2048. "y": -38.090000000000146,
  2049. "z": 0
  2050. },
  2051. "_lrot": {
  2052. "__type__": "cc.Quat",
  2053. "x": 0,
  2054. "y": 0,
  2055. "z": 0,
  2056. "w": 1
  2057. },
  2058. "_lscale": {
  2059. "__type__": "cc.Vec3",
  2060. "x": 1,
  2061. "y": 1,
  2062. "z": 1
  2063. },
  2064. "_layer": 1073741824,
  2065. "_euler": {
  2066. "__type__": "cc.Vec3",
  2067. "x": 0,
  2068. "y": 0,
  2069. "z": 0
  2070. },
  2071. "_id": ""
  2072. },
  2073. {
  2074. "__type__": "cc.Node",
  2075. "_name": "Background",
  2076. "_objFlags": 0,
  2077. "_parent": {
  2078. "__id__": 66
  2079. },
  2080. "_children": [],
  2081. "_active": true,
  2082. "_components": [
  2083. {
  2084. "__id__": 68
  2085. },
  2086. {
  2087. "__id__": 69
  2088. },
  2089. {
  2090. "__id__": 70
  2091. }
  2092. ],
  2093. "_prefab": {
  2094. "__id__": 71
  2095. },
  2096. "_lpos": {
  2097. "__type__": "cc.Vec3",
  2098. "x": 63,
  2099. "y": 0,
  2100. "z": 0
  2101. },
  2102. "_lrot": {
  2103. "__type__": "cc.Quat",
  2104. "x": 0,
  2105. "y": 0,
  2106. "z": 0,
  2107. "w": 1
  2108. },
  2109. "_lscale": {
  2110. "__type__": "cc.Vec3",
  2111. "x": 1,
  2112. "y": 1,
  2113. "z": 1
  2114. },
  2115. "_layer": 33554432,
  2116. "_euler": {
  2117. "__type__": "cc.Vec3",
  2118. "x": 0,
  2119. "y": 0,
  2120. "z": 0
  2121. },
  2122. "_id": ""
  2123. },
  2124. {
  2125. "__type__": "cc.UITransformComponent",
  2126. "_name": "Background<UITransformComponent>",
  2127. "_objFlags": 0,
  2128. "node": {
  2129. "__id__": 67
  2130. },
  2131. "_enabled": true,
  2132. "_priority": 0,
  2133. "_contentSize": {
  2134. "__type__": "cc.Size",
  2135. "width": 250,
  2136. "height": 40
  2137. },
  2138. "_anchorPoint": {
  2139. "__type__": "cc.Vec2",
  2140. "x": 0.5,
  2141. "y": 0.5
  2142. },
  2143. "_id": ""
  2144. },
  2145. {
  2146. "__type__": "cc.SpriteComponent",
  2147. "_name": "Background<SpriteComponent>",
  2148. "_objFlags": 0,
  2149. "node": {
  2150. "__id__": 67
  2151. },
  2152. "_enabled": true,
  2153. "_srcBlendFactor": 2,
  2154. "_dstBlendFactor": 4,
  2155. "_color": {
  2156. "__type__": "cc.Color",
  2157. "r": 255,
  2158. "g": 255,
  2159. "b": 255,
  2160. "a": 255
  2161. },
  2162. "_sharedMaterial": null,
  2163. "_spriteFrame": {
  2164. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  2165. },
  2166. "_type": 1,
  2167. "_fillType": 0,
  2168. "_sizeMode": 0,
  2169. "_fillCenter": {
  2170. "__type__": "cc.Vec2",
  2171. "x": 0,
  2172. "y": 0
  2173. },
  2174. "_fillStart": 0,
  2175. "_fillRange": 0,
  2176. "_isTrimmedMode": true,
  2177. "_useGrayscale": false,
  2178. "_atlas": null,
  2179. "_id": ""
  2180. },
  2181. {
  2182. "__type__": "cc.UIOpacityComponent",
  2183. "_name": "Background<UIOpacityComponent>",
  2184. "_objFlags": 0,
  2185. "node": {
  2186. "__id__": 67
  2187. },
  2188. "_enabled": true,
  2189. "_opacity": 125,
  2190. "_id": ""
  2191. },
  2192. {
  2193. "__type__": "cc.PrefabInfo",
  2194. "root": {
  2195. "__id__": 1
  2196. },
  2197. "asset": {
  2198. "__id__": 0
  2199. },
  2200. "fileId": "5aG9S9QTdPYaZe4RuXhg7J",
  2201. "sync": false,
  2202. "_synced": {
  2203. "default": false,
  2204. "serializable": false
  2205. }
  2206. },
  2207. {
  2208. "__type__": "cc.Node",
  2209. "_name": "GlodIcon",
  2210. "_objFlags": 0,
  2211. "_parent": {
  2212. "__id__": 66
  2213. },
  2214. "_children": [],
  2215. "_active": true,
  2216. "_components": [
  2217. {
  2218. "__id__": 73
  2219. },
  2220. {
  2221. "__id__": 74
  2222. }
  2223. ],
  2224. "_prefab": {
  2225. "__id__": 75
  2226. },
  2227. "_lpos": {
  2228. "__type__": "cc.Vec3",
  2229. "x": -60,
  2230. "y": -3,
  2231. "z": 0
  2232. },
  2233. "_lrot": {
  2234. "__type__": "cc.Quat",
  2235. "x": 0,
  2236. "y": 0,
  2237. "z": 0,
  2238. "w": 1
  2239. },
  2240. "_lscale": {
  2241. "__type__": "cc.Vec3",
  2242. "x": 1,
  2243. "y": 1,
  2244. "z": 1
  2245. },
  2246. "_layer": 33554432,
  2247. "_euler": {
  2248. "__type__": "cc.Vec3",
  2249. "x": 0,
  2250. "y": 0,
  2251. "z": 0
  2252. },
  2253. "_id": ""
  2254. },
  2255. {
  2256. "__type__": "cc.UITransformComponent",
  2257. "_name": "GlodIcon<UITransformComponent>",
  2258. "_objFlags": 0,
  2259. "node": {
  2260. "__id__": 72
  2261. },
  2262. "_enabled": true,
  2263. "_priority": 0,
  2264. "_contentSize": {
  2265. "__type__": "cc.Size",
  2266. "width": 50,
  2267. "height": 49
  2268. },
  2269. "_anchorPoint": {
  2270. "__type__": "cc.Vec2",
  2271. "x": 0.5,
  2272. "y": 0.5
  2273. },
  2274. "_id": ""
  2275. },
  2276. {
  2277. "__type__": "cc.SpriteComponent",
  2278. "_name": "GlodIcon<SpriteComponent>",
  2279. "_objFlags": 0,
  2280. "node": {
  2281. "__id__": 72
  2282. },
  2283. "_enabled": true,
  2284. "_srcBlendFactor": 2,
  2285. "_dstBlendFactor": 4,
  2286. "_color": {
  2287. "__type__": "cc.Color",
  2288. "r": 255,
  2289. "g": 255,
  2290. "b": 255,
  2291. "a": 255
  2292. },
  2293. "_sharedMaterial": null,
  2294. "_spriteFrame": {
  2295. "__uuid__": "0b44fc8c-d664-46d8-bddf-1514caec8e51@f9941"
  2296. },
  2297. "_type": 0,
  2298. "_fillType": 0,
  2299. "_sizeMode": 1,
  2300. "_fillCenter": {
  2301. "__type__": "cc.Vec2",
  2302. "x": 0,
  2303. "y": 0
  2304. },
  2305. "_fillStart": 0,
  2306. "_fillRange": 0,
  2307. "_isTrimmedMode": true,
  2308. "_useGrayscale": false,
  2309. "_atlas": null,
  2310. "_id": ""
  2311. },
  2312. {
  2313. "__type__": "cc.PrefabInfo",
  2314. "root": {
  2315. "__id__": 1
  2316. },
  2317. "asset": {
  2318. "__id__": 0
  2319. },
  2320. "fileId": "b4yWlZchlFfrPJ+N3Iy5+U",
  2321. "sync": false,
  2322. "_synced": {
  2323. "default": false,
  2324. "serializable": false
  2325. }
  2326. },
  2327. {
  2328. "__type__": "cc.Node",
  2329. "_name": "GlodNum1",
  2330. "_objFlags": 0,
  2331. "_parent": {
  2332. "__id__": 66
  2333. },
  2334. "_children": [],
  2335. "_active": true,
  2336. "_components": [
  2337. {
  2338. "__id__": 77
  2339. },
  2340. {
  2341. "__id__": 78
  2342. }
  2343. ],
  2344. "_prefab": {
  2345. "__id__": 79
  2346. },
  2347. "_lpos": {
  2348. "__type__": "cc.Vec3",
  2349. "x": -12,
  2350. "y": -1,
  2351. "z": 0
  2352. },
  2353. "_lrot": {
  2354. "__type__": "cc.Quat",
  2355. "x": 0,
  2356. "y": 0,
  2357. "z": 0,
  2358. "w": 1
  2359. },
  2360. "_lscale": {
  2361. "__type__": "cc.Vec3",
  2362. "x": 1,
  2363. "y": 1,
  2364. "z": 1
  2365. },
  2366. "_layer": 33554432,
  2367. "_euler": {
  2368. "__type__": "cc.Vec3",
  2369. "x": 0,
  2370. "y": 0,
  2371. "z": 0
  2372. },
  2373. "_id": ""
  2374. },
  2375. {
  2376. "__type__": "cc.UITransformComponent",
  2377. "_name": "Label<UITransformComponent>",
  2378. "_objFlags": 0,
  2379. "node": {
  2380. "__id__": 76
  2381. },
  2382. "_enabled": true,
  2383. "_priority": 0,
  2384. "_contentSize": {
  2385. "__type__": "cc.Size",
  2386. "width": 80.05,
  2387. "height": 50.4
  2388. },
  2389. "_anchorPoint": {
  2390. "__type__": "cc.Vec2",
  2391. "x": 0,
  2392. "y": 0.5
  2393. },
  2394. "_id": ""
  2395. },
  2396. {
  2397. "__type__": "cc.LabelComponent",
  2398. "_name": "Label<LabelComponent>",
  2399. "_objFlags": 0,
  2400. "node": {
  2401. "__id__": 76
  2402. },
  2403. "_enabled": true,
  2404. "_srcBlendFactor": 2,
  2405. "_dstBlendFactor": 4,
  2406. "_color": {
  2407. "__type__": "cc.Color",
  2408. "r": 255,
  2409. "g": 237,
  2410. "b": 105,
  2411. "a": 255
  2412. },
  2413. "_sharedMaterial": null,
  2414. "_useOriginalSize": true,
  2415. "_string": "10.2K",
  2416. "_horizontalAlign": 0,
  2417. "_verticalAlign": 1,
  2418. "_actualFontSize": 30,
  2419. "_fontSize": 30,
  2420. "_fontFamily": "Arial",
  2421. "_lineHeight": 40,
  2422. "_overflow": 0,
  2423. "_enableWrapText": true,
  2424. "_font": null,
  2425. "_isSystemFontUsed": true,
  2426. "_isItalic": false,
  2427. "_isBold": true,
  2428. "_isUnderline": false,
  2429. "_cacheMode": 0,
  2430. "_id": ""
  2431. },
  2432. {
  2433. "__type__": "cc.PrefabInfo",
  2434. "root": {
  2435. "__id__": 1
  2436. },
  2437. "asset": {
  2438. "__id__": 0
  2439. },
  2440. "fileId": "07Xhfnq6ZGiL1k++o3oUnR",
  2441. "sync": false,
  2442. "_synced": {
  2443. "default": false,
  2444. "serializable": false
  2445. }
  2446. },
  2447. {
  2448. "__type__": "cc.Node",
  2449. "_name": "GlodNum2",
  2450. "_objFlags": 0,
  2451. "_parent": {
  2452. "__id__": 66
  2453. },
  2454. "_children": [],
  2455. "_active": true,
  2456. "_components": [
  2457. {
  2458. "__id__": 81
  2459. },
  2460. {
  2461. "__id__": 82
  2462. }
  2463. ],
  2464. "_prefab": {
  2465. "__id__": 83
  2466. },
  2467. "_lpos": {
  2468. "__type__": "cc.Vec3",
  2469. "x": 182.789,
  2470. "y": -1,
  2471. "z": 0
  2472. },
  2473. "_lrot": {
  2474. "__type__": "cc.Quat",
  2475. "x": 0,
  2476. "y": 0,
  2477. "z": 0,
  2478. "w": 1
  2479. },
  2480. "_lscale": {
  2481. "__type__": "cc.Vec3",
  2482. "x": 1,
  2483. "y": 1,
  2484. "z": 1
  2485. },
  2486. "_layer": 33554432,
  2487. "_euler": {
  2488. "__type__": "cc.Vec3",
  2489. "x": 0,
  2490. "y": 0,
  2491. "z": 0
  2492. },
  2493. "_id": ""
  2494. },
  2495. {
  2496. "__type__": "cc.UITransformComponent",
  2497. "_name": "Label<UITransformComponent>",
  2498. "_objFlags": 0,
  2499. "node": {
  2500. "__id__": 80
  2501. },
  2502. "_enabled": true,
  2503. "_priority": 0,
  2504. "_contentSize": {
  2505. "__type__": "cc.Size",
  2506. "width": 43.02,
  2507. "height": 50.4
  2508. },
  2509. "_anchorPoint": {
  2510. "__type__": "cc.Vec2",
  2511. "x": 1,
  2512. "y": 0.5
  2513. },
  2514. "_id": ""
  2515. },
  2516. {
  2517. "__type__": "cc.LabelComponent",
  2518. "_name": "Label<LabelComponent>",
  2519. "_objFlags": 0,
  2520. "node": {
  2521. "__id__": 80
  2522. },
  2523. "_enabled": true,
  2524. "_srcBlendFactor": 2,
  2525. "_dstBlendFactor": 4,
  2526. "_color": {
  2527. "__type__": "cc.Color",
  2528. "r": 255,
  2529. "g": 237,
  2530. "b": 105,
  2531. "a": 255
  2532. },
  2533. "_sharedMaterial": null,
  2534. "_useOriginalSize": true,
  2535. "_string": "10/秒",
  2536. "_horizontalAlign": 2,
  2537. "_verticalAlign": 1,
  2538. "_actualFontSize": 18,
  2539. "_fontSize": 18,
  2540. "_fontFamily": "Arial",
  2541. "_lineHeight": 40,
  2542. "_overflow": 0,
  2543. "_enableWrapText": true,
  2544. "_font": null,
  2545. "_isSystemFontUsed": true,
  2546. "_isItalic": false,
  2547. "_isBold": true,
  2548. "_isUnderline": false,
  2549. "_cacheMode": 0,
  2550. "_id": ""
  2551. },
  2552. {
  2553. "__type__": "cc.PrefabInfo",
  2554. "root": {
  2555. "__id__": 1
  2556. },
  2557. "asset": {
  2558. "__id__": 0
  2559. },
  2560. "fileId": "abXt8gf+FIrLcAZxCal0zK",
  2561. "sync": false,
  2562. "_synced": {
  2563. "default": false,
  2564. "serializable": false
  2565. }
  2566. },
  2567. {
  2568. "__type__": "cc.UITransformComponent",
  2569. "_name": "GlodView<UITransformComponent>",
  2570. "_objFlags": 0,
  2571. "node": {
  2572. "__id__": 66
  2573. },
  2574. "_enabled": true,
  2575. "_priority": 0,
  2576. "_contentSize": {
  2577. "__type__": "cc.Size",
  2578. "width": 100,
  2579. "height": 100
  2580. },
  2581. "_anchorPoint": {
  2582. "__type__": "cc.Vec2",
  2583. "x": 0.5,
  2584. "y": 0.5
  2585. },
  2586. "_id": ""
  2587. },
  2588. {
  2589. "__type__": "cc.WidgetComponent",
  2590. "_name": "GlodView<WidgetComponent>",
  2591. "_objFlags": 0,
  2592. "node": {
  2593. "__id__": 66
  2594. },
  2595. "_enabled": true,
  2596. "_alignFlags": 9,
  2597. "_target": null,
  2598. "_left": 56,
  2599. "_right": 0,
  2600. "_top": 38.090000000000146,
  2601. "_bottom": 0,
  2602. "_horizontalCenter": 0,
  2603. "_verticalCenter": 0,
  2604. "_isAbsLeft": true,
  2605. "_isAbsRight": true,
  2606. "_isAbsTop": true,
  2607. "_isAbsBottom": true,
  2608. "_isAbsHorizontalCenter": true,
  2609. "_isAbsVerticalCenter": true,
  2610. "_originalWidth": 0,
  2611. "_originalHeight": 0,
  2612. "_alignMode": 2,
  2613. "_lockFlags": 0,
  2614. "_id": ""
  2615. },
  2616. {
  2617. "__type__": "cc.WidgetComponent",
  2618. "_name": "GlodView<WidgetComponent>",
  2619. "_objFlags": 0,
  2620. "node": {
  2621. "__id__": 66
  2622. },
  2623. "_enabled": true,
  2624. "_alignFlags": 9,
  2625. "_target": null,
  2626. "_left": -1599.6799999999998,
  2627. "_right": 0,
  2628. "_top": 38.090000000000146,
  2629. "_bottom": 0,
  2630. "_horizontalCenter": 0,
  2631. "_verticalCenter": 0,
  2632. "_isAbsLeft": true,
  2633. "_isAbsRight": true,
  2634. "_isAbsTop": true,
  2635. "_isAbsBottom": true,
  2636. "_isAbsHorizontalCenter": true,
  2637. "_isAbsVerticalCenter": true,
  2638. "_originalWidth": 0,
  2639. "_originalHeight": 0,
  2640. "_alignMode": 2,
  2641. "_lockFlags": 0,
  2642. "_id": ""
  2643. },
  2644. {
  2645. "__type__": "cc.PrefabInfo",
  2646. "root": {
  2647. "__id__": 1
  2648. },
  2649. "asset": {
  2650. "__id__": 0
  2651. },
  2652. "fileId": "15SWrXmvBHvI0/gKh4ZeQq",
  2653. "sync": false,
  2654. "_synced": {
  2655. "default": false,
  2656. "serializable": false
  2657. }
  2658. },
  2659. {
  2660. "__type__": "cc.Node",
  2661. "_name": "DiamondView",
  2662. "_objFlags": 0,
  2663. "_parent": {
  2664. "__id__": 60
  2665. },
  2666. "_children": [
  2667. {
  2668. "__id__": 89
  2669. },
  2670. {
  2671. "__id__": 94
  2672. },
  2673. {
  2674. "__id__": 98
  2675. }
  2676. ],
  2677. "_active": true,
  2678. "_components": [
  2679. {
  2680. "__id__": 102
  2681. },
  2682. {
  2683. "__id__": 103
  2684. },
  2685. {
  2686. "__id__": 104
  2687. }
  2688. ],
  2689. "_prefab": {
  2690. "__id__": 105
  2691. },
  2692. "_lpos": {
  2693. "__type__": "cc.Vec3",
  2694. "x": 368,
  2695. "y": -38.090000000000146,
  2696. "z": 0
  2697. },
  2698. "_lrot": {
  2699. "__type__": "cc.Quat",
  2700. "x": 0,
  2701. "y": 0,
  2702. "z": 0,
  2703. "w": 1
  2704. },
  2705. "_lscale": {
  2706. "__type__": "cc.Vec3",
  2707. "x": 1,
  2708. "y": 1,
  2709. "z": 1
  2710. },
  2711. "_layer": 1073741824,
  2712. "_euler": {
  2713. "__type__": "cc.Vec3",
  2714. "x": 0,
  2715. "y": 0,
  2716. "z": 0
  2717. },
  2718. "_id": ""
  2719. },
  2720. {
  2721. "__type__": "cc.Node",
  2722. "_name": "Background",
  2723. "_objFlags": 0,
  2724. "_parent": {
  2725. "__id__": 88
  2726. },
  2727. "_children": [],
  2728. "_active": true,
  2729. "_components": [
  2730. {
  2731. "__id__": 90
  2732. },
  2733. {
  2734. "__id__": 91
  2735. },
  2736. {
  2737. "__id__": 92
  2738. }
  2739. ],
  2740. "_prefab": {
  2741. "__id__": 93
  2742. },
  2743. "_lpos": {
  2744. "__type__": "cc.Vec3",
  2745. "x": -60,
  2746. "y": 0,
  2747. "z": 0
  2748. },
  2749. "_lrot": {
  2750. "__type__": "cc.Quat",
  2751. "x": 0,
  2752. "y": 0,
  2753. "z": 0,
  2754. "w": 1
  2755. },
  2756. "_lscale": {
  2757. "__type__": "cc.Vec3",
  2758. "x": 1,
  2759. "y": 1,
  2760. "z": 1
  2761. },
  2762. "_layer": 33554432,
  2763. "_euler": {
  2764. "__type__": "cc.Vec3",
  2765. "x": 0,
  2766. "y": 0,
  2767. "z": 0
  2768. },
  2769. "_id": ""
  2770. },
  2771. {
  2772. "__type__": "cc.UITransformComponent",
  2773. "_name": "Background<UITransformComponent>",
  2774. "_objFlags": 0,
  2775. "node": {
  2776. "__id__": 89
  2777. },
  2778. "_enabled": true,
  2779. "_priority": 0,
  2780. "_contentSize": {
  2781. "__type__": "cc.Size",
  2782. "width": 120,
  2783. "height": 40
  2784. },
  2785. "_anchorPoint": {
  2786. "__type__": "cc.Vec2",
  2787. "x": 0,
  2788. "y": 0.5
  2789. },
  2790. "_id": ""
  2791. },
  2792. {
  2793. "__type__": "cc.SpriteComponent",
  2794. "_name": "Background<SpriteComponent>",
  2795. "_objFlags": 0,
  2796. "node": {
  2797. "__id__": 89
  2798. },
  2799. "_enabled": true,
  2800. "_srcBlendFactor": 2,
  2801. "_dstBlendFactor": 4,
  2802. "_color": {
  2803. "__type__": "cc.Color",
  2804. "r": 255,
  2805. "g": 255,
  2806. "b": 255,
  2807. "a": 255
  2808. },
  2809. "_sharedMaterial": null,
  2810. "_spriteFrame": {
  2811. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  2812. },
  2813. "_type": 1,
  2814. "_fillType": 0,
  2815. "_sizeMode": 0,
  2816. "_fillCenter": {
  2817. "__type__": "cc.Vec2",
  2818. "x": 0,
  2819. "y": 0
  2820. },
  2821. "_fillStart": 0,
  2822. "_fillRange": 0,
  2823. "_isTrimmedMode": true,
  2824. "_useGrayscale": false,
  2825. "_atlas": null,
  2826. "_id": ""
  2827. },
  2828. {
  2829. "__type__": "cc.UIOpacityComponent",
  2830. "_name": "Background<UIOpacityComponent>",
  2831. "_objFlags": 0,
  2832. "node": {
  2833. "__id__": 89
  2834. },
  2835. "_enabled": true,
  2836. "_opacity": 125,
  2837. "_id": ""
  2838. },
  2839. {
  2840. "__type__": "cc.PrefabInfo",
  2841. "root": {
  2842. "__id__": 1
  2843. },
  2844. "asset": {
  2845. "__id__": 0
  2846. },
  2847. "fileId": "93vAx7tlBLL4ZdfWUdMYrf",
  2848. "sync": false,
  2849. "_synced": {
  2850. "default": false,
  2851. "serializable": false
  2852. }
  2853. },
  2854. {
  2855. "__type__": "cc.Node",
  2856. "_name": "DiamondIcon",
  2857. "_objFlags": 0,
  2858. "_parent": {
  2859. "__id__": 88
  2860. },
  2861. "_children": [],
  2862. "_active": true,
  2863. "_components": [
  2864. {
  2865. "__id__": 95
  2866. },
  2867. {
  2868. "__id__": 96
  2869. }
  2870. ],
  2871. "_prefab": {
  2872. "__id__": 97
  2873. },
  2874. "_lpos": {
  2875. "__type__": "cc.Vec3",
  2876. "x": -60,
  2877. "y": -3,
  2878. "z": 0
  2879. },
  2880. "_lrot": {
  2881. "__type__": "cc.Quat",
  2882. "x": 0,
  2883. "y": 0,
  2884. "z": 0,
  2885. "w": 1
  2886. },
  2887. "_lscale": {
  2888. "__type__": "cc.Vec3",
  2889. "x": 1,
  2890. "y": 1,
  2891. "z": 1
  2892. },
  2893. "_layer": 33554432,
  2894. "_euler": {
  2895. "__type__": "cc.Vec3",
  2896. "x": 0,
  2897. "y": 0,
  2898. "z": 0
  2899. },
  2900. "_id": ""
  2901. },
  2902. {
  2903. "__type__": "cc.UITransformComponent",
  2904. "_name": "GlodIcon<UITransformComponent>",
  2905. "_objFlags": 0,
  2906. "node": {
  2907. "__id__": 94
  2908. },
  2909. "_enabled": true,
  2910. "_priority": 0,
  2911. "_contentSize": {
  2912. "__type__": "cc.Size",
  2913. "width": 55,
  2914. "height": 45
  2915. },
  2916. "_anchorPoint": {
  2917. "__type__": "cc.Vec2",
  2918. "x": 0.5,
  2919. "y": 0.5
  2920. },
  2921. "_id": ""
  2922. },
  2923. {
  2924. "__type__": "cc.SpriteComponent",
  2925. "_name": "GlodIcon<SpriteComponent>",
  2926. "_objFlags": 0,
  2927. "node": {
  2928. "__id__": 94
  2929. },
  2930. "_enabled": true,
  2931. "_srcBlendFactor": 2,
  2932. "_dstBlendFactor": 4,
  2933. "_color": {
  2934. "__type__": "cc.Color",
  2935. "r": 255,
  2936. "g": 255,
  2937. "b": 255,
  2938. "a": 255
  2939. },
  2940. "_sharedMaterial": null,
  2941. "_spriteFrame": {
  2942. "__uuid__": "7865e301-00a2-4137-8aa1-d46f75335e03@f9941"
  2943. },
  2944. "_type": 0,
  2945. "_fillType": 0,
  2946. "_sizeMode": 1,
  2947. "_fillCenter": {
  2948. "__type__": "cc.Vec2",
  2949. "x": 0,
  2950. "y": 0
  2951. },
  2952. "_fillStart": 0,
  2953. "_fillRange": 0,
  2954. "_isTrimmedMode": true,
  2955. "_useGrayscale": false,
  2956. "_atlas": null,
  2957. "_id": ""
  2958. },
  2959. {
  2960. "__type__": "cc.PrefabInfo",
  2961. "root": {
  2962. "__id__": 1
  2963. },
  2964. "asset": {
  2965. "__id__": 0
  2966. },
  2967. "fileId": "6b2/I0+2tLYqfWlZeOS1WK",
  2968. "sync": false,
  2969. "_synced": {
  2970. "default": false,
  2971. "serializable": false
  2972. }
  2973. },
  2974. {
  2975. "__type__": "cc.Node",
  2976. "_name": "DiamondNum",
  2977. "_objFlags": 0,
  2978. "_parent": {
  2979. "__id__": 88
  2980. },
  2981. "_children": [],
  2982. "_active": true,
  2983. "_components": [
  2984. {
  2985. "__id__": 99
  2986. },
  2987. {
  2988. "__id__": 100
  2989. }
  2990. ],
  2991. "_prefab": {
  2992. "__id__": 101
  2993. },
  2994. "_lpos": {
  2995. "__type__": "cc.Vec3",
  2996. "x": 3.073,
  2997. "y": -1,
  2998. "z": 0
  2999. },
  3000. "_lrot": {
  3001. "__type__": "cc.Quat",
  3002. "x": 0,
  3003. "y": 0,
  3004. "z": 0,
  3005. "w": 1
  3006. },
  3007. "_lscale": {
  3008. "__type__": "cc.Vec3",
  3009. "x": 1,
  3010. "y": 1,
  3011. "z": 1
  3012. },
  3013. "_layer": 33554432,
  3014. "_euler": {
  3015. "__type__": "cc.Vec3",
  3016. "x": 0,
  3017. "y": 0,
  3018. "z": 0
  3019. },
  3020. "_id": ""
  3021. },
  3022. {
  3023. "__type__": "cc.UITransformComponent",
  3024. "_name": "Label<UITransformComponent>",
  3025. "_objFlags": 0,
  3026. "node": {
  3027. "__id__": 98
  3028. },
  3029. "_enabled": true,
  3030. "_priority": 0,
  3031. "_contentSize": {
  3032. "__type__": "cc.Size",
  3033. "width": 16.68,
  3034. "height": 50.4
  3035. },
  3036. "_anchorPoint": {
  3037. "__type__": "cc.Vec2",
  3038. "x": 0,
  3039. "y": 0.5
  3040. },
  3041. "_id": ""
  3042. },
  3043. {
  3044. "__type__": "cc.LabelComponent",
  3045. "_name": "Label<LabelComponent>",
  3046. "_objFlags": 0,
  3047. "node": {
  3048. "__id__": 98
  3049. },
  3050. "_enabled": true,
  3051. "_srcBlendFactor": 2,
  3052. "_dstBlendFactor": 4,
  3053. "_color": {
  3054. "__type__": "cc.Color",
  3055. "r": 255,
  3056. "g": 237,
  3057. "b": 105,
  3058. "a": 255
  3059. },
  3060. "_sharedMaterial": null,
  3061. "_useOriginalSize": true,
  3062. "_string": "2",
  3063. "_horizontalAlign": 1,
  3064. "_verticalAlign": 1,
  3065. "_actualFontSize": 30,
  3066. "_fontSize": 30,
  3067. "_fontFamily": "Arial",
  3068. "_lineHeight": 40,
  3069. "_overflow": 0,
  3070. "_enableWrapText": true,
  3071. "_font": null,
  3072. "_isSystemFontUsed": true,
  3073. "_isItalic": false,
  3074. "_isBold": true,
  3075. "_isUnderline": false,
  3076. "_cacheMode": 0,
  3077. "_id": ""
  3078. },
  3079. {
  3080. "__type__": "cc.PrefabInfo",
  3081. "root": {
  3082. "__id__": 1
  3083. },
  3084. "asset": {
  3085. "__id__": 0
  3086. },
  3087. "fileId": "4d/88pEGRAYLiLayN1iSyS",
  3088. "sync": false,
  3089. "_synced": {
  3090. "default": false,
  3091. "serializable": false
  3092. }
  3093. },
  3094. {
  3095. "__type__": "cc.UITransformComponent",
  3096. "_name": "DiamondView<UITransformComponent>",
  3097. "_objFlags": 0,
  3098. "node": {
  3099. "__id__": 88
  3100. },
  3101. "_enabled": true,
  3102. "_priority": 0,
  3103. "_contentSize": {
  3104. "__type__": "cc.Size",
  3105. "width": 100,
  3106. "height": 100
  3107. },
  3108. "_anchorPoint": {
  3109. "__type__": "cc.Vec2",
  3110. "x": 0.5,
  3111. "y": 0.5
  3112. },
  3113. "_id": ""
  3114. },
  3115. {
  3116. "__type__": "cc.WidgetComponent",
  3117. "_name": "DiamondView<WidgetComponent>",
  3118. "_objFlags": 0,
  3119. "node": {
  3120. "__id__": 88
  3121. },
  3122. "_enabled": true,
  3123. "_alignFlags": 9,
  3124. "_target": null,
  3125. "_left": 368,
  3126. "_right": 0,
  3127. "_top": 38.090000000000146,
  3128. "_bottom": 0,
  3129. "_horizontalCenter": 0,
  3130. "_verticalCenter": 0,
  3131. "_isAbsLeft": true,
  3132. "_isAbsRight": true,
  3133. "_isAbsTop": true,
  3134. "_isAbsBottom": true,
  3135. "_isAbsHorizontalCenter": true,
  3136. "_isAbsVerticalCenter": true,
  3137. "_originalWidth": 0,
  3138. "_originalHeight": 0,
  3139. "_alignMode": 2,
  3140. "_lockFlags": 0,
  3141. "_id": ""
  3142. },
  3143. {
  3144. "__type__": "cc.WidgetComponent",
  3145. "_name": "DiamondView<WidgetComponent>",
  3146. "_objFlags": 0,
  3147. "node": {
  3148. "__id__": 88
  3149. },
  3150. "_enabled": true,
  3151. "_alignFlags": 9,
  3152. "_target": null,
  3153. "_left": -2928.6429999999987,
  3154. "_right": 0,
  3155. "_top": 38.09000000000617,
  3156. "_bottom": 0,
  3157. "_horizontalCenter": 0,
  3158. "_verticalCenter": 0,
  3159. "_isAbsLeft": true,
  3160. "_isAbsRight": true,
  3161. "_isAbsTop": true,
  3162. "_isAbsBottom": true,
  3163. "_isAbsHorizontalCenter": true,
  3164. "_isAbsVerticalCenter": true,
  3165. "_originalWidth": 0,
  3166. "_originalHeight": 0,
  3167. "_alignMode": 2,
  3168. "_lockFlags": 0,
  3169. "_id": ""
  3170. },
  3171. {
  3172. "__type__": "cc.PrefabInfo",
  3173. "root": {
  3174. "__id__": 1
  3175. },
  3176. "asset": {
  3177. "__id__": 0
  3178. },
  3179. "fileId": "f1JaTESNhIareLij/g/sf7",
  3180. "sync": false,
  3181. "_synced": {
  3182. "default": false,
  3183. "serializable": false
  3184. }
  3185. },
  3186. {
  3187. "__type__": "cc.Node",
  3188. "_name": "ExpGroup",
  3189. "_objFlags": 0,
  3190. "_parent": {
  3191. "__id__": 60
  3192. },
  3193. "_children": [
  3194. {
  3195. "__id__": 107
  3196. },
  3197. {
  3198. "__id__": 116
  3199. }
  3200. ],
  3201. "_active": false,
  3202. "_components": [
  3203. {
  3204. "__id__": 120
  3205. },
  3206. {
  3207. "__id__": 121
  3208. }
  3209. ],
  3210. "_prefab": {
  3211. "__id__": 122
  3212. },
  3213. "_lpos": {
  3214. "__type__": "cc.Vec3",
  3215. "x": -9,
  3216. "y": -27,
  3217. "z": 0
  3218. },
  3219. "_lrot": {
  3220. "__type__": "cc.Quat",
  3221. "x": 0,
  3222. "y": 0,
  3223. "z": 0,
  3224. "w": 1
  3225. },
  3226. "_lscale": {
  3227. "__type__": "cc.Vec3",
  3228. "x": 1,
  3229. "y": 1,
  3230. "z": 1
  3231. },
  3232. "_layer": 1073741824,
  3233. "_euler": {
  3234. "__type__": "cc.Vec3",
  3235. "x": 0,
  3236. "y": 0,
  3237. "z": 0
  3238. },
  3239. "_id": ""
  3240. },
  3241. {
  3242. "__type__": "cc.Node",
  3243. "_name": "ProgressBar",
  3244. "_objFlags": 0,
  3245. "_parent": {
  3246. "__id__": 106
  3247. },
  3248. "_children": [
  3249. {
  3250. "__id__": 108
  3251. }
  3252. ],
  3253. "_active": true,
  3254. "_components": [
  3255. {
  3256. "__id__": 112
  3257. },
  3258. {
  3259. "__id__": 113
  3260. },
  3261. {
  3262. "__id__": 114
  3263. }
  3264. ],
  3265. "_prefab": {
  3266. "__id__": 115
  3267. },
  3268. "_lpos": {
  3269. "__type__": "cc.Vec3",
  3270. "x": 0,
  3271. "y": 0,
  3272. "z": 0
  3273. },
  3274. "_lrot": {
  3275. "__type__": "cc.Quat",
  3276. "x": 0,
  3277. "y": 0,
  3278. "z": 0,
  3279. "w": 1
  3280. },
  3281. "_lscale": {
  3282. "__type__": "cc.Vec3",
  3283. "x": 1,
  3284. "y": 1,
  3285. "z": 1
  3286. },
  3287. "_layer": 33554432,
  3288. "_euler": {
  3289. "__type__": "cc.Vec3",
  3290. "x": 0,
  3291. "y": 0,
  3292. "z": 0
  3293. },
  3294. "_id": ""
  3295. },
  3296. {
  3297. "__type__": "cc.Node",
  3298. "_name": "Bar",
  3299. "_objFlags": 0,
  3300. "_parent": {
  3301. "__id__": 107
  3302. },
  3303. "_children": [],
  3304. "_active": true,
  3305. "_components": [
  3306. {
  3307. "__id__": 109
  3308. },
  3309. {
  3310. "__id__": 110
  3311. }
  3312. ],
  3313. "_prefab": {
  3314. "__id__": 111
  3315. },
  3316. "_lpos": {
  3317. "__type__": "cc.Vec3",
  3318. "x": -39,
  3319. "y": 1,
  3320. "z": 0
  3321. },
  3322. "_lrot": {
  3323. "__type__": "cc.Quat",
  3324. "x": 0,
  3325. "y": 0,
  3326. "z": 0,
  3327. "w": 1
  3328. },
  3329. "_lscale": {
  3330. "__type__": "cc.Vec3",
  3331. "x": 1,
  3332. "y": 1,
  3333. "z": 1
  3334. },
  3335. "_layer": 33554432,
  3336. "_euler": {
  3337. "__type__": "cc.Vec3",
  3338. "x": 0,
  3339. "y": 0,
  3340. "z": 0
  3341. },
  3342. "_id": ""
  3343. },
  3344. {
  3345. "__type__": "cc.UITransformComponent",
  3346. "_name": "",
  3347. "_objFlags": 0,
  3348. "node": {
  3349. "__id__": 108
  3350. },
  3351. "_enabled": true,
  3352. "_priority": 0,
  3353. "_contentSize": {
  3354. "__type__": "cc.Size",
  3355. "width": 76,
  3356. "height": 76
  3357. },
  3358. "_anchorPoint": {
  3359. "__type__": "cc.Vec2",
  3360. "x": 0,
  3361. "y": 0.5
  3362. },
  3363. "_id": ""
  3364. },
  3365. {
  3366. "__type__": "cc.SpriteComponent",
  3367. "_name": "",
  3368. "_objFlags": 0,
  3369. "node": {
  3370. "__id__": 108
  3371. },
  3372. "_enabled": true,
  3373. "_srcBlendFactor": 2,
  3374. "_dstBlendFactor": 4,
  3375. "_color": {
  3376. "__type__": "cc.Color",
  3377. "r": 255,
  3378. "g": 255,
  3379. "b": 255,
  3380. "a": 255
  3381. },
  3382. "_sharedMaterial": null,
  3383. "_spriteFrame": {
  3384. "__uuid__": "25c83d1e-bf10-4779-9e4a-2d5f6bb9b227@f9941"
  3385. },
  3386. "_type": 3,
  3387. "_fillType": 2,
  3388. "_sizeMode": 0,
  3389. "_fillCenter": {
  3390. "__type__": "cc.Vec2",
  3391. "x": 0.5,
  3392. "y": 0.5
  3393. },
  3394. "_fillStart": 0.25,
  3395. "_fillRange": 1,
  3396. "_isTrimmedMode": true,
  3397. "_useGrayscale": false,
  3398. "_atlas": null,
  3399. "_id": ""
  3400. },
  3401. {
  3402. "__type__": "cc.PrefabInfo",
  3403. "root": {
  3404. "__id__": 1
  3405. },
  3406. "asset": {
  3407. "__id__": 0
  3408. },
  3409. "fileId": "92qLzmBa9CbLIl//kyux1C",
  3410. "sync": false,
  3411. "_synced": {
  3412. "default": false,
  3413. "serializable": false
  3414. }
  3415. },
  3416. {
  3417. "__type__": "cc.UITransformComponent",
  3418. "_name": "",
  3419. "_objFlags": 0,
  3420. "node": {
  3421. "__id__": 107
  3422. },
  3423. "_enabled": true,
  3424. "_priority": 0,
  3425. "_contentSize": {
  3426. "__type__": "cc.Size",
  3427. "width": 78,
  3428. "height": 79
  3429. },
  3430. "_anchorPoint": {
  3431. "__type__": "cc.Vec2",
  3432. "x": 0.5,
  3433. "y": 0.5
  3434. },
  3435. "_id": ""
  3436. },
  3437. {
  3438. "__type__": "cc.SpriteComponent",
  3439. "_name": "",
  3440. "_objFlags": 0,
  3441. "node": {
  3442. "__id__": 107
  3443. },
  3444. "_enabled": true,
  3445. "_srcBlendFactor": 2,
  3446. "_dstBlendFactor": 4,
  3447. "_color": {
  3448. "__type__": "cc.Color",
  3449. "r": 255,
  3450. "g": 255,
  3451. "b": 255,
  3452. "a": 255
  3453. },
  3454. "_sharedMaterial": null,
  3455. "_spriteFrame": {
  3456. "__uuid__": "302e2930-0a05-417e-8b68-352ca89e9a6f@f9941"
  3457. },
  3458. "_type": 1,
  3459. "_fillType": 0,
  3460. "_sizeMode": 0,
  3461. "_fillCenter": {
  3462. "__type__": "cc.Vec2",
  3463. "x": 0,
  3464. "y": 0
  3465. },
  3466. "_fillStart": 0,
  3467. "_fillRange": 0,
  3468. "_isTrimmedMode": true,
  3469. "_useGrayscale": false,
  3470. "_atlas": null,
  3471. "_id": ""
  3472. },
  3473. {
  3474. "__type__": "cc.ProgressBarComponent",
  3475. "_name": "",
  3476. "_objFlags": 0,
  3477. "node": {
  3478. "__id__": 107
  3479. },
  3480. "_enabled": true,
  3481. "_barSprite": {
  3482. "__id__": 110
  3483. },
  3484. "_mode": 2,
  3485. "_totalLength": 1,
  3486. "_progress": 1,
  3487. "_reverse": false,
  3488. "_id": ""
  3489. },
  3490. {
  3491. "__type__": "cc.PrefabInfo",
  3492. "root": {
  3493. "__id__": 1
  3494. },
  3495. "asset": {
  3496. "__id__": 0
  3497. },
  3498. "fileId": "77ZklKitxKA7J346J+oPMo",
  3499. "sync": false,
  3500. "_synced": {
  3501. "default": false,
  3502. "serializable": false
  3503. }
  3504. },
  3505. {
  3506. "__type__": "cc.Node",
  3507. "_name": "Level",
  3508. "_objFlags": 0,
  3509. "_parent": {
  3510. "__id__": 106
  3511. },
  3512. "_children": [],
  3513. "_active": true,
  3514. "_components": [
  3515. {
  3516. "__id__": 117
  3517. },
  3518. {
  3519. "__id__": 118
  3520. }
  3521. ],
  3522. "_prefab": {
  3523. "__id__": 119
  3524. },
  3525. "_lpos": {
  3526. "__type__": "cc.Vec3",
  3527. "x": -1,
  3528. "y": -2,
  3529. "z": 0
  3530. },
  3531. "_lrot": {
  3532. "__type__": "cc.Quat",
  3533. "x": 0,
  3534. "y": 0,
  3535. "z": 0,
  3536. "w": 1
  3537. },
  3538. "_lscale": {
  3539. "__type__": "cc.Vec3",
  3540. "x": 1,
  3541. "y": 1,
  3542. "z": 1
  3543. },
  3544. "_layer": 33554432,
  3545. "_euler": {
  3546. "__type__": "cc.Vec3",
  3547. "x": 0,
  3548. "y": 0,
  3549. "z": 0
  3550. },
  3551. "_id": ""
  3552. },
  3553. {
  3554. "__type__": "cc.UITransformComponent",
  3555. "_name": "",
  3556. "_objFlags": 0,
  3557. "node": {
  3558. "__id__": 116
  3559. },
  3560. "_enabled": true,
  3561. "_priority": 0,
  3562. "_contentSize": {
  3563. "__type__": "cc.Size",
  3564. "width": 40.04,
  3565. "height": 50.4
  3566. },
  3567. "_anchorPoint": {
  3568. "__type__": "cc.Vec2",
  3569. "x": 0.5,
  3570. "y": 0.5
  3571. },
  3572. "_id": ""
  3573. },
  3574. {
  3575. "__type__": "cc.LabelComponent",
  3576. "_name": "",
  3577. "_objFlags": 0,
  3578. "node": {
  3579. "__id__": 116
  3580. },
  3581. "_enabled": true,
  3582. "_srcBlendFactor": 2,
  3583. "_dstBlendFactor": 4,
  3584. "_color": {
  3585. "__type__": "cc.Color",
  3586. "r": 255,
  3587. "g": 255,
  3588. "b": 255,
  3589. "a": 255
  3590. },
  3591. "_sharedMaterial": null,
  3592. "_useOriginalSize": true,
  3593. "_string": "10",
  3594. "_horizontalAlign": 1,
  3595. "_verticalAlign": 1,
  3596. "_actualFontSize": 36,
  3597. "_fontSize": 36,
  3598. "_fontFamily": "Arial",
  3599. "_lineHeight": 40,
  3600. "_overflow": 0,
  3601. "_enableWrapText": true,
  3602. "_font": null,
  3603. "_isSystemFontUsed": true,
  3604. "_isItalic": false,
  3605. "_isBold": false,
  3606. "_isUnderline": false,
  3607. "_cacheMode": 0,
  3608. "_id": ""
  3609. },
  3610. {
  3611. "__type__": "cc.PrefabInfo",
  3612. "root": {
  3613. "__id__": 1
  3614. },
  3615. "asset": {
  3616. "__id__": 0
  3617. },
  3618. "fileId": "beJyBBcehGHo4LMYyh4IML",
  3619. "sync": false,
  3620. "_synced": {
  3621. "default": false,
  3622. "serializable": false
  3623. }
  3624. },
  3625. {
  3626. "__type__": "cc.UITransformComponent",
  3627. "_name": "FenceUIGroup<UITransformComponent>",
  3628. "_objFlags": 0,
  3629. "node": {
  3630. "__id__": 106
  3631. },
  3632. "_enabled": true,
  3633. "_priority": 0,
  3634. "_contentSize": {
  3635. "__type__": "cc.Size",
  3636. "width": 78,
  3637. "height": 79
  3638. },
  3639. "_anchorPoint": {
  3640. "__type__": "cc.Vec2",
  3641. "x": 0.5,
  3642. "y": 0.5
  3643. },
  3644. "_id": ""
  3645. },
  3646. {
  3647. "__type__": "cc.WidgetComponent",
  3648. "_name": "ExpGroup<WidgetComponent>",
  3649. "_objFlags": 0,
  3650. "node": {
  3651. "__id__": 106
  3652. },
  3653. "_enabled": true,
  3654. "_alignFlags": 9,
  3655. "_target": null,
  3656. "_left": 2,
  3657. "_right": 0,
  3658. "_top": 37.5,
  3659. "_bottom": 0,
  3660. "_horizontalCenter": 0,
  3661. "_verticalCenter": 0,
  3662. "_isAbsLeft": true,
  3663. "_isAbsRight": true,
  3664. "_isAbsTop": true,
  3665. "_isAbsBottom": true,
  3666. "_isAbsHorizontalCenter": true,
  3667. "_isAbsVerticalCenter": true,
  3668. "_originalWidth": 0,
  3669. "_originalHeight": 0,
  3670. "_alignMode": 2,
  3671. "_lockFlags": 0,
  3672. "_id": ""
  3673. },
  3674. {
  3675. "__type__": "cc.PrefabInfo",
  3676. "root": {
  3677. "__id__": 1
  3678. },
  3679. "asset": {
  3680. "__id__": 0
  3681. },
  3682. "fileId": "ffHxXIMmBAvZOoRkvjYYQF",
  3683. "sync": false,
  3684. "_synced": {
  3685. "default": false,
  3686. "serializable": false
  3687. }
  3688. },
  3689. {
  3690. "__type__": "cc.Node",
  3691. "_name": "Buff1",
  3692. "_objFlags": 0,
  3693. "_parent": {
  3694. "__id__": 60
  3695. },
  3696. "_children": [
  3697. {
  3698. "__id__": 124
  3699. }
  3700. ],
  3701. "_active": true,
  3702. "_components": [
  3703. {
  3704. "__id__": 128
  3705. },
  3706. {
  3707. "__id__": 129
  3708. },
  3709. {
  3710. "__id__": 130
  3711. }
  3712. ],
  3713. "_prefab": {
  3714. "__id__": 131
  3715. },
  3716. "_lpos": {
  3717. "__type__": "cc.Vec3",
  3718. "x": -9,
  3719. "y": -103,
  3720. "z": 0
  3721. },
  3722. "_lrot": {
  3723. "__type__": "cc.Quat",
  3724. "x": 0,
  3725. "y": 0,
  3726. "z": 0,
  3727. "w": 1
  3728. },
  3729. "_lscale": {
  3730. "__type__": "cc.Vec3",
  3731. "x": 1,
  3732. "y": 1,
  3733. "z": 1
  3734. },
  3735. "_layer": 33554432,
  3736. "_euler": {
  3737. "__type__": "cc.Vec3",
  3738. "x": 0,
  3739. "y": 0,
  3740. "z": 0
  3741. },
  3742. "_id": ""
  3743. },
  3744. {
  3745. "__type__": "cc.Node",
  3746. "_name": "Label",
  3747. "_objFlags": 0,
  3748. "_parent": {
  3749. "__id__": 123
  3750. },
  3751. "_children": [],
  3752. "_active": true,
  3753. "_components": [
  3754. {
  3755. "__id__": 125
  3756. },
  3757. {
  3758. "__id__": 126
  3759. }
  3760. ],
  3761. "_prefab": {
  3762. "__id__": 127
  3763. },
  3764. "_lpos": {
  3765. "__type__": "cc.Vec3",
  3766. "x": 34,
  3767. "y": -4,
  3768. "z": 0
  3769. },
  3770. "_lrot": {
  3771. "__type__": "cc.Quat",
  3772. "x": 0,
  3773. "y": 0,
  3774. "z": 0,
  3775. "w": 1
  3776. },
  3777. "_lscale": {
  3778. "__type__": "cc.Vec3",
  3779. "x": 1,
  3780. "y": 1,
  3781. "z": 1
  3782. },
  3783. "_layer": 33554432,
  3784. "_euler": {
  3785. "__type__": "cc.Vec3",
  3786. "x": 0,
  3787. "y": 0,
  3788. "z": 0
  3789. },
  3790. "_id": ""
  3791. },
  3792. {
  3793. "__type__": "cc.UITransformComponent",
  3794. "_name": "",
  3795. "_objFlags": 0,
  3796. "node": {
  3797. "__id__": 124
  3798. },
  3799. "_enabled": true,
  3800. "_priority": 0,
  3801. "_contentSize": {
  3802. "__type__": "cc.Size",
  3803. "width": 131.5,
  3804. "height": 50.4
  3805. },
  3806. "_anchorPoint": {
  3807. "__type__": "cc.Vec2",
  3808. "x": 0,
  3809. "y": 0.5
  3810. },
  3811. "_id": ""
  3812. },
  3813. {
  3814. "__type__": "cc.LabelComponent",
  3815. "_name": "",
  3816. "_objFlags": 0,
  3817. "node": {
  3818. "__id__": 124
  3819. },
  3820. "_enabled": true,
  3821. "_srcBlendFactor": 2,
  3822. "_dstBlendFactor": 4,
  3823. "_color": {
  3824. "__type__": "cc.Color",
  3825. "r": 255,
  3826. "g": 255,
  3827. "b": 255,
  3828. "a": 255
  3829. },
  3830. "_sharedMaterial": null,
  3831. "_useOriginalSize": true,
  3832. "_string": "加速x100%",
  3833. "_horizontalAlign": 0,
  3834. "_verticalAlign": 1,
  3835. "_actualFontSize": 26,
  3836. "_fontSize": 26,
  3837. "_fontFamily": "Arial",
  3838. "_lineHeight": 40,
  3839. "_overflow": 0,
  3840. "_enableWrapText": true,
  3841. "_font": null,
  3842. "_isSystemFontUsed": true,
  3843. "_isItalic": false,
  3844. "_isBold": false,
  3845. "_isUnderline": false,
  3846. "_cacheMode": 0,
  3847. "_id": ""
  3848. },
  3849. {
  3850. "__type__": "cc.PrefabInfo",
  3851. "root": {
  3852. "__id__": 1
  3853. },
  3854. "asset": {
  3855. "__id__": 0
  3856. },
  3857. "fileId": "17mAcAe9FJ2I3upYOJFqCD",
  3858. "sync": false,
  3859. "_synced": {
  3860. "default": false,
  3861. "serializable": false
  3862. }
  3863. },
  3864. {
  3865. "__type__": "cc.UITransformComponent",
  3866. "_name": "Buff1<UITransformComponent>",
  3867. "_objFlags": 0,
  3868. "node": {
  3869. "__id__": 123
  3870. },
  3871. "_enabled": true,
  3872. "_priority": 0,
  3873. "_contentSize": {
  3874. "__type__": "cc.Size",
  3875. "width": 45,
  3876. "height": 45
  3877. },
  3878. "_anchorPoint": {
  3879. "__type__": "cc.Vec2",
  3880. "x": 0.5,
  3881. "y": 0.5
  3882. },
  3883. "_id": ""
  3884. },
  3885. {
  3886. "__type__": "cc.SpriteComponent",
  3887. "_name": "Buff1<SpriteComponent>",
  3888. "_objFlags": 0,
  3889. "node": {
  3890. "__id__": 123
  3891. },
  3892. "_enabled": true,
  3893. "_srcBlendFactor": 2,
  3894. "_dstBlendFactor": 4,
  3895. "_color": {
  3896. "__type__": "cc.Color",
  3897. "r": 255,
  3898. "g": 255,
  3899. "b": 255,
  3900. "a": 255
  3901. },
  3902. "_sharedMaterial": null,
  3903. "_spriteFrame": {
  3904. "__uuid__": "185bc8dd-d22e-47c0-a155-ff409d30f162@f9941"
  3905. },
  3906. "_type": 0,
  3907. "_fillType": 0,
  3908. "_sizeMode": 1,
  3909. "_fillCenter": {
  3910. "__type__": "cc.Vec2",
  3911. "x": 0,
  3912. "y": 0
  3913. },
  3914. "_fillStart": 0,
  3915. "_fillRange": 0,
  3916. "_isTrimmedMode": true,
  3917. "_useGrayscale": false,
  3918. "_atlas": null,
  3919. "_id": ""
  3920. },
  3921. {
  3922. "__type__": "cc.WidgetComponent",
  3923. "_name": "Buff1<WidgetComponent>",
  3924. "_objFlags": 0,
  3925. "node": {
  3926. "__id__": 123
  3927. },
  3928. "_enabled": true,
  3929. "_alignFlags": 9,
  3930. "_target": null,
  3931. "_left": 18.5,
  3932. "_right": 0,
  3933. "_top": 130.5,
  3934. "_bottom": 0,
  3935. "_horizontalCenter": 0,
  3936. "_verticalCenter": 0,
  3937. "_isAbsLeft": true,
  3938. "_isAbsRight": true,
  3939. "_isAbsTop": true,
  3940. "_isAbsBottom": true,
  3941. "_isAbsHorizontalCenter": true,
  3942. "_isAbsVerticalCenter": true,
  3943. "_originalWidth": 0,
  3944. "_originalHeight": 0,
  3945. "_alignMode": 2,
  3946. "_lockFlags": 0,
  3947. "_id": ""
  3948. },
  3949. {
  3950. "__type__": "cc.PrefabInfo",
  3951. "root": {
  3952. "__id__": 1
  3953. },
  3954. "asset": {
  3955. "__id__": 0
  3956. },
  3957. "fileId": "c2erqpm7RBDqiZzDLcNCBl",
  3958. "sync": false,
  3959. "_synced": {
  3960. "default": false,
  3961. "serializable": false
  3962. }
  3963. },
  3964. {
  3965. "__type__": "cc.Node",
  3966. "_name": "Buff2",
  3967. "_objFlags": 0,
  3968. "_parent": {
  3969. "__id__": 60
  3970. },
  3971. "_children": [
  3972. {
  3973. "__id__": 133
  3974. }
  3975. ],
  3976. "_active": false,
  3977. "_components": [
  3978. {
  3979. "__id__": 137
  3980. },
  3981. {
  3982. "__id__": 138
  3983. },
  3984. {
  3985. "__id__": 139
  3986. }
  3987. ],
  3988. "_prefab": {
  3989. "__id__": 140
  3990. },
  3991. "_lpos": {
  3992. "__type__": "cc.Vec3",
  3993. "x": 197,
  3994. "y": -103,
  3995. "z": 0
  3996. },
  3997. "_lrot": {
  3998. "__type__": "cc.Quat",
  3999. "x": 0,
  4000. "y": 0,
  4001. "z": 0,
  4002. "w": 1
  4003. },
  4004. "_lscale": {
  4005. "__type__": "cc.Vec3",
  4006. "x": 1,
  4007. "y": 1,
  4008. "z": 1
  4009. },
  4010. "_layer": 33554432,
  4011. "_euler": {
  4012. "__type__": "cc.Vec3",
  4013. "x": 0,
  4014. "y": 0,
  4015. "z": 0
  4016. },
  4017. "_id": ""
  4018. },
  4019. {
  4020. "__type__": "cc.Node",
  4021. "_name": "Label",
  4022. "_objFlags": 0,
  4023. "_parent": {
  4024. "__id__": 132
  4025. },
  4026. "_children": [],
  4027. "_active": true,
  4028. "_components": [
  4029. {
  4030. "__id__": 134
  4031. },
  4032. {
  4033. "__id__": 135
  4034. }
  4035. ],
  4036. "_prefab": {
  4037. "__id__": 136
  4038. },
  4039. "_lpos": {
  4040. "__type__": "cc.Vec3",
  4041. "x": 34,
  4042. "y": -4,
  4043. "z": 0
  4044. },
  4045. "_lrot": {
  4046. "__type__": "cc.Quat",
  4047. "x": 0,
  4048. "y": 0,
  4049. "z": 0,
  4050. "w": 1
  4051. },
  4052. "_lscale": {
  4053. "__type__": "cc.Vec3",
  4054. "x": 1,
  4055. "y": 1,
  4056. "z": 1
  4057. },
  4058. "_layer": 33554432,
  4059. "_euler": {
  4060. "__type__": "cc.Vec3",
  4061. "x": 0,
  4062. "y": 0,
  4063. "z": 0
  4064. },
  4065. "_id": ""
  4066. },
  4067. {
  4068. "__type__": "cc.UITransformComponent",
  4069. "_name": "",
  4070. "_objFlags": 0,
  4071. "node": {
  4072. "__id__": 133
  4073. },
  4074. "_enabled": true,
  4075. "_priority": 0,
  4076. "_contentSize": {
  4077. "__type__": "cc.Size",
  4078. "width": 131.5,
  4079. "height": 50.4
  4080. },
  4081. "_anchorPoint": {
  4082. "__type__": "cc.Vec2",
  4083. "x": 0,
  4084. "y": 0.5
  4085. },
  4086. "_id": ""
  4087. },
  4088. {
  4089. "__type__": "cc.LabelComponent",
  4090. "_name": "",
  4091. "_objFlags": 0,
  4092. "node": {
  4093. "__id__": 133
  4094. },
  4095. "_enabled": true,
  4096. "_srcBlendFactor": 2,
  4097. "_dstBlendFactor": 4,
  4098. "_color": {
  4099. "__type__": "cc.Color",
  4100. "r": 255,
  4101. "g": 255,
  4102. "b": 255,
  4103. "a": 255
  4104. },
  4105. "_sharedMaterial": null,
  4106. "_useOriginalSize": true,
  4107. "_string": "收益x100%",
  4108. "_horizontalAlign": 0,
  4109. "_verticalAlign": 1,
  4110. "_actualFontSize": 26,
  4111. "_fontSize": 26,
  4112. "_fontFamily": "Arial",
  4113. "_lineHeight": 40,
  4114. "_overflow": 0,
  4115. "_enableWrapText": true,
  4116. "_font": null,
  4117. "_isSystemFontUsed": true,
  4118. "_isItalic": false,
  4119. "_isBold": false,
  4120. "_isUnderline": false,
  4121. "_cacheMode": 0,
  4122. "_id": ""
  4123. },
  4124. {
  4125. "__type__": "cc.PrefabInfo",
  4126. "root": {
  4127. "__id__": 1
  4128. },
  4129. "asset": {
  4130. "__id__": 0
  4131. },
  4132. "fileId": "54BCX5pjtNAa6n+V1Ynvm+",
  4133. "sync": false,
  4134. "_synced": {
  4135. "default": false,
  4136. "serializable": false
  4137. }
  4138. },
  4139. {
  4140. "__type__": "cc.UITransformComponent",
  4141. "_name": "Buff2<UITransformComponent>",
  4142. "_objFlags": 0,
  4143. "node": {
  4144. "__id__": 132
  4145. },
  4146. "_enabled": true,
  4147. "_priority": 0,
  4148. "_contentSize": {
  4149. "__type__": "cc.Size",
  4150. "width": 45,
  4151. "height": 45
  4152. },
  4153. "_anchorPoint": {
  4154. "__type__": "cc.Vec2",
  4155. "x": 0.5,
  4156. "y": 0.5
  4157. },
  4158. "_id": ""
  4159. },
  4160. {
  4161. "__type__": "cc.SpriteComponent",
  4162. "_name": "Buff2<SpriteComponent>",
  4163. "_objFlags": 0,
  4164. "node": {
  4165. "__id__": 132
  4166. },
  4167. "_enabled": true,
  4168. "_srcBlendFactor": 2,
  4169. "_dstBlendFactor": 4,
  4170. "_color": {
  4171. "__type__": "cc.Color",
  4172. "r": 255,
  4173. "g": 255,
  4174. "b": 255,
  4175. "a": 255
  4176. },
  4177. "_sharedMaterial": null,
  4178. "_spriteFrame": {
  4179. "__uuid__": "09677fec-d4fc-4808-b3be-9bd25ffb9f05@f9941"
  4180. },
  4181. "_type": 0,
  4182. "_fillType": 0,
  4183. "_sizeMode": 1,
  4184. "_fillCenter": {
  4185. "__type__": "cc.Vec2",
  4186. "x": 0,
  4187. "y": 0
  4188. },
  4189. "_fillStart": 0,
  4190. "_fillRange": 0,
  4191. "_isTrimmedMode": true,
  4192. "_useGrayscale": false,
  4193. "_atlas": null,
  4194. "_id": ""
  4195. },
  4196. {
  4197. "__type__": "cc.WidgetComponent",
  4198. "_name": "Buff2<WidgetComponent>",
  4199. "_objFlags": 0,
  4200. "node": {
  4201. "__id__": 132
  4202. },
  4203. "_enabled": true,
  4204. "_alignFlags": 9,
  4205. "_target": null,
  4206. "_left": 224.5,
  4207. "_right": 0,
  4208. "_top": 130.5,
  4209. "_bottom": 0,
  4210. "_horizontalCenter": 0,
  4211. "_verticalCenter": 0,
  4212. "_isAbsLeft": true,
  4213. "_isAbsRight": true,
  4214. "_isAbsTop": true,
  4215. "_isAbsBottom": true,
  4216. "_isAbsHorizontalCenter": true,
  4217. "_isAbsVerticalCenter": true,
  4218. "_originalWidth": 0,
  4219. "_originalHeight": 0,
  4220. "_alignMode": 2,
  4221. "_lockFlags": 0,
  4222. "_id": ""
  4223. },
  4224. {
  4225. "__type__": "cc.PrefabInfo",
  4226. "root": {
  4227. "__id__": 1
  4228. },
  4229. "asset": {
  4230. "__id__": 0
  4231. },
  4232. "fileId": "d2SDcSZP9FI5jk1PQUrb9/",
  4233. "sync": false,
  4234. "_synced": {
  4235. "default": false,
  4236. "serializable": false
  4237. }
  4238. },
  4239. {
  4240. "__type__": "cc.UITransformComponent",
  4241. "_name": "TopGroup<UITransformComponent>",
  4242. "_objFlags": 0,
  4243. "node": {
  4244. "__id__": 60
  4245. },
  4246. "_enabled": true,
  4247. "_priority": 0,
  4248. "_contentSize": {
  4249. "__type__": "cc.Size",
  4250. "width": 100,
  4251. "height": 100
  4252. },
  4253. "_anchorPoint": {
  4254. "__type__": "cc.Vec2",
  4255. "x": 0.5,
  4256. "y": 0.5
  4257. },
  4258. "_id": ""
  4259. },
  4260. {
  4261. "__type__": "cc.WidgetComponent",
  4262. "_name": "TopGroup<WidgetComponent>",
  4263. "_objFlags": 0,
  4264. "node": {
  4265. "__id__": 60
  4266. },
  4267. "_enabled": true,
  4268. "_alignFlags": 9,
  4269. "_target": null,
  4270. "_left": 0,
  4271. "_right": 0,
  4272. "_top": 17,
  4273. "_bottom": 0,
  4274. "_horizontalCenter": 0,
  4275. "_verticalCenter": 0,
  4276. "_isAbsLeft": true,
  4277. "_isAbsRight": true,
  4278. "_isAbsTop": true,
  4279. "_isAbsBottom": true,
  4280. "_isAbsHorizontalCenter": true,
  4281. "_isAbsVerticalCenter": true,
  4282. "_originalWidth": 0,
  4283. "_originalHeight": 0,
  4284. "_alignMode": 2,
  4285. "_lockFlags": 0,
  4286. "_id": ""
  4287. },
  4288. {
  4289. "__type__": "cc.PrefabInfo",
  4290. "root": {
  4291. "__id__": 1
  4292. },
  4293. "asset": {
  4294. "__id__": 0
  4295. },
  4296. "fileId": "6cmDqA8pJNMrayeCz25qR4",
  4297. "sync": false,
  4298. "_synced": {
  4299. "default": false,
  4300. "serializable": false
  4301. }
  4302. },
  4303. {
  4304. "__type__": "cc.Node",
  4305. "_name": "EnterGroup",
  4306. "_objFlags": 0,
  4307. "_parent": {
  4308. "__id__": 1
  4309. },
  4310. "_children": [
  4311. {
  4312. "__id__": 145
  4313. },
  4314. {
  4315. "__id__": 160
  4316. },
  4317. {
  4318. "__id__": 174
  4319. },
  4320. {
  4321. "__id__": 189
  4322. }
  4323. ],
  4324. "_active": true,
  4325. "_components": [
  4326. {
  4327. "__id__": 204
  4328. },
  4329. {
  4330. "__id__": 205
  4331. }
  4332. ],
  4333. "_prefab": {
  4334. "__id__": 206
  4335. },
  4336. "_lpos": {
  4337. "__type__": "cc.Vec3",
  4338. "x": 375,
  4339. "y": 1132.049,
  4340. "z": 0
  4341. },
  4342. "_lrot": {
  4343. "__type__": "cc.Quat",
  4344. "x": 0,
  4345. "y": 0,
  4346. "z": 0,
  4347. "w": 1
  4348. },
  4349. "_lscale": {
  4350. "__type__": "cc.Vec3",
  4351. "x": 1,
  4352. "y": 1,
  4353. "z": 1
  4354. },
  4355. "_layer": 1073741824,
  4356. "_euler": {
  4357. "__type__": "cc.Vec3",
  4358. "x": 0,
  4359. "y": 0,
  4360. "z": 0
  4361. },
  4362. "_id": ""
  4363. },
  4364. {
  4365. "__type__": "cc.Node",
  4366. "_name": "ButtonEnter1",
  4367. "_objFlags": 0,
  4368. "_parent": {
  4369. "__id__": 144
  4370. },
  4371. "_children": [
  4372. {
  4373. "__id__": 146
  4374. },
  4375. {
  4376. "__id__": 151
  4377. }
  4378. ],
  4379. "_active": true,
  4380. "_components": [
  4381. {
  4382. "__id__": 155
  4383. },
  4384. {
  4385. "__id__": 156
  4386. },
  4387. {
  4388. "__id__": 157
  4389. }
  4390. ],
  4391. "_prefab": {
  4392. "__id__": 159
  4393. },
  4394. "_lpos": {
  4395. "__type__": "cc.Vec3",
  4396. "x": 320,
  4397. "y": -314,
  4398. "z": 0
  4399. },
  4400. "_lrot": {
  4401. "__type__": "cc.Quat",
  4402. "x": 0,
  4403. "y": 0,
  4404. "z": 0,
  4405. "w": 1
  4406. },
  4407. "_lscale": {
  4408. "__type__": "cc.Vec3",
  4409. "x": 1,
  4410. "y": 1,
  4411. "z": 1
  4412. },
  4413. "_layer": 33554432,
  4414. "_euler": {
  4415. "__type__": "cc.Vec3",
  4416. "x": 0,
  4417. "y": 0,
  4418. "z": 0
  4419. },
  4420. "_id": ""
  4421. },
  4422. {
  4423. "__type__": "cc.Node",
  4424. "_name": "Label",
  4425. "_objFlags": 0,
  4426. "_parent": {
  4427. "__id__": 145
  4428. },
  4429. "_children": [],
  4430. "_active": true,
  4431. "_components": [
  4432. {
  4433. "__id__": 147
  4434. },
  4435. {
  4436. "__id__": 148
  4437. },
  4438. {
  4439. "__id__": 149
  4440. }
  4441. ],
  4442. "_prefab": {
  4443. "__id__": 150
  4444. },
  4445. "_lpos": {
  4446. "__type__": "cc.Vec3",
  4447. "x": -1.7530000000000001,
  4448. "y": -41.539999999999964,
  4449. "z": 0
  4450. },
  4451. "_lrot": {
  4452. "__type__": "cc.Quat",
  4453. "x": 0,
  4454. "y": 0,
  4455. "z": 0,
  4456. "w": 1
  4457. },
  4458. "_lscale": {
  4459. "__type__": "cc.Vec3",
  4460. "x": 1,
  4461. "y": 1,
  4462. "z": 1
  4463. },
  4464. "_layer": 33554432,
  4465. "_euler": {
  4466. "__type__": "cc.Vec3",
  4467. "x": 0,
  4468. "y": 0,
  4469. "z": 0
  4470. },
  4471. "_id": ""
  4472. },
  4473. {
  4474. "__type__": "cc.UITransformComponent",
  4475. "_name": "",
  4476. "_objFlags": 0,
  4477. "node": {
  4478. "__id__": 146
  4479. },
  4480. "_enabled": true,
  4481. "_priority": 0,
  4482. "_contentSize": {
  4483. "__type__": "cc.Size",
  4484. "width": 94,
  4485. "height": 50.4
  4486. },
  4487. "_anchorPoint": {
  4488. "__type__": "cc.Vec2",
  4489. "x": 0.5,
  4490. "y": 0.5
  4491. },
  4492. "_id": ""
  4493. },
  4494. {
  4495. "__type__": "cc.LabelComponent",
  4496. "_name": "",
  4497. "_objFlags": 0,
  4498. "node": {
  4499. "__id__": 146
  4500. },
  4501. "_enabled": true,
  4502. "_srcBlendFactor": 2,
  4503. "_dstBlendFactor": 4,
  4504. "_color": {
  4505. "__type__": "cc.Color",
  4506. "r": 255,
  4507. "g": 255,
  4508. "b": 255,
  4509. "a": 255
  4510. },
  4511. "_sharedMaterial": null,
  4512. "_useOriginalSize": true,
  4513. "_string": "自动合成",
  4514. "_horizontalAlign": 1,
  4515. "_verticalAlign": 1,
  4516. "_actualFontSize": 22,
  4517. "_fontSize": 22,
  4518. "_fontFamily": "Arial",
  4519. "_lineHeight": 40,
  4520. "_overflow": 0,
  4521. "_enableWrapText": true,
  4522. "_font": null,
  4523. "_isSystemFontUsed": true,
  4524. "_isItalic": false,
  4525. "_isBold": false,
  4526. "_isUnderline": false,
  4527. "_cacheMode": 0,
  4528. "_id": ""
  4529. },
  4530. {
  4531. "__type__": "cc.LabelOutlineComponent",
  4532. "_name": "",
  4533. "_objFlags": 0,
  4534. "node": {
  4535. "__id__": 146
  4536. },
  4537. "_enabled": true,
  4538. "_color": {
  4539. "__type__": "cc.Color",
  4540. "r": 24,
  4541. "g": 39,
  4542. "b": 98,
  4543. "a": 255
  4544. },
  4545. "_width": 3,
  4546. "_id": ""
  4547. },
  4548. {
  4549. "__type__": "cc.PrefabInfo",
  4550. "root": {
  4551. "__id__": 1
  4552. },
  4553. "asset": {
  4554. "__id__": 0
  4555. },
  4556. "fileId": "91XJ0UAM1I5LHfsB3osT8x",
  4557. "sync": false,
  4558. "_synced": {
  4559. "default": false,
  4560. "serializable": false
  4561. }
  4562. },
  4563. {
  4564. "__type__": "cc.Node",
  4565. "_name": "ImgHongdian",
  4566. "_objFlags": 0,
  4567. "_parent": {
  4568. "__id__": 145
  4569. },
  4570. "_children": [],
  4571. "_active": true,
  4572. "_components": [
  4573. {
  4574. "__id__": 152
  4575. },
  4576. {
  4577. "__id__": 153
  4578. }
  4579. ],
  4580. "_prefab": {
  4581. "__id__": 154
  4582. },
  4583. "_lpos": {
  4584. "__type__": "cc.Vec3",
  4585. "x": 40,
  4586. "y": 40,
  4587. "z": 0
  4588. },
  4589. "_lrot": {
  4590. "__type__": "cc.Quat",
  4591. "x": 0,
  4592. "y": 0,
  4593. "z": 0,
  4594. "w": 1
  4595. },
  4596. "_lscale": {
  4597. "__type__": "cc.Vec3",
  4598. "x": 1,
  4599. "y": 1,
  4600. "z": 1
  4601. },
  4602. "_layer": 33554432,
  4603. "_euler": {
  4604. "__type__": "cc.Vec3",
  4605. "x": 0,
  4606. "y": 0,
  4607. "z": 0
  4608. },
  4609. "_id": ""
  4610. },
  4611. {
  4612. "__type__": "cc.UITransformComponent",
  4613. "_name": "",
  4614. "_objFlags": 0,
  4615. "node": {
  4616. "__id__": 151
  4617. },
  4618. "_enabled": true,
  4619. "_priority": 0,
  4620. "_contentSize": {
  4621. "__type__": "cc.Size",
  4622. "width": 22,
  4623. "height": 22
  4624. },
  4625. "_anchorPoint": {
  4626. "__type__": "cc.Vec2",
  4627. "x": 0.5,
  4628. "y": 0.5
  4629. },
  4630. "_id": ""
  4631. },
  4632. {
  4633. "__type__": "cc.SpriteComponent",
  4634. "_name": "",
  4635. "_objFlags": 0,
  4636. "node": {
  4637. "__id__": 151
  4638. },
  4639. "_enabled": true,
  4640. "_srcBlendFactor": 2,
  4641. "_dstBlendFactor": 4,
  4642. "_color": {
  4643. "__type__": "cc.Color",
  4644. "r": 255,
  4645. "g": 255,
  4646. "b": 255,
  4647. "a": 255
  4648. },
  4649. "_sharedMaterial": null,
  4650. "_spriteFrame": {
  4651. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  4652. },
  4653. "_type": 0,
  4654. "_fillType": 0,
  4655. "_sizeMode": 1,
  4656. "_fillCenter": {
  4657. "__type__": "cc.Vec2",
  4658. "x": 0,
  4659. "y": 0
  4660. },
  4661. "_fillStart": 0,
  4662. "_fillRange": 0,
  4663. "_isTrimmedMode": true,
  4664. "_useGrayscale": false,
  4665. "_atlas": null,
  4666. "_id": ""
  4667. },
  4668. {
  4669. "__type__": "cc.PrefabInfo",
  4670. "root": {
  4671. "__id__": 1
  4672. },
  4673. "asset": {
  4674. "__id__": 0
  4675. },
  4676. "fileId": "56+cHcWcVK+JAoX09r1sWm",
  4677. "sync": false,
  4678. "_synced": {
  4679. "default": false,
  4680. "serializable": false
  4681. }
  4682. },
  4683. {
  4684. "__type__": "cc.UITransformComponent",
  4685. "_name": "",
  4686. "_objFlags": 0,
  4687. "node": {
  4688. "__id__": 145
  4689. },
  4690. "_enabled": true,
  4691. "_priority": 0,
  4692. "_contentSize": {
  4693. "__type__": "cc.Size",
  4694. "width": 77,
  4695. "height": 81
  4696. },
  4697. "_anchorPoint": {
  4698. "__type__": "cc.Vec2",
  4699. "x": 0.5,
  4700. "y": 0.5
  4701. },
  4702. "_id": ""
  4703. },
  4704. {
  4705. "__type__": "cc.SpriteComponent",
  4706. "_name": "",
  4707. "_objFlags": 0,
  4708. "node": {
  4709. "__id__": 145
  4710. },
  4711. "_enabled": true,
  4712. "_srcBlendFactor": 2,
  4713. "_dstBlendFactor": 4,
  4714. "_color": {
  4715. "__type__": "cc.Color",
  4716. "r": 255,
  4717. "g": 255,
  4718. "b": 255,
  4719. "a": 255
  4720. },
  4721. "_sharedMaterial": null,
  4722. "_spriteFrame": {
  4723. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4724. },
  4725. "_type": 1,
  4726. "_fillType": 0,
  4727. "_sizeMode": 1,
  4728. "_fillCenter": {
  4729. "__type__": "cc.Vec2",
  4730. "x": 0,
  4731. "y": 0
  4732. },
  4733. "_fillStart": 0,
  4734. "_fillRange": 0,
  4735. "_isTrimmedMode": true,
  4736. "_useGrayscale": false,
  4737. "_atlas": null,
  4738. "_id": ""
  4739. },
  4740. {
  4741. "__type__": "cc.ButtonComponent",
  4742. "_name": "",
  4743. "_objFlags": 0,
  4744. "node": {
  4745. "__id__": 145
  4746. },
  4747. "_enabled": true,
  4748. "clickEvents": [
  4749. {
  4750. "__id__": 158
  4751. }
  4752. ],
  4753. "_interactable": true,
  4754. "_transition": 2,
  4755. "_normalColor": {
  4756. "__type__": "cc.Color",
  4757. "r": 214,
  4758. "g": 214,
  4759. "b": 214,
  4760. "a": 255
  4761. },
  4762. "_hoverColor": {
  4763. "__type__": "cc.Color",
  4764. "r": 211,
  4765. "g": 211,
  4766. "b": 211,
  4767. "a": 255
  4768. },
  4769. "_pressColor": {
  4770. "__type__": "cc.Color",
  4771. "r": 255,
  4772. "g": 255,
  4773. "b": 255,
  4774. "a": 255
  4775. },
  4776. "_disabledColor": {
  4777. "__type__": "cc.Color",
  4778. "r": 124,
  4779. "g": 124,
  4780. "b": 124,
  4781. "a": 255
  4782. },
  4783. "_normalSprite": {
  4784. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4785. },
  4786. "_hoverSprite": {
  4787. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4788. },
  4789. "_pressedSprite": {
  4790. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4791. },
  4792. "_disabledSprite": {
  4793. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4794. },
  4795. "_duration": 0.1,
  4796. "_zoomScale": 1.2,
  4797. "_target": {
  4798. "__id__": 145
  4799. },
  4800. "_id": ""
  4801. },
  4802. {
  4803. "__type__": "cc.ClickEvent",
  4804. "target": {
  4805. "__id__": 1
  4806. },
  4807. "component": "",
  4808. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  4809. "handler": "AutoSynthesisButtonClickHandler",
  4810. "customEventData": ""
  4811. },
  4812. {
  4813. "__type__": "cc.PrefabInfo",
  4814. "root": {
  4815. "__id__": 1
  4816. },
  4817. "asset": {
  4818. "__id__": 0
  4819. },
  4820. "fileId": "46BFOGQTNK44YForSJlbhY",
  4821. "sync": false,
  4822. "_synced": {
  4823. "default": false,
  4824. "serializable": false
  4825. }
  4826. },
  4827. {
  4828. "__type__": "cc.Node",
  4829. "_name": "ButtonEnter2",
  4830. "_objFlags": 0,
  4831. "_parent": {
  4832. "__id__": 144
  4833. },
  4834. "_children": [
  4835. {
  4836. "__id__": 161
  4837. },
  4838. {
  4839. "__id__": 166
  4840. }
  4841. ],
  4842. "_active": false,
  4843. "_components": [
  4844. {
  4845. "__id__": 170
  4846. },
  4847. {
  4848. "__id__": 171
  4849. },
  4850. {
  4851. "__id__": 172
  4852. }
  4853. ],
  4854. "_prefab": {
  4855. "__id__": 173
  4856. },
  4857. "_lpos": {
  4858. "__type__": "cc.Vec3",
  4859. "x": -314,
  4860. "y": -173.619,
  4861. "z": 0
  4862. },
  4863. "_lrot": {
  4864. "__type__": "cc.Quat",
  4865. "x": 0,
  4866. "y": 0,
  4867. "z": 0,
  4868. "w": 1
  4869. },
  4870. "_lscale": {
  4871. "__type__": "cc.Vec3",
  4872. "x": 1,
  4873. "y": 1,
  4874. "z": 1
  4875. },
  4876. "_layer": 33554432,
  4877. "_euler": {
  4878. "__type__": "cc.Vec3",
  4879. "x": 0,
  4880. "y": 0,
  4881. "z": 0
  4882. },
  4883. "_id": ""
  4884. },
  4885. {
  4886. "__type__": "cc.Node",
  4887. "_name": "Label",
  4888. "_objFlags": 0,
  4889. "_parent": {
  4890. "__id__": 160
  4891. },
  4892. "_children": [],
  4893. "_active": true,
  4894. "_components": [
  4895. {
  4896. "__id__": 162
  4897. },
  4898. {
  4899. "__id__": 163
  4900. },
  4901. {
  4902. "__id__": 164
  4903. }
  4904. ],
  4905. "_prefab": {
  4906. "__id__": 165
  4907. },
  4908. "_lpos": {
  4909. "__type__": "cc.Vec3",
  4910. "x": -1.7530000000000001,
  4911. "y": -41.539999999999964,
  4912. "z": 0
  4913. },
  4914. "_lrot": {
  4915. "__type__": "cc.Quat",
  4916. "x": 0,
  4917. "y": 0,
  4918. "z": 0,
  4919. "w": 1
  4920. },
  4921. "_lscale": {
  4922. "__type__": "cc.Vec3",
  4923. "x": 1,
  4924. "y": 1,
  4925. "z": 1
  4926. },
  4927. "_layer": 33554432,
  4928. "_euler": {
  4929. "__type__": "cc.Vec3",
  4930. "x": 0,
  4931. "y": 0,
  4932. "z": 0
  4933. },
  4934. "_id": ""
  4935. },
  4936. {
  4937. "__type__": "cc.UITransformComponent",
  4938. "_name": "",
  4939. "_objFlags": 0,
  4940. "node": {
  4941. "__id__": 161
  4942. },
  4943. "_enabled": true,
  4944. "_priority": 0,
  4945. "_contentSize": {
  4946. "__type__": "cc.Size",
  4947. "width": 50,
  4948. "height": 50.4
  4949. },
  4950. "_anchorPoint": {
  4951. "__type__": "cc.Vec2",
  4952. "x": 0.5,
  4953. "y": 0.5
  4954. },
  4955. "_id": ""
  4956. },
  4957. {
  4958. "__type__": "cc.LabelComponent",
  4959. "_name": "",
  4960. "_objFlags": 0,
  4961. "node": {
  4962. "__id__": 161
  4963. },
  4964. "_enabled": true,
  4965. "_srcBlendFactor": 2,
  4966. "_dstBlendFactor": 4,
  4967. "_color": {
  4968. "__type__": "cc.Color",
  4969. "r": 255,
  4970. "g": 255,
  4971. "b": 255,
  4972. "a": 255
  4973. },
  4974. "_sharedMaterial": null,
  4975. "_useOriginalSize": true,
  4976. "_string": "签到",
  4977. "_horizontalAlign": 1,
  4978. "_verticalAlign": 1,
  4979. "_actualFontSize": 22,
  4980. "_fontSize": 22,
  4981. "_fontFamily": "Arial",
  4982. "_lineHeight": 40,
  4983. "_overflow": 0,
  4984. "_enableWrapText": true,
  4985. "_font": null,
  4986. "_isSystemFontUsed": true,
  4987. "_isItalic": false,
  4988. "_isBold": false,
  4989. "_isUnderline": false,
  4990. "_cacheMode": 0,
  4991. "_id": ""
  4992. },
  4993. {
  4994. "__type__": "cc.LabelOutlineComponent",
  4995. "_name": "",
  4996. "_objFlags": 0,
  4997. "node": {
  4998. "__id__": 161
  4999. },
  5000. "_enabled": true,
  5001. "_color": {
  5002. "__type__": "cc.Color",
  5003. "r": 24,
  5004. "g": 39,
  5005. "b": 98,
  5006. "a": 255
  5007. },
  5008. "_width": 3,
  5009. "_id": ""
  5010. },
  5011. {
  5012. "__type__": "cc.PrefabInfo",
  5013. "root": {
  5014. "__id__": 1
  5015. },
  5016. "asset": {
  5017. "__id__": 0
  5018. },
  5019. "fileId": "1eqquQ6wtMEImnhJxsAfpg",
  5020. "sync": false,
  5021. "_synced": {
  5022. "default": false,
  5023. "serializable": false
  5024. }
  5025. },
  5026. {
  5027. "__type__": "cc.Node",
  5028. "_name": "ImgHongdian",
  5029. "_objFlags": 0,
  5030. "_parent": {
  5031. "__id__": 160
  5032. },
  5033. "_children": [],
  5034. "_active": true,
  5035. "_components": [
  5036. {
  5037. "__id__": 167
  5038. },
  5039. {
  5040. "__id__": 168
  5041. }
  5042. ],
  5043. "_prefab": {
  5044. "__id__": 169
  5045. },
  5046. "_lpos": {
  5047. "__type__": "cc.Vec3",
  5048. "x": 40,
  5049. "y": 40,
  5050. "z": 0
  5051. },
  5052. "_lrot": {
  5053. "__type__": "cc.Quat",
  5054. "x": 0,
  5055. "y": 0,
  5056. "z": 0,
  5057. "w": 1
  5058. },
  5059. "_lscale": {
  5060. "__type__": "cc.Vec3",
  5061. "x": 1,
  5062. "y": 1,
  5063. "z": 1
  5064. },
  5065. "_layer": 33554432,
  5066. "_euler": {
  5067. "__type__": "cc.Vec3",
  5068. "x": 0,
  5069. "y": 0,
  5070. "z": 0
  5071. },
  5072. "_id": ""
  5073. },
  5074. {
  5075. "__type__": "cc.UITransformComponent",
  5076. "_name": "",
  5077. "_objFlags": 0,
  5078. "node": {
  5079. "__id__": 166
  5080. },
  5081. "_enabled": true,
  5082. "_priority": 0,
  5083. "_contentSize": {
  5084. "__type__": "cc.Size",
  5085. "width": 22,
  5086. "height": 22
  5087. },
  5088. "_anchorPoint": {
  5089. "__type__": "cc.Vec2",
  5090. "x": 0.5,
  5091. "y": 0.5
  5092. },
  5093. "_id": ""
  5094. },
  5095. {
  5096. "__type__": "cc.SpriteComponent",
  5097. "_name": "",
  5098. "_objFlags": 0,
  5099. "node": {
  5100. "__id__": 166
  5101. },
  5102. "_enabled": true,
  5103. "_srcBlendFactor": 2,
  5104. "_dstBlendFactor": 4,
  5105. "_color": {
  5106. "__type__": "cc.Color",
  5107. "r": 255,
  5108. "g": 255,
  5109. "b": 255,
  5110. "a": 255
  5111. },
  5112. "_sharedMaterial": null,
  5113. "_spriteFrame": {
  5114. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  5115. },
  5116. "_type": 0,
  5117. "_fillType": 0,
  5118. "_sizeMode": 1,
  5119. "_fillCenter": {
  5120. "__type__": "cc.Vec2",
  5121. "x": 0,
  5122. "y": 0
  5123. },
  5124. "_fillStart": 0,
  5125. "_fillRange": 0,
  5126. "_isTrimmedMode": true,
  5127. "_useGrayscale": false,
  5128. "_atlas": null,
  5129. "_id": ""
  5130. },
  5131. {
  5132. "__type__": "cc.PrefabInfo",
  5133. "root": {
  5134. "__id__": 1
  5135. },
  5136. "asset": {
  5137. "__id__": 0
  5138. },
  5139. "fileId": "c3r3ePKwxJ8ZE5w62z0iOz",
  5140. "sync": false,
  5141. "_synced": {
  5142. "default": false,
  5143. "serializable": false
  5144. }
  5145. },
  5146. {
  5147. "__type__": "cc.UITransformComponent",
  5148. "_name": "",
  5149. "_objFlags": 0,
  5150. "node": {
  5151. "__id__": 160
  5152. },
  5153. "_enabled": true,
  5154. "_priority": 0,
  5155. "_contentSize": {
  5156. "__type__": "cc.Size",
  5157. "width": 76,
  5158. "height": 82
  5159. },
  5160. "_anchorPoint": {
  5161. "__type__": "cc.Vec2",
  5162. "x": 0.5,
  5163. "y": 0.5
  5164. },
  5165. "_id": ""
  5166. },
  5167. {
  5168. "__type__": "cc.SpriteComponent",
  5169. "_name": "",
  5170. "_objFlags": 0,
  5171. "node": {
  5172. "__id__": 160
  5173. },
  5174. "_enabled": true,
  5175. "_srcBlendFactor": 2,
  5176. "_dstBlendFactor": 4,
  5177. "_color": {
  5178. "__type__": "cc.Color",
  5179. "r": 255,
  5180. "g": 255,
  5181. "b": 255,
  5182. "a": 255
  5183. },
  5184. "_sharedMaterial": null,
  5185. "_spriteFrame": {
  5186. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5187. },
  5188. "_type": 1,
  5189. "_fillType": 0,
  5190. "_sizeMode": 1,
  5191. "_fillCenter": {
  5192. "__type__": "cc.Vec2",
  5193. "x": 0,
  5194. "y": 0
  5195. },
  5196. "_fillStart": 0,
  5197. "_fillRange": 0,
  5198. "_isTrimmedMode": true,
  5199. "_useGrayscale": false,
  5200. "_atlas": null,
  5201. "_id": ""
  5202. },
  5203. {
  5204. "__type__": "cc.ButtonComponent",
  5205. "_name": "",
  5206. "_objFlags": 0,
  5207. "node": {
  5208. "__id__": 160
  5209. },
  5210. "_enabled": true,
  5211. "clickEvents": [],
  5212. "_interactable": true,
  5213. "_transition": 2,
  5214. "_normalColor": {
  5215. "__type__": "cc.Color",
  5216. "r": 214,
  5217. "g": 214,
  5218. "b": 214,
  5219. "a": 255
  5220. },
  5221. "_hoverColor": {
  5222. "__type__": "cc.Color",
  5223. "r": 211,
  5224. "g": 211,
  5225. "b": 211,
  5226. "a": 255
  5227. },
  5228. "_pressColor": {
  5229. "__type__": "cc.Color",
  5230. "r": 255,
  5231. "g": 255,
  5232. "b": 255,
  5233. "a": 255
  5234. },
  5235. "_disabledColor": {
  5236. "__type__": "cc.Color",
  5237. "r": 124,
  5238. "g": 124,
  5239. "b": 124,
  5240. "a": 255
  5241. },
  5242. "_normalSprite": {
  5243. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5244. },
  5245. "_hoverSprite": {
  5246. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5247. },
  5248. "_pressedSprite": {
  5249. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5250. },
  5251. "_disabledSprite": {
  5252. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5253. },
  5254. "_duration": 0.1,
  5255. "_zoomScale": 1.2,
  5256. "_target": {
  5257. "__id__": 160
  5258. },
  5259. "_id": ""
  5260. },
  5261. {
  5262. "__type__": "cc.PrefabInfo",
  5263. "root": {
  5264. "__id__": 1
  5265. },
  5266. "asset": {
  5267. "__id__": 0
  5268. },
  5269. "fileId": "acOI8drglP4K725jPKXq+f",
  5270. "sync": false,
  5271. "_synced": {
  5272. "default": false,
  5273. "serializable": false
  5274. }
  5275. },
  5276. {
  5277. "__type__": "cc.Node",
  5278. "_name": "ButtonEnter3",
  5279. "_objFlags": 0,
  5280. "_parent": {
  5281. "__id__": 144
  5282. },
  5283. "_children": [
  5284. {
  5285. "__id__": 175
  5286. },
  5287. {
  5288. "__id__": 180
  5289. }
  5290. ],
  5291. "_active": true,
  5292. "_components": [
  5293. {
  5294. "__id__": 184
  5295. },
  5296. {
  5297. "__id__": 185
  5298. },
  5299. {
  5300. "__id__": 186
  5301. }
  5302. ],
  5303. "_prefab": {
  5304. "__id__": 188
  5305. },
  5306. "_lpos": {
  5307. "__type__": "cc.Vec3",
  5308. "x": -314,
  5309. "y": -285.619,
  5310. "z": 0
  5311. },
  5312. "_lrot": {
  5313. "__type__": "cc.Quat",
  5314. "x": 0,
  5315. "y": 0,
  5316. "z": 0,
  5317. "w": 1
  5318. },
  5319. "_lscale": {
  5320. "__type__": "cc.Vec3",
  5321. "x": 1,
  5322. "y": 1,
  5323. "z": 1
  5324. },
  5325. "_layer": 33554432,
  5326. "_euler": {
  5327. "__type__": "cc.Vec3",
  5328. "x": 0,
  5329. "y": 0,
  5330. "z": 0
  5331. },
  5332. "_id": ""
  5333. },
  5334. {
  5335. "__type__": "cc.Node",
  5336. "_name": "Label",
  5337. "_objFlags": 0,
  5338. "_parent": {
  5339. "__id__": 174
  5340. },
  5341. "_children": [],
  5342. "_active": true,
  5343. "_components": [
  5344. {
  5345. "__id__": 176
  5346. },
  5347. {
  5348. "__id__": 177
  5349. },
  5350. {
  5351. "__id__": 178
  5352. }
  5353. ],
  5354. "_prefab": {
  5355. "__id__": 179
  5356. },
  5357. "_lpos": {
  5358. "__type__": "cc.Vec3",
  5359. "x": -1.7530000000000001,
  5360. "y": -41.539999999999964,
  5361. "z": 0
  5362. },
  5363. "_lrot": {
  5364. "__type__": "cc.Quat",
  5365. "x": 0,
  5366. "y": 0,
  5367. "z": 0,
  5368. "w": 1
  5369. },
  5370. "_lscale": {
  5371. "__type__": "cc.Vec3",
  5372. "x": 1,
  5373. "y": 1,
  5374. "z": 1
  5375. },
  5376. "_layer": 33554432,
  5377. "_euler": {
  5378. "__type__": "cc.Vec3",
  5379. "x": 0,
  5380. "y": 0,
  5381. "z": 0
  5382. },
  5383. "_id": ""
  5384. },
  5385. {
  5386. "__type__": "cc.UITransformComponent",
  5387. "_name": "",
  5388. "_objFlags": 0,
  5389. "node": {
  5390. "__id__": 175
  5391. },
  5392. "_enabled": true,
  5393. "_priority": 0,
  5394. "_contentSize": {
  5395. "__type__": "cc.Size",
  5396. "width": 94,
  5397. "height": 50.4
  5398. },
  5399. "_anchorPoint": {
  5400. "__type__": "cc.Vec2",
  5401. "x": 0.5,
  5402. "y": 0.5
  5403. },
  5404. "_id": ""
  5405. },
  5406. {
  5407. "__type__": "cc.LabelComponent",
  5408. "_name": "",
  5409. "_objFlags": 0,
  5410. "node": {
  5411. "__id__": 175
  5412. },
  5413. "_enabled": true,
  5414. "_srcBlendFactor": 2,
  5415. "_dstBlendFactor": 4,
  5416. "_color": {
  5417. "__type__": "cc.Color",
  5418. "r": 255,
  5419. "g": 255,
  5420. "b": 255,
  5421. "a": 255
  5422. },
  5423. "_sharedMaterial": null,
  5424. "_useOriginalSize": true,
  5425. "_string": "免费金币",
  5426. "_horizontalAlign": 1,
  5427. "_verticalAlign": 1,
  5428. "_actualFontSize": 22,
  5429. "_fontSize": 22,
  5430. "_fontFamily": "Arial",
  5431. "_lineHeight": 40,
  5432. "_overflow": 0,
  5433. "_enableWrapText": true,
  5434. "_font": null,
  5435. "_isSystemFontUsed": true,
  5436. "_isItalic": false,
  5437. "_isBold": false,
  5438. "_isUnderline": false,
  5439. "_cacheMode": 0,
  5440. "_id": ""
  5441. },
  5442. {
  5443. "__type__": "cc.LabelOutlineComponent",
  5444. "_name": "",
  5445. "_objFlags": 0,
  5446. "node": {
  5447. "__id__": 175
  5448. },
  5449. "_enabled": true,
  5450. "_color": {
  5451. "__type__": "cc.Color",
  5452. "r": 24,
  5453. "g": 39,
  5454. "b": 98,
  5455. "a": 255
  5456. },
  5457. "_width": 3,
  5458. "_id": ""
  5459. },
  5460. {
  5461. "__type__": "cc.PrefabInfo",
  5462. "root": {
  5463. "__id__": 1
  5464. },
  5465. "asset": {
  5466. "__id__": 0
  5467. },
  5468. "fileId": "3bQVF7bbRCTLOY26i/7Uwh",
  5469. "sync": false,
  5470. "_synced": {
  5471. "default": false,
  5472. "serializable": false
  5473. }
  5474. },
  5475. {
  5476. "__type__": "cc.Node",
  5477. "_name": "ImgHongdian",
  5478. "_objFlags": 0,
  5479. "_parent": {
  5480. "__id__": 174
  5481. },
  5482. "_children": [],
  5483. "_active": true,
  5484. "_components": [
  5485. {
  5486. "__id__": 181
  5487. },
  5488. {
  5489. "__id__": 182
  5490. }
  5491. ],
  5492. "_prefab": {
  5493. "__id__": 183
  5494. },
  5495. "_lpos": {
  5496. "__type__": "cc.Vec3",
  5497. "x": 40,
  5498. "y": 40,
  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. "_layer": 33554432,
  5515. "_euler": {
  5516. "__type__": "cc.Vec3",
  5517. "x": 0,
  5518. "y": 0,
  5519. "z": 0
  5520. },
  5521. "_id": ""
  5522. },
  5523. {
  5524. "__type__": "cc.UITransformComponent",
  5525. "_name": "",
  5526. "_objFlags": 0,
  5527. "node": {
  5528. "__id__": 180
  5529. },
  5530. "_enabled": true,
  5531. "_priority": 0,
  5532. "_contentSize": {
  5533. "__type__": "cc.Size",
  5534. "width": 22,
  5535. "height": 22
  5536. },
  5537. "_anchorPoint": {
  5538. "__type__": "cc.Vec2",
  5539. "x": 0.5,
  5540. "y": 0.5
  5541. },
  5542. "_id": ""
  5543. },
  5544. {
  5545. "__type__": "cc.SpriteComponent",
  5546. "_name": "",
  5547. "_objFlags": 0,
  5548. "node": {
  5549. "__id__": 180
  5550. },
  5551. "_enabled": true,
  5552. "_srcBlendFactor": 2,
  5553. "_dstBlendFactor": 4,
  5554. "_color": {
  5555. "__type__": "cc.Color",
  5556. "r": 255,
  5557. "g": 255,
  5558. "b": 255,
  5559. "a": 255
  5560. },
  5561. "_sharedMaterial": null,
  5562. "_spriteFrame": {
  5563. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  5564. },
  5565. "_type": 0,
  5566. "_fillType": 0,
  5567. "_sizeMode": 1,
  5568. "_fillCenter": {
  5569. "__type__": "cc.Vec2",
  5570. "x": 0,
  5571. "y": 0
  5572. },
  5573. "_fillStart": 0,
  5574. "_fillRange": 0,
  5575. "_isTrimmedMode": true,
  5576. "_useGrayscale": false,
  5577. "_atlas": null,
  5578. "_id": ""
  5579. },
  5580. {
  5581. "__type__": "cc.PrefabInfo",
  5582. "root": {
  5583. "__id__": 1
  5584. },
  5585. "asset": {
  5586. "__id__": 0
  5587. },
  5588. "fileId": "a4UCNHz1hBaYUohBwan8Dv",
  5589. "sync": false,
  5590. "_synced": {
  5591. "default": false,
  5592. "serializable": false
  5593. }
  5594. },
  5595. {
  5596. "__type__": "cc.UITransformComponent",
  5597. "_name": "",
  5598. "_objFlags": 0,
  5599. "node": {
  5600. "__id__": 174
  5601. },
  5602. "_enabled": true,
  5603. "_priority": 0,
  5604. "_contentSize": {
  5605. "__type__": "cc.Size",
  5606. "width": 77,
  5607. "height": 63
  5608. },
  5609. "_anchorPoint": {
  5610. "__type__": "cc.Vec2",
  5611. "x": 0.5,
  5612. "y": 0.5
  5613. },
  5614. "_id": ""
  5615. },
  5616. {
  5617. "__type__": "cc.SpriteComponent",
  5618. "_name": "",
  5619. "_objFlags": 0,
  5620. "node": {
  5621. "__id__": 174
  5622. },
  5623. "_enabled": true,
  5624. "_srcBlendFactor": 2,
  5625. "_dstBlendFactor": 4,
  5626. "_color": {
  5627. "__type__": "cc.Color",
  5628. "r": 255,
  5629. "g": 255,
  5630. "b": 255,
  5631. "a": 255
  5632. },
  5633. "_sharedMaterial": null,
  5634. "_spriteFrame": {
  5635. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5636. },
  5637. "_type": 1,
  5638. "_fillType": 0,
  5639. "_sizeMode": 1,
  5640. "_fillCenter": {
  5641. "__type__": "cc.Vec2",
  5642. "x": 0,
  5643. "y": 0
  5644. },
  5645. "_fillStart": 0,
  5646. "_fillRange": 0,
  5647. "_isTrimmedMode": true,
  5648. "_useGrayscale": false,
  5649. "_atlas": null,
  5650. "_id": ""
  5651. },
  5652. {
  5653. "__type__": "cc.ButtonComponent",
  5654. "_name": "",
  5655. "_objFlags": 0,
  5656. "node": {
  5657. "__id__": 174
  5658. },
  5659. "_enabled": true,
  5660. "clickEvents": [
  5661. {
  5662. "__id__": 187
  5663. }
  5664. ],
  5665. "_interactable": true,
  5666. "_transition": 2,
  5667. "_normalColor": {
  5668. "__type__": "cc.Color",
  5669. "r": 214,
  5670. "g": 214,
  5671. "b": 214,
  5672. "a": 255
  5673. },
  5674. "_hoverColor": {
  5675. "__type__": "cc.Color",
  5676. "r": 211,
  5677. "g": 211,
  5678. "b": 211,
  5679. "a": 255
  5680. },
  5681. "_pressColor": {
  5682. "__type__": "cc.Color",
  5683. "r": 255,
  5684. "g": 255,
  5685. "b": 255,
  5686. "a": 255
  5687. },
  5688. "_disabledColor": {
  5689. "__type__": "cc.Color",
  5690. "r": 124,
  5691. "g": 124,
  5692. "b": 124,
  5693. "a": 255
  5694. },
  5695. "_normalSprite": {
  5696. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5697. },
  5698. "_hoverSprite": {
  5699. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5700. },
  5701. "_pressedSprite": {
  5702. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5703. },
  5704. "_disabledSprite": {
  5705. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5706. },
  5707. "_duration": 0.1,
  5708. "_zoomScale": 1.2,
  5709. "_target": {
  5710. "__id__": 174
  5711. },
  5712. "_id": ""
  5713. },
  5714. {
  5715. "__type__": "cc.ClickEvent",
  5716. "target": {
  5717. "__id__": 1
  5718. },
  5719. "component": "",
  5720. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  5721. "handler": "getAdGold",
  5722. "customEventData": ""
  5723. },
  5724. {
  5725. "__type__": "cc.PrefabInfo",
  5726. "root": {
  5727. "__id__": 1
  5728. },
  5729. "asset": {
  5730. "__id__": 0
  5731. },
  5732. "fileId": "7aq+nnJ8ZNPp7eEp20+xir",
  5733. "sync": false,
  5734. "_synced": {
  5735. "default": false,
  5736. "serializable": false
  5737. }
  5738. },
  5739. {
  5740. "__type__": "cc.Node",
  5741. "_name": "ButtonEnter4",
  5742. "_objFlags": 0,
  5743. "_parent": {
  5744. "__id__": 144
  5745. },
  5746. "_children": [
  5747. {
  5748. "__id__": 190
  5749. },
  5750. {
  5751. "__id__": 195
  5752. }
  5753. ],
  5754. "_active": true,
  5755. "_components": [
  5756. {
  5757. "__id__": 199
  5758. },
  5759. {
  5760. "__id__": 200
  5761. },
  5762. {
  5763. "__id__": 201
  5764. }
  5765. ],
  5766. "_prefab": {
  5767. "__id__": 203
  5768. },
  5769. "_lpos": {
  5770. "__type__": "cc.Vec3",
  5771. "x": -314,
  5772. "y": -56,
  5773. "z": 0
  5774. },
  5775. "_lrot": {
  5776. "__type__": "cc.Quat",
  5777. "x": 0,
  5778. "y": 0,
  5779. "z": 0,
  5780. "w": 1
  5781. },
  5782. "_lscale": {
  5783. "__type__": "cc.Vec3",
  5784. "x": 1,
  5785. "y": 1,
  5786. "z": 1
  5787. },
  5788. "_layer": 33554432,
  5789. "_euler": {
  5790. "__type__": "cc.Vec3",
  5791. "x": 0,
  5792. "y": 0,
  5793. "z": 0
  5794. },
  5795. "_id": ""
  5796. },
  5797. {
  5798. "__type__": "cc.Node",
  5799. "_name": "Label",
  5800. "_objFlags": 0,
  5801. "_parent": {
  5802. "__id__": 189
  5803. },
  5804. "_children": [],
  5805. "_active": true,
  5806. "_components": [
  5807. {
  5808. "__id__": 191
  5809. },
  5810. {
  5811. "__id__": 192
  5812. },
  5813. {
  5814. "__id__": 193
  5815. }
  5816. ],
  5817. "_prefab": {
  5818. "__id__": 194
  5819. },
  5820. "_lpos": {
  5821. "__type__": "cc.Vec3",
  5822. "x": -2,
  5823. "y": -42,
  5824. "z": 0
  5825. },
  5826. "_lrot": {
  5827. "__type__": "cc.Quat",
  5828. "x": 0,
  5829. "y": 0,
  5830. "z": 0,
  5831. "w": 1
  5832. },
  5833. "_lscale": {
  5834. "__type__": "cc.Vec3",
  5835. "x": 1,
  5836. "y": 1,
  5837. "z": 1
  5838. },
  5839. "_layer": 33554432,
  5840. "_euler": {
  5841. "__type__": "cc.Vec3",
  5842. "x": 0,
  5843. "y": 0,
  5844. "z": 0
  5845. },
  5846. "_id": ""
  5847. },
  5848. {
  5849. "__type__": "cc.UITransformComponent",
  5850. "_name": "",
  5851. "_objFlags": 0,
  5852. "node": {
  5853. "__id__": 190
  5854. },
  5855. "_enabled": true,
  5856. "_priority": 0,
  5857. "_contentSize": {
  5858. "__type__": "cc.Size",
  5859. "width": 94,
  5860. "height": 50.4
  5861. },
  5862. "_anchorPoint": {
  5863. "__type__": "cc.Vec2",
  5864. "x": 0.5,
  5865. "y": 0.5
  5866. },
  5867. "_id": ""
  5868. },
  5869. {
  5870. "__type__": "cc.LabelComponent",
  5871. "_name": "",
  5872. "_objFlags": 0,
  5873. "node": {
  5874. "__id__": 190
  5875. },
  5876. "_enabled": true,
  5877. "_srcBlendFactor": 2,
  5878. "_dstBlendFactor": 4,
  5879. "_color": {
  5880. "__type__": "cc.Color",
  5881. "r": 255,
  5882. "g": 255,
  5883. "b": 255,
  5884. "a": 255
  5885. },
  5886. "_sharedMaterial": null,
  5887. "_useOriginalSize": true,
  5888. "_string": "金币兑换",
  5889. "_horizontalAlign": 1,
  5890. "_verticalAlign": 1,
  5891. "_actualFontSize": 22,
  5892. "_fontSize": 22,
  5893. "_fontFamily": "Arial",
  5894. "_lineHeight": 40,
  5895. "_overflow": 0,
  5896. "_enableWrapText": true,
  5897. "_font": null,
  5898. "_isSystemFontUsed": true,
  5899. "_isItalic": false,
  5900. "_isBold": false,
  5901. "_isUnderline": false,
  5902. "_cacheMode": 0,
  5903. "_id": ""
  5904. },
  5905. {
  5906. "__type__": "cc.LabelOutlineComponent",
  5907. "_name": "",
  5908. "_objFlags": 0,
  5909. "node": {
  5910. "__id__": 190
  5911. },
  5912. "_enabled": true,
  5913. "_color": {
  5914. "__type__": "cc.Color",
  5915. "r": 24,
  5916. "g": 39,
  5917. "b": 98,
  5918. "a": 255
  5919. },
  5920. "_width": 3,
  5921. "_id": ""
  5922. },
  5923. {
  5924. "__type__": "cc.PrefabInfo",
  5925. "root": {
  5926. "__id__": 1
  5927. },
  5928. "asset": {
  5929. "__id__": 0
  5930. },
  5931. "fileId": "c12ArxKwhDYL7/QwEPoKv2",
  5932. "sync": false,
  5933. "_synced": {
  5934. "default": false,
  5935. "serializable": false
  5936. }
  5937. },
  5938. {
  5939. "__type__": "cc.Node",
  5940. "_name": "ImgHongdian",
  5941. "_objFlags": 0,
  5942. "_parent": {
  5943. "__id__": 189
  5944. },
  5945. "_children": [],
  5946. "_active": true,
  5947. "_components": [
  5948. {
  5949. "__id__": 196
  5950. },
  5951. {
  5952. "__id__": 197
  5953. }
  5954. ],
  5955. "_prefab": {
  5956. "__id__": 198
  5957. },
  5958. "_lpos": {
  5959. "__type__": "cc.Vec3",
  5960. "x": 40,
  5961. "y": 40,
  5962. "z": 0
  5963. },
  5964. "_lrot": {
  5965. "__type__": "cc.Quat",
  5966. "x": 0,
  5967. "y": 0,
  5968. "z": 0,
  5969. "w": 1
  5970. },
  5971. "_lscale": {
  5972. "__type__": "cc.Vec3",
  5973. "x": 1,
  5974. "y": 1,
  5975. "z": 1
  5976. },
  5977. "_layer": 33554432,
  5978. "_euler": {
  5979. "__type__": "cc.Vec3",
  5980. "x": 0,
  5981. "y": 0,
  5982. "z": 0
  5983. },
  5984. "_id": ""
  5985. },
  5986. {
  5987. "__type__": "cc.UITransformComponent",
  5988. "_name": "",
  5989. "_objFlags": 0,
  5990. "node": {
  5991. "__id__": 195
  5992. },
  5993. "_enabled": true,
  5994. "_priority": 0,
  5995. "_contentSize": {
  5996. "__type__": "cc.Size",
  5997. "width": 22,
  5998. "height": 22
  5999. },
  6000. "_anchorPoint": {
  6001. "__type__": "cc.Vec2",
  6002. "x": 0.5,
  6003. "y": 0.5
  6004. },
  6005. "_id": ""
  6006. },
  6007. {
  6008. "__type__": "cc.SpriteComponent",
  6009. "_name": "",
  6010. "_objFlags": 0,
  6011. "node": {
  6012. "__id__": 195
  6013. },
  6014. "_enabled": true,
  6015. "_srcBlendFactor": 2,
  6016. "_dstBlendFactor": 4,
  6017. "_color": {
  6018. "__type__": "cc.Color",
  6019. "r": 255,
  6020. "g": 255,
  6021. "b": 255,
  6022. "a": 255
  6023. },
  6024. "_sharedMaterial": null,
  6025. "_spriteFrame": {
  6026. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  6027. },
  6028. "_type": 0,
  6029. "_fillType": 0,
  6030. "_sizeMode": 1,
  6031. "_fillCenter": {
  6032. "__type__": "cc.Vec2",
  6033. "x": 0,
  6034. "y": 0
  6035. },
  6036. "_fillStart": 0,
  6037. "_fillRange": 0,
  6038. "_isTrimmedMode": true,
  6039. "_useGrayscale": false,
  6040. "_atlas": null,
  6041. "_id": ""
  6042. },
  6043. {
  6044. "__type__": "cc.PrefabInfo",
  6045. "root": {
  6046. "__id__": 1
  6047. },
  6048. "asset": {
  6049. "__id__": 0
  6050. },
  6051. "fileId": "04WhYmwMRKX6L/+IO9Z3Ck",
  6052. "sync": false,
  6053. "_synced": {
  6054. "default": false,
  6055. "serializable": false
  6056. }
  6057. },
  6058. {
  6059. "__type__": "cc.UITransformComponent",
  6060. "_name": "",
  6061. "_objFlags": 0,
  6062. "node": {
  6063. "__id__": 189
  6064. },
  6065. "_enabled": true,
  6066. "_priority": 0,
  6067. "_contentSize": {
  6068. "__type__": "cc.Size",
  6069. "width": 82,
  6070. "height": 78
  6071. },
  6072. "_anchorPoint": {
  6073. "__type__": "cc.Vec2",
  6074. "x": 0.5,
  6075. "y": 0.5
  6076. },
  6077. "_id": ""
  6078. },
  6079. {
  6080. "__type__": "cc.SpriteComponent",
  6081. "_name": "",
  6082. "_objFlags": 0,
  6083. "node": {
  6084. "__id__": 189
  6085. },
  6086. "_enabled": true,
  6087. "_srcBlendFactor": 2,
  6088. "_dstBlendFactor": 4,
  6089. "_color": {
  6090. "__type__": "cc.Color",
  6091. "r": 255,
  6092. "g": 255,
  6093. "b": 255,
  6094. "a": 255
  6095. },
  6096. "_sharedMaterial": null,
  6097. "_spriteFrame": {
  6098. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6099. },
  6100. "_type": 1,
  6101. "_fillType": 0,
  6102. "_sizeMode": 1,
  6103. "_fillCenter": {
  6104. "__type__": "cc.Vec2",
  6105. "x": 0,
  6106. "y": 0
  6107. },
  6108. "_fillStart": 0,
  6109. "_fillRange": 0,
  6110. "_isTrimmedMode": true,
  6111. "_useGrayscale": false,
  6112. "_atlas": null,
  6113. "_id": ""
  6114. },
  6115. {
  6116. "__type__": "cc.ButtonComponent",
  6117. "_name": "",
  6118. "_objFlags": 0,
  6119. "node": {
  6120. "__id__": 189
  6121. },
  6122. "_enabled": true,
  6123. "clickEvents": [
  6124. {
  6125. "__id__": 202
  6126. }
  6127. ],
  6128. "_interactable": true,
  6129. "_transition": 2,
  6130. "_normalColor": {
  6131. "__type__": "cc.Color",
  6132. "r": 214,
  6133. "g": 214,
  6134. "b": 214,
  6135. "a": 255
  6136. },
  6137. "_hoverColor": {
  6138. "__type__": "cc.Color",
  6139. "r": 211,
  6140. "g": 211,
  6141. "b": 211,
  6142. "a": 255
  6143. },
  6144. "_pressColor": {
  6145. "__type__": "cc.Color",
  6146. "r": 255,
  6147. "g": 255,
  6148. "b": 255,
  6149. "a": 255
  6150. },
  6151. "_disabledColor": {
  6152. "__type__": "cc.Color",
  6153. "r": 124,
  6154. "g": 124,
  6155. "b": 124,
  6156. "a": 255
  6157. },
  6158. "_normalSprite": {
  6159. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6160. },
  6161. "_hoverSprite": {
  6162. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6163. },
  6164. "_pressedSprite": {
  6165. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6166. },
  6167. "_disabledSprite": {
  6168. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6169. },
  6170. "_duration": 0.1,
  6171. "_zoomScale": 1.2,
  6172. "_target": {
  6173. "__id__": 189
  6174. },
  6175. "_id": ""
  6176. },
  6177. {
  6178. "__type__": "cc.ClickEvent",
  6179. "target": {
  6180. "__id__": 1
  6181. },
  6182. "component": "",
  6183. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  6184. "handler": "ExchangeButtonClickHandler",
  6185. "customEventData": ""
  6186. },
  6187. {
  6188. "__type__": "cc.PrefabInfo",
  6189. "root": {
  6190. "__id__": 1
  6191. },
  6192. "asset": {
  6193. "__id__": 0
  6194. },
  6195. "fileId": "ec6OKimpNE6bksOCvYPlHH",
  6196. "sync": false,
  6197. "_synced": {
  6198. "default": false,
  6199. "serializable": false
  6200. }
  6201. },
  6202. {
  6203. "__type__": "cc.UITransformComponent",
  6204. "_name": "EnterGroup<UITransformComponent>",
  6205. "_objFlags": 0,
  6206. "node": {
  6207. "__id__": 144
  6208. },
  6209. "_enabled": true,
  6210. "_priority": 0,
  6211. "_contentSize": {
  6212. "__type__": "cc.Size",
  6213. "width": 750,
  6214. "height": 112
  6215. },
  6216. "_anchorPoint": {
  6217. "__type__": "cc.Vec2",
  6218. "x": 0.5,
  6219. "y": 0.5
  6220. },
  6221. "_id": ""
  6222. },
  6223. {
  6224. "__type__": "cc.WidgetComponent",
  6225. "_name": "EnterGroup<WidgetComponent>",
  6226. "_objFlags": 0,
  6227. "node": {
  6228. "__id__": 144
  6229. },
  6230. "_enabled": true,
  6231. "_alignFlags": 41,
  6232. "_target": null,
  6233. "_left": 0,
  6234. "_right": 0,
  6235. "_top": 145.95100000000002,
  6236. "_bottom": 0,
  6237. "_horizontalCenter": 0,
  6238. "_verticalCenter": 0,
  6239. "_isAbsLeft": true,
  6240. "_isAbsRight": true,
  6241. "_isAbsTop": true,
  6242. "_isAbsBottom": true,
  6243. "_isAbsHorizontalCenter": true,
  6244. "_isAbsVerticalCenter": true,
  6245. "_originalWidth": 100,
  6246. "_originalHeight": 0,
  6247. "_alignMode": 2,
  6248. "_lockFlags": 0,
  6249. "_id": ""
  6250. },
  6251. {
  6252. "__type__": "cc.PrefabInfo",
  6253. "root": {
  6254. "__id__": 1
  6255. },
  6256. "asset": {
  6257. "__id__": 0
  6258. },
  6259. "fileId": "02UIbCL4lONI9txsGJYgJk",
  6260. "sync": false,
  6261. "_synced": {
  6262. "default": false,
  6263. "serializable": false
  6264. }
  6265. },
  6266. {
  6267. "__type__": "cc.Node",
  6268. "_name": "BottomGroup",
  6269. "_objFlags": 0,
  6270. "_parent": {
  6271. "__id__": 1
  6272. },
  6273. "_children": [
  6274. {
  6275. "__id__": 208
  6276. },
  6277. {
  6278. "__id__": 213
  6279. },
  6280. {
  6281. "__id__": 226
  6282. },
  6283. {
  6284. "__id__": 240
  6285. }
  6286. ],
  6287. "_active": true,
  6288. "_components": [
  6289. {
  6290. "__id__": 257
  6291. }
  6292. ],
  6293. "_prefab": {
  6294. "__id__": 258
  6295. },
  6296. "_lpos": {
  6297. "__type__": "cc.Vec3",
  6298. "x": 366.622,
  6299. "y": 700,
  6300. "z": 0
  6301. },
  6302. "_lrot": {
  6303. "__type__": "cc.Quat",
  6304. "x": 0,
  6305. "y": 0,
  6306. "z": 0,
  6307. "w": 1
  6308. },
  6309. "_lscale": {
  6310. "__type__": "cc.Vec3",
  6311. "x": 1,
  6312. "y": 1,
  6313. "z": 1
  6314. },
  6315. "_layer": 1073741824,
  6316. "_euler": {
  6317. "__type__": "cc.Vec3",
  6318. "x": 0,
  6319. "y": 0,
  6320. "z": 0
  6321. },
  6322. "_id": ""
  6323. },
  6324. {
  6325. "__type__": "cc.Node",
  6326. "_name": "ButtonSellGun",
  6327. "_objFlags": 0,
  6328. "_parent": {
  6329. "__id__": 207
  6330. },
  6331. "_children": [],
  6332. "_active": true,
  6333. "_components": [
  6334. {
  6335. "__id__": 209
  6336. },
  6337. {
  6338. "__id__": 210
  6339. },
  6340. {
  6341. "__id__": 211
  6342. }
  6343. ],
  6344. "_prefab": {
  6345. "__id__": 212
  6346. },
  6347. "_lpos": {
  6348. "__type__": "cc.Vec3",
  6349. "x": -309.912,
  6350. "y": -394.599,
  6351. "z": 0
  6352. },
  6353. "_lrot": {
  6354. "__type__": "cc.Quat",
  6355. "x": 0,
  6356. "y": 0,
  6357. "z": 0,
  6358. "w": 1
  6359. },
  6360. "_lscale": {
  6361. "__type__": "cc.Vec3",
  6362. "x": 1,
  6363. "y": 1,
  6364. "z": 1
  6365. },
  6366. "_layer": 33554432,
  6367. "_euler": {
  6368. "__type__": "cc.Vec3",
  6369. "x": 0,
  6370. "y": 0,
  6371. "z": 0
  6372. },
  6373. "_id": ""
  6374. },
  6375. {
  6376. "__type__": "cc.UITransformComponent",
  6377. "_name": "",
  6378. "_objFlags": 0,
  6379. "node": {
  6380. "__id__": 208
  6381. },
  6382. "_enabled": true,
  6383. "_priority": 0,
  6384. "_contentSize": {
  6385. "__type__": "cc.Size",
  6386. "width": 68,
  6387. "height": 100
  6388. },
  6389. "_anchorPoint": {
  6390. "__type__": "cc.Vec2",
  6391. "x": 0.5,
  6392. "y": 0.5
  6393. },
  6394. "_id": ""
  6395. },
  6396. {
  6397. "__type__": "cc.SpriteComponent",
  6398. "_name": "",
  6399. "_objFlags": 0,
  6400. "node": {
  6401. "__id__": 208
  6402. },
  6403. "_enabled": true,
  6404. "_srcBlendFactor": 2,
  6405. "_dstBlendFactor": 4,
  6406. "_color": {
  6407. "__type__": "cc.Color",
  6408. "r": 255,
  6409. "g": 255,
  6410. "b": 255,
  6411. "a": 255
  6412. },
  6413. "_sharedMaterial": null,
  6414. "_spriteFrame": {
  6415. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6416. },
  6417. "_type": 1,
  6418. "_fillType": 0,
  6419. "_sizeMode": 1,
  6420. "_fillCenter": {
  6421. "__type__": "cc.Vec2",
  6422. "x": 0,
  6423. "y": 0
  6424. },
  6425. "_fillStart": 0,
  6426. "_fillRange": 0,
  6427. "_isTrimmedMode": true,
  6428. "_useGrayscale": false,
  6429. "_atlas": null,
  6430. "_id": ""
  6431. },
  6432. {
  6433. "__type__": "cc.ButtonComponent",
  6434. "_name": "",
  6435. "_objFlags": 0,
  6436. "node": {
  6437. "__id__": 208
  6438. },
  6439. "_enabled": true,
  6440. "clickEvents": [],
  6441. "_interactable": true,
  6442. "_transition": 2,
  6443. "_normalColor": {
  6444. "__type__": "cc.Color",
  6445. "r": 214,
  6446. "g": 214,
  6447. "b": 214,
  6448. "a": 255
  6449. },
  6450. "_hoverColor": {
  6451. "__type__": "cc.Color",
  6452. "r": 211,
  6453. "g": 211,
  6454. "b": 211,
  6455. "a": 255
  6456. },
  6457. "_pressColor": {
  6458. "__type__": "cc.Color",
  6459. "r": 255,
  6460. "g": 255,
  6461. "b": 255,
  6462. "a": 255
  6463. },
  6464. "_disabledColor": {
  6465. "__type__": "cc.Color",
  6466. "r": 124,
  6467. "g": 124,
  6468. "b": 124,
  6469. "a": 255
  6470. },
  6471. "_normalSprite": {
  6472. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6473. },
  6474. "_hoverSprite": {
  6475. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6476. },
  6477. "_pressedSprite": {
  6478. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6479. },
  6480. "_disabledSprite": {
  6481. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6482. },
  6483. "_duration": 0.1,
  6484. "_zoomScale": 1.2,
  6485. "_target": {
  6486. "__id__": 208
  6487. },
  6488. "_id": ""
  6489. },
  6490. {
  6491. "__type__": "cc.PrefabInfo",
  6492. "root": {
  6493. "__id__": 1
  6494. },
  6495. "asset": {
  6496. "__id__": 0
  6497. },
  6498. "fileId": "c2SyojjppAR5oOrFEtmDZU",
  6499. "sync": false,
  6500. "_synced": {
  6501. "default": false,
  6502. "serializable": false
  6503. }
  6504. },
  6505. {
  6506. "__type__": "cc.Node",
  6507. "_name": "ButtonShop",
  6508. "_objFlags": 0,
  6509. "_parent": {
  6510. "__id__": 207
  6511. },
  6512. "_children": [
  6513. {
  6514. "__id__": 214
  6515. },
  6516. {
  6517. "__id__": 218
  6518. }
  6519. ],
  6520. "_active": true,
  6521. "_components": [
  6522. {
  6523. "__id__": 222
  6524. },
  6525. {
  6526. "__id__": 223
  6527. },
  6528. {
  6529. "__id__": 224
  6530. }
  6531. ],
  6532. "_prefab": {
  6533. "__id__": 225
  6534. },
  6535. "_lpos": {
  6536. "__type__": "cc.Vec3",
  6537. "x": 297.74800000000005,
  6538. "y": -396,
  6539. "z": 0
  6540. },
  6541. "_lrot": {
  6542. "__type__": "cc.Quat",
  6543. "x": 0,
  6544. "y": 0,
  6545. "z": 0,
  6546. "w": 1
  6547. },
  6548. "_lscale": {
  6549. "__type__": "cc.Vec3",
  6550. "x": 1,
  6551. "y": 1,
  6552. "z": 1
  6553. },
  6554. "_layer": 33554432,
  6555. "_euler": {
  6556. "__type__": "cc.Vec3",
  6557. "x": 0,
  6558. "y": 0,
  6559. "z": 0
  6560. },
  6561. "_id": ""
  6562. },
  6563. {
  6564. "__type__": "cc.Node",
  6565. "_name": "Sprite",
  6566. "_objFlags": 0,
  6567. "_parent": {
  6568. "__id__": 213
  6569. },
  6570. "_children": [],
  6571. "_active": true,
  6572. "_components": [
  6573. {
  6574. "__id__": 215
  6575. },
  6576. {
  6577. "__id__": 216
  6578. }
  6579. ],
  6580. "_prefab": {
  6581. "__id__": 217
  6582. },
  6583. "_lpos": {
  6584. "__type__": "cc.Vec3",
  6585. "x": 1,
  6586. "y": 4,
  6587. "z": 0
  6588. },
  6589. "_lrot": {
  6590. "__type__": "cc.Quat",
  6591. "x": 0,
  6592. "y": 0,
  6593. "z": 0,
  6594. "w": 1
  6595. },
  6596. "_lscale": {
  6597. "__type__": "cc.Vec3",
  6598. "x": 1,
  6599. "y": 1,
  6600. "z": 1
  6601. },
  6602. "_layer": 33554432,
  6603. "_euler": {
  6604. "__type__": "cc.Vec3",
  6605. "x": 0,
  6606. "y": 0,
  6607. "z": 0
  6608. },
  6609. "_id": ""
  6610. },
  6611. {
  6612. "__type__": "cc.UITransformComponent",
  6613. "_name": "",
  6614. "_objFlags": 0,
  6615. "node": {
  6616. "__id__": 214
  6617. },
  6618. "_enabled": true,
  6619. "_priority": 0,
  6620. "_contentSize": {
  6621. "__type__": "cc.Size",
  6622. "width": 61,
  6623. "height": 77
  6624. },
  6625. "_anchorPoint": {
  6626. "__type__": "cc.Vec2",
  6627. "x": 0.5,
  6628. "y": 0.5
  6629. },
  6630. "_id": ""
  6631. },
  6632. {
  6633. "__type__": "cc.SpriteComponent",
  6634. "_name": "",
  6635. "_objFlags": 0,
  6636. "node": {
  6637. "__id__": 214
  6638. },
  6639. "_enabled": true,
  6640. "_srcBlendFactor": 2,
  6641. "_dstBlendFactor": 4,
  6642. "_color": {
  6643. "__type__": "cc.Color",
  6644. "r": 255,
  6645. "g": 255,
  6646. "b": 255,
  6647. "a": 255
  6648. },
  6649. "_sharedMaterial": null,
  6650. "_spriteFrame": {
  6651. "__uuid__": "5798d97b-f3e7-4192-984d-150994cb912a@f9941"
  6652. },
  6653. "_type": 0,
  6654. "_fillType": 0,
  6655. "_sizeMode": 1,
  6656. "_fillCenter": {
  6657. "__type__": "cc.Vec2",
  6658. "x": 0,
  6659. "y": 0
  6660. },
  6661. "_fillStart": 0,
  6662. "_fillRange": 0,
  6663. "_isTrimmedMode": true,
  6664. "_useGrayscale": false,
  6665. "_atlas": null,
  6666. "_id": ""
  6667. },
  6668. {
  6669. "__type__": "cc.PrefabInfo",
  6670. "root": {
  6671. "__id__": 1
  6672. },
  6673. "asset": {
  6674. "__id__": 0
  6675. },
  6676. "fileId": "dduTpda5NJy7ZfRpoWY4xn",
  6677. "sync": false,
  6678. "_synced": {
  6679. "default": false,
  6680. "serializable": false
  6681. }
  6682. },
  6683. {
  6684. "__type__": "cc.Node",
  6685. "_name": "tips",
  6686. "_objFlags": 0,
  6687. "_parent": {
  6688. "__id__": 213
  6689. },
  6690. "_children": [],
  6691. "_active": false,
  6692. "_components": [
  6693. {
  6694. "__id__": 219
  6695. },
  6696. {
  6697. "__id__": 220
  6698. }
  6699. ],
  6700. "_prefab": {
  6701. "__id__": 221
  6702. },
  6703. "_lpos": {
  6704. "__type__": "cc.Vec3",
  6705. "x": 52,
  6706. "y": 47,
  6707. "z": 0
  6708. },
  6709. "_lrot": {
  6710. "__type__": "cc.Quat",
  6711. "x": 0,
  6712. "y": 0,
  6713. "z": 0,
  6714. "w": 1
  6715. },
  6716. "_lscale": {
  6717. "__type__": "cc.Vec3",
  6718. "x": 1,
  6719. "y": 1,
  6720. "z": 1
  6721. },
  6722. "_layer": 33554432,
  6723. "_euler": {
  6724. "__type__": "cc.Vec3",
  6725. "x": 0,
  6726. "y": 0,
  6727. "z": 0
  6728. },
  6729. "_id": ""
  6730. },
  6731. {
  6732. "__type__": "cc.UITransformComponent",
  6733. "_name": "",
  6734. "_objFlags": 0,
  6735. "node": {
  6736. "__id__": 218
  6737. },
  6738. "_enabled": true,
  6739. "_priority": 0,
  6740. "_contentSize": {
  6741. "__type__": "cc.Size",
  6742. "width": 22,
  6743. "height": 22
  6744. },
  6745. "_anchorPoint": {
  6746. "__type__": "cc.Vec2",
  6747. "x": 0.5,
  6748. "y": 0.5
  6749. },
  6750. "_id": ""
  6751. },
  6752. {
  6753. "__type__": "cc.SpriteComponent",
  6754. "_name": "",
  6755. "_objFlags": 0,
  6756. "node": {
  6757. "__id__": 218
  6758. },
  6759. "_enabled": true,
  6760. "_srcBlendFactor": 2,
  6761. "_dstBlendFactor": 4,
  6762. "_color": {
  6763. "__type__": "cc.Color",
  6764. "r": 255,
  6765. "g": 255,
  6766. "b": 255,
  6767. "a": 255
  6768. },
  6769. "_sharedMaterial": null,
  6770. "_spriteFrame": {
  6771. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  6772. },
  6773. "_type": 0,
  6774. "_fillType": 0,
  6775. "_sizeMode": 1,
  6776. "_fillCenter": {
  6777. "__type__": "cc.Vec2",
  6778. "x": 0,
  6779. "y": 0
  6780. },
  6781. "_fillStart": 0,
  6782. "_fillRange": 0,
  6783. "_isTrimmedMode": true,
  6784. "_useGrayscale": false,
  6785. "_atlas": null,
  6786. "_id": ""
  6787. },
  6788. {
  6789. "__type__": "cc.PrefabInfo",
  6790. "root": {
  6791. "__id__": 1
  6792. },
  6793. "asset": {
  6794. "__id__": 0
  6795. },
  6796. "fileId": "bdELvGiqNBOY5vUSd2XbJL",
  6797. "sync": false,
  6798. "_synced": {
  6799. "default": false,
  6800. "serializable": false
  6801. }
  6802. },
  6803. {
  6804. "__type__": "cc.UITransformComponent",
  6805. "_name": "",
  6806. "_objFlags": 0,
  6807. "node": {
  6808. "__id__": 213
  6809. },
  6810. "_enabled": true,
  6811. "_priority": 0,
  6812. "_contentSize": {
  6813. "__type__": "cc.Size",
  6814. "width": 114,
  6815. "height": 100
  6816. },
  6817. "_anchorPoint": {
  6818. "__type__": "cc.Vec2",
  6819. "x": 0.5,
  6820. "y": 0.5
  6821. },
  6822. "_id": ""
  6823. },
  6824. {
  6825. "__type__": "cc.SpriteComponent",
  6826. "_name": "",
  6827. "_objFlags": 0,
  6828. "node": {
  6829. "__id__": 213
  6830. },
  6831. "_enabled": true,
  6832. "_srcBlendFactor": 2,
  6833. "_dstBlendFactor": 4,
  6834. "_color": {
  6835. "__type__": "cc.Color",
  6836. "r": 255,
  6837. "g": 255,
  6838. "b": 255,
  6839. "a": 255
  6840. },
  6841. "_sharedMaterial": null,
  6842. "_spriteFrame": {
  6843. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6844. },
  6845. "_type": 1,
  6846. "_fillType": 0,
  6847. "_sizeMode": 0,
  6848. "_fillCenter": {
  6849. "__type__": "cc.Vec2",
  6850. "x": 0,
  6851. "y": 0
  6852. },
  6853. "_fillStart": 0,
  6854. "_fillRange": 0,
  6855. "_isTrimmedMode": true,
  6856. "_useGrayscale": false,
  6857. "_atlas": null,
  6858. "_id": ""
  6859. },
  6860. {
  6861. "__type__": "cc.ButtonComponent",
  6862. "_name": "",
  6863. "_objFlags": 0,
  6864. "node": {
  6865. "__id__": 213
  6866. },
  6867. "_enabled": true,
  6868. "clickEvents": [],
  6869. "_interactable": true,
  6870. "_transition": 2,
  6871. "_normalColor": {
  6872. "__type__": "cc.Color",
  6873. "r": 214,
  6874. "g": 214,
  6875. "b": 214,
  6876. "a": 255
  6877. },
  6878. "_hoverColor": {
  6879. "__type__": "cc.Color",
  6880. "r": 211,
  6881. "g": 211,
  6882. "b": 211,
  6883. "a": 255
  6884. },
  6885. "_pressColor": {
  6886. "__type__": "cc.Color",
  6887. "r": 255,
  6888. "g": 255,
  6889. "b": 255,
  6890. "a": 255
  6891. },
  6892. "_disabledColor": {
  6893. "__type__": "cc.Color",
  6894. "r": 124,
  6895. "g": 124,
  6896. "b": 124,
  6897. "a": 255
  6898. },
  6899. "_normalSprite": {
  6900. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6901. },
  6902. "_hoverSprite": {
  6903. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6904. },
  6905. "_pressedSprite": {
  6906. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6907. },
  6908. "_disabledSprite": {
  6909. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6910. },
  6911. "_duration": 0.1,
  6912. "_zoomScale": 1.2,
  6913. "_target": {
  6914. "__id__": 213
  6915. },
  6916. "_id": ""
  6917. },
  6918. {
  6919. "__type__": "cc.PrefabInfo",
  6920. "root": {
  6921. "__id__": 1
  6922. },
  6923. "asset": {
  6924. "__id__": 0
  6925. },
  6926. "fileId": "83Mo20qkNMcJ2UlNbTsCOr",
  6927. "sync": false,
  6928. "_synced": {
  6929. "default": false,
  6930. "serializable": false
  6931. }
  6932. },
  6933. {
  6934. "__type__": "cc.Node",
  6935. "_name": "ButtonDouble",
  6936. "_objFlags": 0,
  6937. "_parent": {
  6938. "__id__": 207
  6939. },
  6940. "_children": [
  6941. {
  6942. "__id__": 227
  6943. },
  6944. {
  6945. "__id__": 231
  6946. }
  6947. ],
  6948. "_active": true,
  6949. "_components": [
  6950. {
  6951. "__id__": 235
  6952. },
  6953. {
  6954. "__id__": 236
  6955. },
  6956. {
  6957. "__id__": 237
  6958. }
  6959. ],
  6960. "_prefab": {
  6961. "__id__": 239
  6962. },
  6963. "_lpos": {
  6964. "__type__": "cc.Vec3",
  6965. "x": -182,
  6966. "y": -396,
  6967. "z": 0
  6968. },
  6969. "_lrot": {
  6970. "__type__": "cc.Quat",
  6971. "x": 0,
  6972. "y": 0,
  6973. "z": 0,
  6974. "w": 1
  6975. },
  6976. "_lscale": {
  6977. "__type__": "cc.Vec3",
  6978. "x": 1,
  6979. "y": 1,
  6980. "z": 1
  6981. },
  6982. "_layer": 33554432,
  6983. "_euler": {
  6984. "__type__": "cc.Vec3",
  6985. "x": 0,
  6986. "y": 0,
  6987. "z": 0
  6988. },
  6989. "_id": ""
  6990. },
  6991. {
  6992. "__type__": "cc.Node",
  6993. "_name": "Sprite",
  6994. "_objFlags": 0,
  6995. "_parent": {
  6996. "__id__": 226
  6997. },
  6998. "_children": [],
  6999. "_active": true,
  7000. "_components": [
  7001. {
  7002. "__id__": 228
  7003. },
  7004. {
  7005. "__id__": 229
  7006. }
  7007. ],
  7008. "_prefab": {
  7009. "__id__": 230
  7010. },
  7011. "_lpos": {
  7012. "__type__": "cc.Vec3",
  7013. "x": -3,
  7014. "y": 4,
  7015. "z": 0
  7016. },
  7017. "_lrot": {
  7018. "__type__": "cc.Quat",
  7019. "x": 0,
  7020. "y": 0,
  7021. "z": 0,
  7022. "w": 1
  7023. },
  7024. "_lscale": {
  7025. "__type__": "cc.Vec3",
  7026. "x": 1,
  7027. "y": 1,
  7028. "z": 1
  7029. },
  7030. "_layer": 33554432,
  7031. "_euler": {
  7032. "__type__": "cc.Vec3",
  7033. "x": 0,
  7034. "y": 0,
  7035. "z": 0
  7036. },
  7037. "_id": ""
  7038. },
  7039. {
  7040. "__type__": "cc.UITransformComponent",
  7041. "_name": "",
  7042. "_objFlags": 0,
  7043. "node": {
  7044. "__id__": 227
  7045. },
  7046. "_enabled": true,
  7047. "_priority": 0,
  7048. "_contentSize": {
  7049. "__type__": "cc.Size",
  7050. "width": 63,
  7051. "height": 76
  7052. },
  7053. "_anchorPoint": {
  7054. "__type__": "cc.Vec2",
  7055. "x": 0.5,
  7056. "y": 0.5
  7057. },
  7058. "_id": ""
  7059. },
  7060. {
  7061. "__type__": "cc.SpriteComponent",
  7062. "_name": "",
  7063. "_objFlags": 0,
  7064. "node": {
  7065. "__id__": 227
  7066. },
  7067. "_enabled": true,
  7068. "_srcBlendFactor": 2,
  7069. "_dstBlendFactor": 4,
  7070. "_color": {
  7071. "__type__": "cc.Color",
  7072. "r": 255,
  7073. "g": 255,
  7074. "b": 255,
  7075. "a": 255
  7076. },
  7077. "_sharedMaterial": null,
  7078. "_spriteFrame": {
  7079. "__uuid__": "cbe9554a-6840-42ce-830d-784cfb01a026@f9941"
  7080. },
  7081. "_type": 0,
  7082. "_fillType": 0,
  7083. "_sizeMode": 1,
  7084. "_fillCenter": {
  7085. "__type__": "cc.Vec2",
  7086. "x": 0,
  7087. "y": 0
  7088. },
  7089. "_fillStart": 0,
  7090. "_fillRange": 0,
  7091. "_isTrimmedMode": true,
  7092. "_useGrayscale": false,
  7093. "_atlas": null,
  7094. "_id": ""
  7095. },
  7096. {
  7097. "__type__": "cc.PrefabInfo",
  7098. "root": {
  7099. "__id__": 1
  7100. },
  7101. "asset": {
  7102. "__id__": 0
  7103. },
  7104. "fileId": "50kBeS50pJ6KRE92h76n77",
  7105. "sync": false,
  7106. "_synced": {
  7107. "default": false,
  7108. "serializable": false
  7109. }
  7110. },
  7111. {
  7112. "__type__": "cc.Node",
  7113. "_name": "tips",
  7114. "_objFlags": 0,
  7115. "_parent": {
  7116. "__id__": 226
  7117. },
  7118. "_children": [],
  7119. "_active": true,
  7120. "_components": [
  7121. {
  7122. "__id__": 232
  7123. },
  7124. {
  7125. "__id__": 233
  7126. }
  7127. ],
  7128. "_prefab": {
  7129. "__id__": 234
  7130. },
  7131. "_lpos": {
  7132. "__type__": "cc.Vec3",
  7133. "x": 38,
  7134. "y": 50,
  7135. "z": 0
  7136. },
  7137. "_lrot": {
  7138. "__type__": "cc.Quat",
  7139. "x": 0,
  7140. "y": 0,
  7141. "z": 0,
  7142. "w": 1
  7143. },
  7144. "_lscale": {
  7145. "__type__": "cc.Vec3",
  7146. "x": 1,
  7147. "y": 1,
  7148. "z": 1
  7149. },
  7150. "_layer": 33554432,
  7151. "_euler": {
  7152. "__type__": "cc.Vec3",
  7153. "x": 0,
  7154. "y": 0,
  7155. "z": 0
  7156. },
  7157. "_id": ""
  7158. },
  7159. {
  7160. "__type__": "cc.UITransformComponent",
  7161. "_name": "",
  7162. "_objFlags": 0,
  7163. "node": {
  7164. "__id__": 231
  7165. },
  7166. "_enabled": true,
  7167. "_priority": 0,
  7168. "_contentSize": {
  7169. "__type__": "cc.Size",
  7170. "width": 45,
  7171. "height": 26
  7172. },
  7173. "_anchorPoint": {
  7174. "__type__": "cc.Vec2",
  7175. "x": 0.5,
  7176. "y": 0.5
  7177. },
  7178. "_id": ""
  7179. },
  7180. {
  7181. "__type__": "cc.SpriteComponent",
  7182. "_name": "",
  7183. "_objFlags": 0,
  7184. "node": {
  7185. "__id__": 231
  7186. },
  7187. "_enabled": true,
  7188. "_srcBlendFactor": 2,
  7189. "_dstBlendFactor": 4,
  7190. "_color": {
  7191. "__type__": "cc.Color",
  7192. "r": 255,
  7193. "g": 255,
  7194. "b": 255,
  7195. "a": 255
  7196. },
  7197. "_sharedMaterial": null,
  7198. "_spriteFrame": {
  7199. "__uuid__": "497c0d61-436a-43e8-b675-8f0ee9729b00@f9941"
  7200. },
  7201. "_type": 0,
  7202. "_fillType": 0,
  7203. "_sizeMode": 1,
  7204. "_fillCenter": {
  7205. "__type__": "cc.Vec2",
  7206. "x": 0,
  7207. "y": 0
  7208. },
  7209. "_fillStart": 0,
  7210. "_fillRange": 0,
  7211. "_isTrimmedMode": true,
  7212. "_useGrayscale": false,
  7213. "_atlas": null,
  7214. "_id": ""
  7215. },
  7216. {
  7217. "__type__": "cc.PrefabInfo",
  7218. "root": {
  7219. "__id__": 1
  7220. },
  7221. "asset": {
  7222. "__id__": 0
  7223. },
  7224. "fileId": "45LEH3I0NI/57UmqjJJHuZ",
  7225. "sync": false,
  7226. "_synced": {
  7227. "default": false,
  7228. "serializable": false
  7229. }
  7230. },
  7231. {
  7232. "__type__": "cc.UITransformComponent",
  7233. "_name": "",
  7234. "_objFlags": 0,
  7235. "node": {
  7236. "__id__": 226
  7237. },
  7238. "_enabled": true,
  7239. "_priority": 0,
  7240. "_contentSize": {
  7241. "__type__": "cc.Size",
  7242. "width": 114,
  7243. "height": 100
  7244. },
  7245. "_anchorPoint": {
  7246. "__type__": "cc.Vec2",
  7247. "x": 0.5,
  7248. "y": 0.5
  7249. },
  7250. "_id": ""
  7251. },
  7252. {
  7253. "__type__": "cc.SpriteComponent",
  7254. "_name": "",
  7255. "_objFlags": 0,
  7256. "node": {
  7257. "__id__": 226
  7258. },
  7259. "_enabled": true,
  7260. "_srcBlendFactor": 2,
  7261. "_dstBlendFactor": 4,
  7262. "_color": {
  7263. "__type__": "cc.Color",
  7264. "r": 255,
  7265. "g": 255,
  7266. "b": 255,
  7267. "a": 255
  7268. },
  7269. "_sharedMaterial": null,
  7270. "_spriteFrame": {
  7271. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7272. },
  7273. "_type": 1,
  7274. "_fillType": 0,
  7275. "_sizeMode": 0,
  7276. "_fillCenter": {
  7277. "__type__": "cc.Vec2",
  7278. "x": 0,
  7279. "y": 0
  7280. },
  7281. "_fillStart": 0,
  7282. "_fillRange": 0,
  7283. "_isTrimmedMode": true,
  7284. "_useGrayscale": false,
  7285. "_atlas": null,
  7286. "_id": ""
  7287. },
  7288. {
  7289. "__type__": "cc.ButtonComponent",
  7290. "_name": "",
  7291. "_objFlags": 0,
  7292. "node": {
  7293. "__id__": 226
  7294. },
  7295. "_enabled": true,
  7296. "clickEvents": [
  7297. {
  7298. "__id__": 238
  7299. }
  7300. ],
  7301. "_interactable": true,
  7302. "_transition": 2,
  7303. "_normalColor": {
  7304. "__type__": "cc.Color",
  7305. "r": 214,
  7306. "g": 214,
  7307. "b": 214,
  7308. "a": 255
  7309. },
  7310. "_hoverColor": {
  7311. "__type__": "cc.Color",
  7312. "r": 211,
  7313. "g": 211,
  7314. "b": 211,
  7315. "a": 255
  7316. },
  7317. "_pressColor": {
  7318. "__type__": "cc.Color",
  7319. "r": 255,
  7320. "g": 255,
  7321. "b": 255,
  7322. "a": 255
  7323. },
  7324. "_disabledColor": {
  7325. "__type__": "cc.Color",
  7326. "r": 124,
  7327. "g": 124,
  7328. "b": 124,
  7329. "a": 255
  7330. },
  7331. "_normalSprite": {
  7332. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7333. },
  7334. "_hoverSprite": {
  7335. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7336. },
  7337. "_pressedSprite": {
  7338. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7339. },
  7340. "_disabledSprite": {
  7341. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7342. },
  7343. "_duration": 0.1,
  7344. "_zoomScale": 1.2,
  7345. "_target": {
  7346. "__id__": 226
  7347. },
  7348. "_id": ""
  7349. },
  7350. {
  7351. "__type__": "cc.ClickEvent",
  7352. "target": {
  7353. "__id__": 1
  7354. },
  7355. "component": "",
  7356. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  7357. "handler": "AccelerateButtonClickHandler",
  7358. "customEventData": ""
  7359. },
  7360. {
  7361. "__type__": "cc.PrefabInfo",
  7362. "root": {
  7363. "__id__": 1
  7364. },
  7365. "asset": {
  7366. "__id__": 0
  7367. },
  7368. "fileId": "ffTr3WrZVPgoqJ+KSB4CNq",
  7369. "sync": false,
  7370. "_synced": {
  7371. "default": false,
  7372. "serializable": false
  7373. }
  7374. },
  7375. {
  7376. "__type__": "cc.Node",
  7377. "_name": "ButtonBuyGun",
  7378. "_objFlags": 0,
  7379. "_parent": {
  7380. "__id__": 207
  7381. },
  7382. "_children": [
  7383. {
  7384. "__id__": 241
  7385. },
  7386. {
  7387. "__id__": 245
  7388. },
  7389. {
  7390. "__id__": 249
  7391. }
  7392. ],
  7393. "_active": true,
  7394. "_components": [
  7395. {
  7396. "__id__": 253
  7397. },
  7398. {
  7399. "__id__": 254
  7400. },
  7401. {
  7402. "__id__": 255
  7403. }
  7404. ],
  7405. "_prefab": {
  7406. "__id__": 256
  7407. },
  7408. "_lpos": {
  7409. "__type__": "cc.Vec3",
  7410. "x": 59,
  7411. "y": -396,
  7412. "z": 0
  7413. },
  7414. "_lrot": {
  7415. "__type__": "cc.Quat",
  7416. "x": 0,
  7417. "y": 0,
  7418. "z": 0,
  7419. "w": 1
  7420. },
  7421. "_lscale": {
  7422. "__type__": "cc.Vec3",
  7423. "x": 1,
  7424. "y": 1,
  7425. "z": 1
  7426. },
  7427. "_layer": 33554432,
  7428. "_euler": {
  7429. "__type__": "cc.Vec3",
  7430. "x": 0,
  7431. "y": 0,
  7432. "z": 0
  7433. },
  7434. "_id": ""
  7435. },
  7436. {
  7437. "__type__": "cc.Node",
  7438. "_name": "Sprite",
  7439. "_objFlags": 0,
  7440. "_parent": {
  7441. "__id__": 240
  7442. },
  7443. "_children": [],
  7444. "_active": true,
  7445. "_components": [
  7446. {
  7447. "__id__": 242
  7448. },
  7449. {
  7450. "__id__": 243
  7451. }
  7452. ],
  7453. "_prefab": {
  7454. "__id__": 244
  7455. },
  7456. "_lpos": {
  7457. "__type__": "cc.Vec3",
  7458. "x": -95,
  7459. "y": -13,
  7460. "z": 0
  7461. },
  7462. "_lrot": {
  7463. "__type__": "cc.Quat",
  7464. "x": 0,
  7465. "y": 0,
  7466. "z": 0,
  7467. "w": 1
  7468. },
  7469. "_lscale": {
  7470. "__type__": "cc.Vec3",
  7471. "x": 1,
  7472. "y": 1,
  7473. "z": 1
  7474. },
  7475. "_layer": 33554432,
  7476. "_euler": {
  7477. "__type__": "cc.Vec3",
  7478. "x": 0,
  7479. "y": 0,
  7480. "z": 0
  7481. },
  7482. "_id": ""
  7483. },
  7484. {
  7485. "__type__": "cc.UITransformComponent",
  7486. "_name": "",
  7487. "_objFlags": 0,
  7488. "node": {
  7489. "__id__": 241
  7490. },
  7491. "_enabled": true,
  7492. "_priority": 0,
  7493. "_contentSize": {
  7494. "__type__": "cc.Size",
  7495. "width": 50,
  7496. "height": 49
  7497. },
  7498. "_anchorPoint": {
  7499. "__type__": "cc.Vec2",
  7500. "x": 0.5,
  7501. "y": 0.5
  7502. },
  7503. "_id": ""
  7504. },
  7505. {
  7506. "__type__": "cc.SpriteComponent",
  7507. "_name": "",
  7508. "_objFlags": 0,
  7509. "node": {
  7510. "__id__": 241
  7511. },
  7512. "_enabled": true,
  7513. "_srcBlendFactor": 2,
  7514. "_dstBlendFactor": 4,
  7515. "_color": {
  7516. "__type__": "cc.Color",
  7517. "r": 255,
  7518. "g": 255,
  7519. "b": 255,
  7520. "a": 255
  7521. },
  7522. "_sharedMaterial": null,
  7523. "_spriteFrame": {
  7524. "__uuid__": "0b44fc8c-d664-46d8-bddf-1514caec8e51@f9941"
  7525. },
  7526. "_type": 0,
  7527. "_fillType": 0,
  7528. "_sizeMode": 1,
  7529. "_fillCenter": {
  7530. "__type__": "cc.Vec2",
  7531. "x": 0,
  7532. "y": 0
  7533. },
  7534. "_fillStart": 0,
  7535. "_fillRange": 0,
  7536. "_isTrimmedMode": true,
  7537. "_useGrayscale": false,
  7538. "_atlas": null,
  7539. "_id": ""
  7540. },
  7541. {
  7542. "__type__": "cc.PrefabInfo",
  7543. "root": {
  7544. "__id__": 1
  7545. },
  7546. "asset": {
  7547. "__id__": 0
  7548. },
  7549. "fileId": "c3GqGJbtRL55EMoS/E1s2q",
  7550. "sync": false,
  7551. "_synced": {
  7552. "default": false,
  7553. "serializable": false
  7554. }
  7555. },
  7556. {
  7557. "__type__": "cc.Node",
  7558. "_name": "PriceLabel",
  7559. "_objFlags": 0,
  7560. "_parent": {
  7561. "__id__": 240
  7562. },
  7563. "_children": [],
  7564. "_active": true,
  7565. "_components": [
  7566. {
  7567. "__id__": 246
  7568. },
  7569. {
  7570. "__id__": 247
  7571. }
  7572. ],
  7573. "_prefab": {
  7574. "__id__": 248
  7575. },
  7576. "_lpos": {
  7577. "__type__": "cc.Vec3",
  7578. "x": 15.823,
  7579. "y": -23,
  7580. "z": 0
  7581. },
  7582. "_lrot": {
  7583. "__type__": "cc.Quat",
  7584. "x": 0,
  7585. "y": 0,
  7586. "z": 0,
  7587. "w": 1
  7588. },
  7589. "_lscale": {
  7590. "__type__": "cc.Vec3",
  7591. "x": 1,
  7592. "y": 1,
  7593. "z": 1
  7594. },
  7595. "_layer": 33554432,
  7596. "_euler": {
  7597. "__type__": "cc.Vec3",
  7598. "x": 0,
  7599. "y": 0,
  7600. "z": 0
  7601. },
  7602. "_id": ""
  7603. },
  7604. {
  7605. "__type__": "cc.UITransformComponent",
  7606. "_name": "",
  7607. "_objFlags": 0,
  7608. "node": {
  7609. "__id__": 245
  7610. },
  7611. "_enabled": true,
  7612. "_priority": 0,
  7613. "_contentSize": {
  7614. "__type__": "cc.Size",
  7615. "width": 60.06,
  7616. "height": 50.4
  7617. },
  7618. "_anchorPoint": {
  7619. "__type__": "cc.Vec2",
  7620. "x": 0.5,
  7621. "y": 0.5
  7622. },
  7623. "_id": ""
  7624. },
  7625. {
  7626. "__type__": "cc.LabelComponent",
  7627. "_name": "",
  7628. "_objFlags": 0,
  7629. "node": {
  7630. "__id__": 245
  7631. },
  7632. "_enabled": true,
  7633. "_srcBlendFactor": 2,
  7634. "_dstBlendFactor": 4,
  7635. "_color": {
  7636. "__type__": "cc.Color",
  7637. "r": 255,
  7638. "g": 255,
  7639. "b": 255,
  7640. "a": 255
  7641. },
  7642. "_sharedMaterial": null,
  7643. "_useOriginalSize": true,
  7644. "_string": "100",
  7645. "_horizontalAlign": 1,
  7646. "_verticalAlign": 1,
  7647. "_actualFontSize": 36,
  7648. "_fontSize": 36,
  7649. "_fontFamily": "Arial",
  7650. "_lineHeight": 40,
  7651. "_overflow": 0,
  7652. "_enableWrapText": true,
  7653. "_font": null,
  7654. "_isSystemFontUsed": true,
  7655. "_isItalic": false,
  7656. "_isBold": false,
  7657. "_isUnderline": false,
  7658. "_cacheMode": 0,
  7659. "_id": ""
  7660. },
  7661. {
  7662. "__type__": "cc.PrefabInfo",
  7663. "root": {
  7664. "__id__": 1
  7665. },
  7666. "asset": {
  7667. "__id__": 0
  7668. },
  7669. "fileId": "7a32/3V0hAvLl1IsqUvmfr",
  7670. "sync": false,
  7671. "_synced": {
  7672. "default": false,
  7673. "serializable": false
  7674. }
  7675. },
  7676. {
  7677. "__type__": "cc.Node",
  7678. "_name": "GunIcon",
  7679. "_objFlags": 0,
  7680. "_parent": {
  7681. "__id__": 240
  7682. },
  7683. "_children": [],
  7684. "_active": true,
  7685. "_components": [
  7686. {
  7687. "__id__": 250
  7688. },
  7689. {
  7690. "__id__": 251
  7691. }
  7692. ],
  7693. "_prefab": {
  7694. "__id__": 252
  7695. },
  7696. "_lpos": {
  7697. "__type__": "cc.Vec3",
  7698. "x": 0,
  7699. "y": 22.341,
  7700. "z": 0
  7701. },
  7702. "_lrot": {
  7703. "__type__": "cc.Quat",
  7704. "x": 0,
  7705. "y": 0,
  7706. "z": 0,
  7707. "w": 1
  7708. },
  7709. "_lscale": {
  7710. "__type__": "cc.Vec3",
  7711. "x": 1,
  7712. "y": 1,
  7713. "z": 1
  7714. },
  7715. "_layer": 33554432,
  7716. "_euler": {
  7717. "__type__": "cc.Vec3",
  7718. "x": 0,
  7719. "y": 0,
  7720. "z": 0
  7721. },
  7722. "_id": ""
  7723. },
  7724. {
  7725. "__type__": "cc.UITransformComponent",
  7726. "_name": "",
  7727. "_objFlags": 0,
  7728. "node": {
  7729. "__id__": 249
  7730. },
  7731. "_enabled": true,
  7732. "_priority": 0,
  7733. "_contentSize": {
  7734. "__type__": "cc.Size",
  7735. "width": 40,
  7736. "height": 36
  7737. },
  7738. "_anchorPoint": {
  7739. "__type__": "cc.Vec2",
  7740. "x": 0.5,
  7741. "y": 0.5
  7742. },
  7743. "_id": ""
  7744. },
  7745. {
  7746. "__type__": "cc.SpriteComponent",
  7747. "_name": "",
  7748. "_objFlags": 0,
  7749. "node": {
  7750. "__id__": 249
  7751. },
  7752. "_enabled": true,
  7753. "_srcBlendFactor": 2,
  7754. "_dstBlendFactor": 4,
  7755. "_color": {
  7756. "__type__": "cc.Color",
  7757. "r": 255,
  7758. "g": 255,
  7759. "b": 255,
  7760. "a": 255
  7761. },
  7762. "_sharedMaterial": null,
  7763. "_spriteFrame": {
  7764. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941"
  7765. },
  7766. "_type": 0,
  7767. "_fillType": 0,
  7768. "_sizeMode": 1,
  7769. "_fillCenter": {
  7770. "__type__": "cc.Vec2",
  7771. "x": 0,
  7772. "y": 0
  7773. },
  7774. "_fillStart": 0,
  7775. "_fillRange": 0,
  7776. "_isTrimmedMode": true,
  7777. "_useGrayscale": false,
  7778. "_atlas": null,
  7779. "_id": ""
  7780. },
  7781. {
  7782. "__type__": "cc.PrefabInfo",
  7783. "root": {
  7784. "__id__": 1
  7785. },
  7786. "asset": {
  7787. "__id__": 0
  7788. },
  7789. "fileId": "c0/SDBdAlH36zJ8l2cqR1n",
  7790. "sync": false,
  7791. "_synced": {
  7792. "default": false,
  7793. "serializable": false
  7794. }
  7795. },
  7796. {
  7797. "__type__": "cc.UITransformComponent",
  7798. "_name": "",
  7799. "_objFlags": 0,
  7800. "node": {
  7801. "__id__": 240
  7802. },
  7803. "_enabled": true,
  7804. "_priority": 0,
  7805. "_contentSize": {
  7806. "__type__": "cc.Size",
  7807. "width": 332,
  7808. "height": 100
  7809. },
  7810. "_anchorPoint": {
  7811. "__type__": "cc.Vec2",
  7812. "x": 0.5,
  7813. "y": 0.5
  7814. },
  7815. "_id": ""
  7816. },
  7817. {
  7818. "__type__": "cc.SpriteComponent",
  7819. "_name": "",
  7820. "_objFlags": 0,
  7821. "node": {
  7822. "__id__": 240
  7823. },
  7824. "_enabled": true,
  7825. "_srcBlendFactor": 2,
  7826. "_dstBlendFactor": 4,
  7827. "_color": {
  7828. "__type__": "cc.Color",
  7829. "r": 255,
  7830. "g": 255,
  7831. "b": 255,
  7832. "a": 255
  7833. },
  7834. "_sharedMaterial": null,
  7835. "_spriteFrame": {
  7836. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7837. },
  7838. "_type": 1,
  7839. "_fillType": 0,
  7840. "_sizeMode": 0,
  7841. "_fillCenter": {
  7842. "__type__": "cc.Vec2",
  7843. "x": 0,
  7844. "y": 0
  7845. },
  7846. "_fillStart": 0,
  7847. "_fillRange": 0,
  7848. "_isTrimmedMode": true,
  7849. "_useGrayscale": false,
  7850. "_atlas": null,
  7851. "_id": ""
  7852. },
  7853. {
  7854. "__type__": "cc.ButtonComponent",
  7855. "_name": "",
  7856. "_objFlags": 0,
  7857. "node": {
  7858. "__id__": 240
  7859. },
  7860. "_enabled": true,
  7861. "clickEvents": [],
  7862. "_interactable": true,
  7863. "_transition": 2,
  7864. "_normalColor": {
  7865. "__type__": "cc.Color",
  7866. "r": 214,
  7867. "g": 214,
  7868. "b": 214,
  7869. "a": 255
  7870. },
  7871. "_hoverColor": {
  7872. "__type__": "cc.Color",
  7873. "r": 211,
  7874. "g": 211,
  7875. "b": 211,
  7876. "a": 255
  7877. },
  7878. "_pressColor": {
  7879. "__type__": "cc.Color",
  7880. "r": 255,
  7881. "g": 255,
  7882. "b": 255,
  7883. "a": 255
  7884. },
  7885. "_disabledColor": {
  7886. "__type__": "cc.Color",
  7887. "r": 124,
  7888. "g": 124,
  7889. "b": 124,
  7890. "a": 255
  7891. },
  7892. "_normalSprite": {
  7893. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7894. },
  7895. "_hoverSprite": {
  7896. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7897. },
  7898. "_pressedSprite": {
  7899. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7900. },
  7901. "_disabledSprite": {
  7902. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7903. },
  7904. "_duration": 0.1,
  7905. "_zoomScale": 1.2,
  7906. "_target": {
  7907. "__id__": 240
  7908. },
  7909. "_id": ""
  7910. },
  7911. {
  7912. "__type__": "cc.PrefabInfo",
  7913. "root": {
  7914. "__id__": 1
  7915. },
  7916. "asset": {
  7917. "__id__": 0
  7918. },
  7919. "fileId": "08p1uEfttJtquF+ExDmCbJ",
  7920. "sync": false,
  7921. "_synced": {
  7922. "default": false,
  7923. "serializable": false
  7924. }
  7925. },
  7926. {
  7927. "__type__": "cc.UITransformComponent",
  7928. "_name": "BottomGroup<UITransformComponent>",
  7929. "_objFlags": 0,
  7930. "node": {
  7931. "__id__": 207
  7932. },
  7933. "_enabled": true,
  7934. "_priority": 0,
  7935. "_contentSize": {
  7936. "__type__": "cc.Size",
  7937. "width": 100,
  7938. "height": 100
  7939. },
  7940. "_anchorPoint": {
  7941. "__type__": "cc.Vec2",
  7942. "x": 0.5,
  7943. "y": 0.5
  7944. },
  7945. "_id": ""
  7946. },
  7947. {
  7948. "__type__": "cc.PrefabInfo",
  7949. "root": {
  7950. "__id__": 1
  7951. },
  7952. "asset": {
  7953. "__id__": 0
  7954. },
  7955. "fileId": "e0q1J/UwpDBLKsnYkMysNB",
  7956. "sync": false,
  7957. "_synced": {
  7958. "default": false,
  7959. "serializable": false
  7960. }
  7961. },
  7962. {
  7963. "__type__": "cc.Node",
  7964. "_name": "DragLayer",
  7965. "_objFlags": 0,
  7966. "_parent": {
  7967. "__id__": 1
  7968. },
  7969. "_children": [
  7970. {
  7971. "__id__": 260
  7972. }
  7973. ],
  7974. "_active": true,
  7975. "_components": [
  7976. {
  7977. "__id__": 264
  7978. },
  7979. {
  7980. "__id__": 265
  7981. }
  7982. ],
  7983. "_prefab": {
  7984. "__id__": 266
  7985. },
  7986. "_lpos": {
  7987. "__type__": "cc.Vec3",
  7988. "x": 0,
  7989. "y": 0,
  7990. "z": 0
  7991. },
  7992. "_lrot": {
  7993. "__type__": "cc.Quat",
  7994. "x": 0,
  7995. "y": 0,
  7996. "z": 0,
  7997. "w": 1
  7998. },
  7999. "_lscale": {
  8000. "__type__": "cc.Vec3",
  8001. "x": 1,
  8002. "y": 1,
  8003. "z": 1
  8004. },
  8005. "_layer": 1073741824,
  8006. "_euler": {
  8007. "__type__": "cc.Vec3",
  8008. "x": 0,
  8009. "y": 0,
  8010. "z": 0
  8011. },
  8012. "_id": ""
  8013. },
  8014. {
  8015. "__type__": "cc.Node",
  8016. "_name": "WeaponIcon",
  8017. "_objFlags": 0,
  8018. "_parent": {
  8019. "__id__": 259
  8020. },
  8021. "_children": [],
  8022. "_active": true,
  8023. "_components": [
  8024. {
  8025. "__id__": 261
  8026. },
  8027. {
  8028. "__id__": 262
  8029. }
  8030. ],
  8031. "_prefab": {
  8032. "__id__": 263
  8033. },
  8034. "_lpos": {
  8035. "__type__": "cc.Vec3",
  8036. "x": 0,
  8037. "y": 0,
  8038. "z": 0
  8039. },
  8040. "_lrot": {
  8041. "__type__": "cc.Quat",
  8042. "x": 0,
  8043. "y": 0,
  8044. "z": 0,
  8045. "w": 1
  8046. },
  8047. "_lscale": {
  8048. "__type__": "cc.Vec3",
  8049. "x": 1,
  8050. "y": 1,
  8051. "z": 1
  8052. },
  8053. "_layer": 33554432,
  8054. "_euler": {
  8055. "__type__": "cc.Vec3",
  8056. "x": 0,
  8057. "y": 0,
  8058. "z": 0
  8059. },
  8060. "_id": ""
  8061. },
  8062. {
  8063. "__type__": "cc.UITransformComponent",
  8064. "_name": "",
  8065. "_objFlags": 0,
  8066. "node": {
  8067. "__id__": 260
  8068. },
  8069. "_enabled": true,
  8070. "_priority": 0,
  8071. "_contentSize": {
  8072. "__type__": "cc.Size",
  8073. "width": 40,
  8074. "height": 36
  8075. },
  8076. "_anchorPoint": {
  8077. "__type__": "cc.Vec2",
  8078. "x": 0.5,
  8079. "y": 0.5
  8080. },
  8081. "_id": ""
  8082. },
  8083. {
  8084. "__type__": "cc.SpriteComponent",
  8085. "_name": "",
  8086. "_objFlags": 0,
  8087. "node": {
  8088. "__id__": 260
  8089. },
  8090. "_enabled": true,
  8091. "_srcBlendFactor": 2,
  8092. "_dstBlendFactor": 4,
  8093. "_color": {
  8094. "__type__": "cc.Color",
  8095. "r": 255,
  8096. "g": 255,
  8097. "b": 255,
  8098. "a": 255
  8099. },
  8100. "_sharedMaterial": null,
  8101. "_spriteFrame": {
  8102. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941"
  8103. },
  8104. "_type": 0,
  8105. "_fillType": 0,
  8106. "_sizeMode": 1,
  8107. "_fillCenter": {
  8108. "__type__": "cc.Vec2",
  8109. "x": 0,
  8110. "y": 0
  8111. },
  8112. "_fillStart": 0,
  8113. "_fillRange": 0,
  8114. "_isTrimmedMode": true,
  8115. "_useGrayscale": false,
  8116. "_atlas": null,
  8117. "_id": ""
  8118. },
  8119. {
  8120. "__type__": "cc.PrefabInfo",
  8121. "root": {
  8122. "__id__": 1
  8123. },
  8124. "asset": {
  8125. "__id__": 0
  8126. },
  8127. "fileId": "f0gxMGQ+tAs6VnYHt3THDz",
  8128. "sync": false,
  8129. "_synced": {
  8130. "default": false,
  8131. "serializable": false
  8132. }
  8133. },
  8134. {
  8135. "__type__": "cc.UITransformComponent",
  8136. "_name": "DragLayer<UITransformComponent>",
  8137. "_objFlags": 0,
  8138. "node": {
  8139. "__id__": 259
  8140. },
  8141. "_enabled": true,
  8142. "_priority": 0,
  8143. "_contentSize": {
  8144. "__type__": "cc.Size",
  8145. "width": 750,
  8146. "height": 1334
  8147. },
  8148. "_anchorPoint": {
  8149. "__type__": "cc.Vec2",
  8150. "x": 0,
  8151. "y": 0
  8152. },
  8153. "_id": ""
  8154. },
  8155. {
  8156. "__type__": "cc.WidgetComponent",
  8157. "_name": "DragLayer<WidgetComponent>",
  8158. "_objFlags": 0,
  8159. "node": {
  8160. "__id__": 259
  8161. },
  8162. "_enabled": true,
  8163. "_alignFlags": 45,
  8164. "_target": null,
  8165. "_left": 0,
  8166. "_right": 0,
  8167. "_top": 0,
  8168. "_bottom": 0,
  8169. "_horizontalCenter": 0,
  8170. "_verticalCenter": 0,
  8171. "_isAbsLeft": true,
  8172. "_isAbsRight": true,
  8173. "_isAbsTop": true,
  8174. "_isAbsBottom": true,
  8175. "_isAbsHorizontalCenter": true,
  8176. "_isAbsVerticalCenter": true,
  8177. "_originalWidth": 100,
  8178. "_originalHeight": 100,
  8179. "_alignMode": 2,
  8180. "_lockFlags": 0,
  8181. "_id": ""
  8182. },
  8183. {
  8184. "__type__": "cc.PrefabInfo",
  8185. "root": {
  8186. "__id__": 1
  8187. },
  8188. "asset": {
  8189. "__id__": 0
  8190. },
  8191. "fileId": "1fUaXPI/dEQZtqV4YDubOI",
  8192. "sync": false,
  8193. "_synced": {
  8194. "default": false,
  8195. "serializable": false
  8196. }
  8197. },
  8198. {
  8199. "__type__": "cc.Node",
  8200. "_name": "Hand",
  8201. "_objFlags": 0,
  8202. "_parent": {
  8203. "__id__": 1
  8204. },
  8205. "_children": [],
  8206. "_active": true,
  8207. "_components": [
  8208. {
  8209. "__id__": 268
  8210. },
  8211. {
  8212. "__id__": 269
  8213. },
  8214. {
  8215. "__id__": 270
  8216. }
  8217. ],
  8218. "_prefab": {
  8219. "__id__": 271
  8220. },
  8221. "_lpos": {
  8222. "__type__": "cc.Vec3",
  8223. "x": 84.152,
  8224. "y": 646.117,
  8225. "z": 0
  8226. },
  8227. "_lrot": {
  8228. "__type__": "cc.Quat",
  8229. "x": 0,
  8230. "y": 0,
  8231. "z": 0,
  8232. "w": 1
  8233. },
  8234. "_lscale": {
  8235. "__type__": "cc.Vec3",
  8236. "x": 1,
  8237. "y": 1,
  8238. "z": 1
  8239. },
  8240. "_layer": 1073741824,
  8241. "_euler": {
  8242. "__type__": "cc.Vec3",
  8243. "x": 0,
  8244. "y": 0,
  8245. "z": 0
  8246. },
  8247. "_id": ""
  8248. },
  8249. {
  8250. "__type__": "cc.UITransformComponent",
  8251. "_name": "Hand<UITransformComponent>",
  8252. "_objFlags": 0,
  8253. "node": {
  8254. "__id__": 267
  8255. },
  8256. "_enabled": true,
  8257. "_priority": 0,
  8258. "_contentSize": {
  8259. "__type__": "cc.Size",
  8260. "width": 114,
  8261. "height": 134
  8262. },
  8263. "_anchorPoint": {
  8264. "__type__": "cc.Vec2",
  8265. "x": 0.5,
  8266. "y": 0.5
  8267. },
  8268. "_id": ""
  8269. },
  8270. {
  8271. "__type__": "cc.SpriteComponent",
  8272. "_name": "Hand<SpriteComponent>",
  8273. "_objFlags": 0,
  8274. "node": {
  8275. "__id__": 267
  8276. },
  8277. "_enabled": true,
  8278. "_srcBlendFactor": 2,
  8279. "_dstBlendFactor": 4,
  8280. "_color": {
  8281. "__type__": "cc.Color",
  8282. "r": 255,
  8283. "g": 255,
  8284. "b": 255,
  8285. "a": 255
  8286. },
  8287. "_sharedMaterial": null,
  8288. "_spriteFrame": {
  8289. "__uuid__": "502528cb-f4a5-4a42-9663-35e3860f157a@f9941"
  8290. },
  8291. "_type": 0,
  8292. "_fillType": 0,
  8293. "_sizeMode": 1,
  8294. "_fillCenter": {
  8295. "__type__": "cc.Vec2",
  8296. "x": 0,
  8297. "y": 0
  8298. },
  8299. "_fillStart": 0,
  8300. "_fillRange": 0,
  8301. "_isTrimmedMode": true,
  8302. "_useGrayscale": false,
  8303. "_atlas": null,
  8304. "_id": ""
  8305. },
  8306. {
  8307. "__type__": "cc.AnimationComponent",
  8308. "_name": "Hand<AnimationComponent>",
  8309. "_objFlags": 0,
  8310. "node": {
  8311. "__id__": 267
  8312. },
  8313. "_enabled": true,
  8314. "playOnLoad": true,
  8315. "_clips": [
  8316. {
  8317. "__uuid__": "06ce7b63-73bf-43be-b5b9-3fbb885bb2e0"
  8318. }
  8319. ],
  8320. "_defaultClip": {
  8321. "__uuid__": "06ce7b63-73bf-43be-b5b9-3fbb885bb2e0"
  8322. },
  8323. "_id": ""
  8324. },
  8325. {
  8326. "__type__": "cc.PrefabInfo",
  8327. "root": {
  8328. "__id__": 1
  8329. },
  8330. "asset": {
  8331. "__id__": 0
  8332. },
  8333. "fileId": "eeRXCfLCNIObXkOnMOYjvm",
  8334. "sync": false,
  8335. "_synced": {
  8336. "default": false,
  8337. "serializable": false
  8338. }
  8339. },
  8340. {
  8341. "__type__": "cc.UITransformComponent",
  8342. "_name": "PrepareUI<UITransformComponent>",
  8343. "_objFlags": 0,
  8344. "node": {
  8345. "__id__": 1
  8346. },
  8347. "_enabled": true,
  8348. "_priority": 0,
  8349. "_contentSize": {
  8350. "__type__": "cc.Size",
  8351. "width": 750,
  8352. "height": 1334
  8353. },
  8354. "_anchorPoint": {
  8355. "__type__": "cc.Vec2",
  8356. "x": 0,
  8357. "y": 0
  8358. },
  8359. "_id": ""
  8360. },
  8361. {
  8362. "__type__": "cc.WidgetComponent",
  8363. "_name": "PrepareUI<WidgetComponent>",
  8364. "_objFlags": 0,
  8365. "node": {
  8366. "__id__": 1
  8367. },
  8368. "_enabled": true,
  8369. "_alignFlags": 45,
  8370. "_target": null,
  8371. "_left": 0,
  8372. "_right": 0,
  8373. "_top": 0,
  8374. "_bottom": 0,
  8375. "_horizontalCenter": 0,
  8376. "_verticalCenter": 0,
  8377. "_isAbsLeft": true,
  8378. "_isAbsRight": true,
  8379. "_isAbsTop": true,
  8380. "_isAbsBottom": true,
  8381. "_isAbsHorizontalCenter": true,
  8382. "_isAbsVerticalCenter": true,
  8383. "_originalWidth": 100,
  8384. "_originalHeight": 100,
  8385. "_alignMode": 2,
  8386. "_lockFlags": 0,
  8387. "_id": ""
  8388. },
  8389. {
  8390. "__type__": "8fc93vzZ1xF6qpWn8Qq53+4",
  8391. "_name": "PrepareUI<PrepareMediator>",
  8392. "_objFlags": 0,
  8393. "node": {
  8394. "__id__": 1
  8395. },
  8396. "_enabled": true,
  8397. "HandTip": {
  8398. "__id__": 267
  8399. },
  8400. "bufferNode": {
  8401. "__id__": 123
  8402. },
  8403. "glodLabel": {
  8404. "__id__": 78
  8405. },
  8406. "glodLabel1": {
  8407. "__id__": 82
  8408. },
  8409. "diamondLabel": {
  8410. "__id__": 100
  8411. },
  8412. "gunNameLabel": {
  8413. "__id__": 35
  8414. },
  8415. "levelLabel": {
  8416. "__id__": 48
  8417. },
  8418. "shopButton": {
  8419. "__id__": 224
  8420. },
  8421. "autoSynthesisLabel": {
  8422. "__id__": 148
  8423. },
  8424. "quickBuyButton": {
  8425. "__id__": 255
  8426. },
  8427. "quickBuyWeaponIcon": {
  8428. "__id__": 251
  8429. },
  8430. "quickBuyWeaponPriceLabel": {
  8431. "__id__": 247
  8432. },
  8433. "weaponDragIcon": {
  8434. "__id__": 262
  8435. },
  8436. "deleteWeaponNode": {
  8437. "__id__": 208
  8438. },
  8439. "equipWeaponNode": {
  8440. "__id__": 29
  8441. },
  8442. "WeaponCellPrefab": {
  8443. "__uuid__": "eb8a5df4-1c93-49a2-a673-06ed863b2c27"
  8444. },
  8445. "weaponList": {
  8446. "__id__": 58
  8447. },
  8448. "_id": ""
  8449. },
  8450. {
  8451. "__type__": "cc.PrefabInfo",
  8452. "root": {
  8453. "__id__": 1
  8454. },
  8455. "asset": {
  8456. "__id__": 0
  8457. },
  8458. "fileId": "54NQB7OnVAirjVxHlFJxQM",
  8459. "sync": false,
  8460. "_synced": {
  8461. "default": false,
  8462. "serializable": false
  8463. }
  8464. }
  8465. ]