PrepareUI.prefab 159 KB

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