upgradeGunUI.prefab 146 KB

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