Canvas.prefab 112 KB

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