PrepareUI.prefab 174 KB

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