PrepareUI.prefab 152 KB

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