PrepareUI.prefab 179 KB

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