CardUI.prefab 122 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "CardUI",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 9
  28. },
  29. {
  30. "__id__": 15
  31. },
  32. {
  33. "__id__": 18
  34. },
  35. {
  36. "__id__": 23
  37. },
  38. {
  39. "__id__": 26
  40. },
  41. {
  42. "__id__": 28
  43. },
  44. {
  45. "__id__": 31
  46. },
  47. {
  48. "__id__": 45
  49. },
  50. {
  51. "__id__": 77
  52. },
  53. {
  54. "__id__": 80
  55. },
  56. {
  57. "__id__": 83
  58. },
  59. {
  60. "__id__": 88
  61. },
  62. {
  63. "__id__": 112
  64. },
  65. {
  66. "__id__": 115
  67. },
  68. {
  69. "__id__": 118
  70. },
  71. {
  72. "__id__": 123
  73. },
  74. {
  75. "__id__": 128
  76. },
  77. {
  78. "__id__": 132
  79. },
  80. {
  81. "__id__": 135
  82. },
  83. {
  84. "__id__": 139
  85. },
  86. {
  87. "__id__": 170
  88. },
  89. {
  90. "__id__": 206
  91. }
  92. ],
  93. "_active": true,
  94. "_components": [
  95. {
  96. "__id__": 210
  97. }
  98. ],
  99. "_prefab": {
  100. "__id__": 211
  101. },
  102. "_opacity": 255,
  103. "_color": {
  104. "__type__": "cc.Color",
  105. "r": 255,
  106. "g": 255,
  107. "b": 255,
  108. "a": 255
  109. },
  110. "_contentSize": {
  111. "__type__": "cc.Size",
  112. "width": 2400,
  113. "height": 1080
  114. },
  115. "_anchorPoint": {
  116. "__type__": "cc.Vec2",
  117. "x": 0.5,
  118. "y": 0.5
  119. },
  120. "_trs": {
  121. "__type__": "TypedArray",
  122. "ctor": "Float64Array",
  123. "array": [
  124. 0,
  125. 0,
  126. 0,
  127. 0,
  128. 0,
  129. 0,
  130. 1,
  131. 1,
  132. 1,
  133. 1
  134. ]
  135. },
  136. "_eulerAngles": {
  137. "__type__": "cc.Vec3",
  138. "x": 0,
  139. "y": 0,
  140. "z": 0
  141. },
  142. "_skewX": 0,
  143. "_skewY": 0,
  144. "_is3DNode": false,
  145. "_groupIndex": 0,
  146. "groupIndex": 0,
  147. "_id": ""
  148. },
  149. {
  150. "__type__": "cc.Node",
  151. "_name": "bg",
  152. "_objFlags": 0,
  153. "_parent": {
  154. "__id__": 1
  155. },
  156. "_children": [],
  157. "_active": true,
  158. "_components": [
  159. {
  160. "__id__": 3
  161. },
  162. {
  163. "__id__": 4
  164. }
  165. ],
  166. "_prefab": {
  167. "__id__": 5
  168. },
  169. "_opacity": 204,
  170. "_color": {
  171. "__type__": "cc.Color",
  172. "r": 0,
  173. "g": 0,
  174. "b": 0,
  175. "a": 255
  176. },
  177. "_contentSize": {
  178. "__type__": "cc.Size",
  179. "width": 2400,
  180. "height": 1080
  181. },
  182. "_anchorPoint": {
  183. "__type__": "cc.Vec2",
  184. "x": 0.5,
  185. "y": 0.5
  186. },
  187. "_trs": {
  188. "__type__": "TypedArray",
  189. "ctor": "Float64Array",
  190. "array": [
  191. 0,
  192. 0,
  193. 0,
  194. 0,
  195. 0,
  196. 0,
  197. 1,
  198. 1,
  199. 1,
  200. 1
  201. ]
  202. },
  203. "_eulerAngles": {
  204. "__type__": "cc.Vec3",
  205. "x": 0,
  206. "y": 0,
  207. "z": 0
  208. },
  209. "_skewX": 0,
  210. "_skewY": 0,
  211. "_is3DNode": false,
  212. "_groupIndex": 0,
  213. "groupIndex": 0,
  214. "_id": ""
  215. },
  216. {
  217. "__type__": "cc.Sprite",
  218. "_name": "",
  219. "_objFlags": 0,
  220. "node": {
  221. "__id__": 2
  222. },
  223. "_enabled": true,
  224. "_materials": [
  225. {
  226. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  227. }
  228. ],
  229. "_srcBlendFactor": 770,
  230. "_dstBlendFactor": 771,
  231. "_spriteFrame": {
  232. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  233. },
  234. "_type": 1,
  235. "_sizeMode": 0,
  236. "_fillType": 0,
  237. "_fillCenter": {
  238. "__type__": "cc.Vec2",
  239. "x": 0,
  240. "y": 0
  241. },
  242. "_fillStart": 0,
  243. "_fillRange": 0,
  244. "_isTrimmedMode": true,
  245. "_atlas": null,
  246. "_id": ""
  247. },
  248. {
  249. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  250. "_name": "",
  251. "_objFlags": 0,
  252. "node": {
  253. "__id__": 2
  254. },
  255. "_enabled": true,
  256. "widthFit": true,
  257. "heightFit": true,
  258. "_id": ""
  259. },
  260. {
  261. "__type__": "cc.PrefabInfo",
  262. "root": {
  263. "__id__": 1
  264. },
  265. "asset": {
  266. "__id__": 0
  267. },
  268. "fileId": "4fwWN0SpNETYW4BpNtjEnr",
  269. "sync": false
  270. },
  271. {
  272. "__type__": "cc.Node",
  273. "_name": "common_popup",
  274. "_objFlags": 0,
  275. "_parent": {
  276. "__id__": 1
  277. },
  278. "_children": [],
  279. "_active": true,
  280. "_components": [
  281. {
  282. "__id__": 7
  283. }
  284. ],
  285. "_prefab": {
  286. "__id__": 8
  287. },
  288. "_opacity": 255,
  289. "_color": {
  290. "__type__": "cc.Color",
  291. "r": 255,
  292. "g": 255,
  293. "b": 255,
  294. "a": 255
  295. },
  296. "_contentSize": {
  297. "__type__": "cc.Size",
  298. "width": 970,
  299. "height": 934
  300. },
  301. "_anchorPoint": {
  302. "__type__": "cc.Vec2",
  303. "x": 0.5,
  304. "y": 0.5
  305. },
  306. "_trs": {
  307. "__type__": "TypedArray",
  308. "ctor": "Float64Array",
  309. "array": [
  310. 0,
  311. -15.425,
  312. 0,
  313. 0,
  314. 0,
  315. 0,
  316. 1,
  317. 1,
  318. 1,
  319. 1
  320. ]
  321. },
  322. "_eulerAngles": {
  323. "__type__": "cc.Vec3",
  324. "x": 0,
  325. "y": 0,
  326. "z": 0
  327. },
  328. "_skewX": 0,
  329. "_skewY": 0,
  330. "_is3DNode": false,
  331. "_groupIndex": 0,
  332. "groupIndex": 0,
  333. "_id": ""
  334. },
  335. {
  336. "__type__": "cc.Sprite",
  337. "_name": "",
  338. "_objFlags": 0,
  339. "node": {
  340. "__id__": 6
  341. },
  342. "_enabled": true,
  343. "_materials": [
  344. {
  345. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  346. }
  347. ],
  348. "_srcBlendFactor": 770,
  349. "_dstBlendFactor": 771,
  350. "_spriteFrame": {
  351. "__uuid__": "e07f7d80-677d-4def-b648-88341c7a5b1a"
  352. },
  353. "_type": 1,
  354. "_sizeMode": 0,
  355. "_fillType": 0,
  356. "_fillCenter": {
  357. "__type__": "cc.Vec2",
  358. "x": 0,
  359. "y": 0
  360. },
  361. "_fillStart": 0,
  362. "_fillRange": 0,
  363. "_isTrimmedMode": true,
  364. "_atlas": null,
  365. "_id": ""
  366. },
  367. {
  368. "__type__": "cc.PrefabInfo",
  369. "root": {
  370. "__id__": 1
  371. },
  372. "asset": {
  373. "__id__": 0
  374. },
  375. "fileId": "775VDHzE9BPaEPHe7CKJiL",
  376. "sync": false
  377. },
  378. {
  379. "__type__": "cc.Node",
  380. "_name": "em_close",
  381. "_objFlags": 0,
  382. "_parent": {
  383. "__id__": 1
  384. },
  385. "_children": [],
  386. "_active": true,
  387. "_components": [
  388. {
  389. "__id__": 10
  390. },
  391. {
  392. "__id__": 11
  393. },
  394. {
  395. "__id__": 12
  396. }
  397. ],
  398. "_prefab": {
  399. "__id__": 14
  400. },
  401. "_opacity": 255,
  402. "_color": {
  403. "__type__": "cc.Color",
  404. "r": 255,
  405. "g": 255,
  406. "b": 255,
  407. "a": 255
  408. },
  409. "_contentSize": {
  410. "__type__": "cc.Size",
  411. "width": 135,
  412. "height": 135
  413. },
  414. "_anchorPoint": {
  415. "__type__": "cc.Vec2",
  416. "x": 0.5,
  417. "y": 0.5
  418. },
  419. "_trs": {
  420. "__type__": "TypedArray",
  421. "ctor": "Float64Array",
  422. "array": [
  423. 435.571,
  424. 401.999,
  425. 0,
  426. 0,
  427. 0,
  428. 0,
  429. 1,
  430. 1,
  431. 1,
  432. 1
  433. ]
  434. },
  435. "_eulerAngles": {
  436. "__type__": "cc.Vec3",
  437. "x": 0,
  438. "y": 0,
  439. "z": 0
  440. },
  441. "_skewX": 0,
  442. "_skewY": 0,
  443. "_is3DNode": false,
  444. "_groupIndex": 0,
  445. "groupIndex": 0,
  446. "_id": ""
  447. },
  448. {
  449. "__type__": "cc.Sprite",
  450. "_name": "",
  451. "_objFlags": 0,
  452. "node": {
  453. "__id__": 9
  454. },
  455. "_enabled": true,
  456. "_materials": [
  457. {
  458. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  459. }
  460. ],
  461. "_srcBlendFactor": 770,
  462. "_dstBlendFactor": 771,
  463. "_spriteFrame": {
  464. "__uuid__": "23c8a125-f917-46e9-bcf8-5d8af9ec00c7"
  465. },
  466. "_type": 0,
  467. "_sizeMode": 1,
  468. "_fillType": 0,
  469. "_fillCenter": {
  470. "__type__": "cc.Vec2",
  471. "x": 0,
  472. "y": 0
  473. },
  474. "_fillStart": 0,
  475. "_fillRange": 0,
  476. "_isTrimmedMode": true,
  477. "_atlas": null,
  478. "_id": ""
  479. },
  480. {
  481. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  482. "_name": "",
  483. "_objFlags": 0,
  484. "node": {
  485. "__id__": 9
  486. },
  487. "_enabled": true,
  488. "openContinuous": true,
  489. "continuousTime": 0.2,
  490. "multiTouch": false,
  491. "_id": ""
  492. },
  493. {
  494. "__type__": "61994AafntNFIbmt1zoyLq+",
  495. "_name": "",
  496. "_objFlags": 0,
  497. "node": {
  498. "__id__": 9
  499. },
  500. "_enabled": true,
  501. "_normalMaterial": null,
  502. "_grayMaterial": null,
  503. "duration": 0.1,
  504. "zoomScale": 1.2,
  505. "clickEvents": [
  506. {
  507. "__id__": 13
  508. }
  509. ],
  510. "_N$interactable": true,
  511. "_N$enableAutoGrayEffect": false,
  512. "_N$transition": 0,
  513. "transition": 0,
  514. "_N$normalColor": {
  515. "__type__": "cc.Color",
  516. "r": 255,
  517. "g": 255,
  518. "b": 255,
  519. "a": 255
  520. },
  521. "_N$pressedColor": {
  522. "__type__": "cc.Color",
  523. "r": 211,
  524. "g": 211,
  525. "b": 211,
  526. "a": 255
  527. },
  528. "pressedColor": {
  529. "__type__": "cc.Color",
  530. "r": 211,
  531. "g": 211,
  532. "b": 211,
  533. "a": 255
  534. },
  535. "_N$hoverColor": {
  536. "__type__": "cc.Color",
  537. "r": 255,
  538. "g": 255,
  539. "b": 255,
  540. "a": 255
  541. },
  542. "hoverColor": {
  543. "__type__": "cc.Color",
  544. "r": 255,
  545. "g": 255,
  546. "b": 255,
  547. "a": 255
  548. },
  549. "_N$disabledColor": {
  550. "__type__": "cc.Color",
  551. "r": 124,
  552. "g": 124,
  553. "b": 124,
  554. "a": 255
  555. },
  556. "_N$normalSprite": null,
  557. "_N$pressedSprite": null,
  558. "pressedSprite": null,
  559. "_N$hoverSprite": null,
  560. "hoverSprite": null,
  561. "_N$disabledSprite": null,
  562. "_N$target": null,
  563. "_id": ""
  564. },
  565. {
  566. "__type__": "cc.ClickEvent",
  567. "target": {
  568. "__id__": 1
  569. },
  570. "component": "",
  571. "_componentId": "9f2cdExi5NExLy5dFdAEOtt",
  572. "handler": "hide",
  573. "customEventData": ""
  574. },
  575. {
  576. "__type__": "cc.PrefabInfo",
  577. "root": {
  578. "__id__": 1
  579. },
  580. "asset": {
  581. "__id__": 0
  582. },
  583. "fileId": "8cWIedk1RESZ1b+uyKRXFj",
  584. "sync": false
  585. },
  586. {
  587. "__type__": "cc.Node",
  588. "_name": "bar_1",
  589. "_objFlags": 0,
  590. "_parent": {
  591. "__id__": 1
  592. },
  593. "_children": [],
  594. "_active": true,
  595. "_components": [
  596. {
  597. "__id__": 16
  598. }
  599. ],
  600. "_prefab": {
  601. "__id__": 17
  602. },
  603. "_opacity": 255,
  604. "_color": {
  605. "__type__": "cc.Color",
  606. "r": 255,
  607. "g": 255,
  608. "b": 255,
  609. "a": 255
  610. },
  611. "_contentSize": {
  612. "__type__": "cc.Size",
  613. "width": 515,
  614. "height": 90
  615. },
  616. "_anchorPoint": {
  617. "__type__": "cc.Vec2",
  618. "x": 0.5,
  619. "y": 0.5
  620. },
  621. "_trs": {
  622. "__type__": "TypedArray",
  623. "ctor": "Float64Array",
  624. "array": [
  625. 0,
  626. 433.706,
  627. 0,
  628. 0,
  629. 0,
  630. 0,
  631. 1,
  632. 1,
  633. 1,
  634. 1
  635. ]
  636. },
  637. "_eulerAngles": {
  638. "__type__": "cc.Vec3",
  639. "x": 0,
  640. "y": 0,
  641. "z": 0
  642. },
  643. "_skewX": 0,
  644. "_skewY": 0,
  645. "_is3DNode": false,
  646. "_groupIndex": 0,
  647. "groupIndex": 0,
  648. "_id": ""
  649. },
  650. {
  651. "__type__": "cc.Sprite",
  652. "_name": "",
  653. "_objFlags": 0,
  654. "node": {
  655. "__id__": 15
  656. },
  657. "_enabled": true,
  658. "_materials": [
  659. {
  660. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  661. }
  662. ],
  663. "_srcBlendFactor": 770,
  664. "_dstBlendFactor": 771,
  665. "_spriteFrame": {
  666. "__uuid__": "147924ff-94f3-47c2-bed9-754856ec9715"
  667. },
  668. "_type": 0,
  669. "_sizeMode": 0,
  670. "_fillType": 0,
  671. "_fillCenter": {
  672. "__type__": "cc.Vec2",
  673. "x": 0,
  674. "y": 0
  675. },
  676. "_fillStart": 0,
  677. "_fillRange": 0,
  678. "_isTrimmedMode": true,
  679. "_atlas": null,
  680. "_id": ""
  681. },
  682. {
  683. "__type__": "cc.PrefabInfo",
  684. "root": {
  685. "__id__": 1
  686. },
  687. "asset": {
  688. "__id__": 0
  689. },
  690. "fileId": "204YjmyAxCp5NzkeRe69ED",
  691. "sync": false
  692. },
  693. {
  694. "__type__": "cc.Node",
  695. "_name": "skillName",
  696. "_objFlags": 0,
  697. "_parent": {
  698. "__id__": 1
  699. },
  700. "_children": [],
  701. "_active": true,
  702. "_components": [
  703. {
  704. "__id__": 19
  705. },
  706. {
  707. "__id__": 20
  708. },
  709. {
  710. "__id__": 21
  711. }
  712. ],
  713. "_prefab": {
  714. "__id__": 22
  715. },
  716. "_opacity": 255,
  717. "_color": {
  718. "__type__": "cc.Color",
  719. "r": 255,
  720. "g": 255,
  721. "b": 255,
  722. "a": 255
  723. },
  724. "_contentSize": {
  725. "__type__": "cc.Size",
  726. "width": 204.7,
  727. "height": 69
  728. },
  729. "_anchorPoint": {
  730. "__type__": "cc.Vec2",
  731. "x": 0.5,
  732. "y": 0.5
  733. },
  734. "_trs": {
  735. "__type__": "TypedArray",
  736. "ctor": "Float64Array",
  737. "array": [
  738. 0,
  739. 440.422,
  740. 0,
  741. 0,
  742. 0,
  743. 0,
  744. 1,
  745. 1,
  746. 1,
  747. 1
  748. ]
  749. },
  750. "_eulerAngles": {
  751. "__type__": "cc.Vec3",
  752. "x": 0,
  753. "y": 0,
  754. "z": 0
  755. },
  756. "_skewX": 0,
  757. "_skewY": 0,
  758. "_is3DNode": false,
  759. "_groupIndex": 0,
  760. "groupIndex": 0,
  761. "_id": ""
  762. },
  763. {
  764. "__type__": "cc.Label",
  765. "_name": "",
  766. "_objFlags": 0,
  767. "node": {
  768. "__id__": 18
  769. },
  770. "_enabled": true,
  771. "_materials": [
  772. {
  773. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  774. }
  775. ],
  776. "_srcBlendFactor": 770,
  777. "_dstBlendFactor": 771,
  778. "_string": "skill name",
  779. "_N$string": "skill name",
  780. "_fontSize": 48,
  781. "_lineHeight": 50,
  782. "_enableWrapText": true,
  783. "_N$file": {
  784. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  785. },
  786. "_isSystemFontUsed": false,
  787. "_spacingX": 0,
  788. "_batchAsBitmap": false,
  789. "_styleFlags": 0,
  790. "_underlineHeight": 0,
  791. "_N$horizontalAlign": 1,
  792. "_N$verticalAlign": 1,
  793. "_N$fontFamily": "Arial",
  794. "_N$overflow": 0,
  795. "_N$cacheMode": 0,
  796. "_id": ""
  797. },
  798. {
  799. "__type__": "cc.LabelOutline",
  800. "_name": "",
  801. "_objFlags": 0,
  802. "node": {
  803. "__id__": 18
  804. },
  805. "_enabled": true,
  806. "_color": {
  807. "__type__": "cc.Color",
  808. "r": 38,
  809. "g": 17,
  810. "b": 12,
  811. "a": 255
  812. },
  813. "_width": 3,
  814. "_id": ""
  815. },
  816. {
  817. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  818. "_name": "",
  819. "_objFlags": 0,
  820. "node": {
  821. "__id__": 18
  822. },
  823. "_enabled": true,
  824. "_englishCase": 0,
  825. "i18n_string": "",
  826. "i18n_params": [],
  827. "_addColon": false,
  828. "_id": ""
  829. },
  830. {
  831. "__type__": "cc.PrefabInfo",
  832. "root": {
  833. "__id__": 1
  834. },
  835. "asset": {
  836. "__id__": 0
  837. },
  838. "fileId": "506AYIu/FA6JgCCl9sUyZY",
  839. "sync": false
  840. },
  841. {
  842. "__type__": "cc.Node",
  843. "_name": "bottom1",
  844. "_objFlags": 0,
  845. "_parent": {
  846. "__id__": 1
  847. },
  848. "_children": [],
  849. "_active": true,
  850. "_components": [
  851. {
  852. "__id__": 24
  853. }
  854. ],
  855. "_prefab": {
  856. "__id__": 25
  857. },
  858. "_opacity": 255,
  859. "_color": {
  860. "__type__": "cc.Color",
  861. "r": 255,
  862. "g": 255,
  863. "b": 255,
  864. "a": 255
  865. },
  866. "_contentSize": {
  867. "__type__": "cc.Size",
  868. "width": 800,
  869. "height": 200
  870. },
  871. "_anchorPoint": {
  872. "__type__": "cc.Vec2",
  873. "x": 0.5,
  874. "y": 0.5
  875. },
  876. "_trs": {
  877. "__type__": "TypedArray",
  878. "ctor": "Float64Array",
  879. "array": [
  880. 0,
  881. 279.744,
  882. 0,
  883. 0,
  884. 0,
  885. 0,
  886. 1,
  887. 1,
  888. 1,
  889. 1
  890. ]
  891. },
  892. "_eulerAngles": {
  893. "__type__": "cc.Vec3",
  894. "x": 0,
  895. "y": 0,
  896. "z": 0
  897. },
  898. "_skewX": 0,
  899. "_skewY": 0,
  900. "_is3DNode": false,
  901. "_groupIndex": 0,
  902. "groupIndex": 0,
  903. "_id": ""
  904. },
  905. {
  906. "__type__": "cc.Sprite",
  907. "_name": "",
  908. "_objFlags": 0,
  909. "node": {
  910. "__id__": 23
  911. },
  912. "_enabled": true,
  913. "_materials": [
  914. {
  915. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  916. }
  917. ],
  918. "_srcBlendFactor": 770,
  919. "_dstBlendFactor": 771,
  920. "_spriteFrame": {
  921. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  922. },
  923. "_type": 1,
  924. "_sizeMode": 0,
  925. "_fillType": 0,
  926. "_fillCenter": {
  927. "__type__": "cc.Vec2",
  928. "x": 0,
  929. "y": 0
  930. },
  931. "_fillStart": 0,
  932. "_fillRange": 0,
  933. "_isTrimmedMode": true,
  934. "_atlas": null,
  935. "_id": ""
  936. },
  937. {
  938. "__type__": "cc.PrefabInfo",
  939. "root": {
  940. "__id__": 1
  941. },
  942. "asset": {
  943. "__id__": 0
  944. },
  945. "fileId": "f6ZHYbmRNDJKAUQcvb38ea",
  946. "sync": false
  947. },
  948. {
  949. "__type__": "cc.Node",
  950. "_name": "card",
  951. "_objFlags": 0,
  952. "_parent": {
  953. "__id__": 1
  954. },
  955. "_children": [],
  956. "_active": true,
  957. "_components": [],
  958. "_prefab": {
  959. "__id__": 27
  960. },
  961. "_opacity": 255,
  962. "_color": {
  963. "__type__": "cc.Color",
  964. "r": 255,
  965. "g": 255,
  966. "b": 255,
  967. "a": 255
  968. },
  969. "_contentSize": {
  970. "__type__": "cc.Size",
  971. "width": 0,
  972. "height": 0
  973. },
  974. "_anchorPoint": {
  975. "__type__": "cc.Vec2",
  976. "x": 0.5,
  977. "y": 0.5
  978. },
  979. "_trs": {
  980. "__type__": "TypedArray",
  981. "ctor": "Float64Array",
  982. "array": [
  983. -316.937,
  984. 297.464,
  985. 0,
  986. 0,
  987. 0,
  988. 0,
  989. 1,
  990. 0.9,
  991. 0.9,
  992. 1
  993. ]
  994. },
  995. "_eulerAngles": {
  996. "__type__": "cc.Vec3",
  997. "x": 0,
  998. "y": 0,
  999. "z": 0
  1000. },
  1001. "_skewX": 0,
  1002. "_skewY": 0,
  1003. "_is3DNode": false,
  1004. "_groupIndex": 0,
  1005. "groupIndex": 0,
  1006. "_id": ""
  1007. },
  1008. {
  1009. "__type__": "cc.PrefabInfo",
  1010. "root": {
  1011. "__id__": 26
  1012. },
  1013. "asset": {
  1014. "__uuid__": "862030fe-6b71-4cfa-a67b-2e1d62b79604"
  1015. },
  1016. "fileId": "63gor95/NNEKit2oww4i6s",
  1017. "sync": false
  1018. },
  1019. {
  1020. "__type__": "cc.Node",
  1021. "_name": "block2",
  1022. "_objFlags": 0,
  1023. "_parent": {
  1024. "__id__": 1
  1025. },
  1026. "_children": [],
  1027. "_active": true,
  1028. "_components": [
  1029. {
  1030. "__id__": 29
  1031. }
  1032. ],
  1033. "_prefab": {
  1034. "__id__": 30
  1035. },
  1036. "_opacity": 255,
  1037. "_color": {
  1038. "__type__": "cc.Color",
  1039. "r": 41,
  1040. "g": 29,
  1041. "b": 14,
  1042. "a": 255
  1043. },
  1044. "_contentSize": {
  1045. "__type__": "cc.Size",
  1046. "width": 630,
  1047. "height": 100
  1048. },
  1049. "_anchorPoint": {
  1050. "__type__": "cc.Vec2",
  1051. "x": 0.5,
  1052. "y": 0.5
  1053. },
  1054. "_trs": {
  1055. "__type__": "TypedArray",
  1056. "ctor": "Float64Array",
  1057. "array": [
  1058. 77.793,
  1059. 319.762,
  1060. 0,
  1061. 0,
  1062. 0,
  1063. 0,
  1064. 1,
  1065. 1,
  1066. 1,
  1067. 1
  1068. ]
  1069. },
  1070. "_eulerAngles": {
  1071. "__type__": "cc.Vec3",
  1072. "x": 0,
  1073. "y": 0,
  1074. "z": 0
  1075. },
  1076. "_skewX": 0,
  1077. "_skewY": 0,
  1078. "_is3DNode": false,
  1079. "_groupIndex": 0,
  1080. "groupIndex": 0,
  1081. "_id": ""
  1082. },
  1083. {
  1084. "__type__": "cc.Sprite",
  1085. "_name": "",
  1086. "_objFlags": 0,
  1087. "node": {
  1088. "__id__": 28
  1089. },
  1090. "_enabled": true,
  1091. "_materials": [
  1092. {
  1093. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1094. }
  1095. ],
  1096. "_srcBlendFactor": 770,
  1097. "_dstBlendFactor": 771,
  1098. "_spriteFrame": {
  1099. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  1100. },
  1101. "_type": 1,
  1102. "_sizeMode": 0,
  1103. "_fillType": 0,
  1104. "_fillCenter": {
  1105. "__type__": "cc.Vec2",
  1106. "x": 0,
  1107. "y": 0
  1108. },
  1109. "_fillStart": 0,
  1110. "_fillRange": 0,
  1111. "_isTrimmedMode": true,
  1112. "_atlas": null,
  1113. "_id": ""
  1114. },
  1115. {
  1116. "__type__": "cc.PrefabInfo",
  1117. "root": {
  1118. "__id__": 1
  1119. },
  1120. "asset": {
  1121. "__id__": 0
  1122. },
  1123. "fileId": "73NyAk7LtHBIU+Kp988kyX",
  1124. "sync": false
  1125. },
  1126. {
  1127. "__type__": "cc.Node",
  1128. "_name": "rtScrollView",
  1129. "_objFlags": 0,
  1130. "_parent": {
  1131. "__id__": 1
  1132. },
  1133. "_children": [
  1134. {
  1135. "__id__": 32
  1136. }
  1137. ],
  1138. "_active": true,
  1139. "_components": [
  1140. {
  1141. "__id__": 42
  1142. },
  1143. {
  1144. "__id__": 43
  1145. }
  1146. ],
  1147. "_prefab": {
  1148. "__id__": 44
  1149. },
  1150. "_opacity": 255,
  1151. "_color": {
  1152. "__type__": "cc.Color",
  1153. "r": 255,
  1154. "g": 255,
  1155. "b": 255,
  1156. "a": 255
  1157. },
  1158. "_contentSize": {
  1159. "__type__": "cc.Size",
  1160. "width": 630,
  1161. "height": 100
  1162. },
  1163. "_anchorPoint": {
  1164. "__type__": "cc.Vec2",
  1165. "x": 0.5,
  1166. "y": 0.5
  1167. },
  1168. "_trs": {
  1169. "__type__": "TypedArray",
  1170. "ctor": "Float64Array",
  1171. "array": [
  1172. 70,
  1173. 320,
  1174. 0,
  1175. 0,
  1176. 0,
  1177. 0,
  1178. 1,
  1179. 1,
  1180. 1,
  1181. 1
  1182. ]
  1183. },
  1184. "_eulerAngles": {
  1185. "__type__": "cc.Vec3",
  1186. "x": 0,
  1187. "y": 0,
  1188. "z": 0
  1189. },
  1190. "_skewX": 0,
  1191. "_skewY": 0,
  1192. "_is3DNode": false,
  1193. "_groupIndex": 0,
  1194. "groupIndex": 0,
  1195. "_id": ""
  1196. },
  1197. {
  1198. "__type__": "cc.Node",
  1199. "_name": "view",
  1200. "_objFlags": 0,
  1201. "_parent": {
  1202. "__id__": 31
  1203. },
  1204. "_children": [
  1205. {
  1206. "__id__": 33
  1207. }
  1208. ],
  1209. "_active": true,
  1210. "_components": [
  1211. {
  1212. "__id__": 40
  1213. }
  1214. ],
  1215. "_prefab": {
  1216. "__id__": 41
  1217. },
  1218. "_opacity": 255,
  1219. "_color": {
  1220. "__type__": "cc.Color",
  1221. "r": 255,
  1222. "g": 255,
  1223. "b": 255,
  1224. "a": 255
  1225. },
  1226. "_contentSize": {
  1227. "__type__": "cc.Size",
  1228. "width": 630,
  1229. "height": 100
  1230. },
  1231. "_anchorPoint": {
  1232. "__type__": "cc.Vec2",
  1233. "x": 0.5,
  1234. "y": 0.5
  1235. },
  1236. "_trs": {
  1237. "__type__": "TypedArray",
  1238. "ctor": "Float64Array",
  1239. "array": [
  1240. 0,
  1241. 0,
  1242. 0,
  1243. 0,
  1244. 0,
  1245. 0,
  1246. 1,
  1247. 1,
  1248. 1,
  1249. 1
  1250. ]
  1251. },
  1252. "_eulerAngles": {
  1253. "__type__": "cc.Vec3",
  1254. "x": 0,
  1255. "y": 0,
  1256. "z": 0
  1257. },
  1258. "_skewX": 0,
  1259. "_skewY": 0,
  1260. "_is3DNode": false,
  1261. "_groupIndex": 0,
  1262. "groupIndex": 0,
  1263. "_id": ""
  1264. },
  1265. {
  1266. "__type__": "cc.Node",
  1267. "_name": "content",
  1268. "_objFlags": 0,
  1269. "_parent": {
  1270. "__id__": 32
  1271. },
  1272. "_children": [
  1273. {
  1274. "__id__": 34
  1275. }
  1276. ],
  1277. "_active": true,
  1278. "_components": [
  1279. {
  1280. "__id__": 38
  1281. }
  1282. ],
  1283. "_prefab": {
  1284. "__id__": 39
  1285. },
  1286. "_opacity": 255,
  1287. "_color": {
  1288. "__type__": "cc.Color",
  1289. "r": 255,
  1290. "g": 255,
  1291. "b": 255,
  1292. "a": 255
  1293. },
  1294. "_contentSize": {
  1295. "__type__": "cc.Size",
  1296. "width": 630,
  1297. "height": 153.35999999999999
  1298. },
  1299. "_anchorPoint": {
  1300. "__type__": "cc.Vec2",
  1301. "x": 0.5,
  1302. "y": 1
  1303. },
  1304. "_trs": {
  1305. "__type__": "TypedArray",
  1306. "ctor": "Float64Array",
  1307. "array": [
  1308. 0,
  1309. 50,
  1310. 0,
  1311. 0,
  1312. 0,
  1313. 0,
  1314. 1,
  1315. 1,
  1316. 1,
  1317. 1
  1318. ]
  1319. },
  1320. "_eulerAngles": {
  1321. "__type__": "cc.Vec3",
  1322. "x": 0,
  1323. "y": 0,
  1324. "z": 0
  1325. },
  1326. "_skewX": 0,
  1327. "_skewY": 0,
  1328. "_is3DNode": false,
  1329. "_groupIndex": 0,
  1330. "groupIndex": 0,
  1331. "_id": ""
  1332. },
  1333. {
  1334. "__type__": "cc.Node",
  1335. "_name": "skill_rt",
  1336. "_objFlags": 0,
  1337. "_parent": {
  1338. "__id__": 33
  1339. },
  1340. "_children": [],
  1341. "_active": true,
  1342. "_components": [
  1343. {
  1344. "__id__": 35
  1345. },
  1346. {
  1347. "__id__": 36
  1348. }
  1349. ],
  1350. "_prefab": {
  1351. "__id__": 37
  1352. },
  1353. "_opacity": 255,
  1354. "_color": {
  1355. "__type__": "cc.Color",
  1356. "r": 255,
  1357. "g": 255,
  1358. "b": 255,
  1359. "a": 255
  1360. },
  1361. "_contentSize": {
  1362. "__type__": "cc.Size",
  1363. "width": 620,
  1364. "height": 153.35999999999999
  1365. },
  1366. "_anchorPoint": {
  1367. "__type__": "cc.Vec2",
  1368. "x": 0.5,
  1369. "y": 1
  1370. },
  1371. "_trs": {
  1372. "__type__": "TypedArray",
  1373. "ctor": "Float64Array",
  1374. "array": [
  1375. 0,
  1376. 0,
  1377. 0,
  1378. 0,
  1379. 0,
  1380. 0,
  1381. 1,
  1382. 1,
  1383. 1,
  1384. 1
  1385. ]
  1386. },
  1387. "_eulerAngles": {
  1388. "__type__": "cc.Vec3",
  1389. "x": 0,
  1390. "y": 0,
  1391. "z": 0
  1392. },
  1393. "_skewX": 0,
  1394. "_skewY": 0,
  1395. "_is3DNode": false,
  1396. "_groupIndex": 0,
  1397. "groupIndex": 0,
  1398. "_id": ""
  1399. },
  1400. {
  1401. "__type__": "cc.RichText",
  1402. "_name": "",
  1403. "_objFlags": 0,
  1404. "node": {
  1405. "__id__": 34
  1406. },
  1407. "_enabled": true,
  1408. "_fontFamily": "Arial",
  1409. "_isSystemFontUsed": false,
  1410. "_N$string": "<outline color=#26110C width=1>Release Lightning Chain to deal up to <color=#BAFF27>#1%</c> damage to <color=#BAFF27>#0</c> enemy targets on the field, with decreasing damage for each jump of the chain.</outline>",
  1411. "_N$horizontalAlign": 0,
  1412. "_N$fontSize": 30,
  1413. "_N$font": {
  1414. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1415. },
  1416. "_N$cacheMode": 0,
  1417. "_N$maxWidth": 620,
  1418. "_N$lineHeight": 36,
  1419. "_N$imageAtlas": null,
  1420. "_N$handleTouchEvent": true,
  1421. "_id": ""
  1422. },
  1423. {
  1424. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1425. "_name": "",
  1426. "_objFlags": 0,
  1427. "node": {
  1428. "__id__": 34
  1429. },
  1430. "_enabled": true,
  1431. "_englishCase": 0,
  1432. "i18n_string": "",
  1433. "i18n_params": [],
  1434. "_addColon": false,
  1435. "_id": ""
  1436. },
  1437. {
  1438. "__type__": "cc.PrefabInfo",
  1439. "root": {
  1440. "__id__": 1
  1441. },
  1442. "asset": {
  1443. "__id__": 0
  1444. },
  1445. "fileId": "b1dWlXNjBDNKDQp1L1zifl",
  1446. "sync": false
  1447. },
  1448. {
  1449. "__type__": "cc.Layout",
  1450. "_name": "",
  1451. "_objFlags": 0,
  1452. "node": {
  1453. "__id__": 33
  1454. },
  1455. "_enabled": true,
  1456. "_layoutSize": {
  1457. "__type__": "cc.Size",
  1458. "width": 630,
  1459. "height": 153.35999999999999
  1460. },
  1461. "_resize": 1,
  1462. "_N$layoutType": 2,
  1463. "_N$cellSize": {
  1464. "__type__": "cc.Size",
  1465. "width": 40,
  1466. "height": 40
  1467. },
  1468. "_N$startAxis": 0,
  1469. "_N$paddingLeft": 0,
  1470. "_N$paddingRight": 0,
  1471. "_N$paddingTop": 0,
  1472. "_N$paddingBottom": 0,
  1473. "_N$spacingX": 0,
  1474. "_N$spacingY": 0,
  1475. "_N$verticalDirection": 1,
  1476. "_N$horizontalDirection": 0,
  1477. "_N$affectedByScale": false,
  1478. "_id": ""
  1479. },
  1480. {
  1481. "__type__": "cc.PrefabInfo",
  1482. "root": {
  1483. "__id__": 1
  1484. },
  1485. "asset": {
  1486. "__id__": 0
  1487. },
  1488. "fileId": "584NCFtbFGOIA6yjCBOPLP",
  1489. "sync": false
  1490. },
  1491. {
  1492. "__type__": "cc.Mask",
  1493. "_name": "",
  1494. "_objFlags": 0,
  1495. "node": {
  1496. "__id__": 32
  1497. },
  1498. "_enabled": true,
  1499. "_materials": [
  1500. {
  1501. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1502. }
  1503. ],
  1504. "_spriteFrame": null,
  1505. "_type": 0,
  1506. "_segments": 64,
  1507. "_N$alphaThreshold": 0,
  1508. "_N$inverted": false,
  1509. "_id": ""
  1510. },
  1511. {
  1512. "__type__": "cc.PrefabInfo",
  1513. "root": {
  1514. "__id__": 1
  1515. },
  1516. "asset": {
  1517. "__id__": 0
  1518. },
  1519. "fileId": "08SFbteNNPX59lq8USzSgX",
  1520. "sync": false
  1521. },
  1522. {
  1523. "__type__": "cc.Sprite",
  1524. "_name": "",
  1525. "_objFlags": 0,
  1526. "node": {
  1527. "__id__": 31
  1528. },
  1529. "_enabled": true,
  1530. "_materials": [
  1531. {
  1532. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1533. }
  1534. ],
  1535. "_srcBlendFactor": 770,
  1536. "_dstBlendFactor": 771,
  1537. "_spriteFrame": null,
  1538. "_type": 1,
  1539. "_sizeMode": 0,
  1540. "_fillType": 0,
  1541. "_fillCenter": {
  1542. "__type__": "cc.Vec2",
  1543. "x": 0,
  1544. "y": 0
  1545. },
  1546. "_fillStart": 0,
  1547. "_fillRange": 0,
  1548. "_isTrimmedMode": true,
  1549. "_atlas": null,
  1550. "_id": ""
  1551. },
  1552. {
  1553. "__type__": "cc.ScrollView",
  1554. "_name": "",
  1555. "_objFlags": 0,
  1556. "node": {
  1557. "__id__": 31
  1558. },
  1559. "_enabled": true,
  1560. "horizontal": false,
  1561. "vertical": true,
  1562. "inertia": true,
  1563. "brake": 0.75,
  1564. "elastic": true,
  1565. "bounceDuration": 0.23,
  1566. "scrollEvents": [],
  1567. "cancelInnerEvents": true,
  1568. "_N$content": {
  1569. "__id__": 33
  1570. },
  1571. "content": {
  1572. "__id__": 33
  1573. },
  1574. "_N$horizontalScrollBar": null,
  1575. "_N$verticalScrollBar": null,
  1576. "_id": ""
  1577. },
  1578. {
  1579. "__type__": "cc.PrefabInfo",
  1580. "root": {
  1581. "__id__": 1
  1582. },
  1583. "asset": {
  1584. "__id__": 0
  1585. },
  1586. "fileId": "7aGDMyvW5N6KFNUUUGLGJ9",
  1587. "sync": false
  1588. },
  1589. {
  1590. "__type__": "cc.Node",
  1591. "_name": "debrisNode",
  1592. "_objFlags": 0,
  1593. "_parent": {
  1594. "__id__": 1
  1595. },
  1596. "_children": [
  1597. {
  1598. "__id__": 46
  1599. },
  1600. {
  1601. "__id__": 49
  1602. },
  1603. {
  1604. "__id__": 58
  1605. },
  1606. {
  1607. "__id__": 62
  1608. },
  1609. {
  1610. "__id__": 65
  1611. }
  1612. ],
  1613. "_active": true,
  1614. "_components": [],
  1615. "_prefab": {
  1616. "__id__": 76
  1617. },
  1618. "_opacity": 255,
  1619. "_color": {
  1620. "__type__": "cc.Color",
  1621. "r": 255,
  1622. "g": 255,
  1623. "b": 255,
  1624. "a": 255
  1625. },
  1626. "_contentSize": {
  1627. "__type__": "cc.Size",
  1628. "width": 0,
  1629. "height": 0
  1630. },
  1631. "_anchorPoint": {
  1632. "__type__": "cc.Vec2",
  1633. "x": 0.5,
  1634. "y": 0.5
  1635. },
  1636. "_trs": {
  1637. "__type__": "TypedArray",
  1638. "ctor": "Float64Array",
  1639. "array": [
  1640. 0,
  1641. 0,
  1642. 0,
  1643. 0,
  1644. 0,
  1645. 0,
  1646. 1,
  1647. 1,
  1648. 1,
  1649. 1
  1650. ]
  1651. },
  1652. "_eulerAngles": {
  1653. "__type__": "cc.Vec3",
  1654. "x": 0,
  1655. "y": 0,
  1656. "z": 0
  1657. },
  1658. "_skewX": 0,
  1659. "_skewY": 0,
  1660. "_is3DNode": false,
  1661. "_groupIndex": 0,
  1662. "groupIndex": 0,
  1663. "_id": ""
  1664. },
  1665. {
  1666. "__type__": "cc.Node",
  1667. "_name": "Progress_bottom1",
  1668. "_objFlags": 0,
  1669. "_parent": {
  1670. "__id__": 45
  1671. },
  1672. "_children": [],
  1673. "_active": true,
  1674. "_components": [
  1675. {
  1676. "__id__": 47
  1677. }
  1678. ],
  1679. "_prefab": {
  1680. "__id__": 48
  1681. },
  1682. "_opacity": 255,
  1683. "_color": {
  1684. "__type__": "cc.Color",
  1685. "r": 255,
  1686. "g": 255,
  1687. "b": 255,
  1688. "a": 255
  1689. },
  1690. "_contentSize": {
  1691. "__type__": "cc.Size",
  1692. "width": 300,
  1693. "height": 30
  1694. },
  1695. "_anchorPoint": {
  1696. "__type__": "cc.Vec2",
  1697. "x": 0.5,
  1698. "y": 0.5
  1699. },
  1700. "_trs": {
  1701. "__type__": "TypedArray",
  1702. "ctor": "Float64Array",
  1703. "array": [
  1704. 10.158,
  1705. 227.889,
  1706. 0,
  1707. 0,
  1708. 0,
  1709. 0,
  1710. 1,
  1711. 1,
  1712. 1,
  1713. 1
  1714. ]
  1715. },
  1716. "_eulerAngles": {
  1717. "__type__": "cc.Vec3",
  1718. "x": 0,
  1719. "y": 0,
  1720. "z": 0
  1721. },
  1722. "_skewX": 0,
  1723. "_skewY": 0,
  1724. "_is3DNode": false,
  1725. "_groupIndex": 0,
  1726. "groupIndex": 0,
  1727. "_id": ""
  1728. },
  1729. {
  1730. "__type__": "cc.Sprite",
  1731. "_name": "",
  1732. "_objFlags": 0,
  1733. "node": {
  1734. "__id__": 46
  1735. },
  1736. "_enabled": true,
  1737. "_materials": [
  1738. {
  1739. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1740. }
  1741. ],
  1742. "_srcBlendFactor": 770,
  1743. "_dstBlendFactor": 771,
  1744. "_spriteFrame": {
  1745. "__uuid__": "47bc5aba-ef09-44e9-8174-0d384fa92d32"
  1746. },
  1747. "_type": 1,
  1748. "_sizeMode": 0,
  1749. "_fillType": 0,
  1750. "_fillCenter": {
  1751. "__type__": "cc.Vec2",
  1752. "x": 0,
  1753. "y": 0
  1754. },
  1755. "_fillStart": 0,
  1756. "_fillRange": 0,
  1757. "_isTrimmedMode": true,
  1758. "_atlas": null,
  1759. "_id": ""
  1760. },
  1761. {
  1762. "__type__": "cc.PrefabInfo",
  1763. "root": {
  1764. "__id__": 1
  1765. },
  1766. "asset": {
  1767. "__id__": 0
  1768. },
  1769. "fileId": "e9Mr6hHdVO77I8Jkr/PPiV",
  1770. "sync": false
  1771. },
  1772. {
  1773. "__type__": "cc.Node",
  1774. "_name": "pb",
  1775. "_objFlags": 0,
  1776. "_parent": {
  1777. "__id__": 45
  1778. },
  1779. "_children": [
  1780. {
  1781. "__id__": 50
  1782. },
  1783. {
  1784. "__id__": 53
  1785. }
  1786. ],
  1787. "_active": true,
  1788. "_components": [
  1789. {
  1790. "__id__": 56
  1791. }
  1792. ],
  1793. "_prefab": {
  1794. "__id__": 57
  1795. },
  1796. "_opacity": 255,
  1797. "_color": {
  1798. "__type__": "cc.Color",
  1799. "r": 255,
  1800. "g": 255,
  1801. "b": 255,
  1802. "a": 255
  1803. },
  1804. "_contentSize": {
  1805. "__type__": "cc.Size",
  1806. "width": 294,
  1807. "height": 24
  1808. },
  1809. "_anchorPoint": {
  1810. "__type__": "cc.Vec2",
  1811. "x": 0.5,
  1812. "y": 0.5
  1813. },
  1814. "_trs": {
  1815. "__type__": "TypedArray",
  1816. "ctor": "Float64Array",
  1817. "array": [
  1818. 10.2,
  1819. 227.949,
  1820. 0,
  1821. 0,
  1822. 0,
  1823. 0,
  1824. 1,
  1825. 1,
  1826. 1,
  1827. 1
  1828. ]
  1829. },
  1830. "_eulerAngles": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 0,
  1833. "y": 0,
  1834. "z": 0
  1835. },
  1836. "_skewX": 0,
  1837. "_skewY": 0,
  1838. "_is3DNode": false,
  1839. "_groupIndex": 0,
  1840. "groupIndex": 0,
  1841. "_id": ""
  1842. },
  1843. {
  1844. "__type__": "cc.Node",
  1845. "_name": "bar",
  1846. "_objFlags": 0,
  1847. "_parent": {
  1848. "__id__": 49
  1849. },
  1850. "_children": [],
  1851. "_active": true,
  1852. "_components": [
  1853. {
  1854. "__id__": 51
  1855. }
  1856. ],
  1857. "_prefab": {
  1858. "__id__": 52
  1859. },
  1860. "_opacity": 255,
  1861. "_color": {
  1862. "__type__": "cc.Color",
  1863. "r": 255,
  1864. "g": 255,
  1865. "b": 255,
  1866. "a": 255
  1867. },
  1868. "_contentSize": {
  1869. "__type__": "cc.Size",
  1870. "width": 147,
  1871. "height": 24
  1872. },
  1873. "_anchorPoint": {
  1874. "__type__": "cc.Vec2",
  1875. "x": 0,
  1876. "y": 0.5
  1877. },
  1878. "_trs": {
  1879. "__type__": "TypedArray",
  1880. "ctor": "Float64Array",
  1881. "array": [
  1882. -147,
  1883. 0,
  1884. 0,
  1885. 0,
  1886. 0,
  1887. 0,
  1888. 1,
  1889. 1,
  1890. 1,
  1891. 1
  1892. ]
  1893. },
  1894. "_eulerAngles": {
  1895. "__type__": "cc.Vec3",
  1896. "x": 0,
  1897. "y": 0,
  1898. "z": 0
  1899. },
  1900. "_skewX": 0,
  1901. "_skewY": 0,
  1902. "_is3DNode": false,
  1903. "_groupIndex": 0,
  1904. "groupIndex": 0,
  1905. "_id": ""
  1906. },
  1907. {
  1908. "__type__": "cc.Sprite",
  1909. "_name": "",
  1910. "_objFlags": 0,
  1911. "node": {
  1912. "__id__": 50
  1913. },
  1914. "_enabled": true,
  1915. "_materials": [
  1916. {
  1917. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1918. }
  1919. ],
  1920. "_srcBlendFactor": 770,
  1921. "_dstBlendFactor": 771,
  1922. "_spriteFrame": {
  1923. "__uuid__": "4f4cfcfc-dd4f-4752-86cc-09c99ea7df9f"
  1924. },
  1925. "_type": 1,
  1926. "_sizeMode": 0,
  1927. "_fillType": 0,
  1928. "_fillCenter": {
  1929. "__type__": "cc.Vec2",
  1930. "x": 0,
  1931. "y": 0
  1932. },
  1933. "_fillStart": 0,
  1934. "_fillRange": 0,
  1935. "_isTrimmedMode": true,
  1936. "_atlas": null,
  1937. "_id": ""
  1938. },
  1939. {
  1940. "__type__": "cc.PrefabInfo",
  1941. "root": {
  1942. "__id__": 1
  1943. },
  1944. "asset": {
  1945. "__id__": 0
  1946. },
  1947. "fileId": "6ewRBplmdB6aRHx8qQ6+lj",
  1948. "sync": false
  1949. },
  1950. {
  1951. "__type__": "cc.Node",
  1952. "_name": "light_effect_5",
  1953. "_objFlags": 0,
  1954. "_parent": {
  1955. "__id__": 49
  1956. },
  1957. "_children": [],
  1958. "_active": false,
  1959. "_components": [
  1960. {
  1961. "__id__": 54
  1962. }
  1963. ],
  1964. "_prefab": {
  1965. "__id__": 55
  1966. },
  1967. "_opacity": 255,
  1968. "_color": {
  1969. "__type__": "cc.Color",
  1970. "r": 255,
  1971. "g": 255,
  1972. "b": 255,
  1973. "a": 255
  1974. },
  1975. "_contentSize": {
  1976. "__type__": "cc.Size",
  1977. "width": 294,
  1978. "height": 24
  1979. },
  1980. "_anchorPoint": {
  1981. "__type__": "cc.Vec2",
  1982. "x": 0.5,
  1983. "y": 0.5
  1984. },
  1985. "_trs": {
  1986. "__type__": "TypedArray",
  1987. "ctor": "Float64Array",
  1988. "array": [
  1989. 0,
  1990. 0,
  1991. 0,
  1992. 0,
  1993. 0,
  1994. 0,
  1995. 1,
  1996. 1,
  1997. 1,
  1998. 1
  1999. ]
  2000. },
  2001. "_eulerAngles": {
  2002. "__type__": "cc.Vec3",
  2003. "x": 0,
  2004. "y": 0,
  2005. "z": 0
  2006. },
  2007. "_skewX": 0,
  2008. "_skewY": 0,
  2009. "_is3DNode": false,
  2010. "_groupIndex": 0,
  2011. "groupIndex": 0,
  2012. "_id": ""
  2013. },
  2014. {
  2015. "__type__": "cc.Sprite",
  2016. "_name": "",
  2017. "_objFlags": 0,
  2018. "node": {
  2019. "__id__": 53
  2020. },
  2021. "_enabled": true,
  2022. "_materials": [
  2023. {
  2024. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2025. }
  2026. ],
  2027. "_srcBlendFactor": 770,
  2028. "_dstBlendFactor": 771,
  2029. "_spriteFrame": {
  2030. "__uuid__": "fffd7077-1ec2-463f-85fa-cdd190416463"
  2031. },
  2032. "_type": 1,
  2033. "_sizeMode": 0,
  2034. "_fillType": 0,
  2035. "_fillCenter": {
  2036. "__type__": "cc.Vec2",
  2037. "x": 0,
  2038. "y": 0
  2039. },
  2040. "_fillStart": 0,
  2041. "_fillRange": 0,
  2042. "_isTrimmedMode": true,
  2043. "_atlas": null,
  2044. "_id": ""
  2045. },
  2046. {
  2047. "__type__": "cc.PrefabInfo",
  2048. "root": {
  2049. "__id__": 1
  2050. },
  2051. "asset": {
  2052. "__id__": 0
  2053. },
  2054. "fileId": "0clkqrxh5PE6kCMPCNWvWc",
  2055. "sync": false
  2056. },
  2057. {
  2058. "__type__": "cc.ProgressBar",
  2059. "_name": "",
  2060. "_objFlags": 0,
  2061. "node": {
  2062. "__id__": 49
  2063. },
  2064. "_enabled": true,
  2065. "_N$totalLength": 294,
  2066. "_N$barSprite": {
  2067. "__id__": 51
  2068. },
  2069. "_N$mode": 0,
  2070. "_N$progress": 0.5,
  2071. "_N$reverse": false,
  2072. "_id": ""
  2073. },
  2074. {
  2075. "__type__": "cc.PrefabInfo",
  2076. "root": {
  2077. "__id__": 1
  2078. },
  2079. "asset": {
  2080. "__id__": 0
  2081. },
  2082. "fileId": "5c/Ecs8xVBnou2/FX82/RJ",
  2083. "sync": false
  2084. },
  2085. {
  2086. "__type__": "cc.Node",
  2087. "_name": "debris_num",
  2088. "_objFlags": 0,
  2089. "_parent": {
  2090. "__id__": 45
  2091. },
  2092. "_children": [],
  2093. "_active": true,
  2094. "_components": [
  2095. {
  2096. "__id__": 59
  2097. },
  2098. {
  2099. "__id__": 60
  2100. }
  2101. ],
  2102. "_prefab": {
  2103. "__id__": 61
  2104. },
  2105. "_opacity": 255,
  2106. "_color": {
  2107. "__type__": "cc.Color",
  2108. "r": 255,
  2109. "g": 255,
  2110. "b": 255,
  2111. "a": 255
  2112. },
  2113. "_contentSize": {
  2114. "__type__": "cc.Size",
  2115. "width": 70.11,
  2116. "height": 36.239999999999995
  2117. },
  2118. "_anchorPoint": {
  2119. "__type__": "cc.Vec2",
  2120. "x": 0.5,
  2121. "y": 0.5
  2122. },
  2123. "_trs": {
  2124. "__type__": "TypedArray",
  2125. "ctor": "Float64Array",
  2126. "array": [
  2127. 10.2,
  2128. 227.327,
  2129. 0,
  2130. 0,
  2131. 0,
  2132. 0,
  2133. 1,
  2134. 1,
  2135. 1,
  2136. 1
  2137. ]
  2138. },
  2139. "_eulerAngles": {
  2140. "__type__": "cc.Vec3",
  2141. "x": 0,
  2142. "y": 0,
  2143. "z": 0
  2144. },
  2145. "_skewX": 0,
  2146. "_skewY": 0,
  2147. "_is3DNode": false,
  2148. "_groupIndex": 0,
  2149. "groupIndex": 0,
  2150. "_id": ""
  2151. },
  2152. {
  2153. "__type__": "cc.Label",
  2154. "_name": "",
  2155. "_objFlags": 0,
  2156. "node": {
  2157. "__id__": 58
  2158. },
  2159. "_enabled": true,
  2160. "_materials": [
  2161. {
  2162. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2163. }
  2164. ],
  2165. "_srcBlendFactor": 770,
  2166. "_dstBlendFactor": 771,
  2167. "_string": "0/60",
  2168. "_N$string": "0/60",
  2169. "_fontSize": 24,
  2170. "_lineHeight": 24,
  2171. "_enableWrapText": true,
  2172. "_N$file": {
  2173. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2174. },
  2175. "_isSystemFontUsed": false,
  2176. "_spacingX": 0,
  2177. "_batchAsBitmap": false,
  2178. "_styleFlags": 0,
  2179. "_underlineHeight": 0,
  2180. "_N$horizontalAlign": 1,
  2181. "_N$verticalAlign": 1,
  2182. "_N$fontFamily": "Arial",
  2183. "_N$overflow": 0,
  2184. "_N$cacheMode": 0,
  2185. "_id": ""
  2186. },
  2187. {
  2188. "__type__": "cc.LabelOutline",
  2189. "_name": "",
  2190. "_objFlags": 0,
  2191. "node": {
  2192. "__id__": 58
  2193. },
  2194. "_enabled": true,
  2195. "_color": {
  2196. "__type__": "cc.Color",
  2197. "r": 38,
  2198. "g": 17,
  2199. "b": 12,
  2200. "a": 255
  2201. },
  2202. "_width": 3,
  2203. "_id": ""
  2204. },
  2205. {
  2206. "__type__": "cc.PrefabInfo",
  2207. "root": {
  2208. "__id__": 58
  2209. },
  2210. "asset": {
  2211. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  2212. },
  2213. "fileId": "4et0tsd7dM6p7F7rVHtH6x",
  2214. "sync": false
  2215. },
  2216. {
  2217. "__type__": "cc.Node",
  2218. "_name": "debris",
  2219. "_objFlags": 0,
  2220. "_parent": {
  2221. "__id__": 45
  2222. },
  2223. "_children": [],
  2224. "_active": true,
  2225. "_components": [
  2226. {
  2227. "__id__": 63
  2228. }
  2229. ],
  2230. "_prefab": {
  2231. "__id__": 64
  2232. },
  2233. "_opacity": 255,
  2234. "_color": {
  2235. "__type__": "cc.Color",
  2236. "r": 255,
  2237. "g": 255,
  2238. "b": 255,
  2239. "a": 255
  2240. },
  2241. "_contentSize": {
  2242. "__type__": "cc.Size",
  2243. "width": 50,
  2244. "height": 50
  2245. },
  2246. "_anchorPoint": {
  2247. "__type__": "cc.Vec2",
  2248. "x": 0.5,
  2249. "y": 0.5
  2250. },
  2251. "_trs": {
  2252. "__type__": "TypedArray",
  2253. "ctor": "Float64Array",
  2254. "array": [
  2255. -174.066,
  2256. 231.496,
  2257. 0,
  2258. 0,
  2259. 0,
  2260. 0,
  2261. 1,
  2262. 1,
  2263. 1,
  2264. 1
  2265. ]
  2266. },
  2267. "_eulerAngles": {
  2268. "__type__": "cc.Vec3",
  2269. "x": 0,
  2270. "y": 0,
  2271. "z": 0
  2272. },
  2273. "_skewX": 0,
  2274. "_skewY": 0,
  2275. "_is3DNode": false,
  2276. "_groupIndex": 0,
  2277. "groupIndex": 0,
  2278. "_id": ""
  2279. },
  2280. {
  2281. "__type__": "cc.Sprite",
  2282. "_name": "",
  2283. "_objFlags": 0,
  2284. "node": {
  2285. "__id__": 62
  2286. },
  2287. "_enabled": true,
  2288. "_materials": [
  2289. {
  2290. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2291. }
  2292. ],
  2293. "_srcBlendFactor": 770,
  2294. "_dstBlendFactor": 771,
  2295. "_spriteFrame": {
  2296. "__uuid__": "6e7416e4-19fb-4e76-b1bb-1b353854aac0"
  2297. },
  2298. "_type": 0,
  2299. "_sizeMode": 1,
  2300. "_fillType": 0,
  2301. "_fillCenter": {
  2302. "__type__": "cc.Vec2",
  2303. "x": 0,
  2304. "y": 0
  2305. },
  2306. "_fillStart": 0,
  2307. "_fillRange": 0,
  2308. "_isTrimmedMode": true,
  2309. "_atlas": null,
  2310. "_id": ""
  2311. },
  2312. {
  2313. "__type__": "cc.PrefabInfo",
  2314. "root": {
  2315. "__id__": 1
  2316. },
  2317. "asset": {
  2318. "__id__": 0
  2319. },
  2320. "fileId": "ceyYDBbrJHsL4KF4aEewD0",
  2321. "sync": false
  2322. },
  2323. {
  2324. "__type__": "cc.Node",
  2325. "_name": "btn_break",
  2326. "_objFlags": 0,
  2327. "_parent": {
  2328. "__id__": 45
  2329. },
  2330. "_children": [
  2331. {
  2332. "__id__": 66
  2333. }
  2334. ],
  2335. "_active": true,
  2336. "_components": [
  2337. {
  2338. "__id__": 71
  2339. },
  2340. {
  2341. "__id__": 72
  2342. },
  2343. {
  2344. "__id__": 73
  2345. }
  2346. ],
  2347. "_prefab": {
  2348. "__id__": 75
  2349. },
  2350. "_opacity": 255,
  2351. "_color": {
  2352. "__type__": "cc.Color",
  2353. "r": 255,
  2354. "g": 255,
  2355. "b": 255,
  2356. "a": 255
  2357. },
  2358. "_contentSize": {
  2359. "__type__": "cc.Size",
  2360. "width": 190,
  2361. "height": 78
  2362. },
  2363. "_anchorPoint": {
  2364. "__type__": "cc.Vec2",
  2365. "x": 0.5,
  2366. "y": 0.5
  2367. },
  2368. "_trs": {
  2369. "__type__": "TypedArray",
  2370. "ctor": "Float64Array",
  2371. "array": [
  2372. 295.384,
  2373. 226.421,
  2374. 0,
  2375. 0,
  2376. 0,
  2377. 0,
  2378. 1,
  2379. 1,
  2380. 1,
  2381. 0
  2382. ]
  2383. },
  2384. "_eulerAngles": {
  2385. "__type__": "cc.Vec3",
  2386. "x": 0,
  2387. "y": 0,
  2388. "z": 0
  2389. },
  2390. "_skewX": 0,
  2391. "_skewY": 0,
  2392. "_is3DNode": false,
  2393. "_groupIndex": 0,
  2394. "groupIndex": 0,
  2395. "_id": ""
  2396. },
  2397. {
  2398. "__type__": "cc.Node",
  2399. "_name": "lb",
  2400. "_objFlags": 0,
  2401. "_parent": {
  2402. "__id__": 65
  2403. },
  2404. "_children": [],
  2405. "_active": true,
  2406. "_components": [
  2407. {
  2408. "__id__": 67
  2409. },
  2410. {
  2411. "__id__": 68
  2412. },
  2413. {
  2414. "__id__": 69
  2415. }
  2416. ],
  2417. "_prefab": {
  2418. "__id__": 70
  2419. },
  2420. "_opacity": 255,
  2421. "_color": {
  2422. "__type__": "cc.Color",
  2423. "r": 68,
  2424. "g": 41,
  2425. "b": 0,
  2426. "a": 255
  2427. },
  2428. "_contentSize": {
  2429. "__type__": "cc.Size",
  2430. "width": 103.99,
  2431. "height": 73
  2432. },
  2433. "_anchorPoint": {
  2434. "__type__": "cc.Vec2",
  2435. "x": 0.5,
  2436. "y": 0.5
  2437. },
  2438. "_trs": {
  2439. "__type__": "TypedArray",
  2440. "ctor": "Float64Array",
  2441. "array": [
  2442. 0,
  2443. 5,
  2444. 0,
  2445. 0,
  2446. 0,
  2447. 0,
  2448. 1,
  2449. 1,
  2450. 1,
  2451. 1
  2452. ]
  2453. },
  2454. "_eulerAngles": {
  2455. "__type__": "cc.Vec3",
  2456. "x": 0,
  2457. "y": 0,
  2458. "z": 0
  2459. },
  2460. "_skewX": 0,
  2461. "_skewY": 0,
  2462. "_is3DNode": false,
  2463. "_groupIndex": 0,
  2464. "groupIndex": 0,
  2465. "_id": ""
  2466. },
  2467. {
  2468. "__type__": "cc.Label",
  2469. "_name": "",
  2470. "_objFlags": 0,
  2471. "node": {
  2472. "__id__": 66
  2473. },
  2474. "_enabled": true,
  2475. "_materials": [
  2476. {
  2477. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2478. }
  2479. ],
  2480. "_srcBlendFactor": 770,
  2481. "_dstBlendFactor": 771,
  2482. "_string": "Break",
  2483. "_N$string": "Break",
  2484. "_fontSize": 36,
  2485. "_lineHeight": 50,
  2486. "_enableWrapText": false,
  2487. "_N$file": {
  2488. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2489. },
  2490. "_isSystemFontUsed": false,
  2491. "_spacingX": 0,
  2492. "_batchAsBitmap": false,
  2493. "_styleFlags": 0,
  2494. "_underlineHeight": 0,
  2495. "_N$horizontalAlign": 1,
  2496. "_N$verticalAlign": 1,
  2497. "_N$fontFamily": "Arial",
  2498. "_N$overflow": 0,
  2499. "_N$cacheMode": 0,
  2500. "_id": ""
  2501. },
  2502. {
  2503. "__type__": "cc.LabelOutline",
  2504. "_name": "",
  2505. "_objFlags": 0,
  2506. "node": {
  2507. "__id__": 66
  2508. },
  2509. "_enabled": true,
  2510. "_color": {
  2511. "__type__": "cc.Color",
  2512. "r": 255,
  2513. "g": 210,
  2514. "b": 0,
  2515. "a": 255
  2516. },
  2517. "_width": 5,
  2518. "_id": ""
  2519. },
  2520. {
  2521. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2522. "_name": "",
  2523. "_objFlags": 0,
  2524. "node": {
  2525. "__id__": 66
  2526. },
  2527. "_enabled": true,
  2528. "_englishCase": 1,
  2529. "i18n_string": "t25",
  2530. "i18n_params": [],
  2531. "_addColon": false,
  2532. "_id": ""
  2533. },
  2534. {
  2535. "__type__": "cc.PrefabInfo",
  2536. "root": {
  2537. "__id__": 65
  2538. },
  2539. "asset": {
  2540. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  2541. },
  2542. "fileId": "12tNP2G5xGpY9oecBiNRvR",
  2543. "sync": false
  2544. },
  2545. {
  2546. "__type__": "cc.Sprite",
  2547. "_name": "",
  2548. "_objFlags": 0,
  2549. "node": {
  2550. "__id__": 65
  2551. },
  2552. "_enabled": true,
  2553. "_materials": [
  2554. {
  2555. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2556. }
  2557. ],
  2558. "_srcBlendFactor": 770,
  2559. "_dstBlendFactor": 771,
  2560. "_spriteFrame": {
  2561. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  2562. },
  2563. "_type": 0,
  2564. "_sizeMode": 0,
  2565. "_fillType": 0,
  2566. "_fillCenter": {
  2567. "__type__": "cc.Vec2",
  2568. "x": 0,
  2569. "y": 0
  2570. },
  2571. "_fillStart": 0,
  2572. "_fillRange": 0,
  2573. "_isTrimmedMode": true,
  2574. "_atlas": null,
  2575. "_id": ""
  2576. },
  2577. {
  2578. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  2579. "_name": "",
  2580. "_objFlags": 0,
  2581. "node": {
  2582. "__id__": 65
  2583. },
  2584. "_enabled": true,
  2585. "openContinuous": true,
  2586. "continuousTime": 0.2,
  2587. "multiTouch": false,
  2588. "_id": ""
  2589. },
  2590. {
  2591. "__type__": "61994AafntNFIbmt1zoyLq+",
  2592. "_name": "",
  2593. "_objFlags": 0,
  2594. "node": {
  2595. "__id__": 65
  2596. },
  2597. "_enabled": true,
  2598. "_normalMaterial": null,
  2599. "_grayMaterial": null,
  2600. "duration": 0.1,
  2601. "zoomScale": 1.2,
  2602. "clickEvents": [
  2603. {
  2604. "__id__": 74
  2605. }
  2606. ],
  2607. "_N$interactable": true,
  2608. "_N$enableAutoGrayEffect": false,
  2609. "_N$transition": 3,
  2610. "transition": 3,
  2611. "_N$normalColor": {
  2612. "__type__": "cc.Color",
  2613. "r": 255,
  2614. "g": 255,
  2615. "b": 255,
  2616. "a": 255
  2617. },
  2618. "_N$pressedColor": {
  2619. "__type__": "cc.Color",
  2620. "r": 211,
  2621. "g": 211,
  2622. "b": 211,
  2623. "a": 255
  2624. },
  2625. "pressedColor": {
  2626. "__type__": "cc.Color",
  2627. "r": 211,
  2628. "g": 211,
  2629. "b": 211,
  2630. "a": 255
  2631. },
  2632. "_N$hoverColor": {
  2633. "__type__": "cc.Color",
  2634. "r": 255,
  2635. "g": 255,
  2636. "b": 255,
  2637. "a": 255
  2638. },
  2639. "hoverColor": {
  2640. "__type__": "cc.Color",
  2641. "r": 255,
  2642. "g": 255,
  2643. "b": 255,
  2644. "a": 255
  2645. },
  2646. "_N$disabledColor": {
  2647. "__type__": "cc.Color",
  2648. "r": 124,
  2649. "g": 124,
  2650. "b": 124,
  2651. "a": 255
  2652. },
  2653. "_N$normalSprite": null,
  2654. "_N$pressedSprite": null,
  2655. "pressedSprite": null,
  2656. "_N$hoverSprite": null,
  2657. "hoverSprite": null,
  2658. "_N$disabledSprite": null,
  2659. "_N$target": null,
  2660. "_id": ""
  2661. },
  2662. {
  2663. "__type__": "cc.ClickEvent",
  2664. "target": {
  2665. "__id__": 1
  2666. },
  2667. "component": "",
  2668. "_componentId": "9f2cdExi5NExLy5dFdAEOtt",
  2669. "handler": "onBreakClick",
  2670. "customEventData": ""
  2671. },
  2672. {
  2673. "__type__": "cc.PrefabInfo",
  2674. "root": {
  2675. "__id__": 65
  2676. },
  2677. "asset": {
  2678. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  2679. },
  2680. "fileId": "e4lVLp5cNDSK3KB4eDcl6Z",
  2681. "sync": false
  2682. },
  2683. {
  2684. "__type__": "cc.PrefabInfo",
  2685. "root": {
  2686. "__id__": 1
  2687. },
  2688. "asset": {
  2689. "__id__": 0
  2690. },
  2691. "fileId": "fbyz4m/9dPz4jEqwiPAGWu",
  2692. "sync": false
  2693. },
  2694. {
  2695. "__type__": "cc.Node",
  2696. "_name": "bottom1",
  2697. "_objFlags": 0,
  2698. "_parent": {
  2699. "__id__": 1
  2700. },
  2701. "_children": [],
  2702. "_active": true,
  2703. "_components": [
  2704. {
  2705. "__id__": 78
  2706. }
  2707. ],
  2708. "_prefab": {
  2709. "__id__": 79
  2710. },
  2711. "_opacity": 255,
  2712. "_color": {
  2713. "__type__": "cc.Color",
  2714. "r": 255,
  2715. "g": 255,
  2716. "b": 255,
  2717. "a": 255
  2718. },
  2719. "_contentSize": {
  2720. "__type__": "cc.Size",
  2721. "width": 800,
  2722. "height": 300
  2723. },
  2724. "_anchorPoint": {
  2725. "__type__": "cc.Vec2",
  2726. "x": 0.5,
  2727. "y": 0.5
  2728. },
  2729. "_trs": {
  2730. "__type__": "TypedArray",
  2731. "ctor": "Float64Array",
  2732. "array": [
  2733. 0,
  2734. 19,
  2735. 0,
  2736. 0,
  2737. 0,
  2738. 0,
  2739. 1,
  2740. 1,
  2741. 1,
  2742. 1
  2743. ]
  2744. },
  2745. "_eulerAngles": {
  2746. "__type__": "cc.Vec3",
  2747. "x": 0,
  2748. "y": 0,
  2749. "z": 0
  2750. },
  2751. "_skewX": 0,
  2752. "_skewY": 0,
  2753. "_is3DNode": false,
  2754. "_groupIndex": 0,
  2755. "groupIndex": 0,
  2756. "_id": ""
  2757. },
  2758. {
  2759. "__type__": "cc.Sprite",
  2760. "_name": "",
  2761. "_objFlags": 0,
  2762. "node": {
  2763. "__id__": 77
  2764. },
  2765. "_enabled": true,
  2766. "_materials": [
  2767. {
  2768. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2769. }
  2770. ],
  2771. "_srcBlendFactor": 770,
  2772. "_dstBlendFactor": 771,
  2773. "_spriteFrame": {
  2774. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  2775. },
  2776. "_type": 1,
  2777. "_sizeMode": 0,
  2778. "_fillType": 0,
  2779. "_fillCenter": {
  2780. "__type__": "cc.Vec2",
  2781. "x": 0,
  2782. "y": 0
  2783. },
  2784. "_fillStart": 0,
  2785. "_fillRange": 0,
  2786. "_isTrimmedMode": true,
  2787. "_atlas": null,
  2788. "_id": ""
  2789. },
  2790. {
  2791. "__type__": "cc.PrefabInfo",
  2792. "root": {
  2793. "__id__": 1
  2794. },
  2795. "asset": {
  2796. "__id__": 0
  2797. },
  2798. "fileId": "2e5glYIktH4IAZLt/f5o02",
  2799. "sync": false
  2800. },
  2801. {
  2802. "__type__": "cc.Node",
  2803. "_name": "block2",
  2804. "_objFlags": 0,
  2805. "_parent": {
  2806. "__id__": 1
  2807. },
  2808. "_children": [],
  2809. "_active": true,
  2810. "_components": [
  2811. {
  2812. "__id__": 81
  2813. }
  2814. ],
  2815. "_prefab": {
  2816. "__id__": 82
  2817. },
  2818. "_opacity": 255,
  2819. "_color": {
  2820. "__type__": "cc.Color",
  2821. "r": 41,
  2822. "g": 29,
  2823. "b": 14,
  2824. "a": 255
  2825. },
  2826. "_contentSize": {
  2827. "__type__": "cc.Size",
  2828. "width": 780,
  2829. "height": 240
  2830. },
  2831. "_anchorPoint": {
  2832. "__type__": "cc.Vec2",
  2833. "x": 0.5,
  2834. "y": 0.5
  2835. },
  2836. "_trs": {
  2837. "__type__": "TypedArray",
  2838. "ctor": "Float64Array",
  2839. "array": [
  2840. 0,
  2841. 0,
  2842. 0,
  2843. 0,
  2844. 0,
  2845. 0,
  2846. 1,
  2847. 1,
  2848. 1,
  2849. 1
  2850. ]
  2851. },
  2852. "_eulerAngles": {
  2853. "__type__": "cc.Vec3",
  2854. "x": 0,
  2855. "y": 0,
  2856. "z": 0
  2857. },
  2858. "_skewX": 0,
  2859. "_skewY": 0,
  2860. "_is3DNode": false,
  2861. "_groupIndex": 0,
  2862. "groupIndex": 0,
  2863. "_id": ""
  2864. },
  2865. {
  2866. "__type__": "cc.Sprite",
  2867. "_name": "",
  2868. "_objFlags": 0,
  2869. "node": {
  2870. "__id__": 80
  2871. },
  2872. "_enabled": true,
  2873. "_materials": [
  2874. {
  2875. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2876. }
  2877. ],
  2878. "_srcBlendFactor": 770,
  2879. "_dstBlendFactor": 771,
  2880. "_spriteFrame": {
  2881. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  2882. },
  2883. "_type": 1,
  2884. "_sizeMode": 0,
  2885. "_fillType": 0,
  2886. "_fillCenter": {
  2887. "__type__": "cc.Vec2",
  2888. "x": 0,
  2889. "y": 0
  2890. },
  2891. "_fillStart": 0,
  2892. "_fillRange": 0,
  2893. "_isTrimmedMode": true,
  2894. "_atlas": null,
  2895. "_id": ""
  2896. },
  2897. {
  2898. "__type__": "cc.PrefabInfo",
  2899. "root": {
  2900. "__id__": 1
  2901. },
  2902. "asset": {
  2903. "__id__": 0
  2904. },
  2905. "fileId": "74Sjd9JPBDkp+QgkiK9/G0",
  2906. "sync": false
  2907. },
  2908. {
  2909. "__type__": "cc.Node",
  2910. "_name": "unlock",
  2911. "_objFlags": 0,
  2912. "_parent": {
  2913. "__id__": 1
  2914. },
  2915. "_children": [],
  2916. "_active": true,
  2917. "_components": [
  2918. {
  2919. "__id__": 84
  2920. },
  2921. {
  2922. "__id__": 85
  2923. },
  2924. {
  2925. "__id__": 86
  2926. }
  2927. ],
  2928. "_prefab": {
  2929. "__id__": 87
  2930. },
  2931. "_opacity": 255,
  2932. "_color": {
  2933. "__type__": "cc.Color",
  2934. "r": 255,
  2935. "g": 214,
  2936. "b": 144,
  2937. "a": 255
  2938. },
  2939. "_contentSize": {
  2940. "__type__": "cc.Size",
  2941. "width": 286.78,
  2942. "height": 62.7
  2943. },
  2944. "_anchorPoint": {
  2945. "__type__": "cc.Vec2",
  2946. "x": 0.5,
  2947. "y": 0.5
  2948. },
  2949. "_trs": {
  2950. "__type__": "TypedArray",
  2951. "ctor": "Float64Array",
  2952. "array": [
  2953. 1.298,
  2954. 146.47,
  2955. 0,
  2956. 0,
  2957. 0,
  2958. 0,
  2959. 1,
  2960. 1,
  2961. 1,
  2962. 1
  2963. ]
  2964. },
  2965. "_eulerAngles": {
  2966. "__type__": "cc.Vec3",
  2967. "x": 0,
  2968. "y": 0,
  2969. "z": 0
  2970. },
  2971. "_skewX": 0,
  2972. "_skewY": 0,
  2973. "_is3DNode": false,
  2974. "_groupIndex": 0,
  2975. "groupIndex": 0,
  2976. "_id": ""
  2977. },
  2978. {
  2979. "__type__": "cc.Label",
  2980. "_name": "",
  2981. "_objFlags": 0,
  2982. "node": {
  2983. "__id__": 83
  2984. },
  2985. "_enabled": true,
  2986. "_materials": [
  2987. {
  2988. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2989. }
  2990. ],
  2991. "_srcBlendFactor": 770,
  2992. "_dstBlendFactor": 771,
  2993. "_string": "Unlock properties",
  2994. "_N$string": "Unlock properties",
  2995. "_fontSize": 36,
  2996. "_lineHeight": 45,
  2997. "_enableWrapText": true,
  2998. "_N$file": {
  2999. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3000. },
  3001. "_isSystemFontUsed": false,
  3002. "_spacingX": 0,
  3003. "_batchAsBitmap": false,
  3004. "_styleFlags": 0,
  3005. "_underlineHeight": 0,
  3006. "_N$horizontalAlign": 1,
  3007. "_N$verticalAlign": 1,
  3008. "_N$fontFamily": "Arial",
  3009. "_N$overflow": 0,
  3010. "_N$cacheMode": 0,
  3011. "_id": ""
  3012. },
  3013. {
  3014. "__type__": "cc.LabelOutline",
  3015. "_name": "",
  3016. "_objFlags": 0,
  3017. "node": {
  3018. "__id__": 83
  3019. },
  3020. "_enabled": true,
  3021. "_color": {
  3022. "__type__": "cc.Color",
  3023. "r": 38,
  3024. "g": 17,
  3025. "b": 12,
  3026. "a": 255
  3027. },
  3028. "_width": 3,
  3029. "_id": ""
  3030. },
  3031. {
  3032. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3033. "_name": "",
  3034. "_objFlags": 0,
  3035. "node": {
  3036. "__id__": 83
  3037. },
  3038. "_enabled": true,
  3039. "_englishCase": 1,
  3040. "i18n_string": "t46",
  3041. "i18n_params": [],
  3042. "_addColon": false,
  3043. "_id": ""
  3044. },
  3045. {
  3046. "__type__": "cc.PrefabInfo",
  3047. "root": {
  3048. "__id__": 1
  3049. },
  3050. "asset": {
  3051. "__id__": 0
  3052. },
  3053. "fileId": "d8a/k+WiNCm7wi0l89MVYT",
  3054. "sync": false
  3055. },
  3056. {
  3057. "__type__": "cc.Node",
  3058. "_name": "attrList",
  3059. "_objFlags": 0,
  3060. "_parent": {
  3061. "__id__": 1
  3062. },
  3063. "_children": [
  3064. {
  3065. "__id__": 89
  3066. }
  3067. ],
  3068. "_active": true,
  3069. "_components": [
  3070. {
  3071. "__id__": 110
  3072. }
  3073. ],
  3074. "_prefab": {
  3075. "__id__": 111
  3076. },
  3077. "_opacity": 255,
  3078. "_color": {
  3079. "__type__": "cc.Color",
  3080. "r": 255,
  3081. "g": 255,
  3082. "b": 255,
  3083. "a": 255
  3084. },
  3085. "_contentSize": {
  3086. "__type__": "cc.Size",
  3087. "width": 800,
  3088. "height": 240
  3089. },
  3090. "_anchorPoint": {
  3091. "__type__": "cc.Vec2",
  3092. "x": 0.5,
  3093. "y": 0.5
  3094. },
  3095. "_trs": {
  3096. "__type__": "TypedArray",
  3097. "ctor": "Float64Array",
  3098. "array": [
  3099. 0,
  3100. 0,
  3101. 0,
  3102. 0,
  3103. 0,
  3104. 0,
  3105. 1,
  3106. 1,
  3107. 1,
  3108. 1
  3109. ]
  3110. },
  3111. "_eulerAngles": {
  3112. "__type__": "cc.Vec3",
  3113. "x": 0,
  3114. "y": 0,
  3115. "z": 0
  3116. },
  3117. "_skewX": 0,
  3118. "_skewY": 0,
  3119. "_is3DNode": false,
  3120. "_groupIndex": 0,
  3121. "groupIndex": 0,
  3122. "_id": ""
  3123. },
  3124. {
  3125. "__type__": "cc.Node",
  3126. "_name": "view",
  3127. "_objFlags": 0,
  3128. "_parent": {
  3129. "__id__": 88
  3130. },
  3131. "_children": [
  3132. {
  3133. "__id__": 90
  3134. }
  3135. ],
  3136. "_active": true,
  3137. "_components": [
  3138. {
  3139. "__id__": 108
  3140. }
  3141. ],
  3142. "_prefab": {
  3143. "__id__": 109
  3144. },
  3145. "_opacity": 255,
  3146. "_color": {
  3147. "__type__": "cc.Color",
  3148. "r": 255,
  3149. "g": 255,
  3150. "b": 255,
  3151. "a": 255
  3152. },
  3153. "_contentSize": {
  3154. "__type__": "cc.Size",
  3155. "width": 800,
  3156. "height": 240
  3157. },
  3158. "_anchorPoint": {
  3159. "__type__": "cc.Vec2",
  3160. "x": 0.5,
  3161. "y": 1
  3162. },
  3163. "_trs": {
  3164. "__type__": "TypedArray",
  3165. "ctor": "Float64Array",
  3166. "array": [
  3167. 0,
  3168. 120,
  3169. 0,
  3170. 0,
  3171. 0,
  3172. 0,
  3173. 1,
  3174. 1,
  3175. 1,
  3176. 1
  3177. ]
  3178. },
  3179. "_eulerAngles": {
  3180. "__type__": "cc.Vec3",
  3181. "x": 0,
  3182. "y": 0,
  3183. "z": 0
  3184. },
  3185. "_skewX": 0,
  3186. "_skewY": 0,
  3187. "_is3DNode": false,
  3188. "_groupIndex": 0,
  3189. "groupIndex": 0,
  3190. "_id": ""
  3191. },
  3192. {
  3193. "__type__": "cc.Node",
  3194. "_name": "content",
  3195. "_objFlags": 0,
  3196. "_parent": {
  3197. "__id__": 89
  3198. },
  3199. "_children": [
  3200. {
  3201. "__id__": 91
  3202. }
  3203. ],
  3204. "_active": true,
  3205. "_components": [
  3206. {
  3207. "__id__": 106
  3208. }
  3209. ],
  3210. "_prefab": {
  3211. "__id__": 107
  3212. },
  3213. "_opacity": 255,
  3214. "_color": {
  3215. "__type__": "cc.Color",
  3216. "r": 255,
  3217. "g": 255,
  3218. "b": 255,
  3219. "a": 255
  3220. },
  3221. "_contentSize": {
  3222. "__type__": "cc.Size",
  3223. "width": 800,
  3224. "height": 55.36
  3225. },
  3226. "_anchorPoint": {
  3227. "__type__": "cc.Vec2",
  3228. "x": 0.5,
  3229. "y": 1
  3230. },
  3231. "_trs": {
  3232. "__type__": "TypedArray",
  3233. "ctor": "Float64Array",
  3234. "array": [
  3235. 0,
  3236. 0,
  3237. 0,
  3238. 0,
  3239. 0,
  3240. 0,
  3241. 1,
  3242. 1,
  3243. 1,
  3244. 1
  3245. ]
  3246. },
  3247. "_eulerAngles": {
  3248. "__type__": "cc.Vec3",
  3249. "x": 0,
  3250. "y": 0,
  3251. "z": 0
  3252. },
  3253. "_skewX": 0,
  3254. "_skewY": 0,
  3255. "_is3DNode": false,
  3256. "_groupIndex": 0,
  3257. "groupIndex": 0,
  3258. "_id": ""
  3259. },
  3260. {
  3261. "__type__": "cc.Node",
  3262. "_name": "item",
  3263. "_objFlags": 0,
  3264. "_parent": {
  3265. "__id__": 90
  3266. },
  3267. "_children": [
  3268. {
  3269. "__id__": 92
  3270. },
  3271. {
  3272. "__id__": 100
  3273. }
  3274. ],
  3275. "_active": true,
  3276. "_components": [
  3277. {
  3278. "__id__": 104
  3279. }
  3280. ],
  3281. "_prefab": {
  3282. "__id__": 105
  3283. },
  3284. "_opacity": 255,
  3285. "_color": {
  3286. "__type__": "cc.Color",
  3287. "r": 255,
  3288. "g": 255,
  3289. "b": 255,
  3290. "a": 255
  3291. },
  3292. "_contentSize": {
  3293. "__type__": "cc.Size",
  3294. "width": 760,
  3295. "height": 40.36
  3296. },
  3297. "_anchorPoint": {
  3298. "__type__": "cc.Vec2",
  3299. "x": 0.5,
  3300. "y": 1
  3301. },
  3302. "_trs": {
  3303. "__type__": "TypedArray",
  3304. "ctor": "Float64Array",
  3305. "array": [
  3306. 0,
  3307. -15,
  3308. 0,
  3309. 0,
  3310. 0,
  3311. 0,
  3312. 1,
  3313. 1,
  3314. 1,
  3315. 1
  3316. ]
  3317. },
  3318. "_eulerAngles": {
  3319. "__type__": "cc.Vec3",
  3320. "x": 0,
  3321. "y": 0,
  3322. "z": 0
  3323. },
  3324. "_skewX": 0,
  3325. "_skewY": 0,
  3326. "_is3DNode": false,
  3327. "_groupIndex": 0,
  3328. "groupIndex": 0,
  3329. "_id": ""
  3330. },
  3331. {
  3332. "__type__": "cc.Node",
  3333. "_name": "icon",
  3334. "_objFlags": 0,
  3335. "_parent": {
  3336. "__id__": 91
  3337. },
  3338. "_children": [
  3339. {
  3340. "__id__": 93
  3341. },
  3342. {
  3343. "__id__": 96
  3344. }
  3345. ],
  3346. "_active": true,
  3347. "_components": [],
  3348. "_prefab": {
  3349. "__id__": 99
  3350. },
  3351. "_opacity": 255,
  3352. "_color": {
  3353. "__type__": "cc.Color",
  3354. "r": 255,
  3355. "g": 255,
  3356. "b": 255,
  3357. "a": 255
  3358. },
  3359. "_contentSize": {
  3360. "__type__": "cc.Size",
  3361. "width": 0,
  3362. "height": 0
  3363. },
  3364. "_anchorPoint": {
  3365. "__type__": "cc.Vec2",
  3366. "x": 0.5,
  3367. "y": 0.5
  3368. },
  3369. "_trs": {
  3370. "__type__": "TypedArray",
  3371. "ctor": "Float64Array",
  3372. "array": [
  3373. 0,
  3374. 5,
  3375. 0,
  3376. 0,
  3377. 0,
  3378. 0,
  3379. 1,
  3380. 1,
  3381. 1,
  3382. 1
  3383. ]
  3384. },
  3385. "_eulerAngles": {
  3386. "__type__": "cc.Vec3",
  3387. "x": 0,
  3388. "y": 0,
  3389. "z": 0
  3390. },
  3391. "_skewX": 0,
  3392. "_skewY": 0,
  3393. "_is3DNode": false,
  3394. "_groupIndex": 0,
  3395. "groupIndex": 0,
  3396. "_id": ""
  3397. },
  3398. {
  3399. "__type__": "cc.Node",
  3400. "_name": "item_frame",
  3401. "_objFlags": 0,
  3402. "_parent": {
  3403. "__id__": 92
  3404. },
  3405. "_children": [],
  3406. "_active": true,
  3407. "_components": [
  3408. {
  3409. "__id__": 94
  3410. }
  3411. ],
  3412. "_prefab": {
  3413. "__id__": 95
  3414. },
  3415. "_opacity": 255,
  3416. "_color": {
  3417. "__type__": "cc.Color",
  3418. "r": 255,
  3419. "g": 255,
  3420. "b": 255,
  3421. "a": 255
  3422. },
  3423. "_contentSize": {
  3424. "__type__": "cc.Size",
  3425. "width": 150,
  3426. "height": 150
  3427. },
  3428. "_anchorPoint": {
  3429. "__type__": "cc.Vec2",
  3430. "x": 0.5,
  3431. "y": 0.5
  3432. },
  3433. "_trs": {
  3434. "__type__": "TypedArray",
  3435. "ctor": "Float64Array",
  3436. "array": [
  3437. -347.607,
  3438. -37.392,
  3439. 0,
  3440. 0,
  3441. 0,
  3442. 0,
  3443. 1,
  3444. 0.44,
  3445. 0.44,
  3446. 0.44
  3447. ]
  3448. },
  3449. "_eulerAngles": {
  3450. "__type__": "cc.Vec3",
  3451. "x": 0,
  3452. "y": 0,
  3453. "z": 0
  3454. },
  3455. "_skewX": 0,
  3456. "_skewY": 0,
  3457. "_is3DNode": false,
  3458. "_groupIndex": 0,
  3459. "groupIndex": 0,
  3460. "_id": ""
  3461. },
  3462. {
  3463. "__type__": "cc.Sprite",
  3464. "_name": "",
  3465. "_objFlags": 0,
  3466. "node": {
  3467. "__id__": 93
  3468. },
  3469. "_enabled": true,
  3470. "_materials": [
  3471. {
  3472. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3473. }
  3474. ],
  3475. "_srcBlendFactor": 770,
  3476. "_dstBlendFactor": 771,
  3477. "_spriteFrame": {
  3478. "__uuid__": "9001cedd-06f1-4884-8ed1-17038fad7fa6"
  3479. },
  3480. "_type": 0,
  3481. "_sizeMode": 0,
  3482. "_fillType": 0,
  3483. "_fillCenter": {
  3484. "__type__": "cc.Vec2",
  3485. "x": 0,
  3486. "y": 0
  3487. },
  3488. "_fillStart": 0,
  3489. "_fillRange": 0,
  3490. "_isTrimmedMode": true,
  3491. "_atlas": null,
  3492. "_id": ""
  3493. },
  3494. {
  3495. "__type__": "cc.PrefabInfo",
  3496. "root": {
  3497. "__id__": 1
  3498. },
  3499. "asset": {
  3500. "__id__": 0
  3501. },
  3502. "fileId": "481XWo0uROH6kN5zRDazrx",
  3503. "sync": false
  3504. },
  3505. {
  3506. "__type__": "cc.Node",
  3507. "_name": "lock_1",
  3508. "_objFlags": 0,
  3509. "_parent": {
  3510. "__id__": 92
  3511. },
  3512. "_children": [],
  3513. "_active": true,
  3514. "_components": [
  3515. {
  3516. "__id__": 97
  3517. }
  3518. ],
  3519. "_prefab": {
  3520. "__id__": 98
  3521. },
  3522. "_opacity": 255,
  3523. "_color": {
  3524. "__type__": "cc.Color",
  3525. "r": 255,
  3526. "g": 255,
  3527. "b": 255,
  3528. "a": 255
  3529. },
  3530. "_contentSize": {
  3531. "__type__": "cc.Size",
  3532. "width": 86,
  3533. "height": 101
  3534. },
  3535. "_anchorPoint": {
  3536. "__type__": "cc.Vec2",
  3537. "x": 0.5,
  3538. "y": 0.5
  3539. },
  3540. "_trs": {
  3541. "__type__": "TypedArray",
  3542. "ctor": "Float64Array",
  3543. "array": [
  3544. -347.607,
  3545. -37.392,
  3546. 0,
  3547. 0,
  3548. 0,
  3549. 0,
  3550. 1,
  3551. 0.5,
  3552. 0.5,
  3553. 1
  3554. ]
  3555. },
  3556. "_eulerAngles": {
  3557. "__type__": "cc.Vec3",
  3558. "x": 0,
  3559. "y": 0,
  3560. "z": 0
  3561. },
  3562. "_skewX": 0,
  3563. "_skewY": 0,
  3564. "_is3DNode": false,
  3565. "_groupIndex": 0,
  3566. "groupIndex": 0,
  3567. "_id": ""
  3568. },
  3569. {
  3570. "__type__": "cc.Sprite",
  3571. "_name": "",
  3572. "_objFlags": 0,
  3573. "node": {
  3574. "__id__": 96
  3575. },
  3576. "_enabled": true,
  3577. "_materials": [
  3578. {
  3579. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3580. }
  3581. ],
  3582. "_srcBlendFactor": 770,
  3583. "_dstBlendFactor": 771,
  3584. "_spriteFrame": {
  3585. "__uuid__": "954cc19b-81e3-49ef-94ce-3636e473a277"
  3586. },
  3587. "_type": 0,
  3588. "_sizeMode": 1,
  3589. "_fillType": 0,
  3590. "_fillCenter": {
  3591. "__type__": "cc.Vec2",
  3592. "x": 0,
  3593. "y": 0
  3594. },
  3595. "_fillStart": 0,
  3596. "_fillRange": 0,
  3597. "_isTrimmedMode": true,
  3598. "_atlas": null,
  3599. "_id": ""
  3600. },
  3601. {
  3602. "__type__": "cc.PrefabInfo",
  3603. "root": {
  3604. "__id__": 1
  3605. },
  3606. "asset": {
  3607. "__id__": 0
  3608. },
  3609. "fileId": "eaezcwZyFCqIxPqzS0t+yP",
  3610. "sync": false
  3611. },
  3612. {
  3613. "__type__": "cc.PrefabInfo",
  3614. "root": {
  3615. "__id__": 1
  3616. },
  3617. "asset": {
  3618. "__id__": 0
  3619. },
  3620. "fileId": "1fy57A4WNH9qs/bYYWqX1Z",
  3621. "sync": false
  3622. },
  3623. {
  3624. "__type__": "cc.Node",
  3625. "_name": "richText",
  3626. "_objFlags": 0,
  3627. "_parent": {
  3628. "__id__": 91
  3629. },
  3630. "_children": [],
  3631. "_active": true,
  3632. "_components": [
  3633. {
  3634. "__id__": 101
  3635. },
  3636. {
  3637. "__id__": 102
  3638. }
  3639. ],
  3640. "_prefab": {
  3641. "__id__": 103
  3642. },
  3643. "_opacity": 255,
  3644. "_color": {
  3645. "__type__": "cc.Color",
  3646. "r": 255,
  3647. "g": 255,
  3648. "b": 255,
  3649. "a": 255
  3650. },
  3651. "_contentSize": {
  3652. "__type__": "cc.Size",
  3653. "width": 600,
  3654. "height": 45.36
  3655. },
  3656. "_anchorPoint": {
  3657. "__type__": "cc.Vec2",
  3658. "x": 0.5,
  3659. "y": 1
  3660. },
  3661. "_trs": {
  3662. "__type__": "TypedArray",
  3663. "ctor": "Float64Array",
  3664. "array": [
  3665. -1.027,
  3666. 5,
  3667. 0,
  3668. 0,
  3669. 0,
  3670. 0,
  3671. 1,
  3672. 1,
  3673. 1,
  3674. 1
  3675. ]
  3676. },
  3677. "_eulerAngles": {
  3678. "__type__": "cc.Vec3",
  3679. "x": 0,
  3680. "y": 0,
  3681. "z": 0
  3682. },
  3683. "_skewX": 0,
  3684. "_skewY": 0,
  3685. "_is3DNode": false,
  3686. "_groupIndex": 0,
  3687. "groupIndex": 0,
  3688. "_id": ""
  3689. },
  3690. {
  3691. "__type__": "cc.RichText",
  3692. "_name": "",
  3693. "_objFlags": 0,
  3694. "node": {
  3695. "__id__": 100
  3696. },
  3697. "_enabled": true,
  3698. "_fontFamily": "Arial",
  3699. "_isSystemFontUsed": false,
  3700. "_N$string": "",
  3701. "_N$horizontalAlign": 0,
  3702. "_N$fontSize": 30,
  3703. "_N$font": {
  3704. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3705. },
  3706. "_N$cacheMode": 0,
  3707. "_N$maxWidth": 600,
  3708. "_N$lineHeight": 36,
  3709. "_N$imageAtlas": null,
  3710. "_N$handleTouchEvent": true,
  3711. "_id": ""
  3712. },
  3713. {
  3714. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3715. "_name": "",
  3716. "_objFlags": 0,
  3717. "node": {
  3718. "__id__": 100
  3719. },
  3720. "_enabled": true,
  3721. "_englishCase": 0,
  3722. "i18n_string": "",
  3723. "i18n_params": [],
  3724. "_addColon": false,
  3725. "_id": ""
  3726. },
  3727. {
  3728. "__type__": "cc.PrefabInfo",
  3729. "root": {
  3730. "__id__": 1
  3731. },
  3732. "asset": {
  3733. "__id__": 0
  3734. },
  3735. "fileId": "f02l56Eo1IM699kHqn06hH",
  3736. "sync": false
  3737. },
  3738. {
  3739. "__type__": "cc.Layout",
  3740. "_name": "",
  3741. "_objFlags": 0,
  3742. "node": {
  3743. "__id__": 91
  3744. },
  3745. "_enabled": true,
  3746. "_layoutSize": {
  3747. "__type__": "cc.Size",
  3748. "width": 760,
  3749. "height": 40.36
  3750. },
  3751. "_resize": 1,
  3752. "_N$layoutType": 2,
  3753. "_N$cellSize": {
  3754. "__type__": "cc.Size",
  3755. "width": 40,
  3756. "height": 40
  3757. },
  3758. "_N$startAxis": 0,
  3759. "_N$paddingLeft": 0,
  3760. "_N$paddingRight": 0,
  3761. "_N$paddingTop": -5,
  3762. "_N$paddingBottom": 0,
  3763. "_N$spacingX": 0,
  3764. "_N$spacingY": 0,
  3765. "_N$verticalDirection": 1,
  3766. "_N$horizontalDirection": 0,
  3767. "_N$affectedByScale": false,
  3768. "_id": ""
  3769. },
  3770. {
  3771. "__type__": "cc.PrefabInfo",
  3772. "root": {
  3773. "__id__": 1
  3774. },
  3775. "asset": {
  3776. "__id__": 0
  3777. },
  3778. "fileId": "a5t+WRfs1NFb4YwYkpnfzd",
  3779. "sync": false
  3780. },
  3781. {
  3782. "__type__": "cc.Layout",
  3783. "_name": "",
  3784. "_objFlags": 0,
  3785. "node": {
  3786. "__id__": 90
  3787. },
  3788. "_enabled": true,
  3789. "_layoutSize": {
  3790. "__type__": "cc.Size",
  3791. "width": 800,
  3792. "height": 55.36
  3793. },
  3794. "_resize": 1,
  3795. "_N$layoutType": 2,
  3796. "_N$cellSize": {
  3797. "__type__": "cc.Size",
  3798. "width": 40,
  3799. "height": 40
  3800. },
  3801. "_N$startAxis": 0,
  3802. "_N$paddingLeft": 0,
  3803. "_N$paddingRight": 0,
  3804. "_N$paddingTop": 15,
  3805. "_N$paddingBottom": 0,
  3806. "_N$spacingX": 0,
  3807. "_N$spacingY": 10,
  3808. "_N$verticalDirection": 1,
  3809. "_N$horizontalDirection": 0,
  3810. "_N$affectedByScale": false,
  3811. "_id": ""
  3812. },
  3813. {
  3814. "__type__": "cc.PrefabInfo",
  3815. "root": {
  3816. "__id__": 1
  3817. },
  3818. "asset": {
  3819. "__id__": 0
  3820. },
  3821. "fileId": "50751vuyFOE6yZF3rzhNmw",
  3822. "sync": false
  3823. },
  3824. {
  3825. "__type__": "cc.Mask",
  3826. "_name": "",
  3827. "_objFlags": 0,
  3828. "node": {
  3829. "__id__": 89
  3830. },
  3831. "_enabled": true,
  3832. "_materials": [
  3833. {
  3834. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3835. }
  3836. ],
  3837. "_spriteFrame": null,
  3838. "_type": 0,
  3839. "_segments": 64,
  3840. "_N$alphaThreshold": 0,
  3841. "_N$inverted": false,
  3842. "_id": ""
  3843. },
  3844. {
  3845. "__type__": "cc.PrefabInfo",
  3846. "root": {
  3847. "__id__": 1
  3848. },
  3849. "asset": {
  3850. "__id__": 0
  3851. },
  3852. "fileId": "73C0A0gzNDwKKx+Rc7zOSE",
  3853. "sync": false
  3854. },
  3855. {
  3856. "__type__": "cc.ScrollView",
  3857. "_name": "",
  3858. "_objFlags": 0,
  3859. "node": {
  3860. "__id__": 88
  3861. },
  3862. "_enabled": true,
  3863. "horizontal": false,
  3864. "vertical": true,
  3865. "inertia": true,
  3866. "brake": 0.75,
  3867. "elastic": false,
  3868. "bounceDuration": 0.23,
  3869. "scrollEvents": [],
  3870. "cancelInnerEvents": false,
  3871. "_N$content": {
  3872. "__id__": 90
  3873. },
  3874. "content": {
  3875. "__id__": 90
  3876. },
  3877. "_N$horizontalScrollBar": null,
  3878. "_N$verticalScrollBar": null,
  3879. "_id": ""
  3880. },
  3881. {
  3882. "__type__": "cc.PrefabInfo",
  3883. "root": {
  3884. "__id__": 1
  3885. },
  3886. "asset": {
  3887. "__id__": 0
  3888. },
  3889. "fileId": "ec0UeWKcRF4ZY25JewWrQ+",
  3890. "sync": false
  3891. },
  3892. {
  3893. "__type__": "cc.Node",
  3894. "_name": "bottom1",
  3895. "_objFlags": 0,
  3896. "_parent": {
  3897. "__id__": 1
  3898. },
  3899. "_children": [],
  3900. "_active": true,
  3901. "_components": [
  3902. {
  3903. "__id__": 113
  3904. }
  3905. ],
  3906. "_prefab": {
  3907. "__id__": 114
  3908. },
  3909. "_opacity": 255,
  3910. "_color": {
  3911. "__type__": "cc.Color",
  3912. "r": 255,
  3913. "g": 255,
  3914. "b": 255,
  3915. "a": 255
  3916. },
  3917. "_contentSize": {
  3918. "__type__": "cc.Size",
  3919. "width": 800,
  3920. "height": 120
  3921. },
  3922. "_anchorPoint": {
  3923. "__type__": "cc.Vec2",
  3924. "x": 0.5,
  3925. "y": 0.5
  3926. },
  3927. "_trs": {
  3928. "__type__": "TypedArray",
  3929. "ctor": "Float64Array",
  3930. "array": [
  3931. 0,
  3932. -200.087,
  3933. 0,
  3934. 0,
  3935. 0,
  3936. 0,
  3937. 1,
  3938. 1,
  3939. 1,
  3940. 1
  3941. ]
  3942. },
  3943. "_eulerAngles": {
  3944. "__type__": "cc.Vec3",
  3945. "x": 0,
  3946. "y": 0,
  3947. "z": 0
  3948. },
  3949. "_skewX": 0,
  3950. "_skewY": 0,
  3951. "_is3DNode": false,
  3952. "_groupIndex": 0,
  3953. "groupIndex": 0,
  3954. "_id": ""
  3955. },
  3956. {
  3957. "__type__": "cc.Sprite",
  3958. "_name": "",
  3959. "_objFlags": 0,
  3960. "node": {
  3961. "__id__": 112
  3962. },
  3963. "_enabled": true,
  3964. "_materials": [
  3965. {
  3966. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3967. }
  3968. ],
  3969. "_srcBlendFactor": 770,
  3970. "_dstBlendFactor": 771,
  3971. "_spriteFrame": {
  3972. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  3973. },
  3974. "_type": 1,
  3975. "_sizeMode": 0,
  3976. "_fillType": 0,
  3977. "_fillCenter": {
  3978. "__type__": "cc.Vec2",
  3979. "x": 0,
  3980. "y": 0
  3981. },
  3982. "_fillStart": 0,
  3983. "_fillRange": 0,
  3984. "_isTrimmedMode": true,
  3985. "_atlas": null,
  3986. "_id": ""
  3987. },
  3988. {
  3989. "__type__": "cc.PrefabInfo",
  3990. "root": {
  3991. "__id__": 1
  3992. },
  3993. "asset": {
  3994. "__id__": 0
  3995. },
  3996. "fileId": "10wPKiqVJI/5kBXxnCs47j",
  3997. "sync": false
  3998. },
  3999. {
  4000. "__type__": "cc.Node",
  4001. "_name": "block2",
  4002. "_objFlags": 0,
  4003. "_parent": {
  4004. "__id__": 1
  4005. },
  4006. "_children": [],
  4007. "_active": true,
  4008. "_components": [
  4009. {
  4010. "__id__": 116
  4011. }
  4012. ],
  4013. "_prefab": {
  4014. "__id__": 117
  4015. },
  4016. "_opacity": 255,
  4017. "_color": {
  4018. "__type__": "cc.Color",
  4019. "r": 41,
  4020. "g": 29,
  4021. "b": 14,
  4022. "a": 255
  4023. },
  4024. "_contentSize": {
  4025. "__type__": "cc.Size",
  4026. "width": 780,
  4027. "height": 60
  4028. },
  4029. "_anchorPoint": {
  4030. "__type__": "cc.Vec2",
  4031. "x": 0.5,
  4032. "y": 0.5
  4033. },
  4034. "_trs": {
  4035. "__type__": "TypedArray",
  4036. "ctor": "Float64Array",
  4037. "array": [
  4038. 0,
  4039. -219.765,
  4040. 0,
  4041. 0,
  4042. 0,
  4043. 0,
  4044. 1,
  4045. 1,
  4046. 1,
  4047. 1
  4048. ]
  4049. },
  4050. "_eulerAngles": {
  4051. "__type__": "cc.Vec3",
  4052. "x": 0,
  4053. "y": 0,
  4054. "z": 0
  4055. },
  4056. "_skewX": 0,
  4057. "_skewY": 0,
  4058. "_is3DNode": false,
  4059. "_groupIndex": 0,
  4060. "groupIndex": 0,
  4061. "_id": ""
  4062. },
  4063. {
  4064. "__type__": "cc.Sprite",
  4065. "_name": "",
  4066. "_objFlags": 0,
  4067. "node": {
  4068. "__id__": 115
  4069. },
  4070. "_enabled": true,
  4071. "_materials": [
  4072. {
  4073. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4074. }
  4075. ],
  4076. "_srcBlendFactor": 770,
  4077. "_dstBlendFactor": 771,
  4078. "_spriteFrame": {
  4079. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  4080. },
  4081. "_type": 1,
  4082. "_sizeMode": 0,
  4083. "_fillType": 0,
  4084. "_fillCenter": {
  4085. "__type__": "cc.Vec2",
  4086. "x": 0,
  4087. "y": 0
  4088. },
  4089. "_fillStart": 0,
  4090. "_fillRange": 0,
  4091. "_isTrimmedMode": true,
  4092. "_atlas": null,
  4093. "_id": ""
  4094. },
  4095. {
  4096. "__type__": "cc.PrefabInfo",
  4097. "root": {
  4098. "__id__": 1
  4099. },
  4100. "asset": {
  4101. "__id__": 0
  4102. },
  4103. "fileId": "baYPjbxABCG7D898K332yy",
  4104. "sync": false
  4105. },
  4106. {
  4107. "__type__": "cc.Node",
  4108. "_name": "unlock",
  4109. "_objFlags": 0,
  4110. "_parent": {
  4111. "__id__": 1
  4112. },
  4113. "_children": [],
  4114. "_active": true,
  4115. "_components": [
  4116. {
  4117. "__id__": 119
  4118. },
  4119. {
  4120. "__id__": 120
  4121. },
  4122. {
  4123. "__id__": 121
  4124. }
  4125. ],
  4126. "_prefab": {
  4127. "__id__": 122
  4128. },
  4129. "_opacity": 255,
  4130. "_color": {
  4131. "__type__": "cc.Color",
  4132. "r": 255,
  4133. "g": 214,
  4134. "b": 144,
  4135. "a": 255
  4136. },
  4137. "_contentSize": {
  4138. "__type__": "cc.Size",
  4139. "width": 262.5,
  4140. "height": 56.4
  4141. },
  4142. "_anchorPoint": {
  4143. "__type__": "cc.Vec2",
  4144. "x": 0.5,
  4145. "y": 0.5
  4146. },
  4147. "_trs": {
  4148. "__type__": "TypedArray",
  4149. "ctor": "Float64Array",
  4150. "array": [
  4151. 2.596,
  4152. -164.699,
  4153. 0,
  4154. 0,
  4155. 0,
  4156. 0,
  4157. 1,
  4158. 1,
  4159. 1,
  4160. 1
  4161. ]
  4162. },
  4163. "_eulerAngles": {
  4164. "__type__": "cc.Vec3",
  4165. "x": 0,
  4166. "y": 0,
  4167. "z": 0
  4168. },
  4169. "_skewX": 0,
  4170. "_skewY": 0,
  4171. "_is3DNode": false,
  4172. "_groupIndex": 0,
  4173. "groupIndex": 0,
  4174. "_id": ""
  4175. },
  4176. {
  4177. "__type__": "cc.Label",
  4178. "_name": "",
  4179. "_objFlags": 0,
  4180. "node": {
  4181. "__id__": 118
  4182. },
  4183. "_enabled": true,
  4184. "_materials": [
  4185. {
  4186. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4187. }
  4188. ],
  4189. "_srcBlendFactor": 770,
  4190. "_dstBlendFactor": 771,
  4191. "_string": "Card attributes",
  4192. "_N$string": "Card attributes",
  4193. "_fontSize": 36,
  4194. "_lineHeight": 40,
  4195. "_enableWrapText": true,
  4196. "_N$file": {
  4197. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4198. },
  4199. "_isSystemFontUsed": false,
  4200. "_spacingX": 0,
  4201. "_batchAsBitmap": false,
  4202. "_styleFlags": 0,
  4203. "_underlineHeight": 0,
  4204. "_N$horizontalAlign": 1,
  4205. "_N$verticalAlign": 1,
  4206. "_N$fontFamily": "Arial",
  4207. "_N$overflow": 0,
  4208. "_N$cacheMode": 0,
  4209. "_id": ""
  4210. },
  4211. {
  4212. "__type__": "cc.LabelOutline",
  4213. "_name": "",
  4214. "_objFlags": 0,
  4215. "node": {
  4216. "__id__": 118
  4217. },
  4218. "_enabled": true,
  4219. "_color": {
  4220. "__type__": "cc.Color",
  4221. "r": 38,
  4222. "g": 17,
  4223. "b": 12,
  4224. "a": 255
  4225. },
  4226. "_width": 3,
  4227. "_id": ""
  4228. },
  4229. {
  4230. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4231. "_name": "",
  4232. "_objFlags": 0,
  4233. "node": {
  4234. "__id__": 118
  4235. },
  4236. "_enabled": true,
  4237. "_englishCase": 1,
  4238. "i18n_string": "t58",
  4239. "i18n_params": [],
  4240. "_addColon": false,
  4241. "_id": ""
  4242. },
  4243. {
  4244. "__type__": "cc.PrefabInfo",
  4245. "root": {
  4246. "__id__": 1
  4247. },
  4248. "asset": {
  4249. "__id__": 0
  4250. },
  4251. "fileId": "57MvHR/PxNSqAE2KKQ50qN",
  4252. "sync": false
  4253. },
  4254. {
  4255. "__type__": "cc.Node",
  4256. "_name": "power_lb",
  4257. "_objFlags": 0,
  4258. "_parent": {
  4259. "__id__": 1
  4260. },
  4261. "_children": [],
  4262. "_active": true,
  4263. "_components": [
  4264. {
  4265. "__id__": 124
  4266. },
  4267. {
  4268. "__id__": 125
  4269. },
  4270. {
  4271. "__id__": 126
  4272. }
  4273. ],
  4274. "_prefab": {
  4275. "__id__": 127
  4276. },
  4277. "_opacity": 255,
  4278. "_color": {
  4279. "__type__": "cc.Color",
  4280. "r": 255,
  4281. "g": 255,
  4282. "b": 255,
  4283. "a": 255
  4284. },
  4285. "_contentSize": {
  4286. "__type__": "cc.Size",
  4287. "width": 137.05,
  4288. "height": 54.4
  4289. },
  4290. "_anchorPoint": {
  4291. "__type__": "cc.Vec2",
  4292. "x": 0.5,
  4293. "y": 0.5
  4294. },
  4295. "_trs": {
  4296. "__type__": "TypedArray",
  4297. "ctor": "Float64Array",
  4298. "array": [
  4299. -275.063,
  4300. -218.798,
  4301. 0,
  4302. 0,
  4303. 0,
  4304. 0,
  4305. 1,
  4306. 1,
  4307. 1,
  4308. 1
  4309. ]
  4310. },
  4311. "_eulerAngles": {
  4312. "__type__": "cc.Vec3",
  4313. "x": 0,
  4314. "y": 0,
  4315. "z": 0
  4316. },
  4317. "_skewX": 0,
  4318. "_skewY": 0,
  4319. "_is3DNode": false,
  4320. "_groupIndex": 0,
  4321. "groupIndex": 0,
  4322. "_id": ""
  4323. },
  4324. {
  4325. "__type__": "cc.Label",
  4326. "_name": "",
  4327. "_objFlags": 0,
  4328. "node": {
  4329. "__id__": 123
  4330. },
  4331. "_enabled": true,
  4332. "_materials": [
  4333. {
  4334. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4335. }
  4336. ],
  4337. "_srcBlendFactor": 770,
  4338. "_dstBlendFactor": 771,
  4339. "_string": "POWER:",
  4340. "_N$string": "POWER:",
  4341. "_fontSize": 36,
  4342. "_lineHeight": 40,
  4343. "_enableWrapText": true,
  4344. "_N$file": {
  4345. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4346. },
  4347. "_isSystemFontUsed": false,
  4348. "_spacingX": 0,
  4349. "_batchAsBitmap": false,
  4350. "_styleFlags": 0,
  4351. "_underlineHeight": 0,
  4352. "_N$horizontalAlign": 1,
  4353. "_N$verticalAlign": 1,
  4354. "_N$fontFamily": "Arial",
  4355. "_N$overflow": 0,
  4356. "_N$cacheMode": 0,
  4357. "_id": ""
  4358. },
  4359. {
  4360. "__type__": "cc.LabelOutline",
  4361. "_name": "",
  4362. "_objFlags": 0,
  4363. "node": {
  4364. "__id__": 123
  4365. },
  4366. "_enabled": true,
  4367. "_color": {
  4368. "__type__": "cc.Color",
  4369. "r": 38,
  4370. "g": 17,
  4371. "b": 12,
  4372. "a": 255
  4373. },
  4374. "_width": 2,
  4375. "_id": ""
  4376. },
  4377. {
  4378. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4379. "_name": "",
  4380. "_objFlags": 0,
  4381. "node": {
  4382. "__id__": 123
  4383. },
  4384. "_enabled": true,
  4385. "_englishCase": 2,
  4386. "i18n_string": "t22",
  4387. "i18n_params": [
  4388. ":"
  4389. ],
  4390. "_addColon": true,
  4391. "_id": ""
  4392. },
  4393. {
  4394. "__type__": "cc.PrefabInfo",
  4395. "root": {
  4396. "__id__": 1
  4397. },
  4398. "asset": {
  4399. "__id__": 0
  4400. },
  4401. "fileId": "81DdDzYqlAELt8Hi96Xbg2",
  4402. "sync": false
  4403. },
  4404. {
  4405. "__type__": "cc.Node",
  4406. "_name": "power",
  4407. "_objFlags": 0,
  4408. "_parent": {
  4409. "__id__": 1
  4410. },
  4411. "_children": [],
  4412. "_active": true,
  4413. "_components": [
  4414. {
  4415. "__id__": 129
  4416. },
  4417. {
  4418. "__id__": 130
  4419. }
  4420. ],
  4421. "_prefab": {
  4422. "__id__": 131
  4423. },
  4424. "_opacity": 255,
  4425. "_color": {
  4426. "__type__": "cc.Color",
  4427. "r": 255,
  4428. "g": 198,
  4429. "b": 0,
  4430. "a": 255
  4431. },
  4432. "_contentSize": {
  4433. "__type__": "cc.Size",
  4434. "width": 200,
  4435. "height": 91.9
  4436. },
  4437. "_anchorPoint": {
  4438. "__type__": "cc.Vec2",
  4439. "x": 0.5,
  4440. "y": 0.5
  4441. },
  4442. "_trs": {
  4443. "__type__": "TypedArray",
  4444. "ctor": "Float64Array",
  4445. "array": [
  4446. -96.115,
  4447. -218.35,
  4448. 0,
  4449. 0,
  4450. 0,
  4451. 0,
  4452. 1,
  4453. 1,
  4454. 1,
  4455. 1
  4456. ]
  4457. },
  4458. "_eulerAngles": {
  4459. "__type__": "cc.Vec3",
  4460. "x": 0,
  4461. "y": 0,
  4462. "z": 0
  4463. },
  4464. "_skewX": 0,
  4465. "_skewY": 0,
  4466. "_is3DNode": false,
  4467. "_groupIndex": 0,
  4468. "groupIndex": 0,
  4469. "_id": ""
  4470. },
  4471. {
  4472. "__type__": "cc.Label",
  4473. "_name": "",
  4474. "_objFlags": 0,
  4475. "node": {
  4476. "__id__": 128
  4477. },
  4478. "_enabled": true,
  4479. "_materials": [
  4480. {
  4481. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4482. }
  4483. ],
  4484. "_srcBlendFactor": 770,
  4485. "_dstBlendFactor": 771,
  4486. "_string": "1000000",
  4487. "_N$string": "1000000",
  4488. "_fontSize": 36,
  4489. "_lineHeight": 40,
  4490. "_enableWrapText": false,
  4491. "_N$file": {
  4492. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4493. },
  4494. "_isSystemFontUsed": false,
  4495. "_spacingX": 0,
  4496. "_batchAsBitmap": false,
  4497. "_styleFlags": 0,
  4498. "_underlineHeight": 0,
  4499. "_N$horizontalAlign": 1,
  4500. "_N$verticalAlign": 1,
  4501. "_N$fontFamily": "Arial",
  4502. "_N$overflow": 2,
  4503. "_N$cacheMode": 0,
  4504. "_id": ""
  4505. },
  4506. {
  4507. "__type__": "cc.LabelOutline",
  4508. "_name": "",
  4509. "_objFlags": 0,
  4510. "node": {
  4511. "__id__": 128
  4512. },
  4513. "_enabled": true,
  4514. "_color": {
  4515. "__type__": "cc.Color",
  4516. "r": 38,
  4517. "g": 17,
  4518. "b": 12,
  4519. "a": 255
  4520. },
  4521. "_width": 5,
  4522. "_id": ""
  4523. },
  4524. {
  4525. "__type__": "cc.PrefabInfo",
  4526. "root": {
  4527. "__id__": 1
  4528. },
  4529. "asset": {
  4530. "__id__": 0
  4531. },
  4532. "fileId": "f9p5WG2OZJ1Ja/f80LLNGB",
  4533. "sync": false
  4534. },
  4535. {
  4536. "__type__": "cc.Node",
  4537. "_name": "attackIcon",
  4538. "_objFlags": 0,
  4539. "_parent": {
  4540. "__id__": 1
  4541. },
  4542. "_children": [],
  4543. "_active": true,
  4544. "_components": [
  4545. {
  4546. "__id__": 133
  4547. }
  4548. ],
  4549. "_prefab": {
  4550. "__id__": 134
  4551. },
  4552. "_opacity": 255,
  4553. "_color": {
  4554. "__type__": "cc.Color",
  4555. "r": 255,
  4556. "g": 255,
  4557. "b": 255,
  4558. "a": 255
  4559. },
  4560. "_contentSize": {
  4561. "__type__": "cc.Size",
  4562. "width": 47,
  4563. "height": 49
  4564. },
  4565. "_anchorPoint": {
  4566. "__type__": "cc.Vec2",
  4567. "x": 0.5,
  4568. "y": 0.5
  4569. },
  4570. "_trs": {
  4571. "__type__": "TypedArray",
  4572. "ctor": "Float64Array",
  4573. "array": [
  4574. 39.914,
  4575. -219.904,
  4576. 0,
  4577. 0,
  4578. 0,
  4579. 0,
  4580. 1,
  4581. 0.9,
  4582. 0.9,
  4583. 1
  4584. ]
  4585. },
  4586. "_eulerAngles": {
  4587. "__type__": "cc.Vec3",
  4588. "x": 0,
  4589. "y": 0,
  4590. "z": 0
  4591. },
  4592. "_skewX": 0,
  4593. "_skewY": 0,
  4594. "_is3DNode": false,
  4595. "_groupIndex": 0,
  4596. "groupIndex": 0,
  4597. "_id": ""
  4598. },
  4599. {
  4600. "__type__": "cc.Sprite",
  4601. "_name": "",
  4602. "_objFlags": 0,
  4603. "node": {
  4604. "__id__": 132
  4605. },
  4606. "_enabled": true,
  4607. "_materials": [
  4608. {
  4609. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4610. }
  4611. ],
  4612. "_srcBlendFactor": 770,
  4613. "_dstBlendFactor": 771,
  4614. "_spriteFrame": {
  4615. "__uuid__": "b8daa138-6f3d-4d72-8808-807cb5033a18"
  4616. },
  4617. "_type": 0,
  4618. "_sizeMode": 1,
  4619. "_fillType": 0,
  4620. "_fillCenter": {
  4621. "__type__": "cc.Vec2",
  4622. "x": 0,
  4623. "y": 0
  4624. },
  4625. "_fillStart": 0,
  4626. "_fillRange": 0,
  4627. "_isTrimmedMode": true,
  4628. "_atlas": null,
  4629. "_id": ""
  4630. },
  4631. {
  4632. "__type__": "cc.PrefabInfo",
  4633. "root": {
  4634. "__id__": 1
  4635. },
  4636. "asset": {
  4637. "__id__": 0
  4638. },
  4639. "fileId": "c3YRUf9adLCpm3/jPh1+Qc",
  4640. "sync": false
  4641. },
  4642. {
  4643. "__type__": "cc.Node",
  4644. "_name": "attack",
  4645. "_objFlags": 0,
  4646. "_parent": {
  4647. "__id__": 1
  4648. },
  4649. "_children": [],
  4650. "_active": true,
  4651. "_components": [
  4652. {
  4653. "__id__": 136
  4654. },
  4655. {
  4656. "__id__": 137
  4657. }
  4658. ],
  4659. "_prefab": {
  4660. "__id__": 138
  4661. },
  4662. "_opacity": 255,
  4663. "_color": {
  4664. "__type__": "cc.Color",
  4665. "r": 255,
  4666. "g": 255,
  4667. "b": 255,
  4668. "a": 255
  4669. },
  4670. "_contentSize": {
  4671. "__type__": "cc.Size",
  4672. "width": 160,
  4673. "height": 50
  4674. },
  4675. "_anchorPoint": {
  4676. "__type__": "cc.Vec2",
  4677. "x": 0,
  4678. "y": 0.5
  4679. },
  4680. "_trs": {
  4681. "__type__": "TypedArray",
  4682. "ctor": "Float64Array",
  4683. "array": [
  4684. 78.657,
  4685. -220.582,
  4686. 0,
  4687. 0,
  4688. 0,
  4689. 0,
  4690. 1,
  4691. 1,
  4692. 1,
  4693. 1
  4694. ]
  4695. },
  4696. "_eulerAngles": {
  4697. "__type__": "cc.Vec3",
  4698. "x": 0,
  4699. "y": 0,
  4700. "z": 0
  4701. },
  4702. "_skewX": 0,
  4703. "_skewY": 0,
  4704. "_is3DNode": false,
  4705. "_groupIndex": 0,
  4706. "groupIndex": 0,
  4707. "_id": ""
  4708. },
  4709. {
  4710. "__type__": "cc.Label",
  4711. "_name": "",
  4712. "_objFlags": 0,
  4713. "node": {
  4714. "__id__": 135
  4715. },
  4716. "_enabled": true,
  4717. "_materials": [
  4718. {
  4719. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4720. }
  4721. ],
  4722. "_srcBlendFactor": 770,
  4723. "_dstBlendFactor": 771,
  4724. "_string": "100000",
  4725. "_N$string": "100000",
  4726. "_fontSize": 36,
  4727. "_lineHeight": 40,
  4728. "_enableWrapText": false,
  4729. "_N$file": {
  4730. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4731. },
  4732. "_isSystemFontUsed": false,
  4733. "_spacingX": 0,
  4734. "_batchAsBitmap": false,
  4735. "_styleFlags": 0,
  4736. "_underlineHeight": 0,
  4737. "_N$horizontalAlign": 1,
  4738. "_N$verticalAlign": 1,
  4739. "_N$fontFamily": "Arial",
  4740. "_N$overflow": 2,
  4741. "_N$cacheMode": 0,
  4742. "_id": ""
  4743. },
  4744. {
  4745. "__type__": "cc.LabelOutline",
  4746. "_name": "",
  4747. "_objFlags": 0,
  4748. "node": {
  4749. "__id__": 135
  4750. },
  4751. "_enabled": true,
  4752. "_color": {
  4753. "__type__": "cc.Color",
  4754. "r": 38,
  4755. "g": 17,
  4756. "b": 12,
  4757. "a": 255
  4758. },
  4759. "_width": 5,
  4760. "_id": ""
  4761. },
  4762. {
  4763. "__type__": "cc.PrefabInfo",
  4764. "root": {
  4765. "__id__": 1
  4766. },
  4767. "asset": {
  4768. "__id__": 0
  4769. },
  4770. "fileId": "94Gr/zbq1Oc5SqWQH5EM+P",
  4771. "sync": false
  4772. },
  4773. {
  4774. "__type__": "cc.Node",
  4775. "_name": "needLy",
  4776. "_objFlags": 0,
  4777. "_parent": {
  4778. "__id__": 1
  4779. },
  4780. "_children": [
  4781. {
  4782. "__id__": 140
  4783. },
  4784. {
  4785. "__id__": 154
  4786. }
  4787. ],
  4788. "_active": true,
  4789. "_components": [
  4790. {
  4791. "__id__": 168
  4792. }
  4793. ],
  4794. "_prefab": {
  4795. "__id__": 169
  4796. },
  4797. "_opacity": 255,
  4798. "_color": {
  4799. "__type__": "cc.Color",
  4800. "r": 255,
  4801. "g": 255,
  4802. "b": 255,
  4803. "a": 255
  4804. },
  4805. "_contentSize": {
  4806. "__type__": "cc.Size",
  4807. "width": 442.48,
  4808. "height": 100
  4809. },
  4810. "_anchorPoint": {
  4811. "__type__": "cc.Vec2",
  4812. "x": 0.5,
  4813. "y": 0.5
  4814. },
  4815. "_trs": {
  4816. "__type__": "TypedArray",
  4817. "ctor": "Float64Array",
  4818. "array": [
  4819. 0,
  4820. -290,
  4821. 0,
  4822. 0,
  4823. 0,
  4824. 0,
  4825. 1,
  4826. 1,
  4827. 1,
  4828. 1
  4829. ]
  4830. },
  4831. "_eulerAngles": {
  4832. "__type__": "cc.Vec3",
  4833. "x": 0,
  4834. "y": 0,
  4835. "z": 0
  4836. },
  4837. "_skewX": 0,
  4838. "_skewY": 0,
  4839. "_is3DNode": false,
  4840. "_groupIndex": 0,
  4841. "groupIndex": 0,
  4842. "_id": ""
  4843. },
  4844. {
  4845. "__type__": "cc.Node",
  4846. "_name": "item",
  4847. "_objFlags": 0,
  4848. "_parent": {
  4849. "__id__": 139
  4850. },
  4851. "_children": [
  4852. {
  4853. "__id__": 141
  4854. },
  4855. {
  4856. "__id__": 144
  4857. },
  4858. {
  4859. "__id__": 148
  4860. }
  4861. ],
  4862. "_active": true,
  4863. "_components": [
  4864. {
  4865. "__id__": 152
  4866. }
  4867. ],
  4868. "_prefab": {
  4869. "__id__": 153
  4870. },
  4871. "_opacity": 255,
  4872. "_color": {
  4873. "__type__": "cc.Color",
  4874. "r": 255,
  4875. "g": 255,
  4876. "b": 255,
  4877. "a": 255
  4878. },
  4879. "_contentSize": {
  4880. "__type__": "cc.Size",
  4881. "width": 226.74,
  4882. "height": 50
  4883. },
  4884. "_anchorPoint": {
  4885. "__type__": "cc.Vec2",
  4886. "x": 0.49,
  4887. "y": 0.55
  4888. },
  4889. "_trs": {
  4890. "__type__": "TypedArray",
  4891. "ctor": "Float64Array",
  4892. "array": [
  4893. -110.13740000000001,
  4894. -3.687,
  4895. 0,
  4896. 0,
  4897. 0,
  4898. 0,
  4899. 1,
  4900. 1,
  4901. 1,
  4902. 1
  4903. ]
  4904. },
  4905. "_eulerAngles": {
  4906. "__type__": "cc.Vec3",
  4907. "x": 0,
  4908. "y": 0,
  4909. "z": 0
  4910. },
  4911. "_skewX": 0,
  4912. "_skewY": 0,
  4913. "_is3DNode": false,
  4914. "_groupIndex": 0,
  4915. "groupIndex": 0,
  4916. "_id": ""
  4917. },
  4918. {
  4919. "__type__": "cc.Node",
  4920. "_name": "icon",
  4921. "_objFlags": 0,
  4922. "_parent": {
  4923. "__id__": 140
  4924. },
  4925. "_children": [],
  4926. "_active": true,
  4927. "_components": [
  4928. {
  4929. "__id__": 142
  4930. }
  4931. ],
  4932. "_prefab": {
  4933. "__id__": 143
  4934. },
  4935. "_opacity": 255,
  4936. "_color": {
  4937. "__type__": "cc.Color",
  4938. "r": 255,
  4939. "g": 255,
  4940. "b": 255,
  4941. "a": 255
  4942. },
  4943. "_contentSize": {
  4944. "__type__": "cc.Size",
  4945. "width": 123,
  4946. "height": 101
  4947. },
  4948. "_anchorPoint": {
  4949. "__type__": "cc.Vec2",
  4950. "x": 0.5,
  4951. "y": 0.5
  4952. },
  4953. "_trs": {
  4954. "__type__": "TypedArray",
  4955. "ctor": "Float64Array",
  4956. "array": [
  4957. -70.3526,
  4958. -3.683,
  4959. 0,
  4960. 0,
  4961. 0,
  4962. 0,
  4963. 1,
  4964. 0.5,
  4965. 0.5,
  4966. 1
  4967. ]
  4968. },
  4969. "_eulerAngles": {
  4970. "__type__": "cc.Vec3",
  4971. "x": 0,
  4972. "y": 0,
  4973. "z": 0
  4974. },
  4975. "_skewX": 0,
  4976. "_skewY": 0,
  4977. "_is3DNode": false,
  4978. "_groupIndex": 0,
  4979. "groupIndex": 0,
  4980. "_id": ""
  4981. },
  4982. {
  4983. "__type__": "cc.Sprite",
  4984. "_name": "",
  4985. "_objFlags": 0,
  4986. "node": {
  4987. "__id__": 141
  4988. },
  4989. "_enabled": true,
  4990. "_materials": [
  4991. {
  4992. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4993. }
  4994. ],
  4995. "_srcBlendFactor": 770,
  4996. "_dstBlendFactor": 771,
  4997. "_spriteFrame": null,
  4998. "_type": 0,
  4999. "_sizeMode": 1,
  5000. "_fillType": 0,
  5001. "_fillCenter": {
  5002. "__type__": "cc.Vec2",
  5003. "x": 0,
  5004. "y": 0
  5005. },
  5006. "_fillStart": 0,
  5007. "_fillRange": 0,
  5008. "_isTrimmedMode": true,
  5009. "_atlas": null,
  5010. "_id": ""
  5011. },
  5012. {
  5013. "__type__": "cc.PrefabInfo",
  5014. "root": {
  5015. "__id__": 1
  5016. },
  5017. "asset": {
  5018. "__id__": 0
  5019. },
  5020. "fileId": "cdL1oTcSBMFpe9udIczoFQ",
  5021. "sync": false
  5022. },
  5023. {
  5024. "__type__": "cc.Node",
  5025. "_name": "has",
  5026. "_objFlags": 0,
  5027. "_parent": {
  5028. "__id__": 140
  5029. },
  5030. "_children": [],
  5031. "_active": true,
  5032. "_components": [
  5033. {
  5034. "__id__": 145
  5035. },
  5036. {
  5037. "__id__": 146
  5038. }
  5039. ],
  5040. "_prefab": {
  5041. "__id__": 147
  5042. },
  5043. "_opacity": 255,
  5044. "_color": {
  5045. "__type__": "cc.Color",
  5046. "r": 255,
  5047. "g": 255,
  5048. "b": 255,
  5049. "a": 255
  5050. },
  5051. "_contentSize": {
  5052. "__type__": "cc.Size",
  5053. "width": 65.06,
  5054. "height": 56.4
  5055. },
  5056. "_anchorPoint": {
  5057. "__type__": "cc.Vec2",
  5058. "x": 1,
  5059. "y": 0.5
  5060. },
  5061. "_trs": {
  5062. "__type__": "TypedArray",
  5063. "ctor": "Float64Array",
  5064. "array": [
  5065. 25.457400000000007,
  5066. 0,
  5067. 0,
  5068. 0,
  5069. 0,
  5070. 0,
  5071. 1,
  5072. 1,
  5073. 1,
  5074. 1
  5075. ]
  5076. },
  5077. "_eulerAngles": {
  5078. "__type__": "cc.Vec3",
  5079. "x": 0,
  5080. "y": 0,
  5081. "z": 0
  5082. },
  5083. "_skewX": 0,
  5084. "_skewY": 0,
  5085. "_is3DNode": false,
  5086. "_groupIndex": 0,
  5087. "groupIndex": 0,
  5088. "_id": ""
  5089. },
  5090. {
  5091. "__type__": "cc.Label",
  5092. "_name": "",
  5093. "_objFlags": 0,
  5094. "node": {
  5095. "__id__": 144
  5096. },
  5097. "_enabled": true,
  5098. "_materials": [
  5099. {
  5100. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5101. }
  5102. ],
  5103. "_srcBlendFactor": 770,
  5104. "_dstBlendFactor": 771,
  5105. "_string": "100",
  5106. "_N$string": "100",
  5107. "_fontSize": 30,
  5108. "_lineHeight": 40,
  5109. "_enableWrapText": true,
  5110. "_N$file": {
  5111. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5112. },
  5113. "_isSystemFontUsed": false,
  5114. "_spacingX": 0,
  5115. "_batchAsBitmap": false,
  5116. "_styleFlags": 0,
  5117. "_underlineHeight": 0,
  5118. "_N$horizontalAlign": 2,
  5119. "_N$verticalAlign": 1,
  5120. "_N$fontFamily": "Arial",
  5121. "_N$overflow": 0,
  5122. "_N$cacheMode": 0,
  5123. "_id": ""
  5124. },
  5125. {
  5126. "__type__": "cc.LabelOutline",
  5127. "_name": "",
  5128. "_objFlags": 0,
  5129. "node": {
  5130. "__id__": 144
  5131. },
  5132. "_enabled": true,
  5133. "_color": {
  5134. "__type__": "cc.Color",
  5135. "r": 38,
  5136. "g": 17,
  5137. "b": 12,
  5138. "a": 255
  5139. },
  5140. "_width": 3,
  5141. "_id": ""
  5142. },
  5143. {
  5144. "__type__": "cc.PrefabInfo",
  5145. "root": {
  5146. "__id__": 1
  5147. },
  5148. "asset": {
  5149. "__id__": 0
  5150. },
  5151. "fileId": "51l7PyPSlLY6wpaDPr7VT/",
  5152. "sync": false
  5153. },
  5154. {
  5155. "__type__": "cc.Node",
  5156. "_name": "need",
  5157. "_objFlags": 0,
  5158. "_parent": {
  5159. "__id__": 140
  5160. },
  5161. "_children": [],
  5162. "_active": true,
  5163. "_components": [
  5164. {
  5165. "__id__": 149
  5166. },
  5167. {
  5168. "__id__": 150
  5169. }
  5170. ],
  5171. "_prefab": {
  5172. "__id__": 151
  5173. },
  5174. "_opacity": 255,
  5175. "_color": {
  5176. "__type__": "cc.Color",
  5177. "r": 255,
  5178. "g": 255,
  5179. "b": 255,
  5180. "a": 255
  5181. },
  5182. "_contentSize": {
  5183. "__type__": "cc.Size",
  5184. "width": 80.18,
  5185. "height": 56.4
  5186. },
  5187. "_anchorPoint": {
  5188. "__type__": "cc.Vec2",
  5189. "x": 0.5,
  5190. "y": 0.5
  5191. },
  5192. "_trs": {
  5193. "__type__": "TypedArray",
  5194. "ctor": "Float64Array",
  5195. "array": [
  5196. 65.54740000000001,
  5197. 0,
  5198. 0,
  5199. 0,
  5200. 0,
  5201. 0,
  5202. 1,
  5203. 1,
  5204. 1,
  5205. 1
  5206. ]
  5207. },
  5208. "_eulerAngles": {
  5209. "__type__": "cc.Vec3",
  5210. "x": 0,
  5211. "y": 0,
  5212. "z": 0
  5213. },
  5214. "_skewX": 0,
  5215. "_skewY": 0,
  5216. "_is3DNode": false,
  5217. "_groupIndex": 0,
  5218. "groupIndex": 0,
  5219. "_id": ""
  5220. },
  5221. {
  5222. "__type__": "cc.Label",
  5223. "_name": "",
  5224. "_objFlags": 0,
  5225. "node": {
  5226. "__id__": 148
  5227. },
  5228. "_enabled": true,
  5229. "_materials": [
  5230. {
  5231. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5232. }
  5233. ],
  5234. "_srcBlendFactor": 770,
  5235. "_dstBlendFactor": 771,
  5236. "_string": "/100",
  5237. "_N$string": "/100",
  5238. "_fontSize": 30,
  5239. "_lineHeight": 40,
  5240. "_enableWrapText": true,
  5241. "_N$file": {
  5242. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5243. },
  5244. "_isSystemFontUsed": false,
  5245. "_spacingX": 0,
  5246. "_batchAsBitmap": false,
  5247. "_styleFlags": 0,
  5248. "_underlineHeight": 0,
  5249. "_N$horizontalAlign": 0,
  5250. "_N$verticalAlign": 1,
  5251. "_N$fontFamily": "Arial",
  5252. "_N$overflow": 0,
  5253. "_N$cacheMode": 0,
  5254. "_id": ""
  5255. },
  5256. {
  5257. "__type__": "cc.LabelOutline",
  5258. "_name": "",
  5259. "_objFlags": 0,
  5260. "node": {
  5261. "__id__": 148
  5262. },
  5263. "_enabled": true,
  5264. "_color": {
  5265. "__type__": "cc.Color",
  5266. "r": 38,
  5267. "g": 17,
  5268. "b": 12,
  5269. "a": 255
  5270. },
  5271. "_width": 3,
  5272. "_id": ""
  5273. },
  5274. {
  5275. "__type__": "cc.PrefabInfo",
  5276. "root": {
  5277. "__id__": 1
  5278. },
  5279. "asset": {
  5280. "__id__": 0
  5281. },
  5282. "fileId": "bfkON2P95En7Zpt/e+NDud",
  5283. "sync": false
  5284. },
  5285. {
  5286. "__type__": "cc.Layout",
  5287. "_name": "",
  5288. "_objFlags": 0,
  5289. "node": {
  5290. "__id__": 140
  5291. },
  5292. "_enabled": true,
  5293. "_layoutSize": {
  5294. "__type__": "cc.Size",
  5295. "width": 226.74,
  5296. "height": 50
  5297. },
  5298. "_resize": 1,
  5299. "_N$layoutType": 1,
  5300. "_N$cellSize": {
  5301. "__type__": "cc.Size",
  5302. "width": 40,
  5303. "height": 40
  5304. },
  5305. "_N$startAxis": 0,
  5306. "_N$paddingLeft": 10,
  5307. "_N$paddingRight": 10,
  5308. "_N$paddingTop": 0,
  5309. "_N$paddingBottom": 0,
  5310. "_N$spacingX": 0,
  5311. "_N$spacingY": 0,
  5312. "_N$verticalDirection": 1,
  5313. "_N$horizontalDirection": 0,
  5314. "_N$affectedByScale": true,
  5315. "_id": ""
  5316. },
  5317. {
  5318. "__type__": "cc.PrefabInfo",
  5319. "root": {
  5320. "__id__": 1
  5321. },
  5322. "asset": {
  5323. "__id__": 0
  5324. },
  5325. "fileId": "82uu0PSoxEU4x0Esb3HvZ2",
  5326. "sync": false
  5327. },
  5328. {
  5329. "__type__": "cc.Node",
  5330. "_name": "item",
  5331. "_objFlags": 0,
  5332. "_parent": {
  5333. "__id__": 139
  5334. },
  5335. "_children": [
  5336. {
  5337. "__id__": 155
  5338. },
  5339. {
  5340. "__id__": 158
  5341. },
  5342. {
  5343. "__id__": 162
  5344. }
  5345. ],
  5346. "_active": true,
  5347. "_components": [
  5348. {
  5349. "__id__": 166
  5350. }
  5351. ],
  5352. "_prefab": {
  5353. "__id__": 167
  5354. },
  5355. "_opacity": 255,
  5356. "_color": {
  5357. "__type__": "cc.Color",
  5358. "r": 255,
  5359. "g": 255,
  5360. "b": 255,
  5361. "a": 255
  5362. },
  5363. "_contentSize": {
  5364. "__type__": "cc.Size",
  5365. "width": 205.74,
  5366. "height": 50
  5367. },
  5368. "_anchorPoint": {
  5369. "__type__": "cc.Vec2",
  5370. "x": 0.49,
  5371. "y": 0.55
  5372. },
  5373. "_trs": {
  5374. "__type__": "TypedArray",
  5375. "ctor": "Float64Array",
  5376. "array": [
  5377. 116.3126,
  5378. -3.687,
  5379. 0,
  5380. 0,
  5381. 0,
  5382. 0,
  5383. 1,
  5384. 1,
  5385. 1,
  5386. 1
  5387. ]
  5388. },
  5389. "_eulerAngles": {
  5390. "__type__": "cc.Vec3",
  5391. "x": 0,
  5392. "y": 0,
  5393. "z": 0
  5394. },
  5395. "_skewX": 0,
  5396. "_skewY": 0,
  5397. "_is3DNode": false,
  5398. "_groupIndex": 0,
  5399. "groupIndex": 0,
  5400. "_id": ""
  5401. },
  5402. {
  5403. "__type__": "cc.Node",
  5404. "_name": "icon",
  5405. "_objFlags": 0,
  5406. "_parent": {
  5407. "__id__": 154
  5408. },
  5409. "_children": [],
  5410. "_active": true,
  5411. "_components": [
  5412. {
  5413. "__id__": 156
  5414. }
  5415. ],
  5416. "_prefab": {
  5417. "__id__": 157
  5418. },
  5419. "_opacity": 255,
  5420. "_color": {
  5421. "__type__": "cc.Color",
  5422. "r": 255,
  5423. "g": 255,
  5424. "b": 255,
  5425. "a": 255
  5426. },
  5427. "_contentSize": {
  5428. "__type__": "cc.Size",
  5429. "width": 81,
  5430. "height": 68
  5431. },
  5432. "_anchorPoint": {
  5433. "__type__": "cc.Vec2",
  5434. "x": 0.5,
  5435. "y": 0.5
  5436. },
  5437. "_trs": {
  5438. "__type__": "TypedArray",
  5439. "ctor": "Float64Array",
  5440. "array": [
  5441. -70.5626,
  5442. -3.683,
  5443. 0,
  5444. 0,
  5445. 0,
  5446. 0,
  5447. 1,
  5448. 0.5,
  5449. 0.5,
  5450. 1
  5451. ]
  5452. },
  5453. "_eulerAngles": {
  5454. "__type__": "cc.Vec3",
  5455. "x": 0,
  5456. "y": 0,
  5457. "z": 0
  5458. },
  5459. "_skewX": 0,
  5460. "_skewY": 0,
  5461. "_is3DNode": false,
  5462. "_groupIndex": 0,
  5463. "groupIndex": 0,
  5464. "_id": ""
  5465. },
  5466. {
  5467. "__type__": "cc.Sprite",
  5468. "_name": "",
  5469. "_objFlags": 0,
  5470. "node": {
  5471. "__id__": 155
  5472. },
  5473. "_enabled": true,
  5474. "_materials": [
  5475. {
  5476. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5477. }
  5478. ],
  5479. "_srcBlendFactor": 770,
  5480. "_dstBlendFactor": 771,
  5481. "_spriteFrame": null,
  5482. "_type": 0,
  5483. "_sizeMode": 1,
  5484. "_fillType": 0,
  5485. "_fillCenter": {
  5486. "__type__": "cc.Vec2",
  5487. "x": 0,
  5488. "y": 0
  5489. },
  5490. "_fillStart": 0,
  5491. "_fillRange": 0,
  5492. "_isTrimmedMode": true,
  5493. "_atlas": null,
  5494. "_id": ""
  5495. },
  5496. {
  5497. "__type__": "cc.PrefabInfo",
  5498. "root": {
  5499. "__id__": 1
  5500. },
  5501. "asset": {
  5502. "__id__": 0
  5503. },
  5504. "fileId": "a3vqZdsINI6YozgrCIKF2R",
  5505. "sync": false
  5506. },
  5507. {
  5508. "__type__": "cc.Node",
  5509. "_name": "has",
  5510. "_objFlags": 0,
  5511. "_parent": {
  5512. "__id__": 154
  5513. },
  5514. "_children": [],
  5515. "_active": true,
  5516. "_components": [
  5517. {
  5518. "__id__": 159
  5519. },
  5520. {
  5521. "__id__": 160
  5522. }
  5523. ],
  5524. "_prefab": {
  5525. "__id__": 161
  5526. },
  5527. "_opacity": 255,
  5528. "_color": {
  5529. "__type__": "cc.Color",
  5530. "r": 255,
  5531. "g": 255,
  5532. "b": 255,
  5533. "a": 255
  5534. },
  5535. "_contentSize": {
  5536. "__type__": "cc.Size",
  5537. "width": 65.06,
  5538. "height": 56.4
  5539. },
  5540. "_anchorPoint": {
  5541. "__type__": "cc.Vec2",
  5542. "x": 1,
  5543. "y": 0.5
  5544. },
  5545. "_trs": {
  5546. "__type__": "TypedArray",
  5547. "ctor": "Float64Array",
  5548. "array": [
  5549. 14.747399999999999,
  5550. 0,
  5551. 0,
  5552. 0,
  5553. 0,
  5554. 0,
  5555. 1,
  5556. 1,
  5557. 1,
  5558. 1
  5559. ]
  5560. },
  5561. "_eulerAngles": {
  5562. "__type__": "cc.Vec3",
  5563. "x": 0,
  5564. "y": 0,
  5565. "z": 0
  5566. },
  5567. "_skewX": 0,
  5568. "_skewY": 0,
  5569. "_is3DNode": false,
  5570. "_groupIndex": 0,
  5571. "groupIndex": 0,
  5572. "_id": ""
  5573. },
  5574. {
  5575. "__type__": "cc.Label",
  5576. "_name": "",
  5577. "_objFlags": 0,
  5578. "node": {
  5579. "__id__": 158
  5580. },
  5581. "_enabled": true,
  5582. "_materials": [
  5583. {
  5584. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5585. }
  5586. ],
  5587. "_srcBlendFactor": 770,
  5588. "_dstBlendFactor": 771,
  5589. "_string": "100",
  5590. "_N$string": "100",
  5591. "_fontSize": 30,
  5592. "_lineHeight": 40,
  5593. "_enableWrapText": true,
  5594. "_N$file": {
  5595. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5596. },
  5597. "_isSystemFontUsed": false,
  5598. "_spacingX": 0,
  5599. "_batchAsBitmap": false,
  5600. "_styleFlags": 0,
  5601. "_underlineHeight": 0,
  5602. "_N$horizontalAlign": 2,
  5603. "_N$verticalAlign": 1,
  5604. "_N$fontFamily": "Arial",
  5605. "_N$overflow": 0,
  5606. "_N$cacheMode": 0,
  5607. "_id": ""
  5608. },
  5609. {
  5610. "__type__": "cc.LabelOutline",
  5611. "_name": "",
  5612. "_objFlags": 0,
  5613. "node": {
  5614. "__id__": 158
  5615. },
  5616. "_enabled": true,
  5617. "_color": {
  5618. "__type__": "cc.Color",
  5619. "r": 38,
  5620. "g": 17,
  5621. "b": 12,
  5622. "a": 255
  5623. },
  5624. "_width": 3,
  5625. "_id": ""
  5626. },
  5627. {
  5628. "__type__": "cc.PrefabInfo",
  5629. "root": {
  5630. "__id__": 1
  5631. },
  5632. "asset": {
  5633. "__id__": 0
  5634. },
  5635. "fileId": "47douesDJEE7Wu2lLHiT1h",
  5636. "sync": false
  5637. },
  5638. {
  5639. "__type__": "cc.Node",
  5640. "_name": "need",
  5641. "_objFlags": 0,
  5642. "_parent": {
  5643. "__id__": 154
  5644. },
  5645. "_children": [],
  5646. "_active": true,
  5647. "_components": [
  5648. {
  5649. "__id__": 163
  5650. },
  5651. {
  5652. "__id__": 164
  5653. }
  5654. ],
  5655. "_prefab": {
  5656. "__id__": 165
  5657. },
  5658. "_opacity": 255,
  5659. "_color": {
  5660. "__type__": "cc.Color",
  5661. "r": 255,
  5662. "g": 255,
  5663. "b": 255,
  5664. "a": 255
  5665. },
  5666. "_contentSize": {
  5667. "__type__": "cc.Size",
  5668. "width": 80.18,
  5669. "height": 56.4
  5670. },
  5671. "_anchorPoint": {
  5672. "__type__": "cc.Vec2",
  5673. "x": 0.5,
  5674. "y": 0.5
  5675. },
  5676. "_trs": {
  5677. "__type__": "TypedArray",
  5678. "ctor": "Float64Array",
  5679. "array": [
  5680. 54.8374,
  5681. 0,
  5682. 0,
  5683. 0,
  5684. 0,
  5685. 0,
  5686. 1,
  5687. 1,
  5688. 1,
  5689. 1
  5690. ]
  5691. },
  5692. "_eulerAngles": {
  5693. "__type__": "cc.Vec3",
  5694. "x": 0,
  5695. "y": 0,
  5696. "z": 0
  5697. },
  5698. "_skewX": 0,
  5699. "_skewY": 0,
  5700. "_is3DNode": false,
  5701. "_groupIndex": 0,
  5702. "groupIndex": 0,
  5703. "_id": ""
  5704. },
  5705. {
  5706. "__type__": "cc.Label",
  5707. "_name": "",
  5708. "_objFlags": 0,
  5709. "node": {
  5710. "__id__": 162
  5711. },
  5712. "_enabled": true,
  5713. "_materials": [
  5714. {
  5715. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5716. }
  5717. ],
  5718. "_srcBlendFactor": 770,
  5719. "_dstBlendFactor": 771,
  5720. "_string": "/100",
  5721. "_N$string": "/100",
  5722. "_fontSize": 30,
  5723. "_lineHeight": 40,
  5724. "_enableWrapText": true,
  5725. "_N$file": {
  5726. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5727. },
  5728. "_isSystemFontUsed": false,
  5729. "_spacingX": 0,
  5730. "_batchAsBitmap": false,
  5731. "_styleFlags": 0,
  5732. "_underlineHeight": 0,
  5733. "_N$horizontalAlign": 0,
  5734. "_N$verticalAlign": 1,
  5735. "_N$fontFamily": "Arial",
  5736. "_N$overflow": 0,
  5737. "_N$cacheMode": 0,
  5738. "_id": ""
  5739. },
  5740. {
  5741. "__type__": "cc.LabelOutline",
  5742. "_name": "",
  5743. "_objFlags": 0,
  5744. "node": {
  5745. "__id__": 162
  5746. },
  5747. "_enabled": true,
  5748. "_color": {
  5749. "__type__": "cc.Color",
  5750. "r": 38,
  5751. "g": 17,
  5752. "b": 12,
  5753. "a": 255
  5754. },
  5755. "_width": 3,
  5756. "_id": ""
  5757. },
  5758. {
  5759. "__type__": "cc.PrefabInfo",
  5760. "root": {
  5761. "__id__": 1
  5762. },
  5763. "asset": {
  5764. "__id__": 0
  5765. },
  5766. "fileId": "71p7WWaulOsru2SNsib5Ud",
  5767. "sync": false
  5768. },
  5769. {
  5770. "__type__": "cc.Layout",
  5771. "_name": "",
  5772. "_objFlags": 0,
  5773. "node": {
  5774. "__id__": 154
  5775. },
  5776. "_enabled": true,
  5777. "_layoutSize": {
  5778. "__type__": "cc.Size",
  5779. "width": 205.74,
  5780. "height": 50
  5781. },
  5782. "_resize": 1,
  5783. "_N$layoutType": 1,
  5784. "_N$cellSize": {
  5785. "__type__": "cc.Size",
  5786. "width": 40,
  5787. "height": 40
  5788. },
  5789. "_N$startAxis": 0,
  5790. "_N$paddingLeft": 10,
  5791. "_N$paddingRight": 10,
  5792. "_N$paddingTop": 0,
  5793. "_N$paddingBottom": 0,
  5794. "_N$spacingX": 0,
  5795. "_N$spacingY": 0,
  5796. "_N$verticalDirection": 1,
  5797. "_N$horizontalDirection": 0,
  5798. "_N$affectedByScale": true,
  5799. "_id": ""
  5800. },
  5801. {
  5802. "__type__": "cc.PrefabInfo",
  5803. "root": {
  5804. "__id__": 1
  5805. },
  5806. "asset": {
  5807. "__id__": 0
  5808. },
  5809. "fileId": "cfrCDGkPRHAoPeL+I4GZui",
  5810. "sync": false
  5811. },
  5812. {
  5813. "__type__": "cc.Layout",
  5814. "_name": "",
  5815. "_objFlags": 0,
  5816. "node": {
  5817. "__id__": 139
  5818. },
  5819. "_enabled": true,
  5820. "_layoutSize": {
  5821. "__type__": "cc.Size",
  5822. "width": 442.48,
  5823. "height": 100
  5824. },
  5825. "_resize": 1,
  5826. "_N$layoutType": 1,
  5827. "_N$cellSize": {
  5828. "__type__": "cc.Size",
  5829. "width": 40,
  5830. "height": 40
  5831. },
  5832. "_N$startAxis": 0,
  5833. "_N$paddingLeft": 0,
  5834. "_N$paddingRight": 0,
  5835. "_N$paddingTop": 0,
  5836. "_N$paddingBottom": 0,
  5837. "_N$spacingX": 10,
  5838. "_N$spacingY": 0,
  5839. "_N$verticalDirection": 1,
  5840. "_N$horizontalDirection": 0,
  5841. "_N$affectedByScale": false,
  5842. "_id": ""
  5843. },
  5844. {
  5845. "__type__": "cc.PrefabInfo",
  5846. "root": {
  5847. "__id__": 1
  5848. },
  5849. "asset": {
  5850. "__id__": 0
  5851. },
  5852. "fileId": "82c2Ka88pC5oMDGiZrOUZO",
  5853. "sync": false
  5854. },
  5855. {
  5856. "__type__": "cc.Node",
  5857. "_name": "layout",
  5858. "_objFlags": 0,
  5859. "_parent": {
  5860. "__id__": 1
  5861. },
  5862. "_children": [
  5863. {
  5864. "__id__": 171
  5865. },
  5866. {
  5867. "__id__": 182
  5868. },
  5869. {
  5870. "__id__": 193
  5871. }
  5872. ],
  5873. "_active": true,
  5874. "_components": [
  5875. {
  5876. "__id__": 204
  5877. }
  5878. ],
  5879. "_prefab": {
  5880. "__id__": 205
  5881. },
  5882. "_opacity": 255,
  5883. "_color": {
  5884. "__type__": "cc.Color",
  5885. "r": 255,
  5886. "g": 255,
  5887. "b": 255,
  5888. "a": 255
  5889. },
  5890. "_contentSize": {
  5891. "__type__": "cc.Size",
  5892. "width": 828,
  5893. "height": 104.23
  5894. },
  5895. "_anchorPoint": {
  5896. "__type__": "cc.Vec2",
  5897. "x": 0.5,
  5898. "y": 0.5
  5899. },
  5900. "_trs": {
  5901. "__type__": "TypedArray",
  5902. "ctor": "Float64Array",
  5903. "array": [
  5904. 0,
  5905. -378.233,
  5906. 0,
  5907. 0,
  5908. 0,
  5909. 0,
  5910. 1,
  5911. 1,
  5912. 1,
  5913. 1
  5914. ]
  5915. },
  5916. "_eulerAngles": {
  5917. "__type__": "cc.Vec3",
  5918. "x": 0,
  5919. "y": 0,
  5920. "z": 0
  5921. },
  5922. "_skewX": 0,
  5923. "_skewY": 0,
  5924. "_is3DNode": false,
  5925. "_groupIndex": 0,
  5926. "groupIndex": 0,
  5927. "_id": ""
  5928. },
  5929. {
  5930. "__type__": "cc.Node",
  5931. "_name": "btn_equip",
  5932. "_objFlags": 0,
  5933. "_parent": {
  5934. "__id__": 170
  5935. },
  5936. "_children": [
  5937. {
  5938. "__id__": 172
  5939. }
  5940. ],
  5941. "_active": true,
  5942. "_components": [
  5943. {
  5944. "__id__": 177
  5945. },
  5946. {
  5947. "__id__": 178
  5948. },
  5949. {
  5950. "__id__": 179
  5951. }
  5952. ],
  5953. "_prefab": {
  5954. "__id__": 181
  5955. },
  5956. "_opacity": 255,
  5957. "_color": {
  5958. "__type__": "cc.Color",
  5959. "r": 255,
  5960. "g": 255,
  5961. "b": 255,
  5962. "a": 255
  5963. },
  5964. "_contentSize": {
  5965. "__type__": "cc.Size",
  5966. "width": 254,
  5967. "height": 104
  5968. },
  5969. "_anchorPoint": {
  5970. "__type__": "cc.Vec2",
  5971. "x": 0.5,
  5972. "y": 0.5
  5973. },
  5974. "_trs": {
  5975. "__type__": "TypedArray",
  5976. "ctor": "Float64Array",
  5977. "array": [
  5978. -287,
  5979. 0.227,
  5980. 0,
  5981. 0,
  5982. 0,
  5983. 0,
  5984. 1,
  5985. 1,
  5986. 1,
  5987. 0
  5988. ]
  5989. },
  5990. "_eulerAngles": {
  5991. "__type__": "cc.Vec3",
  5992. "x": 0,
  5993. "y": 0,
  5994. "z": 0
  5995. },
  5996. "_skewX": 0,
  5997. "_skewY": 0,
  5998. "_is3DNode": false,
  5999. "_groupIndex": 0,
  6000. "groupIndex": 0,
  6001. "_id": ""
  6002. },
  6003. {
  6004. "__type__": "cc.Node",
  6005. "_name": "lb",
  6006. "_objFlags": 0,
  6007. "_parent": {
  6008. "__id__": 171
  6009. },
  6010. "_children": [],
  6011. "_active": true,
  6012. "_components": [
  6013. {
  6014. "__id__": 173
  6015. },
  6016. {
  6017. "__id__": 174
  6018. },
  6019. {
  6020. "__id__": 175
  6021. }
  6022. ],
  6023. "_prefab": {
  6024. "__id__": 176
  6025. },
  6026. "_opacity": 255,
  6027. "_color": {
  6028. "__type__": "cc.Color",
  6029. "r": 0,
  6030. "g": 13,
  6031. "b": 32,
  6032. "a": 255
  6033. },
  6034. "_contentSize": {
  6035. "__type__": "cc.Size",
  6036. "width": 240,
  6037. "height": 57.88
  6038. },
  6039. "_anchorPoint": {
  6040. "__type__": "cc.Vec2",
  6041. "x": 0.5,
  6042. "y": 0.5
  6043. },
  6044. "_trs": {
  6045. "__type__": "TypedArray",
  6046. "ctor": "Float64Array",
  6047. "array": [
  6048. 0,
  6049. 5,
  6050. 0,
  6051. 0,
  6052. 0,
  6053. 0,
  6054. 1,
  6055. 1,
  6056. 1,
  6057. 1
  6058. ]
  6059. },
  6060. "_eulerAngles": {
  6061. "__type__": "cc.Vec3",
  6062. "x": 0,
  6063. "y": 0,
  6064. "z": 0
  6065. },
  6066. "_skewX": 0,
  6067. "_skewY": 0,
  6068. "_is3DNode": false,
  6069. "_groupIndex": 0,
  6070. "groupIndex": 0,
  6071. "_id": ""
  6072. },
  6073. {
  6074. "__type__": "cc.Label",
  6075. "_name": "",
  6076. "_objFlags": 0,
  6077. "node": {
  6078. "__id__": 172
  6079. },
  6080. "_enabled": true,
  6081. "_materials": [
  6082. {
  6083. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6084. }
  6085. ],
  6086. "_srcBlendFactor": 770,
  6087. "_dstBlendFactor": 771,
  6088. "_string": "Join",
  6089. "_N$string": "Join",
  6090. "_fontSize": 36,
  6091. "_lineHeight": 38,
  6092. "_enableWrapText": true,
  6093. "_N$file": {
  6094. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6095. },
  6096. "_isSystemFontUsed": false,
  6097. "_spacingX": 0,
  6098. "_batchAsBitmap": false,
  6099. "_styleFlags": 0,
  6100. "_underlineHeight": 0,
  6101. "_N$horizontalAlign": 1,
  6102. "_N$verticalAlign": 1,
  6103. "_N$fontFamily": "Arial",
  6104. "_N$overflow": 3,
  6105. "_N$cacheMode": 0,
  6106. "_id": ""
  6107. },
  6108. {
  6109. "__type__": "cc.LabelOutline",
  6110. "_name": "",
  6111. "_objFlags": 0,
  6112. "node": {
  6113. "__id__": 172
  6114. },
  6115. "_enabled": true,
  6116. "_color": {
  6117. "__type__": "cc.Color",
  6118. "r": 54,
  6119. "g": 162,
  6120. "b": 231,
  6121. "a": 255
  6122. },
  6123. "_width": 5,
  6124. "_id": ""
  6125. },
  6126. {
  6127. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  6128. "_name": "",
  6129. "_objFlags": 0,
  6130. "node": {
  6131. "__id__": 172
  6132. },
  6133. "_enabled": true,
  6134. "_englishCase": 1,
  6135. "i18n_string": "t42",
  6136. "i18n_params": [],
  6137. "_addColon": false,
  6138. "_id": ""
  6139. },
  6140. {
  6141. "__type__": "cc.PrefabInfo",
  6142. "root": {
  6143. "__id__": 171
  6144. },
  6145. "asset": {
  6146. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  6147. },
  6148. "fileId": "0257Bkg0NEyKj9p2eHdWI8",
  6149. "sync": false
  6150. },
  6151. {
  6152. "__type__": "cc.Sprite",
  6153. "_name": "",
  6154. "_objFlags": 0,
  6155. "node": {
  6156. "__id__": 171
  6157. },
  6158. "_enabled": true,
  6159. "_materials": [
  6160. {
  6161. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6162. }
  6163. ],
  6164. "_srcBlendFactor": 770,
  6165. "_dstBlendFactor": 771,
  6166. "_spriteFrame": {
  6167. "__uuid__": "024124ea-aa33-4908-aa09-266ae903d756"
  6168. },
  6169. "_type": 0,
  6170. "_sizeMode": 0,
  6171. "_fillType": 0,
  6172. "_fillCenter": {
  6173. "__type__": "cc.Vec2",
  6174. "x": 0,
  6175. "y": 0
  6176. },
  6177. "_fillStart": 0,
  6178. "_fillRange": 0,
  6179. "_isTrimmedMode": true,
  6180. "_atlas": null,
  6181. "_id": ""
  6182. },
  6183. {
  6184. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  6185. "_name": "",
  6186. "_objFlags": 0,
  6187. "node": {
  6188. "__id__": 171
  6189. },
  6190. "_enabled": true,
  6191. "openContinuous": true,
  6192. "continuousTime": 0.2,
  6193. "multiTouch": false,
  6194. "_id": ""
  6195. },
  6196. {
  6197. "__type__": "61994AafntNFIbmt1zoyLq+",
  6198. "_name": "",
  6199. "_objFlags": 0,
  6200. "node": {
  6201. "__id__": 171
  6202. },
  6203. "_enabled": true,
  6204. "_normalMaterial": null,
  6205. "_grayMaterial": null,
  6206. "duration": 0.1,
  6207. "zoomScale": 1.2,
  6208. "clickEvents": [
  6209. {
  6210. "__id__": 180
  6211. }
  6212. ],
  6213. "_N$interactable": true,
  6214. "_N$enableAutoGrayEffect": false,
  6215. "_N$transition": 3,
  6216. "transition": 3,
  6217. "_N$normalColor": {
  6218. "__type__": "cc.Color",
  6219. "r": 255,
  6220. "g": 255,
  6221. "b": 255,
  6222. "a": 255
  6223. },
  6224. "_N$pressedColor": {
  6225. "__type__": "cc.Color",
  6226. "r": 211,
  6227. "g": 211,
  6228. "b": 211,
  6229. "a": 255
  6230. },
  6231. "pressedColor": {
  6232. "__type__": "cc.Color",
  6233. "r": 211,
  6234. "g": 211,
  6235. "b": 211,
  6236. "a": 255
  6237. },
  6238. "_N$hoverColor": {
  6239. "__type__": "cc.Color",
  6240. "r": 255,
  6241. "g": 255,
  6242. "b": 255,
  6243. "a": 255
  6244. },
  6245. "hoverColor": {
  6246. "__type__": "cc.Color",
  6247. "r": 255,
  6248. "g": 255,
  6249. "b": 255,
  6250. "a": 255
  6251. },
  6252. "_N$disabledColor": {
  6253. "__type__": "cc.Color",
  6254. "r": 124,
  6255. "g": 124,
  6256. "b": 124,
  6257. "a": 255
  6258. },
  6259. "_N$normalSprite": null,
  6260. "_N$pressedSprite": null,
  6261. "pressedSprite": null,
  6262. "_N$hoverSprite": null,
  6263. "hoverSprite": null,
  6264. "_N$disabledSprite": null,
  6265. "_N$target": null,
  6266. "_id": ""
  6267. },
  6268. {
  6269. "__type__": "cc.ClickEvent",
  6270. "target": {
  6271. "__id__": 1
  6272. },
  6273. "component": "",
  6274. "_componentId": "9f2cdExi5NExLy5dFdAEOtt",
  6275. "handler": "onUpClick",
  6276. "customEventData": ""
  6277. },
  6278. {
  6279. "__type__": "cc.PrefabInfo",
  6280. "root": {
  6281. "__id__": 171
  6282. },
  6283. "asset": {
  6284. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  6285. },
  6286. "fileId": "71J7Kxo1NAYKWOlenQ0fME",
  6287. "sync": false
  6288. },
  6289. {
  6290. "__type__": "cc.Node",
  6291. "_name": "btn_upgrade",
  6292. "_objFlags": 0,
  6293. "_parent": {
  6294. "__id__": 170
  6295. },
  6296. "_children": [
  6297. {
  6298. "__id__": 183
  6299. }
  6300. ],
  6301. "_active": true,
  6302. "_components": [
  6303. {
  6304. "__id__": 188
  6305. },
  6306. {
  6307. "__id__": 189
  6308. },
  6309. {
  6310. "__id__": 190
  6311. }
  6312. ],
  6313. "_prefab": {
  6314. "__id__": 192
  6315. },
  6316. "_opacity": 255,
  6317. "_color": {
  6318. "__type__": "cc.Color",
  6319. "r": 255,
  6320. "g": 255,
  6321. "b": 255,
  6322. "a": 255
  6323. },
  6324. "_contentSize": {
  6325. "__type__": "cc.Size",
  6326. "width": 254,
  6327. "height": 104
  6328. },
  6329. "_anchorPoint": {
  6330. "__type__": "cc.Vec2",
  6331. "x": 0.5,
  6332. "y": 0.5
  6333. },
  6334. "_trs": {
  6335. "__type__": "TypedArray",
  6336. "ctor": "Float64Array",
  6337. "array": [
  6338. 0,
  6339. 0,
  6340. 0,
  6341. 0,
  6342. 0,
  6343. 0,
  6344. 1,
  6345. 1,
  6346. 1,
  6347. 0
  6348. ]
  6349. },
  6350. "_eulerAngles": {
  6351. "__type__": "cc.Vec3",
  6352. "x": 0,
  6353. "y": 0,
  6354. "z": 0
  6355. },
  6356. "_skewX": 0,
  6357. "_skewY": 0,
  6358. "_is3DNode": false,
  6359. "_groupIndex": 0,
  6360. "groupIndex": 0,
  6361. "_id": ""
  6362. },
  6363. {
  6364. "__type__": "cc.Node",
  6365. "_name": "lb",
  6366. "_objFlags": 0,
  6367. "_parent": {
  6368. "__id__": 182
  6369. },
  6370. "_children": [],
  6371. "_active": true,
  6372. "_components": [
  6373. {
  6374. "__id__": 184
  6375. },
  6376. {
  6377. "__id__": 185
  6378. },
  6379. {
  6380. "__id__": 186
  6381. }
  6382. ],
  6383. "_prefab": {
  6384. "__id__": 187
  6385. },
  6386. "_opacity": 255,
  6387. "_color": {
  6388. "__type__": "cc.Color",
  6389. "r": 68,
  6390. "g": 41,
  6391. "b": 0,
  6392. "a": 255
  6393. },
  6394. "_contentSize": {
  6395. "__type__": "cc.Size",
  6396. "width": 147.16,
  6397. "height": 57.88
  6398. },
  6399. "_anchorPoint": {
  6400. "__type__": "cc.Vec2",
  6401. "x": 0.5,
  6402. "y": 0.5
  6403. },
  6404. "_trs": {
  6405. "__type__": "TypedArray",
  6406. "ctor": "Float64Array",
  6407. "array": [
  6408. 0,
  6409. 5,
  6410. 0,
  6411. 0,
  6412. 0,
  6413. 0,
  6414. 1,
  6415. 1,
  6416. 1,
  6417. 1
  6418. ]
  6419. },
  6420. "_eulerAngles": {
  6421. "__type__": "cc.Vec3",
  6422. "x": 0,
  6423. "y": 0,
  6424. "z": 0
  6425. },
  6426. "_skewX": 0,
  6427. "_skewY": 0,
  6428. "_is3DNode": false,
  6429. "_groupIndex": 0,
  6430. "groupIndex": 0,
  6431. "_id": ""
  6432. },
  6433. {
  6434. "__type__": "cc.Label",
  6435. "_name": "",
  6436. "_objFlags": 0,
  6437. "node": {
  6438. "__id__": 183
  6439. },
  6440. "_enabled": true,
  6441. "_materials": [
  6442. {
  6443. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6444. }
  6445. ],
  6446. "_srcBlendFactor": 770,
  6447. "_dstBlendFactor": 771,
  6448. "_string": "Upgrade",
  6449. "_N$string": "Upgrade",
  6450. "_fontSize": 36,
  6451. "_lineHeight": 38,
  6452. "_enableWrapText": false,
  6453. "_N$file": {
  6454. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6455. },
  6456. "_isSystemFontUsed": false,
  6457. "_spacingX": 0,
  6458. "_batchAsBitmap": false,
  6459. "_styleFlags": 0,
  6460. "_underlineHeight": 0,
  6461. "_N$horizontalAlign": 1,
  6462. "_N$verticalAlign": 1,
  6463. "_N$fontFamily": "Arial",
  6464. "_N$overflow": 0,
  6465. "_N$cacheMode": 0,
  6466. "_id": ""
  6467. },
  6468. {
  6469. "__type__": "cc.LabelOutline",
  6470. "_name": "",
  6471. "_objFlags": 0,
  6472. "node": {
  6473. "__id__": 183
  6474. },
  6475. "_enabled": true,
  6476. "_color": {
  6477. "__type__": "cc.Color",
  6478. "r": 255,
  6479. "g": 210,
  6480. "b": 0,
  6481. "a": 255
  6482. },
  6483. "_width": 5,
  6484. "_id": ""
  6485. },
  6486. {
  6487. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  6488. "_name": "",
  6489. "_objFlags": 0,
  6490. "node": {
  6491. "__id__": 183
  6492. },
  6493. "_enabled": true,
  6494. "_englishCase": 1,
  6495. "i18n_string": "t17",
  6496. "i18n_params": [],
  6497. "_addColon": false,
  6498. "_id": ""
  6499. },
  6500. {
  6501. "__type__": "cc.PrefabInfo",
  6502. "root": {
  6503. "__id__": 182
  6504. },
  6505. "asset": {
  6506. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  6507. },
  6508. "fileId": "12tNP2G5xGpY9oecBiNRvR",
  6509. "sync": false
  6510. },
  6511. {
  6512. "__type__": "cc.Sprite",
  6513. "_name": "",
  6514. "_objFlags": 0,
  6515. "node": {
  6516. "__id__": 182
  6517. },
  6518. "_enabled": true,
  6519. "_materials": [
  6520. {
  6521. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6522. }
  6523. ],
  6524. "_srcBlendFactor": 770,
  6525. "_dstBlendFactor": 771,
  6526. "_spriteFrame": {
  6527. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  6528. },
  6529. "_type": 0,
  6530. "_sizeMode": 0,
  6531. "_fillType": 0,
  6532. "_fillCenter": {
  6533. "__type__": "cc.Vec2",
  6534. "x": 0,
  6535. "y": 0
  6536. },
  6537. "_fillStart": 0,
  6538. "_fillRange": 0,
  6539. "_isTrimmedMode": true,
  6540. "_atlas": null,
  6541. "_id": ""
  6542. },
  6543. {
  6544. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  6545. "_name": "",
  6546. "_objFlags": 0,
  6547. "node": {
  6548. "__id__": 182
  6549. },
  6550. "_enabled": true,
  6551. "openContinuous": true,
  6552. "continuousTime": 0.2,
  6553. "multiTouch": false,
  6554. "_id": ""
  6555. },
  6556. {
  6557. "__type__": "61994AafntNFIbmt1zoyLq+",
  6558. "_name": "",
  6559. "_objFlags": 0,
  6560. "node": {
  6561. "__id__": 182
  6562. },
  6563. "_enabled": true,
  6564. "_normalMaterial": null,
  6565. "_grayMaterial": null,
  6566. "duration": 0.1,
  6567. "zoomScale": 1.2,
  6568. "clickEvents": [
  6569. {
  6570. "__id__": 191
  6571. }
  6572. ],
  6573. "_N$interactable": true,
  6574. "_N$enableAutoGrayEffect": false,
  6575. "_N$transition": 3,
  6576. "transition": 3,
  6577. "_N$normalColor": {
  6578. "__type__": "cc.Color",
  6579. "r": 255,
  6580. "g": 255,
  6581. "b": 255,
  6582. "a": 255
  6583. },
  6584. "_N$pressedColor": {
  6585. "__type__": "cc.Color",
  6586. "r": 211,
  6587. "g": 211,
  6588. "b": 211,
  6589. "a": 255
  6590. },
  6591. "pressedColor": {
  6592. "__type__": "cc.Color",
  6593. "r": 211,
  6594. "g": 211,
  6595. "b": 211,
  6596. "a": 255
  6597. },
  6598. "_N$hoverColor": {
  6599. "__type__": "cc.Color",
  6600. "r": 255,
  6601. "g": 255,
  6602. "b": 255,
  6603. "a": 255
  6604. },
  6605. "hoverColor": {
  6606. "__type__": "cc.Color",
  6607. "r": 255,
  6608. "g": 255,
  6609. "b": 255,
  6610. "a": 255
  6611. },
  6612. "_N$disabledColor": {
  6613. "__type__": "cc.Color",
  6614. "r": 124,
  6615. "g": 124,
  6616. "b": 124,
  6617. "a": 255
  6618. },
  6619. "_N$normalSprite": null,
  6620. "_N$pressedSprite": null,
  6621. "pressedSprite": null,
  6622. "_N$hoverSprite": null,
  6623. "hoverSprite": null,
  6624. "_N$disabledSprite": null,
  6625. "_N$target": null,
  6626. "_id": ""
  6627. },
  6628. {
  6629. "__type__": "cc.ClickEvent",
  6630. "target": {
  6631. "__id__": 1
  6632. },
  6633. "component": "",
  6634. "_componentId": "9f2cdExi5NExLy5dFdAEOtt",
  6635. "handler": "onUpgradeClick",
  6636. "customEventData": ""
  6637. },
  6638. {
  6639. "__type__": "cc.PrefabInfo",
  6640. "root": {
  6641. "__id__": 182
  6642. },
  6643. "asset": {
  6644. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  6645. },
  6646. "fileId": "20qZ825ShHiobb2UgBAP9C",
  6647. "sync": false
  6648. },
  6649. {
  6650. "__type__": "cc.Node",
  6651. "_name": "btn_onekey",
  6652. "_objFlags": 0,
  6653. "_parent": {
  6654. "__id__": 170
  6655. },
  6656. "_children": [
  6657. {
  6658. "__id__": 194
  6659. }
  6660. ],
  6661. "_active": true,
  6662. "_components": [
  6663. {
  6664. "__id__": 199
  6665. },
  6666. {
  6667. "__id__": 200
  6668. },
  6669. {
  6670. "__id__": 201
  6671. }
  6672. ],
  6673. "_prefab": {
  6674. "__id__": 203
  6675. },
  6676. "_opacity": 255,
  6677. "_color": {
  6678. "__type__": "cc.Color",
  6679. "r": 255,
  6680. "g": 255,
  6681. "b": 255,
  6682. "a": 255
  6683. },
  6684. "_contentSize": {
  6685. "__type__": "cc.Size",
  6686. "width": 254,
  6687. "height": 104
  6688. },
  6689. "_anchorPoint": {
  6690. "__type__": "cc.Vec2",
  6691. "x": 0.5,
  6692. "y": 0.5
  6693. },
  6694. "_trs": {
  6695. "__type__": "TypedArray",
  6696. "ctor": "Float64Array",
  6697. "array": [
  6698. 287,
  6699. 0,
  6700. 0,
  6701. 0,
  6702. 0,
  6703. 0,
  6704. 1,
  6705. 1,
  6706. 1,
  6707. 0
  6708. ]
  6709. },
  6710. "_eulerAngles": {
  6711. "__type__": "cc.Vec3",
  6712. "x": 0,
  6713. "y": 0,
  6714. "z": 0
  6715. },
  6716. "_skewX": 0,
  6717. "_skewY": 0,
  6718. "_is3DNode": false,
  6719. "_groupIndex": 0,
  6720. "groupIndex": 0,
  6721. "_id": ""
  6722. },
  6723. {
  6724. "__type__": "cc.Node",
  6725. "_name": "lb",
  6726. "_objFlags": 0,
  6727. "_parent": {
  6728. "__id__": 193
  6729. },
  6730. "_children": [],
  6731. "_active": true,
  6732. "_components": [
  6733. {
  6734. "__id__": 195
  6735. },
  6736. {
  6737. "__id__": 196
  6738. },
  6739. {
  6740. "__id__": 197
  6741. }
  6742. ],
  6743. "_prefab": {
  6744. "__id__": 198
  6745. },
  6746. "_opacity": 255,
  6747. "_color": {
  6748. "__type__": "cc.Color",
  6749. "r": 29,
  6750. "g": 37,
  6751. "b": 7,
  6752. "a": 255
  6753. },
  6754. "_contentSize": {
  6755. "__type__": "cc.Size",
  6756. "width": 240,
  6757. "height": 91.35999999999999
  6758. },
  6759. "_anchorPoint": {
  6760. "__type__": "cc.Vec2",
  6761. "x": 0.5,
  6762. "y": 0.5
  6763. },
  6764. "_trs": {
  6765. "__type__": "TypedArray",
  6766. "ctor": "Float64Array",
  6767. "array": [
  6768. 0,
  6769. 5,
  6770. 0,
  6771. 0,
  6772. 0,
  6773. 0,
  6774. 1,
  6775. 1,
  6776. 1,
  6777. 1
  6778. ]
  6779. },
  6780. "_eulerAngles": {
  6781. "__type__": "cc.Vec3",
  6782. "x": 0,
  6783. "y": 0,
  6784. "z": 0
  6785. },
  6786. "_skewX": 0,
  6787. "_skewY": 0,
  6788. "_is3DNode": false,
  6789. "_groupIndex": 0,
  6790. "groupIndex": 0,
  6791. "_id": ""
  6792. },
  6793. {
  6794. "__type__": "cc.Label",
  6795. "_name": "",
  6796. "_objFlags": 0,
  6797. "node": {
  6798. "__id__": 194
  6799. },
  6800. "_enabled": true,
  6801. "_materials": [
  6802. {
  6803. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6804. }
  6805. ],
  6806. "_srcBlendFactor": 770,
  6807. "_dstBlendFactor": 771,
  6808. "_string": "One click upgrade",
  6809. "_N$string": "One click upgrade",
  6810. "_fontSize": 36,
  6811. "_lineHeight": 36,
  6812. "_enableWrapText": true,
  6813. "_N$file": {
  6814. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6815. },
  6816. "_isSystemFontUsed": false,
  6817. "_spacingX": 0,
  6818. "_batchAsBitmap": false,
  6819. "_styleFlags": 0,
  6820. "_underlineHeight": 0,
  6821. "_N$horizontalAlign": 1,
  6822. "_N$verticalAlign": 1,
  6823. "_N$fontFamily": "Arial",
  6824. "_N$overflow": 3,
  6825. "_N$cacheMode": 0,
  6826. "_id": ""
  6827. },
  6828. {
  6829. "__type__": "cc.LabelOutline",
  6830. "_name": "",
  6831. "_objFlags": 0,
  6832. "node": {
  6833. "__id__": 194
  6834. },
  6835. "_enabled": true,
  6836. "_color": {
  6837. "__type__": "cc.Color",
  6838. "r": 190,
  6839. "g": 213,
  6840. "b": 4,
  6841. "a": 255
  6842. },
  6843. "_width": 5,
  6844. "_id": ""
  6845. },
  6846. {
  6847. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  6848. "_name": "",
  6849. "_objFlags": 0,
  6850. "node": {
  6851. "__id__": 194
  6852. },
  6853. "_enabled": true,
  6854. "_englishCase": 1,
  6855. "i18n_string": "t29",
  6856. "i18n_params": [],
  6857. "_addColon": false,
  6858. "_id": ""
  6859. },
  6860. {
  6861. "__type__": "cc.PrefabInfo",
  6862. "root": {
  6863. "__id__": 193
  6864. },
  6865. "asset": {
  6866. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  6867. },
  6868. "fileId": "0257Bkg0NEyKj9p2eHdWI8",
  6869. "sync": false
  6870. },
  6871. {
  6872. "__type__": "cc.Sprite",
  6873. "_name": "",
  6874. "_objFlags": 0,
  6875. "node": {
  6876. "__id__": 193
  6877. },
  6878. "_enabled": true,
  6879. "_materials": [
  6880. {
  6881. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6882. }
  6883. ],
  6884. "_srcBlendFactor": 770,
  6885. "_dstBlendFactor": 771,
  6886. "_spriteFrame": {
  6887. "__uuid__": "79ade49c-941d-4e47-a06a-8c8504fa6f4a"
  6888. },
  6889. "_type": 0,
  6890. "_sizeMode": 0,
  6891. "_fillType": 0,
  6892. "_fillCenter": {
  6893. "__type__": "cc.Vec2",
  6894. "x": 0,
  6895. "y": 0
  6896. },
  6897. "_fillStart": 0,
  6898. "_fillRange": 0,
  6899. "_isTrimmedMode": true,
  6900. "_atlas": null,
  6901. "_id": ""
  6902. },
  6903. {
  6904. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  6905. "_name": "",
  6906. "_objFlags": 0,
  6907. "node": {
  6908. "__id__": 193
  6909. },
  6910. "_enabled": true,
  6911. "openContinuous": true,
  6912. "continuousTime": 0.2,
  6913. "multiTouch": false,
  6914. "_id": ""
  6915. },
  6916. {
  6917. "__type__": "61994AafntNFIbmt1zoyLq+",
  6918. "_name": "",
  6919. "_objFlags": 0,
  6920. "node": {
  6921. "__id__": 193
  6922. },
  6923. "_enabled": true,
  6924. "_normalMaterial": null,
  6925. "_grayMaterial": null,
  6926. "duration": 0.1,
  6927. "zoomScale": 1.2,
  6928. "clickEvents": [
  6929. {
  6930. "__id__": 202
  6931. }
  6932. ],
  6933. "_N$interactable": true,
  6934. "_N$enableAutoGrayEffect": false,
  6935. "_N$transition": 3,
  6936. "transition": 3,
  6937. "_N$normalColor": {
  6938. "__type__": "cc.Color",
  6939. "r": 255,
  6940. "g": 255,
  6941. "b": 255,
  6942. "a": 255
  6943. },
  6944. "_N$pressedColor": {
  6945. "__type__": "cc.Color",
  6946. "r": 211,
  6947. "g": 211,
  6948. "b": 211,
  6949. "a": 255
  6950. },
  6951. "pressedColor": {
  6952. "__type__": "cc.Color",
  6953. "r": 211,
  6954. "g": 211,
  6955. "b": 211,
  6956. "a": 255
  6957. },
  6958. "_N$hoverColor": {
  6959. "__type__": "cc.Color",
  6960. "r": 255,
  6961. "g": 255,
  6962. "b": 255,
  6963. "a": 255
  6964. },
  6965. "hoverColor": {
  6966. "__type__": "cc.Color",
  6967. "r": 255,
  6968. "g": 255,
  6969. "b": 255,
  6970. "a": 255
  6971. },
  6972. "_N$disabledColor": {
  6973. "__type__": "cc.Color",
  6974. "r": 124,
  6975. "g": 124,
  6976. "b": 124,
  6977. "a": 255
  6978. },
  6979. "_N$normalSprite": null,
  6980. "_N$pressedSprite": null,
  6981. "pressedSprite": null,
  6982. "_N$hoverSprite": null,
  6983. "hoverSprite": null,
  6984. "_N$disabledSprite": null,
  6985. "_N$target": null,
  6986. "_id": ""
  6987. },
  6988. {
  6989. "__type__": "cc.ClickEvent",
  6990. "target": {
  6991. "__id__": 1
  6992. },
  6993. "component": "",
  6994. "_componentId": "9f2cdExi5NExLy5dFdAEOtt",
  6995. "handler": "onUpgradeClick",
  6996. "customEventData": "1"
  6997. },
  6998. {
  6999. "__type__": "cc.PrefabInfo",
  7000. "root": {
  7001. "__id__": 193
  7002. },
  7003. "asset": {
  7004. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  7005. },
  7006. "fileId": "efi8bTuPdFzpAWw9cBNqP+",
  7007. "sync": false
  7008. },
  7009. {
  7010. "__type__": "cc.Layout",
  7011. "_name": "",
  7012. "_objFlags": 0,
  7013. "node": {
  7014. "__id__": 170
  7015. },
  7016. "_enabled": true,
  7017. "_layoutSize": {
  7018. "__type__": "cc.Size",
  7019. "width": 828,
  7020. "height": 104.23
  7021. },
  7022. "_resize": 1,
  7023. "_N$layoutType": 1,
  7024. "_N$cellSize": {
  7025. "__type__": "cc.Size",
  7026. "width": 40,
  7027. "height": 40
  7028. },
  7029. "_N$startAxis": 0,
  7030. "_N$paddingLeft": 0,
  7031. "_N$paddingRight": 0,
  7032. "_N$paddingTop": 0,
  7033. "_N$paddingBottom": 0,
  7034. "_N$spacingX": 33,
  7035. "_N$spacingY": 0,
  7036. "_N$verticalDirection": 1,
  7037. "_N$horizontalDirection": 0,
  7038. "_N$affectedByScale": false,
  7039. "_id": ""
  7040. },
  7041. {
  7042. "__type__": "cc.PrefabInfo",
  7043. "root": {
  7044. "__id__": 1
  7045. },
  7046. "asset": {
  7047. "__id__": 0
  7048. },
  7049. "fileId": "f1sWQFq8ZEBIfppsz9UCzx",
  7050. "sync": false
  7051. },
  7052. {
  7053. "__type__": "cc.Node",
  7054. "_name": "smallLvup",
  7055. "_objFlags": 0,
  7056. "_parent": {
  7057. "__id__": 1
  7058. },
  7059. "_children": [],
  7060. "_active": true,
  7061. "_components": [
  7062. {
  7063. "__id__": 207
  7064. },
  7065. {
  7066. "__id__": 208
  7067. }
  7068. ],
  7069. "_prefab": {
  7070. "__id__": 209
  7071. },
  7072. "_opacity": 255,
  7073. "_color": {
  7074. "__type__": "cc.Color",
  7075. "r": 255,
  7076. "g": 255,
  7077. "b": 255,
  7078. "a": 255
  7079. },
  7080. "_contentSize": {
  7081. "__type__": "cc.Size",
  7082. "width": 180,
  7083. "height": 260
  7084. },
  7085. "_anchorPoint": {
  7086. "__type__": "cc.Vec2",
  7087. "x": 0.5,
  7088. "y": 0.5
  7089. },
  7090. "_trs": {
  7091. "__type__": "TypedArray",
  7092. "ctor": "Float64Array",
  7093. "array": [
  7094. -313.959,
  7095. 341.283,
  7096. 0,
  7097. 0,
  7098. 0,
  7099. 0,
  7100. 1,
  7101. 1,
  7102. 1,
  7103. 1
  7104. ]
  7105. },
  7106. "_eulerAngles": {
  7107. "__type__": "cc.Vec3",
  7108. "x": 0,
  7109. "y": 0,
  7110. "z": 0
  7111. },
  7112. "_skewX": 0,
  7113. "_skewY": 0,
  7114. "_is3DNode": false,
  7115. "_groupIndex": 0,
  7116. "groupIndex": 0,
  7117. "_id": ""
  7118. },
  7119. {
  7120. "__type__": "cc.Animation",
  7121. "_name": "",
  7122. "_objFlags": 0,
  7123. "node": {
  7124. "__id__": 206
  7125. },
  7126. "_enabled": true,
  7127. "_defaultClip": null,
  7128. "_clips": [
  7129. {
  7130. "__uuid__": "bb551e8c-bc15-44c4-a6a8-d3b0a6adf02b"
  7131. }
  7132. ],
  7133. "playOnLoad": false,
  7134. "_id": ""
  7135. },
  7136. {
  7137. "__type__": "cc.Sprite",
  7138. "_name": "",
  7139. "_objFlags": 0,
  7140. "node": {
  7141. "__id__": 206
  7142. },
  7143. "_enabled": true,
  7144. "_materials": [
  7145. {
  7146. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7147. }
  7148. ],
  7149. "_srcBlendFactor": 770,
  7150. "_dstBlendFactor": 771,
  7151. "_spriteFrame": null,
  7152. "_type": 0,
  7153. "_sizeMode": 2,
  7154. "_fillType": 0,
  7155. "_fillCenter": {
  7156. "__type__": "cc.Vec2",
  7157. "x": 0,
  7158. "y": 0
  7159. },
  7160. "_fillStart": 0,
  7161. "_fillRange": 0,
  7162. "_isTrimmedMode": false,
  7163. "_atlas": null,
  7164. "_id": ""
  7165. },
  7166. {
  7167. "__type__": "cc.PrefabInfo",
  7168. "root": {
  7169. "__id__": 206
  7170. },
  7171. "asset": {
  7172. "__uuid__": "1a36c1a6-7e22-4920-ada0-ab3e5c63521f"
  7173. },
  7174. "fileId": "225YM1+FhKialC9K6QTHCa",
  7175. "sync": false
  7176. },
  7177. {
  7178. "__type__": "9f2cdExi5NExLy5dFdAEOtt",
  7179. "_name": "",
  7180. "_objFlags": 0,
  7181. "node": {
  7182. "__id__": 1
  7183. },
  7184. "_enabled": true,
  7185. "quickClose": false,
  7186. "cache": false,
  7187. "showType": 500,
  7188. "prevent": true,
  7189. "_id": ""
  7190. },
  7191. {
  7192. "__type__": "cc.PrefabInfo",
  7193. "root": {
  7194. "__id__": 1
  7195. },
  7196. "asset": {
  7197. "__id__": 0
  7198. },
  7199. "fileId": "",
  7200. "sync": false
  7201. }
  7202. ]