TaskUI.prefab 217 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814
  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": "TaskUI",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 9
  28. },
  29. {
  30. "__id__": 12
  31. },
  32. {
  33. "__id__": 103
  34. },
  35. {
  36. "__id__": 109
  37. },
  38. {
  39. "__id__": 114
  40. },
  41. {
  42. "__id__": 199
  43. },
  44. {
  45. "__id__": 202
  46. },
  47. {
  48. "__id__": 280
  49. },
  50. {
  51. "__id__": 283
  52. }
  53. ],
  54. "_active": true,
  55. "_components": [
  56. {
  57. "__id__": 375
  58. }
  59. ],
  60. "_prefab": {
  61. "__id__": 376
  62. },
  63. "_opacity": 255,
  64. "_color": {
  65. "__type__": "cc.Color",
  66. "r": 255,
  67. "g": 255,
  68. "b": 255,
  69. "a": 255
  70. },
  71. "_contentSize": {
  72. "__type__": "cc.Size",
  73. "width": 0,
  74. "height": 0
  75. },
  76. "_anchorPoint": {
  77. "__type__": "cc.Vec2",
  78. "x": 0.5,
  79. "y": 0.5
  80. },
  81. "_trs": {
  82. "__type__": "TypedArray",
  83. "ctor": "Float64Array",
  84. "array": [
  85. 0,
  86. 0,
  87. 0,
  88. 0,
  89. 0,
  90. 0,
  91. 1,
  92. 1,
  93. 1,
  94. 0
  95. ]
  96. },
  97. "_eulerAngles": {
  98. "__type__": "cc.Vec3",
  99. "x": 0,
  100. "y": 0,
  101. "z": 0
  102. },
  103. "_skewX": 0,
  104. "_skewY": 0,
  105. "_is3DNode": false,
  106. "_groupIndex": 0,
  107. "groupIndex": 0,
  108. "_id": ""
  109. },
  110. {
  111. "__type__": "cc.Node",
  112. "_name": "background",
  113. "_objFlags": 0,
  114. "_parent": {
  115. "__id__": 1
  116. },
  117. "_children": [],
  118. "_active": true,
  119. "_components": [
  120. {
  121. "__id__": 3
  122. },
  123. {
  124. "__id__": 4
  125. }
  126. ],
  127. "_prefab": {
  128. "__id__": 5
  129. },
  130. "_opacity": 255,
  131. "_color": {
  132. "__type__": "cc.Color",
  133. "r": 255,
  134. "g": 255,
  135. "b": 255,
  136. "a": 255
  137. },
  138. "_contentSize": {
  139. "__type__": "cc.Size",
  140. "width": 1920,
  141. "height": 1080
  142. },
  143. "_anchorPoint": {
  144. "__type__": "cc.Vec2",
  145. "x": 0.5,
  146. "y": 0.5
  147. },
  148. "_trs": {
  149. "__type__": "TypedArray",
  150. "ctor": "Float64Array",
  151. "array": [
  152. 0,
  153. 0,
  154. 0,
  155. 0,
  156. 0,
  157. 0,
  158. 1,
  159. 1,
  160. 1,
  161. 1
  162. ]
  163. },
  164. "_eulerAngles": {
  165. "__type__": "cc.Vec3",
  166. "x": 0,
  167. "y": 0,
  168. "z": 0
  169. },
  170. "_skewX": 0,
  171. "_skewY": 0,
  172. "_is3DNode": false,
  173. "_groupIndex": 0,
  174. "groupIndex": 0,
  175. "_id": ""
  176. },
  177. {
  178. "__type__": "cc.Sprite",
  179. "_name": "",
  180. "_objFlags": 0,
  181. "node": {
  182. "__id__": 2
  183. },
  184. "_enabled": true,
  185. "_materials": [
  186. {
  187. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  188. }
  189. ],
  190. "_srcBlendFactor": 770,
  191. "_dstBlendFactor": 771,
  192. "_spriteFrame": {
  193. "__uuid__": "0bfe69da-46b9-41bb-82b1-5244e206860d"
  194. },
  195. "_type": 0,
  196. "_sizeMode": 0,
  197. "_fillType": 0,
  198. "_fillCenter": {
  199. "__type__": "cc.Vec2",
  200. "x": 0,
  201. "y": 0
  202. },
  203. "_fillStart": 0,
  204. "_fillRange": 0,
  205. "_isTrimmedMode": true,
  206. "_atlas": null,
  207. "_id": ""
  208. },
  209. {
  210. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  211. "_name": "",
  212. "_objFlags": 0,
  213. "node": {
  214. "__id__": 2
  215. },
  216. "_enabled": true,
  217. "widthFit": true,
  218. "heightFit": true,
  219. "_id": ""
  220. },
  221. {
  222. "__type__": "cc.PrefabInfo",
  223. "root": {
  224. "__id__": 1
  225. },
  226. "asset": {
  227. "__id__": 0
  228. },
  229. "fileId": "82+ZDVlkxEjIcuWoBA0f55",
  230. "sync": false
  231. },
  232. {
  233. "__type__": "cc.Node",
  234. "_name": "common_frame2",
  235. "_objFlags": 0,
  236. "_parent": {
  237. "__id__": 1
  238. },
  239. "_children": [],
  240. "_active": true,
  241. "_components": [
  242. {
  243. "__id__": 7
  244. }
  245. ],
  246. "_prefab": {
  247. "__id__": 8
  248. },
  249. "_opacity": 255,
  250. "_color": {
  251. "__type__": "cc.Color",
  252. "r": 255,
  253. "g": 255,
  254. "b": 255,
  255. "a": 255
  256. },
  257. "_contentSize": {
  258. "__type__": "cc.Size",
  259. "width": 1618,
  260. "height": 950
  261. },
  262. "_anchorPoint": {
  263. "__type__": "cc.Vec2",
  264. "x": 0.5,
  265. "y": 0.5
  266. },
  267. "_trs": {
  268. "__type__": "TypedArray",
  269. "ctor": "Float64Array",
  270. "array": [
  271. 140,
  272. -40.889,
  273. 0,
  274. 0,
  275. 0,
  276. 0,
  277. 1,
  278. 1,
  279. 1,
  280. 1
  281. ]
  282. },
  283. "_eulerAngles": {
  284. "__type__": "cc.Vec3",
  285. "x": 0,
  286. "y": 0,
  287. "z": 0
  288. },
  289. "_skewX": 0,
  290. "_skewY": 0,
  291. "_is3DNode": false,
  292. "_groupIndex": 0,
  293. "groupIndex": 0,
  294. "_id": ""
  295. },
  296. {
  297. "__type__": "cc.Sprite",
  298. "_name": "",
  299. "_objFlags": 0,
  300. "node": {
  301. "__id__": 6
  302. },
  303. "_enabled": true,
  304. "_materials": [
  305. {
  306. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  307. }
  308. ],
  309. "_srcBlendFactor": 770,
  310. "_dstBlendFactor": 771,
  311. "_spriteFrame": {
  312. "__uuid__": "081dc70f-4e06-4aa8-aed4-915ef25eff26"
  313. },
  314. "_type": 2,
  315. "_sizeMode": 0,
  316. "_fillType": 0,
  317. "_fillCenter": {
  318. "__type__": "cc.Vec2",
  319. "x": 0,
  320. "y": 0
  321. },
  322. "_fillStart": 0,
  323. "_fillRange": 0,
  324. "_isTrimmedMode": true,
  325. "_atlas": null,
  326. "_id": ""
  327. },
  328. {
  329. "__type__": "cc.PrefabInfo",
  330. "root": {
  331. "__id__": 1
  332. },
  333. "asset": {
  334. "__id__": 0
  335. },
  336. "fileId": "e9KmXRzoRL6pV4hNab3w14",
  337. "sync": false
  338. },
  339. {
  340. "__type__": "cc.Node",
  341. "_name": "paging_bottom",
  342. "_objFlags": 0,
  343. "_parent": {
  344. "__id__": 1
  345. },
  346. "_children": [],
  347. "_active": true,
  348. "_components": [
  349. {
  350. "__id__": 10
  351. }
  352. ],
  353. "_prefab": {
  354. "__id__": 11
  355. },
  356. "_opacity": 255,
  357. "_color": {
  358. "__type__": "cc.Color",
  359. "r": 255,
  360. "g": 255,
  361. "b": 255,
  362. "a": 255
  363. },
  364. "_contentSize": {
  365. "__type__": "cc.Size",
  366. "width": 290,
  367. "height": 45
  368. },
  369. "_anchorPoint": {
  370. "__type__": "cc.Vec2",
  371. "x": 0.5,
  372. "y": 0.5
  373. },
  374. "_trs": {
  375. "__type__": "TypedArray",
  376. "ctor": "Float64Array",
  377. "array": [
  378. -814.768,
  379. 357.345,
  380. 0,
  381. 0,
  382. 0,
  383. 0,
  384. 1,
  385. 1,
  386. 1,
  387. 1
  388. ]
  389. },
  390. "_eulerAngles": {
  391. "__type__": "cc.Vec3",
  392. "x": 0,
  393. "y": 0,
  394. "z": 0
  395. },
  396. "_skewX": 0,
  397. "_skewY": 0,
  398. "_is3DNode": false,
  399. "_groupIndex": 0,
  400. "groupIndex": 0,
  401. "_id": ""
  402. },
  403. {
  404. "__type__": "cc.Sprite",
  405. "_name": "",
  406. "_objFlags": 0,
  407. "node": {
  408. "__id__": 9
  409. },
  410. "_enabled": true,
  411. "_materials": [
  412. {
  413. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  414. }
  415. ],
  416. "_srcBlendFactor": 770,
  417. "_dstBlendFactor": 771,
  418. "_spriteFrame": {
  419. "__uuid__": "eee3c2a2-68ad-4dad-b802-e8fcceb42d7e"
  420. },
  421. "_type": 0,
  422. "_sizeMode": 0,
  423. "_fillType": 0,
  424. "_fillCenter": {
  425. "__type__": "cc.Vec2",
  426. "x": 0,
  427. "y": 0
  428. },
  429. "_fillStart": 0,
  430. "_fillRange": 0,
  431. "_isTrimmedMode": true,
  432. "_atlas": null,
  433. "_id": ""
  434. },
  435. {
  436. "__type__": "cc.PrefabInfo",
  437. "root": {
  438. "__id__": 1
  439. },
  440. "asset": {
  441. "__id__": 0
  442. },
  443. "fileId": "24so0+hI1GqJANHef9HFqd",
  444. "sync": false
  445. },
  446. {
  447. "__type__": "cc.Node",
  448. "_name": "taskType_list",
  449. "_objFlags": 0,
  450. "_parent": {
  451. "__id__": 1
  452. },
  453. "_children": [
  454. {
  455. "__id__": 13
  456. },
  457. {
  458. "__id__": 42
  459. },
  460. {
  461. "__id__": 71
  462. }
  463. ],
  464. "_active": true,
  465. "_components": [
  466. {
  467. "__id__": 100
  468. },
  469. {
  470. "__id__": 101
  471. }
  472. ],
  473. "_prefab": {
  474. "__id__": 102
  475. },
  476. "_opacity": 255,
  477. "_color": {
  478. "__type__": "cc.Color",
  479. "r": 255,
  480. "g": 255,
  481. "b": 255,
  482. "a": 255
  483. },
  484. "_contentSize": {
  485. "__type__": "cc.Size",
  486. "width": 300,
  487. "height": 360
  488. },
  489. "_anchorPoint": {
  490. "__type__": "cc.Vec2",
  491. "x": 0.5,
  492. "y": 1
  493. },
  494. "_trs": {
  495. "__type__": "TypedArray",
  496. "ctor": "Float64Array",
  497. "array": [
  498. -817,
  499. 291,
  500. 0,
  501. 0,
  502. 0,
  503. 0,
  504. 1,
  505. 1,
  506. 1,
  507. 1
  508. ]
  509. },
  510. "_eulerAngles": {
  511. "__type__": "cc.Vec3",
  512. "x": 0,
  513. "y": 0,
  514. "z": 0
  515. },
  516. "_skewX": 0,
  517. "_skewY": 0,
  518. "_is3DNode": false,
  519. "_groupIndex": 0,
  520. "groupIndex": 0,
  521. "_id": ""
  522. },
  523. {
  524. "__type__": "cc.Node",
  525. "_name": "toggle1",
  526. "_objFlags": 0,
  527. "_parent": {
  528. "__id__": 12
  529. },
  530. "_children": [
  531. {
  532. "__id__": 14
  533. },
  534. {
  535. "__id__": 17
  536. },
  537. {
  538. "__id__": 20
  539. },
  540. {
  541. "__id__": 28
  542. },
  543. {
  544. "__id__": 36
  545. }
  546. ],
  547. "_active": true,
  548. "_components": [
  549. {
  550. "__id__": 39
  551. }
  552. ],
  553. "_prefab": {
  554. "__id__": 41
  555. },
  556. "_opacity": 255,
  557. "_color": {
  558. "__type__": "cc.Color",
  559. "r": 255,
  560. "g": 255,
  561. "b": 255,
  562. "a": 255
  563. },
  564. "_contentSize": {
  565. "__type__": "cc.Size",
  566. "width": 240,
  567. "height": 100
  568. },
  569. "_anchorPoint": {
  570. "__type__": "cc.Vec2",
  571. "x": 0.5,
  572. "y": 0.5
  573. },
  574. "_trs": {
  575. "__type__": "TypedArray",
  576. "ctor": "Float64Array",
  577. "array": [
  578. 0,
  579. -50,
  580. 0,
  581. 0,
  582. 0,
  583. 0,
  584. 1,
  585. 1,
  586. 1,
  587. 0
  588. ]
  589. },
  590. "_eulerAngles": {
  591. "__type__": "cc.Vec3",
  592. "x": 0,
  593. "y": 0,
  594. "z": 0
  595. },
  596. "_skewX": 0,
  597. "_skewY": 0,
  598. "_is3DNode": false,
  599. "_groupIndex": 0,
  600. "groupIndex": 0,
  601. "_id": ""
  602. },
  603. {
  604. "__type__": "cc.Node",
  605. "_name": "chain",
  606. "_objFlags": 0,
  607. "_parent": {
  608. "__id__": 13
  609. },
  610. "_children": [],
  611. "_active": true,
  612. "_components": [
  613. {
  614. "__id__": 15
  615. }
  616. ],
  617. "_prefab": {
  618. "__id__": 16
  619. },
  620. "_opacity": 255,
  621. "_color": {
  622. "__type__": "cc.Color",
  623. "r": 255,
  624. "g": 255,
  625. "b": 255,
  626. "a": 255
  627. },
  628. "_contentSize": {
  629. "__type__": "cc.Size",
  630. "width": 20,
  631. "height": 92
  632. },
  633. "_anchorPoint": {
  634. "__type__": "cc.Vec2",
  635. "x": 0.5,
  636. "y": 0.5
  637. },
  638. "_trs": {
  639. "__type__": "TypedArray",
  640. "ctor": "Float64Array",
  641. "array": [
  642. -80,
  643. 48,
  644. 0,
  645. 0,
  646. 0,
  647. 0,
  648. 1,
  649. 1,
  650. 1,
  651. 1
  652. ]
  653. },
  654. "_eulerAngles": {
  655. "__type__": "cc.Vec3",
  656. "x": 0,
  657. "y": 0,
  658. "z": 0
  659. },
  660. "_skewX": 0,
  661. "_skewY": 0,
  662. "_is3DNode": false,
  663. "_groupIndex": 0,
  664. "groupIndex": 0,
  665. "_id": ""
  666. },
  667. {
  668. "__type__": "cc.Sprite",
  669. "_name": "",
  670. "_objFlags": 0,
  671. "node": {
  672. "__id__": 14
  673. },
  674. "_enabled": true,
  675. "_materials": [
  676. {
  677. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  678. }
  679. ],
  680. "_srcBlendFactor": 770,
  681. "_dstBlendFactor": 771,
  682. "_spriteFrame": {
  683. "__uuid__": "09201653-8f6b-4eb7-8be1-9df8f309c8fc"
  684. },
  685. "_type": 0,
  686. "_sizeMode": 0,
  687. "_fillType": 0,
  688. "_fillCenter": {
  689. "__type__": "cc.Vec2",
  690. "x": 0,
  691. "y": 0
  692. },
  693. "_fillStart": 0,
  694. "_fillRange": 0,
  695. "_isTrimmedMode": true,
  696. "_atlas": null,
  697. "_id": ""
  698. },
  699. {
  700. "__type__": "cc.PrefabInfo",
  701. "root": {
  702. "__id__": 1
  703. },
  704. "asset": {
  705. "__id__": 0
  706. },
  707. "fileId": "3egfDw6lFMY624aAo4aXAz",
  708. "sync": false
  709. },
  710. {
  711. "__type__": "cc.Node",
  712. "_name": "chain",
  713. "_objFlags": 0,
  714. "_parent": {
  715. "__id__": 13
  716. },
  717. "_children": [],
  718. "_active": true,
  719. "_components": [
  720. {
  721. "__id__": 18
  722. }
  723. ],
  724. "_prefab": {
  725. "__id__": 19
  726. },
  727. "_opacity": 255,
  728. "_color": {
  729. "__type__": "cc.Color",
  730. "r": 255,
  731. "g": 255,
  732. "b": 255,
  733. "a": 255
  734. },
  735. "_contentSize": {
  736. "__type__": "cc.Size",
  737. "width": 20,
  738. "height": 92
  739. },
  740. "_anchorPoint": {
  741. "__type__": "cc.Vec2",
  742. "x": 0.5,
  743. "y": 0.5
  744. },
  745. "_trs": {
  746. "__type__": "TypedArray",
  747. "ctor": "Float64Array",
  748. "array": [
  749. 68,
  750. 48,
  751. 0,
  752. 0,
  753. 0,
  754. 0,
  755. 1,
  756. 1,
  757. 1,
  758. 1
  759. ]
  760. },
  761. "_eulerAngles": {
  762. "__type__": "cc.Vec3",
  763. "x": 0,
  764. "y": 0,
  765. "z": 0
  766. },
  767. "_skewX": 0,
  768. "_skewY": 0,
  769. "_is3DNode": false,
  770. "_groupIndex": 0,
  771. "groupIndex": 0,
  772. "_id": ""
  773. },
  774. {
  775. "__type__": "cc.Sprite",
  776. "_name": "",
  777. "_objFlags": 0,
  778. "node": {
  779. "__id__": 17
  780. },
  781. "_enabled": true,
  782. "_materials": [
  783. {
  784. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  785. }
  786. ],
  787. "_srcBlendFactor": 770,
  788. "_dstBlendFactor": 771,
  789. "_spriteFrame": {
  790. "__uuid__": "09201653-8f6b-4eb7-8be1-9df8f309c8fc"
  791. },
  792. "_type": 0,
  793. "_sizeMode": 0,
  794. "_fillType": 0,
  795. "_fillCenter": {
  796. "__type__": "cc.Vec2",
  797. "x": 0,
  798. "y": 0
  799. },
  800. "_fillStart": 0,
  801. "_fillRange": 0,
  802. "_isTrimmedMode": true,
  803. "_atlas": null,
  804. "_id": ""
  805. },
  806. {
  807. "__type__": "cc.PrefabInfo",
  808. "root": {
  809. "__id__": 1
  810. },
  811. "asset": {
  812. "__id__": 0
  813. },
  814. "fileId": "faEb3IHEVIR7x1aQkSxxK/",
  815. "sync": false
  816. },
  817. {
  818. "__type__": "cc.Node",
  819. "_name": "paging2",
  820. "_objFlags": 0,
  821. "_parent": {
  822. "__id__": 13
  823. },
  824. "_children": [
  825. {
  826. "__id__": 21
  827. }
  828. ],
  829. "_active": true,
  830. "_components": [
  831. {
  832. "__id__": 26
  833. }
  834. ],
  835. "_prefab": {
  836. "__id__": 27
  837. },
  838. "_opacity": 255,
  839. "_color": {
  840. "__type__": "cc.Color",
  841. "r": 255,
  842. "g": 255,
  843. "b": 255,
  844. "a": 255
  845. },
  846. "_contentSize": {
  847. "__type__": "cc.Size",
  848. "width": 240,
  849. "height": 100
  850. },
  851. "_anchorPoint": {
  852. "__type__": "cc.Vec2",
  853. "x": 0.5,
  854. "y": 0.5
  855. },
  856. "_trs": {
  857. "__type__": "TypedArray",
  858. "ctor": "Float64Array",
  859. "array": [
  860. -3,
  861. 0,
  862. 0,
  863. 0,
  864. 0,
  865. 0,
  866. 1,
  867. 1,
  868. 1,
  869. 0
  870. ]
  871. },
  872. "_eulerAngles": {
  873. "__type__": "cc.Vec3",
  874. "x": 0,
  875. "y": 0,
  876. "z": 0
  877. },
  878. "_skewX": 0,
  879. "_skewY": 0,
  880. "_is3DNode": false,
  881. "_groupIndex": 0,
  882. "groupIndex": 0,
  883. "_id": ""
  884. },
  885. {
  886. "__type__": "cc.Node",
  887. "_name": "label1",
  888. "_objFlags": 0,
  889. "_parent": {
  890. "__id__": 20
  891. },
  892. "_children": [],
  893. "_active": true,
  894. "_components": [
  895. {
  896. "__id__": 22
  897. },
  898. {
  899. "__id__": 23
  900. },
  901. {
  902. "__id__": 24
  903. }
  904. ],
  905. "_prefab": {
  906. "__id__": 25
  907. },
  908. "_opacity": 255,
  909. "_color": {
  910. "__type__": "cc.Color",
  911. "r": 255,
  912. "g": 255,
  913. "b": 255,
  914. "a": 255
  915. },
  916. "_contentSize": {
  917. "__type__": "cc.Size",
  918. "width": 210,
  919. "height": 80
  920. },
  921. "_anchorPoint": {
  922. "__type__": "cc.Vec2",
  923. "x": 0.5,
  924. "y": 0.5
  925. },
  926. "_trs": {
  927. "__type__": "TypedArray",
  928. "ctor": "Float64Array",
  929. "array": [
  930. 0,
  931. 0,
  932. 0,
  933. 0,
  934. 0,
  935. 0,
  936. 1,
  937. 1,
  938. 1,
  939. 1
  940. ]
  941. },
  942. "_eulerAngles": {
  943. "__type__": "cc.Vec3",
  944. "x": 0,
  945. "y": 0,
  946. "z": 0
  947. },
  948. "_skewX": 0,
  949. "_skewY": 0,
  950. "_is3DNode": false,
  951. "_groupIndex": 0,
  952. "groupIndex": 0,
  953. "_id": ""
  954. },
  955. {
  956. "__type__": "cc.Label",
  957. "_name": "",
  958. "_objFlags": 0,
  959. "node": {
  960. "__id__": 21
  961. },
  962. "_enabled": true,
  963. "_materials": [
  964. {
  965. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  966. }
  967. ],
  968. "_srcBlendFactor": 770,
  969. "_dstBlendFactor": 771,
  970. "_string": "Daily Tasks",
  971. "_N$string": "Daily Tasks",
  972. "_fontSize": 36,
  973. "_lineHeight": 36,
  974. "_enableWrapText": true,
  975. "_N$file": {
  976. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  977. },
  978. "_isSystemFontUsed": false,
  979. "_spacingX": 0,
  980. "_batchAsBitmap": false,
  981. "_styleFlags": 0,
  982. "_underlineHeight": 0,
  983. "_N$horizontalAlign": 1,
  984. "_N$verticalAlign": 1,
  985. "_N$fontFamily": "Arial",
  986. "_N$overflow": 2,
  987. "_N$cacheMode": 0,
  988. "_id": ""
  989. },
  990. {
  991. "__type__": "cc.LabelOutline",
  992. "_name": "",
  993. "_objFlags": 0,
  994. "node": {
  995. "__id__": 21
  996. },
  997. "_enabled": true,
  998. "_color": {
  999. "__type__": "cc.Color",
  1000. "r": 38,
  1001. "g": 17,
  1002. "b": 12,
  1003. "a": 255
  1004. },
  1005. "_width": 3,
  1006. "_id": ""
  1007. },
  1008. {
  1009. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1010. "_name": "",
  1011. "_objFlags": 0,
  1012. "node": {
  1013. "__id__": 21
  1014. },
  1015. "_enabled": true,
  1016. "_englishCase": 3,
  1017. "i18n_string": "t401",
  1018. "i18n_params": [],
  1019. "_addColon": false,
  1020. "_id": ""
  1021. },
  1022. {
  1023. "__type__": "cc.PrefabInfo",
  1024. "root": {
  1025. "__id__": 21
  1026. },
  1027. "asset": {
  1028. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  1029. },
  1030. "fileId": "82HDEtQhlNl4H1w7pKNErW",
  1031. "sync": false
  1032. },
  1033. {
  1034. "__type__": "cc.Sprite",
  1035. "_name": "",
  1036. "_objFlags": 0,
  1037. "node": {
  1038. "__id__": 20
  1039. },
  1040. "_enabled": true,
  1041. "_materials": [
  1042. {
  1043. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1044. }
  1045. ],
  1046. "_srcBlendFactor": 770,
  1047. "_dstBlendFactor": 771,
  1048. "_spriteFrame": {
  1049. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  1050. },
  1051. "_type": 0,
  1052. "_sizeMode": 0,
  1053. "_fillType": 0,
  1054. "_fillCenter": {
  1055. "__type__": "cc.Vec2",
  1056. "x": 0,
  1057. "y": 0
  1058. },
  1059. "_fillStart": 0,
  1060. "_fillRange": 0,
  1061. "_isTrimmedMode": true,
  1062. "_atlas": null,
  1063. "_id": ""
  1064. },
  1065. {
  1066. "__type__": "cc.PrefabInfo",
  1067. "root": {
  1068. "__id__": 1
  1069. },
  1070. "asset": {
  1071. "__id__": 0
  1072. },
  1073. "fileId": "c7tJOoh/RLU7p7GVkTxvMO",
  1074. "sync": false
  1075. },
  1076. {
  1077. "__type__": "cc.Node",
  1078. "_name": "paging1",
  1079. "_objFlags": 0,
  1080. "_parent": {
  1081. "__id__": 13
  1082. },
  1083. "_children": [
  1084. {
  1085. "__id__": 29
  1086. }
  1087. ],
  1088. "_active": true,
  1089. "_components": [
  1090. {
  1091. "__id__": 34
  1092. }
  1093. ],
  1094. "_prefab": {
  1095. "__id__": 35
  1096. },
  1097. "_opacity": 255,
  1098. "_color": {
  1099. "__type__": "cc.Color",
  1100. "r": 255,
  1101. "g": 255,
  1102. "b": 255,
  1103. "a": 255
  1104. },
  1105. "_contentSize": {
  1106. "__type__": "cc.Size",
  1107. "width": 240,
  1108. "height": 100
  1109. },
  1110. "_anchorPoint": {
  1111. "__type__": "cc.Vec2",
  1112. "x": 0.5,
  1113. "y": 0.5
  1114. },
  1115. "_trs": {
  1116. "__type__": "TypedArray",
  1117. "ctor": "Float64Array",
  1118. "array": [
  1119. -3,
  1120. 0,
  1121. 0,
  1122. 0,
  1123. 0,
  1124. 0,
  1125. 1,
  1126. 1,
  1127. 1,
  1128. 1
  1129. ]
  1130. },
  1131. "_eulerAngles": {
  1132. "__type__": "cc.Vec3",
  1133. "x": 0,
  1134. "y": 0,
  1135. "z": 0
  1136. },
  1137. "_skewX": 0,
  1138. "_skewY": 0,
  1139. "_is3DNode": false,
  1140. "_groupIndex": 0,
  1141. "groupIndex": 0,
  1142. "_id": ""
  1143. },
  1144. {
  1145. "__type__": "cc.Node",
  1146. "_name": "label2",
  1147. "_objFlags": 0,
  1148. "_parent": {
  1149. "__id__": 28
  1150. },
  1151. "_children": [],
  1152. "_active": true,
  1153. "_components": [
  1154. {
  1155. "__id__": 30
  1156. },
  1157. {
  1158. "__id__": 31
  1159. },
  1160. {
  1161. "__id__": 32
  1162. }
  1163. ],
  1164. "_prefab": {
  1165. "__id__": 33
  1166. },
  1167. "_opacity": 255,
  1168. "_color": {
  1169. "__type__": "cc.Color",
  1170. "r": 255,
  1171. "g": 239,
  1172. "b": 129,
  1173. "a": 255
  1174. },
  1175. "_contentSize": {
  1176. "__type__": "cc.Size",
  1177. "width": 210,
  1178. "height": 80
  1179. },
  1180. "_anchorPoint": {
  1181. "__type__": "cc.Vec2",
  1182. "x": 0.5,
  1183. "y": 0.5
  1184. },
  1185. "_trs": {
  1186. "__type__": "TypedArray",
  1187. "ctor": "Float64Array",
  1188. "array": [
  1189. 0,
  1190. 0,
  1191. 0,
  1192. 0,
  1193. 0,
  1194. 0,
  1195. 1,
  1196. 1,
  1197. 1,
  1198. 1
  1199. ]
  1200. },
  1201. "_eulerAngles": {
  1202. "__type__": "cc.Vec3",
  1203. "x": 0,
  1204. "y": 0,
  1205. "z": 0
  1206. },
  1207. "_skewX": 0,
  1208. "_skewY": 0,
  1209. "_is3DNode": false,
  1210. "_groupIndex": 0,
  1211. "groupIndex": 0,
  1212. "_id": ""
  1213. },
  1214. {
  1215. "__type__": "cc.Label",
  1216. "_name": "",
  1217. "_objFlags": 0,
  1218. "node": {
  1219. "__id__": 29
  1220. },
  1221. "_enabled": true,
  1222. "_materials": [
  1223. {
  1224. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1225. }
  1226. ],
  1227. "_srcBlendFactor": 770,
  1228. "_dstBlendFactor": 771,
  1229. "_string": "Daily Tasks",
  1230. "_N$string": "Daily Tasks",
  1231. "_fontSize": 36,
  1232. "_lineHeight": 36,
  1233. "_enableWrapText": true,
  1234. "_N$file": {
  1235. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1236. },
  1237. "_isSystemFontUsed": false,
  1238. "_spacingX": 0,
  1239. "_batchAsBitmap": false,
  1240. "_styleFlags": 0,
  1241. "_underlineHeight": 0,
  1242. "_N$horizontalAlign": 1,
  1243. "_N$verticalAlign": 1,
  1244. "_N$fontFamily": "Arial",
  1245. "_N$overflow": 2,
  1246. "_N$cacheMode": 0,
  1247. "_id": ""
  1248. },
  1249. {
  1250. "__type__": "cc.LabelOutline",
  1251. "_name": "",
  1252. "_objFlags": 0,
  1253. "node": {
  1254. "__id__": 29
  1255. },
  1256. "_enabled": true,
  1257. "_color": {
  1258. "__type__": "cc.Color",
  1259. "r": 38,
  1260. "g": 17,
  1261. "b": 12,
  1262. "a": 255
  1263. },
  1264. "_width": 3,
  1265. "_id": ""
  1266. },
  1267. {
  1268. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1269. "_name": "",
  1270. "_objFlags": 0,
  1271. "node": {
  1272. "__id__": 29
  1273. },
  1274. "_enabled": true,
  1275. "_englishCase": 3,
  1276. "i18n_string": "t401",
  1277. "i18n_params": [],
  1278. "_addColon": false,
  1279. "_id": ""
  1280. },
  1281. {
  1282. "__type__": "cc.PrefabInfo",
  1283. "root": {
  1284. "__id__": 29
  1285. },
  1286. "asset": {
  1287. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  1288. },
  1289. "fileId": "90ekJrH79ORql2gXG+dhzJ",
  1290. "sync": false
  1291. },
  1292. {
  1293. "__type__": "cc.Sprite",
  1294. "_name": "",
  1295. "_objFlags": 0,
  1296. "node": {
  1297. "__id__": 28
  1298. },
  1299. "_enabled": true,
  1300. "_materials": [
  1301. {
  1302. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1303. }
  1304. ],
  1305. "_srcBlendFactor": 770,
  1306. "_dstBlendFactor": 771,
  1307. "_spriteFrame": {
  1308. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  1309. },
  1310. "_type": 0,
  1311. "_sizeMode": 0,
  1312. "_fillType": 0,
  1313. "_fillCenter": {
  1314. "__type__": "cc.Vec2",
  1315. "x": 0,
  1316. "y": 0
  1317. },
  1318. "_fillStart": 0,
  1319. "_fillRange": 0,
  1320. "_isTrimmedMode": true,
  1321. "_atlas": null,
  1322. "_id": ""
  1323. },
  1324. {
  1325. "__type__": "cc.PrefabInfo",
  1326. "root": {
  1327. "__id__": 1
  1328. },
  1329. "asset": {
  1330. "__id__": 0
  1331. },
  1332. "fileId": "66OZhCSAZM47p0KFlWN6Mc",
  1333. "sync": false
  1334. },
  1335. {
  1336. "__type__": "cc.Node",
  1337. "_name": "red_dots",
  1338. "_objFlags": 0,
  1339. "_parent": {
  1340. "__id__": 13
  1341. },
  1342. "_children": [],
  1343. "_active": false,
  1344. "_components": [
  1345. {
  1346. "__id__": 37
  1347. }
  1348. ],
  1349. "_prefab": {
  1350. "__id__": 38
  1351. },
  1352. "_opacity": 255,
  1353. "_color": {
  1354. "__type__": "cc.Color",
  1355. "r": 255,
  1356. "g": 255,
  1357. "b": 255,
  1358. "a": 255
  1359. },
  1360. "_contentSize": {
  1361. "__type__": "cc.Size",
  1362. "width": 66,
  1363. "height": 66
  1364. },
  1365. "_anchorPoint": {
  1366. "__type__": "cc.Vec2",
  1367. "x": 0.5,
  1368. "y": 0.5
  1369. },
  1370. "_trs": {
  1371. "__type__": "TypedArray",
  1372. "ctor": "Float64Array",
  1373. "array": [
  1374. 109.011,
  1375. 36.807,
  1376. 0,
  1377. 0,
  1378. 0,
  1379. 0,
  1380. 1,
  1381. 0.6,
  1382. 0.6,
  1383. 1
  1384. ]
  1385. },
  1386. "_eulerAngles": {
  1387. "__type__": "cc.Vec3",
  1388. "x": 0,
  1389. "y": 0,
  1390. "z": 0
  1391. },
  1392. "_skewX": 0,
  1393. "_skewY": 0,
  1394. "_is3DNode": false,
  1395. "_groupIndex": 0,
  1396. "groupIndex": 0,
  1397. "_id": ""
  1398. },
  1399. {
  1400. "__type__": "cc.Sprite",
  1401. "_name": "",
  1402. "_objFlags": 0,
  1403. "node": {
  1404. "__id__": 36
  1405. },
  1406. "_enabled": true,
  1407. "_materials": [
  1408. {
  1409. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1410. }
  1411. ],
  1412. "_srcBlendFactor": 770,
  1413. "_dstBlendFactor": 771,
  1414. "_spriteFrame": {
  1415. "__uuid__": "2e0bba47-213b-4d41-9454-69b2b6261500"
  1416. },
  1417. "_type": 0,
  1418. "_sizeMode": 1,
  1419. "_fillType": 0,
  1420. "_fillCenter": {
  1421. "__type__": "cc.Vec2",
  1422. "x": 0,
  1423. "y": 0
  1424. },
  1425. "_fillStart": 0,
  1426. "_fillRange": 0,
  1427. "_isTrimmedMode": true,
  1428. "_atlas": null,
  1429. "_id": ""
  1430. },
  1431. {
  1432. "__type__": "cc.PrefabInfo",
  1433. "root": {
  1434. "__id__": 1
  1435. },
  1436. "asset": {
  1437. "__id__": 0
  1438. },
  1439. "fileId": "44J3NxSi1KT7Mez0SZ2LM1",
  1440. "sync": false
  1441. },
  1442. {
  1443. "__type__": "cc.Toggle",
  1444. "_name": "",
  1445. "_objFlags": 0,
  1446. "node": {
  1447. "__id__": 13
  1448. },
  1449. "_enabled": true,
  1450. "_normalMaterial": null,
  1451. "_grayMaterial": null,
  1452. "duration": 0.1,
  1453. "zoomScale": 1.2,
  1454. "clickEvents": [],
  1455. "_N$interactable": true,
  1456. "_N$enableAutoGrayEffect": false,
  1457. "_N$transition": 0,
  1458. "transition": 0,
  1459. "_N$normalColor": {
  1460. "__type__": "cc.Color",
  1461. "r": 255,
  1462. "g": 255,
  1463. "b": 255,
  1464. "a": 255
  1465. },
  1466. "_N$pressedColor": {
  1467. "__type__": "cc.Color",
  1468. "r": 211,
  1469. "g": 211,
  1470. "b": 211,
  1471. "a": 255
  1472. },
  1473. "pressedColor": {
  1474. "__type__": "cc.Color",
  1475. "r": 211,
  1476. "g": 211,
  1477. "b": 211,
  1478. "a": 255
  1479. },
  1480. "_N$hoverColor": {
  1481. "__type__": "cc.Color",
  1482. "r": 255,
  1483. "g": 255,
  1484. "b": 255,
  1485. "a": 255
  1486. },
  1487. "hoverColor": {
  1488. "__type__": "cc.Color",
  1489. "r": 255,
  1490. "g": 255,
  1491. "b": 255,
  1492. "a": 255
  1493. },
  1494. "_N$disabledColor": {
  1495. "__type__": "cc.Color",
  1496. "r": 124,
  1497. "g": 124,
  1498. "b": 124,
  1499. "a": 255
  1500. },
  1501. "_N$normalSprite": null,
  1502. "_N$pressedSprite": null,
  1503. "pressedSprite": null,
  1504. "_N$hoverSprite": null,
  1505. "hoverSprite": null,
  1506. "_N$disabledSprite": null,
  1507. "_N$target": {
  1508. "__id__": 28
  1509. },
  1510. "_N$isChecked": true,
  1511. "toggleGroup": null,
  1512. "checkMark": {
  1513. "__id__": 34
  1514. },
  1515. "checkEvents": [
  1516. {
  1517. "__id__": 40
  1518. }
  1519. ],
  1520. "_id": ""
  1521. },
  1522. {
  1523. "__type__": "cc.ClickEvent",
  1524. "target": {
  1525. "__id__": 1
  1526. },
  1527. "component": "",
  1528. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  1529. "handler": "onTypeClick",
  1530. "customEventData": "1"
  1531. },
  1532. {
  1533. "__type__": "cc.PrefabInfo",
  1534. "root": {
  1535. "__id__": 1
  1536. },
  1537. "asset": {
  1538. "__id__": 0
  1539. },
  1540. "fileId": "45QfGQj9lO6btUxrxIeNJW",
  1541. "sync": false
  1542. },
  1543. {
  1544. "__type__": "cc.Node",
  1545. "_name": "toggle2",
  1546. "_objFlags": 0,
  1547. "_parent": {
  1548. "__id__": 12
  1549. },
  1550. "_children": [
  1551. {
  1552. "__id__": 43
  1553. },
  1554. {
  1555. "__id__": 46
  1556. },
  1557. {
  1558. "__id__": 49
  1559. },
  1560. {
  1561. "__id__": 57
  1562. },
  1563. {
  1564. "__id__": 65
  1565. }
  1566. ],
  1567. "_active": true,
  1568. "_components": [
  1569. {
  1570. "__id__": 68
  1571. }
  1572. ],
  1573. "_prefab": {
  1574. "__id__": 70
  1575. },
  1576. "_opacity": 255,
  1577. "_color": {
  1578. "__type__": "cc.Color",
  1579. "r": 255,
  1580. "g": 255,
  1581. "b": 255,
  1582. "a": 255
  1583. },
  1584. "_contentSize": {
  1585. "__type__": "cc.Size",
  1586. "width": 240,
  1587. "height": 100
  1588. },
  1589. "_anchorPoint": {
  1590. "__type__": "cc.Vec2",
  1591. "x": 0.5,
  1592. "y": 0.5
  1593. },
  1594. "_trs": {
  1595. "__type__": "TypedArray",
  1596. "ctor": "Float64Array",
  1597. "array": [
  1598. 2,
  1599. -180,
  1600. 0,
  1601. 0,
  1602. 0,
  1603. 0,
  1604. 1,
  1605. 1,
  1606. 1,
  1607. 0
  1608. ]
  1609. },
  1610. "_eulerAngles": {
  1611. "__type__": "cc.Vec3",
  1612. "x": 0,
  1613. "y": 0,
  1614. "z": 0
  1615. },
  1616. "_skewX": 0,
  1617. "_skewY": 0,
  1618. "_is3DNode": false,
  1619. "_groupIndex": 0,
  1620. "groupIndex": 0,
  1621. "_id": ""
  1622. },
  1623. {
  1624. "__type__": "cc.Node",
  1625. "_name": "chain",
  1626. "_objFlags": 0,
  1627. "_parent": {
  1628. "__id__": 42
  1629. },
  1630. "_children": [],
  1631. "_active": true,
  1632. "_components": [
  1633. {
  1634. "__id__": 44
  1635. }
  1636. ],
  1637. "_prefab": {
  1638. "__id__": 45
  1639. },
  1640. "_opacity": 255,
  1641. "_color": {
  1642. "__type__": "cc.Color",
  1643. "r": 255,
  1644. "g": 255,
  1645. "b": 255,
  1646. "a": 255
  1647. },
  1648. "_contentSize": {
  1649. "__type__": "cc.Size",
  1650. "width": 20,
  1651. "height": 92
  1652. },
  1653. "_anchorPoint": {
  1654. "__type__": "cc.Vec2",
  1655. "x": 0.5,
  1656. "y": 0.5
  1657. },
  1658. "_trs": {
  1659. "__type__": "TypedArray",
  1660. "ctor": "Float64Array",
  1661. "array": [
  1662. -80,
  1663. 34,
  1664. 0,
  1665. 0,
  1666. 0,
  1667. 0,
  1668. 1,
  1669. 1,
  1670. 1,
  1671. 1
  1672. ]
  1673. },
  1674. "_eulerAngles": {
  1675. "__type__": "cc.Vec3",
  1676. "x": 0,
  1677. "y": 0,
  1678. "z": 0
  1679. },
  1680. "_skewX": 0,
  1681. "_skewY": 0,
  1682. "_is3DNode": false,
  1683. "_groupIndex": 0,
  1684. "groupIndex": 0,
  1685. "_id": ""
  1686. },
  1687. {
  1688. "__type__": "cc.Sprite",
  1689. "_name": "",
  1690. "_objFlags": 0,
  1691. "node": {
  1692. "__id__": 43
  1693. },
  1694. "_enabled": true,
  1695. "_materials": [
  1696. {
  1697. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1698. }
  1699. ],
  1700. "_srcBlendFactor": 770,
  1701. "_dstBlendFactor": 771,
  1702. "_spriteFrame": {
  1703. "__uuid__": "09201653-8f6b-4eb7-8be1-9df8f309c8fc"
  1704. },
  1705. "_type": 0,
  1706. "_sizeMode": 0,
  1707. "_fillType": 0,
  1708. "_fillCenter": {
  1709. "__type__": "cc.Vec2",
  1710. "x": 0,
  1711. "y": 0
  1712. },
  1713. "_fillStart": 0,
  1714. "_fillRange": 0,
  1715. "_isTrimmedMode": true,
  1716. "_atlas": null,
  1717. "_id": ""
  1718. },
  1719. {
  1720. "__type__": "cc.PrefabInfo",
  1721. "root": {
  1722. "__id__": 1
  1723. },
  1724. "asset": {
  1725. "__id__": 0
  1726. },
  1727. "fileId": "d1axxRKu9BzYDNa3XsG/8q",
  1728. "sync": false
  1729. },
  1730. {
  1731. "__type__": "cc.Node",
  1732. "_name": "chain",
  1733. "_objFlags": 0,
  1734. "_parent": {
  1735. "__id__": 42
  1736. },
  1737. "_children": [],
  1738. "_active": true,
  1739. "_components": [
  1740. {
  1741. "__id__": 47
  1742. }
  1743. ],
  1744. "_prefab": {
  1745. "__id__": 48
  1746. },
  1747. "_opacity": 255,
  1748. "_color": {
  1749. "__type__": "cc.Color",
  1750. "r": 255,
  1751. "g": 255,
  1752. "b": 255,
  1753. "a": 255
  1754. },
  1755. "_contentSize": {
  1756. "__type__": "cc.Size",
  1757. "width": 20,
  1758. "height": 92
  1759. },
  1760. "_anchorPoint": {
  1761. "__type__": "cc.Vec2",
  1762. "x": 0.5,
  1763. "y": 0.5
  1764. },
  1765. "_trs": {
  1766. "__type__": "TypedArray",
  1767. "ctor": "Float64Array",
  1768. "array": [
  1769. 68,
  1770. 34,
  1771. 0,
  1772. 0,
  1773. 0,
  1774. 0,
  1775. 1,
  1776. 1,
  1777. 1,
  1778. 1
  1779. ]
  1780. },
  1781. "_eulerAngles": {
  1782. "__type__": "cc.Vec3",
  1783. "x": 0,
  1784. "y": 0,
  1785. "z": 0
  1786. },
  1787. "_skewX": 0,
  1788. "_skewY": 0,
  1789. "_is3DNode": false,
  1790. "_groupIndex": 0,
  1791. "groupIndex": 0,
  1792. "_id": ""
  1793. },
  1794. {
  1795. "__type__": "cc.Sprite",
  1796. "_name": "",
  1797. "_objFlags": 0,
  1798. "node": {
  1799. "__id__": 46
  1800. },
  1801. "_enabled": true,
  1802. "_materials": [
  1803. {
  1804. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1805. }
  1806. ],
  1807. "_srcBlendFactor": 770,
  1808. "_dstBlendFactor": 771,
  1809. "_spriteFrame": {
  1810. "__uuid__": "09201653-8f6b-4eb7-8be1-9df8f309c8fc"
  1811. },
  1812. "_type": 0,
  1813. "_sizeMode": 0,
  1814. "_fillType": 0,
  1815. "_fillCenter": {
  1816. "__type__": "cc.Vec2",
  1817. "x": 0,
  1818. "y": 0
  1819. },
  1820. "_fillStart": 0,
  1821. "_fillRange": 0,
  1822. "_isTrimmedMode": true,
  1823. "_atlas": null,
  1824. "_id": ""
  1825. },
  1826. {
  1827. "__type__": "cc.PrefabInfo",
  1828. "root": {
  1829. "__id__": 1
  1830. },
  1831. "asset": {
  1832. "__id__": 0
  1833. },
  1834. "fileId": "c6hVE+4uRP9I9m2pxudVbr",
  1835. "sync": false
  1836. },
  1837. {
  1838. "__type__": "cc.Node",
  1839. "_name": "paging2",
  1840. "_objFlags": 0,
  1841. "_parent": {
  1842. "__id__": 42
  1843. },
  1844. "_children": [
  1845. {
  1846. "__id__": 50
  1847. }
  1848. ],
  1849. "_active": true,
  1850. "_components": [
  1851. {
  1852. "__id__": 55
  1853. }
  1854. ],
  1855. "_prefab": {
  1856. "__id__": 56
  1857. },
  1858. "_opacity": 255,
  1859. "_color": {
  1860. "__type__": "cc.Color",
  1861. "r": 255,
  1862. "g": 255,
  1863. "b": 255,
  1864. "a": 255
  1865. },
  1866. "_contentSize": {
  1867. "__type__": "cc.Size",
  1868. "width": 240,
  1869. "height": 100
  1870. },
  1871. "_anchorPoint": {
  1872. "__type__": "cc.Vec2",
  1873. "x": 0.5,
  1874. "y": 0.5
  1875. },
  1876. "_trs": {
  1877. "__type__": "TypedArray",
  1878. "ctor": "Float64Array",
  1879. "array": [
  1880. -3,
  1881. 0,
  1882. 0,
  1883. 0,
  1884. 0,
  1885. 0,
  1886. 1,
  1887. 1,
  1888. 1,
  1889. 0
  1890. ]
  1891. },
  1892. "_eulerAngles": {
  1893. "__type__": "cc.Vec3",
  1894. "x": 0,
  1895. "y": 0,
  1896. "z": 0
  1897. },
  1898. "_skewX": 0,
  1899. "_skewY": 0,
  1900. "_is3DNode": false,
  1901. "_groupIndex": 0,
  1902. "groupIndex": 0,
  1903. "_id": ""
  1904. },
  1905. {
  1906. "__type__": "cc.Node",
  1907. "_name": "label1",
  1908. "_objFlags": 0,
  1909. "_parent": {
  1910. "__id__": 49
  1911. },
  1912. "_children": [],
  1913. "_active": true,
  1914. "_components": [
  1915. {
  1916. "__id__": 51
  1917. },
  1918. {
  1919. "__id__": 52
  1920. },
  1921. {
  1922. "__id__": 53
  1923. }
  1924. ],
  1925. "_prefab": {
  1926. "__id__": 54
  1927. },
  1928. "_opacity": 255,
  1929. "_color": {
  1930. "__type__": "cc.Color",
  1931. "r": 255,
  1932. "g": 255,
  1933. "b": 255,
  1934. "a": 255
  1935. },
  1936. "_contentSize": {
  1937. "__type__": "cc.Size",
  1938. "width": 234.36,
  1939. "height": 51.36
  1940. },
  1941. "_anchorPoint": {
  1942. "__type__": "cc.Vec2",
  1943. "x": 0.5,
  1944. "y": 0.5
  1945. },
  1946. "_trs": {
  1947. "__type__": "TypedArray",
  1948. "ctor": "Float64Array",
  1949. "array": [
  1950. 0,
  1951. 0,
  1952. 0,
  1953. 0,
  1954. 0,
  1955. 0,
  1956. 1,
  1957. 1,
  1958. 1,
  1959. 1
  1960. ]
  1961. },
  1962. "_eulerAngles": {
  1963. "__type__": "cc.Vec3",
  1964. "x": 0,
  1965. "y": 0,
  1966. "z": 0
  1967. },
  1968. "_skewX": 0,
  1969. "_skewY": 0,
  1970. "_is3DNode": false,
  1971. "_groupIndex": 0,
  1972. "groupIndex": 0,
  1973. "_id": ""
  1974. },
  1975. {
  1976. "__type__": "cc.Label",
  1977. "_name": "",
  1978. "_objFlags": 0,
  1979. "node": {
  1980. "__id__": 50
  1981. },
  1982. "_enabled": true,
  1983. "_materials": [
  1984. {
  1985. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1986. }
  1987. ],
  1988. "_srcBlendFactor": 770,
  1989. "_dstBlendFactor": 771,
  1990. "_string": "Weekly Tasks",
  1991. "_N$string": "Weekly Tasks",
  1992. "_fontSize": 36,
  1993. "_lineHeight": 36,
  1994. "_enableWrapText": true,
  1995. "_N$file": {
  1996. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1997. },
  1998. "_isSystemFontUsed": false,
  1999. "_spacingX": 0,
  2000. "_batchAsBitmap": false,
  2001. "_styleFlags": 0,
  2002. "_underlineHeight": 0,
  2003. "_N$horizontalAlign": 1,
  2004. "_N$verticalAlign": 1,
  2005. "_N$fontFamily": "Arial",
  2006. "_N$overflow": 0,
  2007. "_N$cacheMode": 0,
  2008. "_id": ""
  2009. },
  2010. {
  2011. "__type__": "cc.LabelOutline",
  2012. "_name": "",
  2013. "_objFlags": 0,
  2014. "node": {
  2015. "__id__": 50
  2016. },
  2017. "_enabled": true,
  2018. "_color": {
  2019. "__type__": "cc.Color",
  2020. "r": 38,
  2021. "g": 17,
  2022. "b": 12,
  2023. "a": 255
  2024. },
  2025. "_width": 3,
  2026. "_id": ""
  2027. },
  2028. {
  2029. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2030. "_name": "",
  2031. "_objFlags": 0,
  2032. "node": {
  2033. "__id__": 50
  2034. },
  2035. "_enabled": true,
  2036. "_englishCase": 3,
  2037. "i18n_string": "t402",
  2038. "i18n_params": [],
  2039. "_addColon": false,
  2040. "_id": ""
  2041. },
  2042. {
  2043. "__type__": "cc.PrefabInfo",
  2044. "root": {
  2045. "__id__": 50
  2046. },
  2047. "asset": {
  2048. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  2049. },
  2050. "fileId": "82HDEtQhlNl4H1w7pKNErW",
  2051. "sync": false
  2052. },
  2053. {
  2054. "__type__": "cc.Sprite",
  2055. "_name": "",
  2056. "_objFlags": 0,
  2057. "node": {
  2058. "__id__": 49
  2059. },
  2060. "_enabled": true,
  2061. "_materials": [
  2062. {
  2063. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2064. }
  2065. ],
  2066. "_srcBlendFactor": 770,
  2067. "_dstBlendFactor": 771,
  2068. "_spriteFrame": {
  2069. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  2070. },
  2071. "_type": 0,
  2072. "_sizeMode": 0,
  2073. "_fillType": 0,
  2074. "_fillCenter": {
  2075. "__type__": "cc.Vec2",
  2076. "x": 0,
  2077. "y": 0
  2078. },
  2079. "_fillStart": 0,
  2080. "_fillRange": 0,
  2081. "_isTrimmedMode": true,
  2082. "_atlas": null,
  2083. "_id": ""
  2084. },
  2085. {
  2086. "__type__": "cc.PrefabInfo",
  2087. "root": {
  2088. "__id__": 1
  2089. },
  2090. "asset": {
  2091. "__id__": 0
  2092. },
  2093. "fileId": "4aSA45Vt5ODqIMSLCOXLd0",
  2094. "sync": false
  2095. },
  2096. {
  2097. "__type__": "cc.Node",
  2098. "_name": "paging1",
  2099. "_objFlags": 0,
  2100. "_parent": {
  2101. "__id__": 42
  2102. },
  2103. "_children": [
  2104. {
  2105. "__id__": 58
  2106. }
  2107. ],
  2108. "_active": false,
  2109. "_components": [
  2110. {
  2111. "__id__": 63
  2112. }
  2113. ],
  2114. "_prefab": {
  2115. "__id__": 64
  2116. },
  2117. "_opacity": 255,
  2118. "_color": {
  2119. "__type__": "cc.Color",
  2120. "r": 255,
  2121. "g": 255,
  2122. "b": 255,
  2123. "a": 255
  2124. },
  2125. "_contentSize": {
  2126. "__type__": "cc.Size",
  2127. "width": 240,
  2128. "height": 100
  2129. },
  2130. "_anchorPoint": {
  2131. "__type__": "cc.Vec2",
  2132. "x": 0.5,
  2133. "y": 0.5
  2134. },
  2135. "_trs": {
  2136. "__type__": "TypedArray",
  2137. "ctor": "Float64Array",
  2138. "array": [
  2139. -3,
  2140. 0,
  2141. 0,
  2142. 0,
  2143. 0,
  2144. 0,
  2145. 1,
  2146. 1,
  2147. 1,
  2148. 1
  2149. ]
  2150. },
  2151. "_eulerAngles": {
  2152. "__type__": "cc.Vec3",
  2153. "x": 0,
  2154. "y": 0,
  2155. "z": 0
  2156. },
  2157. "_skewX": 0,
  2158. "_skewY": 0,
  2159. "_is3DNode": false,
  2160. "_groupIndex": 0,
  2161. "groupIndex": 0,
  2162. "_id": ""
  2163. },
  2164. {
  2165. "__type__": "cc.Node",
  2166. "_name": "label2",
  2167. "_objFlags": 0,
  2168. "_parent": {
  2169. "__id__": 57
  2170. },
  2171. "_children": [],
  2172. "_active": true,
  2173. "_components": [
  2174. {
  2175. "__id__": 59
  2176. },
  2177. {
  2178. "__id__": 60
  2179. },
  2180. {
  2181. "__id__": 61
  2182. }
  2183. ],
  2184. "_prefab": {
  2185. "__id__": 62
  2186. },
  2187. "_opacity": 255,
  2188. "_color": {
  2189. "__type__": "cc.Color",
  2190. "r": 255,
  2191. "g": 239,
  2192. "b": 129,
  2193. "a": 255
  2194. },
  2195. "_contentSize": {
  2196. "__type__": "cc.Size",
  2197. "width": 210,
  2198. "height": 80
  2199. },
  2200. "_anchorPoint": {
  2201. "__type__": "cc.Vec2",
  2202. "x": 0.5,
  2203. "y": 0.5
  2204. },
  2205. "_trs": {
  2206. "__type__": "TypedArray",
  2207. "ctor": "Float64Array",
  2208. "array": [
  2209. 0,
  2210. 0,
  2211. 0,
  2212. 0,
  2213. 0,
  2214. 0,
  2215. 1,
  2216. 1,
  2217. 1,
  2218. 1
  2219. ]
  2220. },
  2221. "_eulerAngles": {
  2222. "__type__": "cc.Vec3",
  2223. "x": 0,
  2224. "y": 0,
  2225. "z": 0
  2226. },
  2227. "_skewX": 0,
  2228. "_skewY": 0,
  2229. "_is3DNode": false,
  2230. "_groupIndex": 0,
  2231. "groupIndex": 0,
  2232. "_id": ""
  2233. },
  2234. {
  2235. "__type__": "cc.Label",
  2236. "_name": "",
  2237. "_objFlags": 0,
  2238. "node": {
  2239. "__id__": 58
  2240. },
  2241. "_enabled": true,
  2242. "_materials": [
  2243. null
  2244. ],
  2245. "_srcBlendFactor": 770,
  2246. "_dstBlendFactor": 771,
  2247. "_string": "Weekly Tasks",
  2248. "_N$string": "Weekly Tasks",
  2249. "_fontSize": 36,
  2250. "_lineHeight": 36,
  2251. "_enableWrapText": true,
  2252. "_N$file": {
  2253. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2254. },
  2255. "_isSystemFontUsed": false,
  2256. "_spacingX": 0,
  2257. "_batchAsBitmap": false,
  2258. "_styleFlags": 0,
  2259. "_underlineHeight": 0,
  2260. "_N$horizontalAlign": 1,
  2261. "_N$verticalAlign": 1,
  2262. "_N$fontFamily": "Arial",
  2263. "_N$overflow": 0,
  2264. "_N$cacheMode": 0,
  2265. "_id": ""
  2266. },
  2267. {
  2268. "__type__": "cc.LabelOutline",
  2269. "_name": "",
  2270. "_objFlags": 0,
  2271. "node": {
  2272. "__id__": 58
  2273. },
  2274. "_enabled": true,
  2275. "_color": {
  2276. "__type__": "cc.Color",
  2277. "r": 38,
  2278. "g": 17,
  2279. "b": 12,
  2280. "a": 255
  2281. },
  2282. "_width": 3,
  2283. "_id": ""
  2284. },
  2285. {
  2286. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2287. "_name": "",
  2288. "_objFlags": 0,
  2289. "node": {
  2290. "__id__": 58
  2291. },
  2292. "_enabled": true,
  2293. "_englishCase": 3,
  2294. "i18n_string": "t402",
  2295. "i18n_params": [],
  2296. "_addColon": false,
  2297. "_id": ""
  2298. },
  2299. {
  2300. "__type__": "cc.PrefabInfo",
  2301. "root": {
  2302. "__id__": 58
  2303. },
  2304. "asset": {
  2305. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  2306. },
  2307. "fileId": "90ekJrH79ORql2gXG+dhzJ",
  2308. "sync": false
  2309. },
  2310. {
  2311. "__type__": "cc.Sprite",
  2312. "_name": "",
  2313. "_objFlags": 0,
  2314. "node": {
  2315. "__id__": 57
  2316. },
  2317. "_enabled": true,
  2318. "_materials": [
  2319. {
  2320. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2321. }
  2322. ],
  2323. "_srcBlendFactor": 770,
  2324. "_dstBlendFactor": 771,
  2325. "_spriteFrame": {
  2326. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  2327. },
  2328. "_type": 0,
  2329. "_sizeMode": 0,
  2330. "_fillType": 0,
  2331. "_fillCenter": {
  2332. "__type__": "cc.Vec2",
  2333. "x": 0,
  2334. "y": 0
  2335. },
  2336. "_fillStart": 0,
  2337. "_fillRange": 0,
  2338. "_isTrimmedMode": true,
  2339. "_atlas": null,
  2340. "_id": ""
  2341. },
  2342. {
  2343. "__type__": "cc.PrefabInfo",
  2344. "root": {
  2345. "__id__": 1
  2346. },
  2347. "asset": {
  2348. "__id__": 0
  2349. },
  2350. "fileId": "1brFjGCUBF1qtjk8MK7V1f",
  2351. "sync": false
  2352. },
  2353. {
  2354. "__type__": "cc.Node",
  2355. "_name": "red_dots",
  2356. "_objFlags": 0,
  2357. "_parent": {
  2358. "__id__": 42
  2359. },
  2360. "_children": [],
  2361. "_active": false,
  2362. "_components": [
  2363. {
  2364. "__id__": 66
  2365. }
  2366. ],
  2367. "_prefab": {
  2368. "__id__": 67
  2369. },
  2370. "_opacity": 255,
  2371. "_color": {
  2372. "__type__": "cc.Color",
  2373. "r": 255,
  2374. "g": 255,
  2375. "b": 255,
  2376. "a": 255
  2377. },
  2378. "_contentSize": {
  2379. "__type__": "cc.Size",
  2380. "width": 66,
  2381. "height": 66
  2382. },
  2383. "_anchorPoint": {
  2384. "__type__": "cc.Vec2",
  2385. "x": 0.5,
  2386. "y": 0.5
  2387. },
  2388. "_trs": {
  2389. "__type__": "TypedArray",
  2390. "ctor": "Float64Array",
  2391. "array": [
  2392. 109.011,
  2393. 36.807,
  2394. 0,
  2395. 0,
  2396. 0,
  2397. 0,
  2398. 1,
  2399. 0.6,
  2400. 0.6,
  2401. 1
  2402. ]
  2403. },
  2404. "_eulerAngles": {
  2405. "__type__": "cc.Vec3",
  2406. "x": 0,
  2407. "y": 0,
  2408. "z": 0
  2409. },
  2410. "_skewX": 0,
  2411. "_skewY": 0,
  2412. "_is3DNode": false,
  2413. "_groupIndex": 0,
  2414. "groupIndex": 0,
  2415. "_id": ""
  2416. },
  2417. {
  2418. "__type__": "cc.Sprite",
  2419. "_name": "",
  2420. "_objFlags": 0,
  2421. "node": {
  2422. "__id__": 65
  2423. },
  2424. "_enabled": true,
  2425. "_materials": [
  2426. {
  2427. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2428. }
  2429. ],
  2430. "_srcBlendFactor": 770,
  2431. "_dstBlendFactor": 771,
  2432. "_spriteFrame": {
  2433. "__uuid__": "2e0bba47-213b-4d41-9454-69b2b6261500"
  2434. },
  2435. "_type": 0,
  2436. "_sizeMode": 1,
  2437. "_fillType": 0,
  2438. "_fillCenter": {
  2439. "__type__": "cc.Vec2",
  2440. "x": 0,
  2441. "y": 0
  2442. },
  2443. "_fillStart": 0,
  2444. "_fillRange": 0,
  2445. "_isTrimmedMode": true,
  2446. "_atlas": null,
  2447. "_id": ""
  2448. },
  2449. {
  2450. "__type__": "cc.PrefabInfo",
  2451. "root": {
  2452. "__id__": 1
  2453. },
  2454. "asset": {
  2455. "__id__": 0
  2456. },
  2457. "fileId": "e22+NE0MxFMreJVNXCAIX8",
  2458. "sync": false
  2459. },
  2460. {
  2461. "__type__": "cc.Toggle",
  2462. "_name": "",
  2463. "_objFlags": 0,
  2464. "node": {
  2465. "__id__": 42
  2466. },
  2467. "_enabled": true,
  2468. "_normalMaterial": null,
  2469. "_grayMaterial": null,
  2470. "duration": 0.1,
  2471. "zoomScale": 1.2,
  2472. "clickEvents": [],
  2473. "_N$interactable": true,
  2474. "_N$enableAutoGrayEffect": false,
  2475. "_N$transition": 0,
  2476. "transition": 0,
  2477. "_N$normalColor": {
  2478. "__type__": "cc.Color",
  2479. "r": 255,
  2480. "g": 255,
  2481. "b": 255,
  2482. "a": 255
  2483. },
  2484. "_N$pressedColor": {
  2485. "__type__": "cc.Color",
  2486. "r": 211,
  2487. "g": 211,
  2488. "b": 211,
  2489. "a": 255
  2490. },
  2491. "pressedColor": {
  2492. "__type__": "cc.Color",
  2493. "r": 211,
  2494. "g": 211,
  2495. "b": 211,
  2496. "a": 255
  2497. },
  2498. "_N$hoverColor": {
  2499. "__type__": "cc.Color",
  2500. "r": 255,
  2501. "g": 255,
  2502. "b": 255,
  2503. "a": 255
  2504. },
  2505. "hoverColor": {
  2506. "__type__": "cc.Color",
  2507. "r": 255,
  2508. "g": 255,
  2509. "b": 255,
  2510. "a": 255
  2511. },
  2512. "_N$disabledColor": {
  2513. "__type__": "cc.Color",
  2514. "r": 124,
  2515. "g": 124,
  2516. "b": 124,
  2517. "a": 255
  2518. },
  2519. "_N$normalSprite": null,
  2520. "_N$pressedSprite": null,
  2521. "pressedSprite": null,
  2522. "_N$hoverSprite": null,
  2523. "hoverSprite": null,
  2524. "_N$disabledSprite": null,
  2525. "_N$target": {
  2526. "__id__": 57
  2527. },
  2528. "_N$isChecked": false,
  2529. "toggleGroup": null,
  2530. "checkMark": {
  2531. "__id__": 63
  2532. },
  2533. "checkEvents": [
  2534. {
  2535. "__id__": 69
  2536. }
  2537. ],
  2538. "_id": ""
  2539. },
  2540. {
  2541. "__type__": "cc.ClickEvent",
  2542. "target": {
  2543. "__id__": 1
  2544. },
  2545. "component": "",
  2546. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  2547. "handler": "onTypeClick",
  2548. "customEventData": "2"
  2549. },
  2550. {
  2551. "__type__": "cc.PrefabInfo",
  2552. "root": {
  2553. "__id__": 1
  2554. },
  2555. "asset": {
  2556. "__id__": 0
  2557. },
  2558. "fileId": "94OI9dCexNnIHT2hUoBj8o",
  2559. "sync": false
  2560. },
  2561. {
  2562. "__type__": "cc.Node",
  2563. "_name": "toggle3",
  2564. "_objFlags": 0,
  2565. "_parent": {
  2566. "__id__": 12
  2567. },
  2568. "_children": [
  2569. {
  2570. "__id__": 72
  2571. },
  2572. {
  2573. "__id__": 75
  2574. },
  2575. {
  2576. "__id__": 78
  2577. },
  2578. {
  2579. "__id__": 86
  2580. },
  2581. {
  2582. "__id__": 94
  2583. }
  2584. ],
  2585. "_active": true,
  2586. "_components": [
  2587. {
  2588. "__id__": 97
  2589. }
  2590. ],
  2591. "_prefab": {
  2592. "__id__": 99
  2593. },
  2594. "_opacity": 255,
  2595. "_color": {
  2596. "__type__": "cc.Color",
  2597. "r": 255,
  2598. "g": 255,
  2599. "b": 255,
  2600. "a": 255
  2601. },
  2602. "_contentSize": {
  2603. "__type__": "cc.Size",
  2604. "width": 240,
  2605. "height": 100
  2606. },
  2607. "_anchorPoint": {
  2608. "__type__": "cc.Vec2",
  2609. "x": 0.5,
  2610. "y": 0.5
  2611. },
  2612. "_trs": {
  2613. "__type__": "TypedArray",
  2614. "ctor": "Float64Array",
  2615. "array": [
  2616. 2.056,
  2617. -310,
  2618. 0,
  2619. 0,
  2620. 0,
  2621. 0,
  2622. 1,
  2623. 1,
  2624. 1,
  2625. 0
  2626. ]
  2627. },
  2628. "_eulerAngles": {
  2629. "__type__": "cc.Vec3",
  2630. "x": 0,
  2631. "y": 0,
  2632. "z": 0
  2633. },
  2634. "_skewX": 0,
  2635. "_skewY": 0,
  2636. "_is3DNode": false,
  2637. "_groupIndex": 0,
  2638. "groupIndex": 0,
  2639. "_id": ""
  2640. },
  2641. {
  2642. "__type__": "cc.Node",
  2643. "_name": "chain",
  2644. "_objFlags": 0,
  2645. "_parent": {
  2646. "__id__": 71
  2647. },
  2648. "_children": [],
  2649. "_active": true,
  2650. "_components": [
  2651. {
  2652. "__id__": 73
  2653. }
  2654. ],
  2655. "_prefab": {
  2656. "__id__": 74
  2657. },
  2658. "_opacity": 255,
  2659. "_color": {
  2660. "__type__": "cc.Color",
  2661. "r": 255,
  2662. "g": 255,
  2663. "b": 255,
  2664. "a": 255
  2665. },
  2666. "_contentSize": {
  2667. "__type__": "cc.Size",
  2668. "width": 20,
  2669. "height": 92
  2670. },
  2671. "_anchorPoint": {
  2672. "__type__": "cc.Vec2",
  2673. "x": 0.5,
  2674. "y": 0.5
  2675. },
  2676. "_trs": {
  2677. "__type__": "TypedArray",
  2678. "ctor": "Float64Array",
  2679. "array": [
  2680. -80,
  2681. 34,
  2682. 0,
  2683. 0,
  2684. 0,
  2685. 0,
  2686. 1,
  2687. 1,
  2688. 1,
  2689. 1
  2690. ]
  2691. },
  2692. "_eulerAngles": {
  2693. "__type__": "cc.Vec3",
  2694. "x": 0,
  2695. "y": 0,
  2696. "z": 0
  2697. },
  2698. "_skewX": 0,
  2699. "_skewY": 0,
  2700. "_is3DNode": false,
  2701. "_groupIndex": 0,
  2702. "groupIndex": 0,
  2703. "_id": ""
  2704. },
  2705. {
  2706. "__type__": "cc.Sprite",
  2707. "_name": "",
  2708. "_objFlags": 0,
  2709. "node": {
  2710. "__id__": 72
  2711. },
  2712. "_enabled": true,
  2713. "_materials": [
  2714. {
  2715. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2716. }
  2717. ],
  2718. "_srcBlendFactor": 770,
  2719. "_dstBlendFactor": 771,
  2720. "_spriteFrame": {
  2721. "__uuid__": "09201653-8f6b-4eb7-8be1-9df8f309c8fc"
  2722. },
  2723. "_type": 0,
  2724. "_sizeMode": 0,
  2725. "_fillType": 0,
  2726. "_fillCenter": {
  2727. "__type__": "cc.Vec2",
  2728. "x": 0,
  2729. "y": 0
  2730. },
  2731. "_fillStart": 0,
  2732. "_fillRange": 0,
  2733. "_isTrimmedMode": true,
  2734. "_atlas": null,
  2735. "_id": ""
  2736. },
  2737. {
  2738. "__type__": "cc.PrefabInfo",
  2739. "root": {
  2740. "__id__": 1
  2741. },
  2742. "asset": {
  2743. "__id__": 0
  2744. },
  2745. "fileId": "bdjm8SgyJG5o0+/k83WhaF",
  2746. "sync": false
  2747. },
  2748. {
  2749. "__type__": "cc.Node",
  2750. "_name": "chain",
  2751. "_objFlags": 0,
  2752. "_parent": {
  2753. "__id__": 71
  2754. },
  2755. "_children": [],
  2756. "_active": true,
  2757. "_components": [
  2758. {
  2759. "__id__": 76
  2760. }
  2761. ],
  2762. "_prefab": {
  2763. "__id__": 77
  2764. },
  2765. "_opacity": 255,
  2766. "_color": {
  2767. "__type__": "cc.Color",
  2768. "r": 255,
  2769. "g": 255,
  2770. "b": 255,
  2771. "a": 255
  2772. },
  2773. "_contentSize": {
  2774. "__type__": "cc.Size",
  2775. "width": 20,
  2776. "height": 92
  2777. },
  2778. "_anchorPoint": {
  2779. "__type__": "cc.Vec2",
  2780. "x": 0.5,
  2781. "y": 0.5
  2782. },
  2783. "_trs": {
  2784. "__type__": "TypedArray",
  2785. "ctor": "Float64Array",
  2786. "array": [
  2787. 68,
  2788. 34,
  2789. 0,
  2790. 0,
  2791. 0,
  2792. 0,
  2793. 1,
  2794. 1,
  2795. 1,
  2796. 1
  2797. ]
  2798. },
  2799. "_eulerAngles": {
  2800. "__type__": "cc.Vec3",
  2801. "x": 0,
  2802. "y": 0,
  2803. "z": 0
  2804. },
  2805. "_skewX": 0,
  2806. "_skewY": 0,
  2807. "_is3DNode": false,
  2808. "_groupIndex": 0,
  2809. "groupIndex": 0,
  2810. "_id": ""
  2811. },
  2812. {
  2813. "__type__": "cc.Sprite",
  2814. "_name": "",
  2815. "_objFlags": 0,
  2816. "node": {
  2817. "__id__": 75
  2818. },
  2819. "_enabled": true,
  2820. "_materials": [
  2821. {
  2822. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2823. }
  2824. ],
  2825. "_srcBlendFactor": 770,
  2826. "_dstBlendFactor": 771,
  2827. "_spriteFrame": {
  2828. "__uuid__": "09201653-8f6b-4eb7-8be1-9df8f309c8fc"
  2829. },
  2830. "_type": 0,
  2831. "_sizeMode": 0,
  2832. "_fillType": 0,
  2833. "_fillCenter": {
  2834. "__type__": "cc.Vec2",
  2835. "x": 0,
  2836. "y": 0
  2837. },
  2838. "_fillStart": 0,
  2839. "_fillRange": 0,
  2840. "_isTrimmedMode": true,
  2841. "_atlas": null,
  2842. "_id": ""
  2843. },
  2844. {
  2845. "__type__": "cc.PrefabInfo",
  2846. "root": {
  2847. "__id__": 1
  2848. },
  2849. "asset": {
  2850. "__id__": 0
  2851. },
  2852. "fileId": "32sbXcL3FH6oMeipk/aCZK",
  2853. "sync": false
  2854. },
  2855. {
  2856. "__type__": "cc.Node",
  2857. "_name": "paging2",
  2858. "_objFlags": 0,
  2859. "_parent": {
  2860. "__id__": 71
  2861. },
  2862. "_children": [
  2863. {
  2864. "__id__": 79
  2865. }
  2866. ],
  2867. "_active": true,
  2868. "_components": [
  2869. {
  2870. "__id__": 84
  2871. }
  2872. ],
  2873. "_prefab": {
  2874. "__id__": 85
  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": 240,
  2887. "height": 100
  2888. },
  2889. "_anchorPoint": {
  2890. "__type__": "cc.Vec2",
  2891. "x": 0.5,
  2892. "y": 0.5
  2893. },
  2894. "_trs": {
  2895. "__type__": "TypedArray",
  2896. "ctor": "Float64Array",
  2897. "array": [
  2898. -3,
  2899. 0,
  2900. 0,
  2901. 0,
  2902. 0,
  2903. 0,
  2904. 1,
  2905. 1,
  2906. 1,
  2907. 0
  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.Node",
  2925. "_name": "label1",
  2926. "_objFlags": 0,
  2927. "_parent": {
  2928. "__id__": 78
  2929. },
  2930. "_children": [],
  2931. "_active": true,
  2932. "_components": [
  2933. {
  2934. "__id__": 80
  2935. },
  2936. {
  2937. "__id__": 81
  2938. },
  2939. {
  2940. "__id__": 82
  2941. }
  2942. ],
  2943. "_prefab": {
  2944. "__id__": 83
  2945. },
  2946. "_opacity": 255,
  2947. "_color": {
  2948. "__type__": "cc.Color",
  2949. "r": 255,
  2950. "g": 255,
  2951. "b": 255,
  2952. "a": 255
  2953. },
  2954. "_contentSize": {
  2955. "__type__": "cc.Size",
  2956. "width": 212.03,
  2957. "height": 43.8
  2958. },
  2959. "_anchorPoint": {
  2960. "__type__": "cc.Vec2",
  2961. "x": 0.5,
  2962. "y": 0.5
  2963. },
  2964. "_trs": {
  2965. "__type__": "TypedArray",
  2966. "ctor": "Float64Array",
  2967. "array": [
  2968. 0,
  2969. 0,
  2970. 0,
  2971. 0,
  2972. 0,
  2973. 0,
  2974. 1,
  2975. 1,
  2976. 1,
  2977. 1
  2978. ]
  2979. },
  2980. "_eulerAngles": {
  2981. "__type__": "cc.Vec3",
  2982. "x": 0,
  2983. "y": 0,
  2984. "z": 0
  2985. },
  2986. "_skewX": 0,
  2987. "_skewY": 0,
  2988. "_is3DNode": false,
  2989. "_groupIndex": 0,
  2990. "groupIndex": 0,
  2991. "_id": ""
  2992. },
  2993. {
  2994. "__type__": "cc.Label",
  2995. "_name": "",
  2996. "_objFlags": 0,
  2997. "node": {
  2998. "__id__": 79
  2999. },
  3000. "_enabled": true,
  3001. "_materials": [
  3002. {
  3003. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3004. }
  3005. ],
  3006. "_srcBlendFactor": 770,
  3007. "_dstBlendFactor": 771,
  3008. "_string": "Achievement",
  3009. "_N$string": "Achievement",
  3010. "_fontSize": 36,
  3011. "_lineHeight": 30,
  3012. "_enableWrapText": true,
  3013. "_N$file": {
  3014. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3015. },
  3016. "_isSystemFontUsed": false,
  3017. "_spacingX": 0,
  3018. "_batchAsBitmap": false,
  3019. "_styleFlags": 0,
  3020. "_underlineHeight": 0,
  3021. "_N$horizontalAlign": 1,
  3022. "_N$verticalAlign": 1,
  3023. "_N$fontFamily": "Arial",
  3024. "_N$overflow": 0,
  3025. "_N$cacheMode": 0,
  3026. "_id": ""
  3027. },
  3028. {
  3029. "__type__": "cc.LabelOutline",
  3030. "_name": "",
  3031. "_objFlags": 0,
  3032. "node": {
  3033. "__id__": 79
  3034. },
  3035. "_enabled": true,
  3036. "_color": {
  3037. "__type__": "cc.Color",
  3038. "r": 38,
  3039. "g": 17,
  3040. "b": 12,
  3041. "a": 255
  3042. },
  3043. "_width": 3,
  3044. "_id": ""
  3045. },
  3046. {
  3047. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3048. "_name": "",
  3049. "_objFlags": 0,
  3050. "node": {
  3051. "__id__": 79
  3052. },
  3053. "_enabled": true,
  3054. "_englishCase": 3,
  3055. "i18n_string": "t403",
  3056. "i18n_params": [],
  3057. "_addColon": false,
  3058. "_id": ""
  3059. },
  3060. {
  3061. "__type__": "cc.PrefabInfo",
  3062. "root": {
  3063. "__id__": 79
  3064. },
  3065. "asset": {
  3066. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  3067. },
  3068. "fileId": "82HDEtQhlNl4H1w7pKNErW",
  3069. "sync": false
  3070. },
  3071. {
  3072. "__type__": "cc.Sprite",
  3073. "_name": "",
  3074. "_objFlags": 0,
  3075. "node": {
  3076. "__id__": 78
  3077. },
  3078. "_enabled": true,
  3079. "_materials": [
  3080. {
  3081. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3082. }
  3083. ],
  3084. "_srcBlendFactor": 770,
  3085. "_dstBlendFactor": 771,
  3086. "_spriteFrame": {
  3087. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  3088. },
  3089. "_type": 0,
  3090. "_sizeMode": 0,
  3091. "_fillType": 0,
  3092. "_fillCenter": {
  3093. "__type__": "cc.Vec2",
  3094. "x": 0,
  3095. "y": 0
  3096. },
  3097. "_fillStart": 0,
  3098. "_fillRange": 0,
  3099. "_isTrimmedMode": true,
  3100. "_atlas": null,
  3101. "_id": ""
  3102. },
  3103. {
  3104. "__type__": "cc.PrefabInfo",
  3105. "root": {
  3106. "__id__": 1
  3107. },
  3108. "asset": {
  3109. "__id__": 0
  3110. },
  3111. "fileId": "70E9hqxMJJ8qzYsb1NeYl+",
  3112. "sync": false
  3113. },
  3114. {
  3115. "__type__": "cc.Node",
  3116. "_name": "paging1",
  3117. "_objFlags": 0,
  3118. "_parent": {
  3119. "__id__": 71
  3120. },
  3121. "_children": [
  3122. {
  3123. "__id__": 87
  3124. }
  3125. ],
  3126. "_active": false,
  3127. "_components": [
  3128. {
  3129. "__id__": 92
  3130. }
  3131. ],
  3132. "_prefab": {
  3133. "__id__": 93
  3134. },
  3135. "_opacity": 255,
  3136. "_color": {
  3137. "__type__": "cc.Color",
  3138. "r": 255,
  3139. "g": 255,
  3140. "b": 255,
  3141. "a": 255
  3142. },
  3143. "_contentSize": {
  3144. "__type__": "cc.Size",
  3145. "width": 240,
  3146. "height": 100
  3147. },
  3148. "_anchorPoint": {
  3149. "__type__": "cc.Vec2",
  3150. "x": 0.5,
  3151. "y": 0.5
  3152. },
  3153. "_trs": {
  3154. "__type__": "TypedArray",
  3155. "ctor": "Float64Array",
  3156. "array": [
  3157. -3,
  3158. 0,
  3159. 0,
  3160. 0,
  3161. 0,
  3162. 0,
  3163. 1,
  3164. 1,
  3165. 1,
  3166. 1
  3167. ]
  3168. },
  3169. "_eulerAngles": {
  3170. "__type__": "cc.Vec3",
  3171. "x": 0,
  3172. "y": 0,
  3173. "z": 0
  3174. },
  3175. "_skewX": 0,
  3176. "_skewY": 0,
  3177. "_is3DNode": false,
  3178. "_groupIndex": 0,
  3179. "groupIndex": 0,
  3180. "_id": ""
  3181. },
  3182. {
  3183. "__type__": "cc.Node",
  3184. "_name": "label2",
  3185. "_objFlags": 0,
  3186. "_parent": {
  3187. "__id__": 86
  3188. },
  3189. "_children": [],
  3190. "_active": true,
  3191. "_components": [
  3192. {
  3193. "__id__": 88
  3194. },
  3195. {
  3196. "__id__": 89
  3197. },
  3198. {
  3199. "__id__": 90
  3200. }
  3201. ],
  3202. "_prefab": {
  3203. "__id__": 91
  3204. },
  3205. "_opacity": 255,
  3206. "_color": {
  3207. "__type__": "cc.Color",
  3208. "r": 255,
  3209. "g": 239,
  3210. "b": 129,
  3211. "a": 255
  3212. },
  3213. "_contentSize": {
  3214. "__type__": "cc.Size",
  3215. "width": 264.96,
  3216. "height": 36
  3217. },
  3218. "_anchorPoint": {
  3219. "__type__": "cc.Vec2",
  3220. "x": 0.5,
  3221. "y": 0.5
  3222. },
  3223. "_trs": {
  3224. "__type__": "TypedArray",
  3225. "ctor": "Float64Array",
  3226. "array": [
  3227. 0,
  3228. 0,
  3229. 0,
  3230. 0,
  3231. 0,
  3232. 0,
  3233. 1,
  3234. 1,
  3235. 1,
  3236. 1
  3237. ]
  3238. },
  3239. "_eulerAngles": {
  3240. "__type__": "cc.Vec3",
  3241. "x": 0,
  3242. "y": 0,
  3243. "z": 0
  3244. },
  3245. "_skewX": 0,
  3246. "_skewY": 0,
  3247. "_is3DNode": false,
  3248. "_groupIndex": 0,
  3249. "groupIndex": 0,
  3250. "_id": ""
  3251. },
  3252. {
  3253. "__type__": "cc.Label",
  3254. "_name": "",
  3255. "_objFlags": 0,
  3256. "node": {
  3257. "__id__": 87
  3258. },
  3259. "_enabled": true,
  3260. "_materials": [
  3261. null
  3262. ],
  3263. "_srcBlendFactor": 770,
  3264. "_dstBlendFactor": 771,
  3265. "_string": "Achievement",
  3266. "_N$string": "Achievement",
  3267. "_fontSize": 36,
  3268. "_lineHeight": 30,
  3269. "_enableWrapText": true,
  3270. "_N$file": {
  3271. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3272. },
  3273. "_isSystemFontUsed": false,
  3274. "_spacingX": 0,
  3275. "_batchAsBitmap": false,
  3276. "_styleFlags": 0,
  3277. "_underlineHeight": 0,
  3278. "_N$horizontalAlign": 1,
  3279. "_N$verticalAlign": 1,
  3280. "_N$fontFamily": "Arial",
  3281. "_N$overflow": 0,
  3282. "_N$cacheMode": 0,
  3283. "_id": ""
  3284. },
  3285. {
  3286. "__type__": "cc.LabelOutline",
  3287. "_name": "",
  3288. "_objFlags": 0,
  3289. "node": {
  3290. "__id__": 87
  3291. },
  3292. "_enabled": true,
  3293. "_color": {
  3294. "__type__": "cc.Color",
  3295. "r": 38,
  3296. "g": 17,
  3297. "b": 12,
  3298. "a": 255
  3299. },
  3300. "_width": 3,
  3301. "_id": ""
  3302. },
  3303. {
  3304. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3305. "_name": "",
  3306. "_objFlags": 0,
  3307. "node": {
  3308. "__id__": 87
  3309. },
  3310. "_enabled": true,
  3311. "_englishCase": 3,
  3312. "i18n_string": "t403",
  3313. "i18n_params": [],
  3314. "_addColon": false,
  3315. "_id": ""
  3316. },
  3317. {
  3318. "__type__": "cc.PrefabInfo",
  3319. "root": {
  3320. "__id__": 87
  3321. },
  3322. "asset": {
  3323. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  3324. },
  3325. "fileId": "90ekJrH79ORql2gXG+dhzJ",
  3326. "sync": false
  3327. },
  3328. {
  3329. "__type__": "cc.Sprite",
  3330. "_name": "",
  3331. "_objFlags": 0,
  3332. "node": {
  3333. "__id__": 86
  3334. },
  3335. "_enabled": true,
  3336. "_materials": [
  3337. {
  3338. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3339. }
  3340. ],
  3341. "_srcBlendFactor": 770,
  3342. "_dstBlendFactor": 771,
  3343. "_spriteFrame": {
  3344. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  3345. },
  3346. "_type": 0,
  3347. "_sizeMode": 0,
  3348. "_fillType": 0,
  3349. "_fillCenter": {
  3350. "__type__": "cc.Vec2",
  3351. "x": 0,
  3352. "y": 0
  3353. },
  3354. "_fillStart": 0,
  3355. "_fillRange": 0,
  3356. "_isTrimmedMode": true,
  3357. "_atlas": null,
  3358. "_id": ""
  3359. },
  3360. {
  3361. "__type__": "cc.PrefabInfo",
  3362. "root": {
  3363. "__id__": 1
  3364. },
  3365. "asset": {
  3366. "__id__": 0
  3367. },
  3368. "fileId": "6eOLMHYLlC7pl4gSRz8Pmp",
  3369. "sync": false
  3370. },
  3371. {
  3372. "__type__": "cc.Node",
  3373. "_name": "red_dots",
  3374. "_objFlags": 0,
  3375. "_parent": {
  3376. "__id__": 71
  3377. },
  3378. "_children": [],
  3379. "_active": false,
  3380. "_components": [
  3381. {
  3382. "__id__": 95
  3383. }
  3384. ],
  3385. "_prefab": {
  3386. "__id__": 96
  3387. },
  3388. "_opacity": 255,
  3389. "_color": {
  3390. "__type__": "cc.Color",
  3391. "r": 255,
  3392. "g": 255,
  3393. "b": 255,
  3394. "a": 255
  3395. },
  3396. "_contentSize": {
  3397. "__type__": "cc.Size",
  3398. "width": 66,
  3399. "height": 66
  3400. },
  3401. "_anchorPoint": {
  3402. "__type__": "cc.Vec2",
  3403. "x": 0.5,
  3404. "y": 0.5
  3405. },
  3406. "_trs": {
  3407. "__type__": "TypedArray",
  3408. "ctor": "Float64Array",
  3409. "array": [
  3410. 109.011,
  3411. 36.807,
  3412. 0,
  3413. 0,
  3414. 0,
  3415. 0,
  3416. 1,
  3417. 0.6,
  3418. 0.6,
  3419. 1
  3420. ]
  3421. },
  3422. "_eulerAngles": {
  3423. "__type__": "cc.Vec3",
  3424. "x": 0,
  3425. "y": 0,
  3426. "z": 0
  3427. },
  3428. "_skewX": 0,
  3429. "_skewY": 0,
  3430. "_is3DNode": false,
  3431. "_groupIndex": 0,
  3432. "groupIndex": 0,
  3433. "_id": ""
  3434. },
  3435. {
  3436. "__type__": "cc.Sprite",
  3437. "_name": "",
  3438. "_objFlags": 0,
  3439. "node": {
  3440. "__id__": 94
  3441. },
  3442. "_enabled": true,
  3443. "_materials": [
  3444. {
  3445. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3446. }
  3447. ],
  3448. "_srcBlendFactor": 770,
  3449. "_dstBlendFactor": 771,
  3450. "_spriteFrame": {
  3451. "__uuid__": "2e0bba47-213b-4d41-9454-69b2b6261500"
  3452. },
  3453. "_type": 0,
  3454. "_sizeMode": 1,
  3455. "_fillType": 0,
  3456. "_fillCenter": {
  3457. "__type__": "cc.Vec2",
  3458. "x": 0,
  3459. "y": 0
  3460. },
  3461. "_fillStart": 0,
  3462. "_fillRange": 0,
  3463. "_isTrimmedMode": true,
  3464. "_atlas": null,
  3465. "_id": ""
  3466. },
  3467. {
  3468. "__type__": "cc.PrefabInfo",
  3469. "root": {
  3470. "__id__": 1
  3471. },
  3472. "asset": {
  3473. "__id__": 0
  3474. },
  3475. "fileId": "61nb3Un+xOF4FIU2fJdUf4",
  3476. "sync": false
  3477. },
  3478. {
  3479. "__type__": "cc.Toggle",
  3480. "_name": "",
  3481. "_objFlags": 0,
  3482. "node": {
  3483. "__id__": 71
  3484. },
  3485. "_enabled": true,
  3486. "_normalMaterial": null,
  3487. "_grayMaterial": null,
  3488. "duration": 0.1,
  3489. "zoomScale": 1.2,
  3490. "clickEvents": [],
  3491. "_N$interactable": true,
  3492. "_N$enableAutoGrayEffect": false,
  3493. "_N$transition": 0,
  3494. "transition": 0,
  3495. "_N$normalColor": {
  3496. "__type__": "cc.Color",
  3497. "r": 255,
  3498. "g": 255,
  3499. "b": 255,
  3500. "a": 255
  3501. },
  3502. "_N$pressedColor": {
  3503. "__type__": "cc.Color",
  3504. "r": 211,
  3505. "g": 211,
  3506. "b": 211,
  3507. "a": 255
  3508. },
  3509. "pressedColor": {
  3510. "__type__": "cc.Color",
  3511. "r": 211,
  3512. "g": 211,
  3513. "b": 211,
  3514. "a": 255
  3515. },
  3516. "_N$hoverColor": {
  3517. "__type__": "cc.Color",
  3518. "r": 255,
  3519. "g": 255,
  3520. "b": 255,
  3521. "a": 255
  3522. },
  3523. "hoverColor": {
  3524. "__type__": "cc.Color",
  3525. "r": 255,
  3526. "g": 255,
  3527. "b": 255,
  3528. "a": 255
  3529. },
  3530. "_N$disabledColor": {
  3531. "__type__": "cc.Color",
  3532. "r": 124,
  3533. "g": 124,
  3534. "b": 124,
  3535. "a": 255
  3536. },
  3537. "_N$normalSprite": null,
  3538. "_N$pressedSprite": null,
  3539. "pressedSprite": null,
  3540. "_N$hoverSprite": null,
  3541. "hoverSprite": null,
  3542. "_N$disabledSprite": null,
  3543. "_N$target": {
  3544. "__id__": 86
  3545. },
  3546. "_N$isChecked": false,
  3547. "toggleGroup": null,
  3548. "checkMark": {
  3549. "__id__": 92
  3550. },
  3551. "checkEvents": [
  3552. {
  3553. "__id__": 98
  3554. }
  3555. ],
  3556. "_id": ""
  3557. },
  3558. {
  3559. "__type__": "cc.ClickEvent",
  3560. "target": {
  3561. "__id__": 1
  3562. },
  3563. "component": "",
  3564. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  3565. "handler": "onTypeClick",
  3566. "customEventData": "3"
  3567. },
  3568. {
  3569. "__type__": "cc.PrefabInfo",
  3570. "root": {
  3571. "__id__": 1
  3572. },
  3573. "asset": {
  3574. "__id__": 0
  3575. },
  3576. "fileId": "6aECScx/5PtZicA0i1v568",
  3577. "sync": false
  3578. },
  3579. {
  3580. "__type__": "cc.Layout",
  3581. "_name": "",
  3582. "_objFlags": 0,
  3583. "node": {
  3584. "__id__": 12
  3585. },
  3586. "_enabled": true,
  3587. "_layoutSize": {
  3588. "__type__": "cc.Size",
  3589. "width": 300,
  3590. "height": 360
  3591. },
  3592. "_resize": 1,
  3593. "_N$layoutType": 2,
  3594. "_N$cellSize": {
  3595. "__type__": "cc.Size",
  3596. "width": 40,
  3597. "height": 40
  3598. },
  3599. "_N$startAxis": 0,
  3600. "_N$paddingLeft": 0,
  3601. "_N$paddingRight": 0,
  3602. "_N$paddingTop": 0,
  3603. "_N$paddingBottom": 0,
  3604. "_N$spacingX": 0,
  3605. "_N$spacingY": 30,
  3606. "_N$verticalDirection": 1,
  3607. "_N$horizontalDirection": 0,
  3608. "_N$affectedByScale": false,
  3609. "_id": ""
  3610. },
  3611. {
  3612. "__type__": "cc.ToggleContainer",
  3613. "_name": "",
  3614. "_objFlags": 0,
  3615. "node": {
  3616. "__id__": 12
  3617. },
  3618. "_enabled": true,
  3619. "allowSwitchOff": false,
  3620. "checkEvents": [],
  3621. "_id": ""
  3622. },
  3623. {
  3624. "__type__": "cc.PrefabInfo",
  3625. "root": {
  3626. "__id__": 1
  3627. },
  3628. "asset": {
  3629. "__id__": 0
  3630. },
  3631. "fileId": "d0YJURO8hCV4gBxhQCksU2",
  3632. "sync": false
  3633. },
  3634. {
  3635. "__type__": "cc.Node",
  3636. "_name": "return",
  3637. "_objFlags": 0,
  3638. "_parent": {
  3639. "__id__": 1
  3640. },
  3641. "_children": [],
  3642. "_active": true,
  3643. "_components": [
  3644. {
  3645. "__id__": 104
  3646. },
  3647. {
  3648. "__id__": 105
  3649. },
  3650. {
  3651. "__id__": 106
  3652. }
  3653. ],
  3654. "_prefab": {
  3655. "__id__": 108
  3656. },
  3657. "_opacity": 255,
  3658. "_color": {
  3659. "__type__": "cc.Color",
  3660. "r": 255,
  3661. "g": 255,
  3662. "b": 255,
  3663. "a": 255
  3664. },
  3665. "_contentSize": {
  3666. "__type__": "cc.Size",
  3667. "width": 105,
  3668. "height": 105
  3669. },
  3670. "_anchorPoint": {
  3671. "__type__": "cc.Vec2",
  3672. "x": 0.5,
  3673. "y": 0.5
  3674. },
  3675. "_trs": {
  3676. "__type__": "TypedArray",
  3677. "ctor": "Float64Array",
  3678. "array": [
  3679. -900,
  3680. 480,
  3681. 0,
  3682. 0,
  3683. 0,
  3684. 0,
  3685. 1,
  3686. 1,
  3687. 1,
  3688. 0
  3689. ]
  3690. },
  3691. "_eulerAngles": {
  3692. "__type__": "cc.Vec3",
  3693. "x": 0,
  3694. "y": 0,
  3695. "z": 0
  3696. },
  3697. "_skewX": 0,
  3698. "_skewY": 0,
  3699. "_is3DNode": false,
  3700. "_groupIndex": 0,
  3701. "groupIndex": 0,
  3702. "_id": ""
  3703. },
  3704. {
  3705. "__type__": "cc.Sprite",
  3706. "_name": "",
  3707. "_objFlags": 0,
  3708. "node": {
  3709. "__id__": 103
  3710. },
  3711. "_enabled": true,
  3712. "_materials": [
  3713. {
  3714. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3715. }
  3716. ],
  3717. "_srcBlendFactor": 770,
  3718. "_dstBlendFactor": 771,
  3719. "_spriteFrame": {
  3720. "__uuid__": "aad0ef4a-c231-4830-bea5-9b59c21d6548"
  3721. },
  3722. "_type": 0,
  3723. "_sizeMode": 0,
  3724. "_fillType": 0,
  3725. "_fillCenter": {
  3726. "__type__": "cc.Vec2",
  3727. "x": 0,
  3728. "y": 0
  3729. },
  3730. "_fillStart": 0,
  3731. "_fillRange": 0,
  3732. "_isTrimmedMode": true,
  3733. "_atlas": null,
  3734. "_id": ""
  3735. },
  3736. {
  3737. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  3738. "_name": "",
  3739. "_objFlags": 0,
  3740. "node": {
  3741. "__id__": 103
  3742. },
  3743. "_enabled": true,
  3744. "openContinuous": true,
  3745. "continuousTime": 0.2,
  3746. "multiTouch": false,
  3747. "_id": ""
  3748. },
  3749. {
  3750. "__type__": "61994AafntNFIbmt1zoyLq+",
  3751. "_name": "",
  3752. "_objFlags": 0,
  3753. "node": {
  3754. "__id__": 103
  3755. },
  3756. "_enabled": true,
  3757. "_normalMaterial": null,
  3758. "_grayMaterial": null,
  3759. "duration": 0.1,
  3760. "zoomScale": 1.1,
  3761. "clickEvents": [
  3762. {
  3763. "__id__": 107
  3764. }
  3765. ],
  3766. "_N$interactable": true,
  3767. "_N$enableAutoGrayEffect": false,
  3768. "_N$transition": 3,
  3769. "transition": 3,
  3770. "_N$normalColor": {
  3771. "__type__": "cc.Color",
  3772. "r": 255,
  3773. "g": 255,
  3774. "b": 255,
  3775. "a": 255
  3776. },
  3777. "_N$pressedColor": {
  3778. "__type__": "cc.Color",
  3779. "r": 211,
  3780. "g": 211,
  3781. "b": 211,
  3782. "a": 255
  3783. },
  3784. "pressedColor": {
  3785. "__type__": "cc.Color",
  3786. "r": 211,
  3787. "g": 211,
  3788. "b": 211,
  3789. "a": 255
  3790. },
  3791. "_N$hoverColor": {
  3792. "__type__": "cc.Color",
  3793. "r": 255,
  3794. "g": 255,
  3795. "b": 255,
  3796. "a": 255
  3797. },
  3798. "hoverColor": {
  3799. "__type__": "cc.Color",
  3800. "r": 255,
  3801. "g": 255,
  3802. "b": 255,
  3803. "a": 255
  3804. },
  3805. "_N$disabledColor": {
  3806. "__type__": "cc.Color",
  3807. "r": 124,
  3808. "g": 124,
  3809. "b": 124,
  3810. "a": 255
  3811. },
  3812. "_N$normalSprite": null,
  3813. "_N$pressedSprite": null,
  3814. "pressedSprite": null,
  3815. "_N$hoverSprite": null,
  3816. "hoverSprite": null,
  3817. "_N$disabledSprite": null,
  3818. "_N$target": null,
  3819. "_id": ""
  3820. },
  3821. {
  3822. "__type__": "cc.ClickEvent",
  3823. "target": {
  3824. "__id__": 1
  3825. },
  3826. "component": "",
  3827. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  3828. "handler": "hide",
  3829. "customEventData": ""
  3830. },
  3831. {
  3832. "__type__": "cc.PrefabInfo",
  3833. "root": {
  3834. "__id__": 1
  3835. },
  3836. "asset": {
  3837. "__id__": 0
  3838. },
  3839. "fileId": "77oKtVgENNjZajqiRqsrgt",
  3840. "sync": false
  3841. },
  3842. {
  3843. "__type__": "cc.Node",
  3844. "_name": "return_label",
  3845. "_objFlags": 0,
  3846. "_parent": {
  3847. "__id__": 1
  3848. },
  3849. "_children": [],
  3850. "_active": true,
  3851. "_components": [
  3852. {
  3853. "__id__": 110
  3854. },
  3855. {
  3856. "__id__": 111
  3857. },
  3858. {
  3859. "__id__": 112
  3860. }
  3861. ],
  3862. "_prefab": {
  3863. "__id__": 113
  3864. },
  3865. "_opacity": 255,
  3866. "_color": {
  3867. "__type__": "cc.Color",
  3868. "r": 255,
  3869. "g": 255,
  3870. "b": 255,
  3871. "a": 255
  3872. },
  3873. "_contentSize": {
  3874. "__type__": "cc.Size",
  3875. "width": 133.13,
  3876. "height": 56.4
  3877. },
  3878. "_anchorPoint": {
  3879. "__type__": "cc.Vec2",
  3880. "x": 0,
  3881. "y": 0.5
  3882. },
  3883. "_trs": {
  3884. "__type__": "TypedArray",
  3885. "ctor": "Float64Array",
  3886. "array": [
  3887. -840,
  3888. 480,
  3889. 0,
  3890. 0,
  3891. 0,
  3892. 0,
  3893. 1,
  3894. 1,
  3895. 1,
  3896. 1
  3897. ]
  3898. },
  3899. "_eulerAngles": {
  3900. "__type__": "cc.Vec3",
  3901. "x": 0,
  3902. "y": 0,
  3903. "z": 0
  3904. },
  3905. "_skewX": 0,
  3906. "_skewY": 0,
  3907. "_is3DNode": false,
  3908. "_groupIndex": 0,
  3909. "groupIndex": 0,
  3910. "_id": ""
  3911. },
  3912. {
  3913. "__type__": "cc.Label",
  3914. "_name": "",
  3915. "_objFlags": 0,
  3916. "node": {
  3917. "__id__": 109
  3918. },
  3919. "_enabled": true,
  3920. "_materials": [
  3921. {
  3922. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3923. }
  3924. ],
  3925. "_srcBlendFactor": 770,
  3926. "_dstBlendFactor": 771,
  3927. "_string": "TASK",
  3928. "_N$string": "TASK",
  3929. "_fontSize": 48,
  3930. "_lineHeight": 40,
  3931. "_enableWrapText": true,
  3932. "_N$file": {
  3933. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3934. },
  3935. "_isSystemFontUsed": false,
  3936. "_spacingX": 0,
  3937. "_batchAsBitmap": false,
  3938. "_styleFlags": 0,
  3939. "_underlineHeight": 0,
  3940. "_N$horizontalAlign": 1,
  3941. "_N$verticalAlign": 1,
  3942. "_N$fontFamily": "Arial",
  3943. "_N$overflow": 0,
  3944. "_N$cacheMode": 0,
  3945. "_id": ""
  3946. },
  3947. {
  3948. "__type__": "cc.LabelOutline",
  3949. "_name": "",
  3950. "_objFlags": 0,
  3951. "node": {
  3952. "__id__": 109
  3953. },
  3954. "_enabled": true,
  3955. "_color": {
  3956. "__type__": "cc.Color",
  3957. "r": 38,
  3958. "g": 17,
  3959. "b": 12,
  3960. "a": 255
  3961. },
  3962. "_width": 3,
  3963. "_id": ""
  3964. },
  3965. {
  3966. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3967. "_name": "",
  3968. "_objFlags": 0,
  3969. "node": {
  3970. "__id__": 109
  3971. },
  3972. "_enabled": true,
  3973. "_englishCase": 2,
  3974. "i18n_string": "t2",
  3975. "i18n_params": [],
  3976. "_addColon": false,
  3977. "_id": ""
  3978. },
  3979. {
  3980. "__type__": "cc.PrefabInfo",
  3981. "root": {
  3982. "__id__": 109
  3983. },
  3984. "asset": {
  3985. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  3986. },
  3987. "fileId": "df6trvPE5AA6SdatzXXnbB",
  3988. "sync": false
  3989. },
  3990. {
  3991. "__type__": "cc.Node",
  3992. "_name": "task_list",
  3993. "_objFlags": 0,
  3994. "_parent": {
  3995. "__id__": 1
  3996. },
  3997. "_children": [
  3998. {
  3999. "__id__": 115
  4000. }
  4001. ],
  4002. "_active": true,
  4003. "_components": [
  4004. {
  4005. "__id__": 193
  4006. },
  4007. {
  4008. "__id__": 194
  4009. },
  4010. {
  4011. "__id__": 195
  4012. }
  4013. ],
  4014. "_prefab": {
  4015. "__id__": 198
  4016. },
  4017. "_opacity": 255,
  4018. "_color": {
  4019. "__type__": "cc.Color",
  4020. "r": 255,
  4021. "g": 255,
  4022. "b": 255,
  4023. "a": 255
  4024. },
  4025. "_contentSize": {
  4026. "__type__": "cc.Size",
  4027. "width": 1556,
  4028. "height": 650
  4029. },
  4030. "_anchorPoint": {
  4031. "__type__": "cc.Vec2",
  4032. "x": 0.5,
  4033. "y": 0.5
  4034. },
  4035. "_trs": {
  4036. "__type__": "TypedArray",
  4037. "ctor": "Float64Array",
  4038. "array": [
  4039. 137,
  4040. -162,
  4041. 0,
  4042. 0,
  4043. 0,
  4044. 0,
  4045. 1,
  4046. 1,
  4047. 1,
  4048. 1
  4049. ]
  4050. },
  4051. "_eulerAngles": {
  4052. "__type__": "cc.Vec3",
  4053. "x": 0,
  4054. "y": 0,
  4055. "z": 0
  4056. },
  4057. "_skewX": 0,
  4058. "_skewY": 0,
  4059. "_is3DNode": false,
  4060. "_groupIndex": 0,
  4061. "groupIndex": 0,
  4062. "_id": ""
  4063. },
  4064. {
  4065. "__type__": "cc.Node",
  4066. "_name": "view",
  4067. "_objFlags": 0,
  4068. "_parent": {
  4069. "__id__": 114
  4070. },
  4071. "_children": [
  4072. {
  4073. "__id__": 116
  4074. }
  4075. ],
  4076. "_active": true,
  4077. "_components": [
  4078. {
  4079. "__id__": 191
  4080. }
  4081. ],
  4082. "_prefab": {
  4083. "__id__": 192
  4084. },
  4085. "_opacity": 255,
  4086. "_color": {
  4087. "__type__": "cc.Color",
  4088. "r": 255,
  4089. "g": 255,
  4090. "b": 255,
  4091. "a": 255
  4092. },
  4093. "_contentSize": {
  4094. "__type__": "cc.Size",
  4095. "width": 1556,
  4096. "height": 650
  4097. },
  4098. "_anchorPoint": {
  4099. "__type__": "cc.Vec2",
  4100. "x": 0.5,
  4101. "y": 1
  4102. },
  4103. "_trs": {
  4104. "__type__": "TypedArray",
  4105. "ctor": "Float64Array",
  4106. "array": [
  4107. 0,
  4108. 325,
  4109. 0,
  4110. 0,
  4111. 0,
  4112. 0,
  4113. 1,
  4114. 1,
  4115. 1,
  4116. 1
  4117. ]
  4118. },
  4119. "_eulerAngles": {
  4120. "__type__": "cc.Vec3",
  4121. "x": 0,
  4122. "y": 0,
  4123. "z": 0
  4124. },
  4125. "_skewX": 0,
  4126. "_skewY": 0,
  4127. "_is3DNode": false,
  4128. "_groupIndex": 0,
  4129. "groupIndex": 0,
  4130. "_id": ""
  4131. },
  4132. {
  4133. "__type__": "cc.Node",
  4134. "_name": "content",
  4135. "_objFlags": 0,
  4136. "_parent": {
  4137. "__id__": 115
  4138. },
  4139. "_children": [
  4140. {
  4141. "__id__": 117
  4142. }
  4143. ],
  4144. "_active": true,
  4145. "_components": [
  4146. {
  4147. "__id__": 189
  4148. }
  4149. ],
  4150. "_prefab": {
  4151. "__id__": 190
  4152. },
  4153. "_opacity": 255,
  4154. "_color": {
  4155. "__type__": "cc.Color",
  4156. "r": 255,
  4157. "g": 255,
  4158. "b": 255,
  4159. "a": 255
  4160. },
  4161. "_contentSize": {
  4162. "__type__": "cc.Size",
  4163. "width": 1556,
  4164. "height": 650
  4165. },
  4166. "_anchorPoint": {
  4167. "__type__": "cc.Vec2",
  4168. "x": 0.5,
  4169. "y": 1
  4170. },
  4171. "_trs": {
  4172. "__type__": "TypedArray",
  4173. "ctor": "Float64Array",
  4174. "array": [
  4175. 0,
  4176. 0,
  4177. 0,
  4178. 0,
  4179. 0,
  4180. 0,
  4181. 1,
  4182. 1,
  4183. 1,
  4184. 1
  4185. ]
  4186. },
  4187. "_eulerAngles": {
  4188. "__type__": "cc.Vec3",
  4189. "x": 0,
  4190. "y": 0,
  4191. "z": 0
  4192. },
  4193. "_skewX": 0,
  4194. "_skewY": 0,
  4195. "_is3DNode": false,
  4196. "_groupIndex": 0,
  4197. "groupIndex": 0,
  4198. "_id": ""
  4199. },
  4200. {
  4201. "__type__": "cc.Node",
  4202. "_name": "task_item",
  4203. "_objFlags": 0,
  4204. "_parent": {
  4205. "__id__": 116
  4206. },
  4207. "_children": [
  4208. {
  4209. "__id__": 118
  4210. },
  4211. {
  4212. "__id__": 121
  4213. },
  4214. {
  4215. "__id__": 124
  4216. },
  4217. {
  4218. "__id__": 135
  4219. },
  4220. {
  4221. "__id__": 140
  4222. },
  4223. {
  4224. "__id__": 152
  4225. },
  4226. {
  4227. "__id__": 169
  4228. },
  4229. {
  4230. "__id__": 174
  4231. },
  4232. {
  4233. "__id__": 185
  4234. }
  4235. ],
  4236. "_active": true,
  4237. "_components": [],
  4238. "_prefab": {
  4239. "__id__": 188
  4240. },
  4241. "_opacity": 255,
  4242. "_color": {
  4243. "__type__": "cc.Color",
  4244. "r": 255,
  4245. "g": 255,
  4246. "b": 255,
  4247. "a": 255
  4248. },
  4249. "_contentSize": {
  4250. "__type__": "cc.Size",
  4251. "width": 775,
  4252. "height": 180
  4253. },
  4254. "_anchorPoint": {
  4255. "__type__": "cc.Vec2",
  4256. "x": 0.5,
  4257. "y": 0.5
  4258. },
  4259. "_trs": {
  4260. "__type__": "TypedArray",
  4261. "ctor": "Float64Array",
  4262. "array": [
  4263. -385.5,
  4264. -95,
  4265. 0,
  4266. 0,
  4267. 0,
  4268. 0,
  4269. 1,
  4270. 1,
  4271. 1,
  4272. 1
  4273. ]
  4274. },
  4275. "_eulerAngles": {
  4276. "__type__": "cc.Vec3",
  4277. "x": 0,
  4278. "y": 0,
  4279. "z": 0
  4280. },
  4281. "_skewX": 0,
  4282. "_skewY": 0,
  4283. "_is3DNode": false,
  4284. "_groupIndex": 0,
  4285. "groupIndex": 0,
  4286. "_id": ""
  4287. },
  4288. {
  4289. "__type__": "cc.Node",
  4290. "_name": "normal",
  4291. "_objFlags": 0,
  4292. "_parent": {
  4293. "__id__": 117
  4294. },
  4295. "_children": [],
  4296. "_active": true,
  4297. "_components": [
  4298. {
  4299. "__id__": 119
  4300. }
  4301. ],
  4302. "_prefab": {
  4303. "__id__": 120
  4304. },
  4305. "_opacity": 255,
  4306. "_color": {
  4307. "__type__": "cc.Color",
  4308. "r": 255,
  4309. "g": 255,
  4310. "b": 255,
  4311. "a": 255
  4312. },
  4313. "_contentSize": {
  4314. "__type__": "cc.Size",
  4315. "width": 769,
  4316. "height": 170
  4317. },
  4318. "_anchorPoint": {
  4319. "__type__": "cc.Vec2",
  4320. "x": 0.5,
  4321. "y": 0.5
  4322. },
  4323. "_trs": {
  4324. "__type__": "TypedArray",
  4325. "ctor": "Float64Array",
  4326. "array": [
  4327. 0,
  4328. 0,
  4329. 0,
  4330. 0,
  4331. 0,
  4332. 0,
  4333. 1,
  4334. 1,
  4335. 1,
  4336. 1
  4337. ]
  4338. },
  4339. "_eulerAngles": {
  4340. "__type__": "cc.Vec3",
  4341. "x": 0,
  4342. "y": 0,
  4343. "z": 0
  4344. },
  4345. "_skewX": 0,
  4346. "_skewY": 0,
  4347. "_is3DNode": false,
  4348. "_groupIndex": 0,
  4349. "groupIndex": 0,
  4350. "_id": ""
  4351. },
  4352. {
  4353. "__type__": "cc.Sprite",
  4354. "_name": "",
  4355. "_objFlags": 0,
  4356. "node": {
  4357. "__id__": 118
  4358. },
  4359. "_enabled": true,
  4360. "_materials": [
  4361. {
  4362. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4363. }
  4364. ],
  4365. "_srcBlendFactor": 770,
  4366. "_dstBlendFactor": 771,
  4367. "_spriteFrame": {
  4368. "__uuid__": "74734905-72ab-4180-b88e-57e30a112b3c"
  4369. },
  4370. "_type": 0,
  4371. "_sizeMode": 1,
  4372. "_fillType": 0,
  4373. "_fillCenter": {
  4374. "__type__": "cc.Vec2",
  4375. "x": 0,
  4376. "y": 0
  4377. },
  4378. "_fillStart": 0,
  4379. "_fillRange": 0,
  4380. "_isTrimmedMode": true,
  4381. "_atlas": null,
  4382. "_id": ""
  4383. },
  4384. {
  4385. "__type__": "cc.PrefabInfo",
  4386. "root": {
  4387. "__id__": 1
  4388. },
  4389. "asset": {
  4390. "__id__": 0
  4391. },
  4392. "fileId": "05CMZJNs9IW5LcENPa0/v1",
  4393. "sync": false
  4394. },
  4395. {
  4396. "__type__": "cc.Node",
  4397. "_name": "complete",
  4398. "_objFlags": 0,
  4399. "_parent": {
  4400. "__id__": 117
  4401. },
  4402. "_children": [],
  4403. "_active": false,
  4404. "_components": [
  4405. {
  4406. "__id__": 122
  4407. }
  4408. ],
  4409. "_prefab": {
  4410. "__id__": 123
  4411. },
  4412. "_opacity": 255,
  4413. "_color": {
  4414. "__type__": "cc.Color",
  4415. "r": 255,
  4416. "g": 255,
  4417. "b": 255,
  4418. "a": 255
  4419. },
  4420. "_contentSize": {
  4421. "__type__": "cc.Size",
  4422. "width": 775,
  4423. "height": 180
  4424. },
  4425. "_anchorPoint": {
  4426. "__type__": "cc.Vec2",
  4427. "x": 0.5,
  4428. "y": 0.5
  4429. },
  4430. "_trs": {
  4431. "__type__": "TypedArray",
  4432. "ctor": "Float64Array",
  4433. "array": [
  4434. 0,
  4435. 0,
  4436. 0,
  4437. 0,
  4438. 0,
  4439. 0,
  4440. 1,
  4441. 1,
  4442. 1,
  4443. 1
  4444. ]
  4445. },
  4446. "_eulerAngles": {
  4447. "__type__": "cc.Vec3",
  4448. "x": 0,
  4449. "y": 0,
  4450. "z": 0
  4451. },
  4452. "_skewX": 0,
  4453. "_skewY": 0,
  4454. "_is3DNode": false,
  4455. "_groupIndex": 0,
  4456. "groupIndex": 0,
  4457. "_id": ""
  4458. },
  4459. {
  4460. "__type__": "cc.Sprite",
  4461. "_name": "",
  4462. "_objFlags": 0,
  4463. "node": {
  4464. "__id__": 121
  4465. },
  4466. "_enabled": true,
  4467. "_materials": [
  4468. {
  4469. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4470. }
  4471. ],
  4472. "_srcBlendFactor": 770,
  4473. "_dstBlendFactor": 771,
  4474. "_spriteFrame": {
  4475. "__uuid__": "76da3103-0507-4bc9-be57-0c7cc8f65f66"
  4476. },
  4477. "_type": 0,
  4478. "_sizeMode": 0,
  4479. "_fillType": 0,
  4480. "_fillCenter": {
  4481. "__type__": "cc.Vec2",
  4482. "x": 0,
  4483. "y": 0
  4484. },
  4485. "_fillStart": 0,
  4486. "_fillRange": 0,
  4487. "_isTrimmedMode": true,
  4488. "_atlas": null,
  4489. "_id": ""
  4490. },
  4491. {
  4492. "__type__": "cc.PrefabInfo",
  4493. "root": {
  4494. "__id__": 1
  4495. },
  4496. "asset": {
  4497. "__id__": 0
  4498. },
  4499. "fileId": "c255RSwplL6L9TpoQBWY7K",
  4500. "sync": false
  4501. },
  4502. {
  4503. "__type__": "cc.Node",
  4504. "_name": "clain_btn",
  4505. "_objFlags": 0,
  4506. "_parent": {
  4507. "__id__": 117
  4508. },
  4509. "_children": [
  4510. {
  4511. "__id__": 125
  4512. }
  4513. ],
  4514. "_active": false,
  4515. "_components": [
  4516. {
  4517. "__id__": 130
  4518. },
  4519. {
  4520. "__id__": 131
  4521. },
  4522. {
  4523. "__id__": 132
  4524. }
  4525. ],
  4526. "_prefab": {
  4527. "__id__": 134
  4528. },
  4529. "_opacity": 255,
  4530. "_color": {
  4531. "__type__": "cc.Color",
  4532. "r": 255,
  4533. "g": 255,
  4534. "b": 255,
  4535. "a": 255
  4536. },
  4537. "_contentSize": {
  4538. "__type__": "cc.Size",
  4539. "width": 191,
  4540. "height": 77
  4541. },
  4542. "_anchorPoint": {
  4543. "__type__": "cc.Vec2",
  4544. "x": 0.5,
  4545. "y": 0.5
  4546. },
  4547. "_trs": {
  4548. "__type__": "TypedArray",
  4549. "ctor": "Float64Array",
  4550. "array": [
  4551. 265,
  4552. 3,
  4553. 0,
  4554. 0,
  4555. 0,
  4556. 0,
  4557. 1,
  4558. 1,
  4559. 1,
  4560. 0
  4561. ]
  4562. },
  4563. "_eulerAngles": {
  4564. "__type__": "cc.Vec3",
  4565. "x": 0,
  4566. "y": 0,
  4567. "z": 0
  4568. },
  4569. "_skewX": 0,
  4570. "_skewY": 0,
  4571. "_is3DNode": false,
  4572. "_groupIndex": 0,
  4573. "groupIndex": 0,
  4574. "_id": ""
  4575. },
  4576. {
  4577. "__type__": "cc.Node",
  4578. "_name": "label",
  4579. "_objFlags": 0,
  4580. "_parent": {
  4581. "__id__": 124
  4582. },
  4583. "_children": [],
  4584. "_active": true,
  4585. "_components": [
  4586. {
  4587. "__id__": 126
  4588. },
  4589. {
  4590. "__id__": 127
  4591. },
  4592. {
  4593. "__id__": 128
  4594. }
  4595. ],
  4596. "_prefab": {
  4597. "__id__": 129
  4598. },
  4599. "_opacity": 255,
  4600. "_color": {
  4601. "__type__": "cc.Color",
  4602. "r": 29,
  4603. "g": 37,
  4604. "b": 7,
  4605. "a": 255
  4606. },
  4607. "_contentSize": {
  4608. "__type__": "cc.Size",
  4609. "width": 119.44,
  4610. "height": 46
  4611. },
  4612. "_anchorPoint": {
  4613. "__type__": "cc.Vec2",
  4614. "x": 0.5,
  4615. "y": 0.5
  4616. },
  4617. "_trs": {
  4618. "__type__": "TypedArray",
  4619. "ctor": "Float64Array",
  4620. "array": [
  4621. 0,
  4622. 0,
  4623. 0,
  4624. 0,
  4625. 0,
  4626. 0,
  4627. 1,
  4628. 1,
  4629. 1,
  4630. 0
  4631. ]
  4632. },
  4633. "_eulerAngles": {
  4634. "__type__": "cc.Vec3",
  4635. "x": 0,
  4636. "y": 0,
  4637. "z": 0
  4638. },
  4639. "_skewX": 0,
  4640. "_skewY": 0,
  4641. "_is3DNode": false,
  4642. "_groupIndex": 0,
  4643. "groupIndex": 0,
  4644. "_id": ""
  4645. },
  4646. {
  4647. "__type__": "cc.Label",
  4648. "_name": "",
  4649. "_objFlags": 0,
  4650. "node": {
  4651. "__id__": 125
  4652. },
  4653. "_enabled": true,
  4654. "_materials": [
  4655. null
  4656. ],
  4657. "_srcBlendFactor": 770,
  4658. "_dstBlendFactor": 771,
  4659. "_string": "Claim",
  4660. "_N$string": "Claim",
  4661. "_fontSize": 36,
  4662. "_lineHeight": 36,
  4663. "_enableWrapText": true,
  4664. "_N$file": {
  4665. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4666. },
  4667. "_isSystemFontUsed": false,
  4668. "_spacingX": 0,
  4669. "_batchAsBitmap": false,
  4670. "_styleFlags": 0,
  4671. "_underlineHeight": 0,
  4672. "_N$horizontalAlign": 1,
  4673. "_N$verticalAlign": 1,
  4674. "_N$fontFamily": "Arial",
  4675. "_N$overflow": 0,
  4676. "_N$cacheMode": 0,
  4677. "_id": ""
  4678. },
  4679. {
  4680. "__type__": "cc.LabelOutline",
  4681. "_name": "",
  4682. "_objFlags": 0,
  4683. "node": {
  4684. "__id__": 125
  4685. },
  4686. "_enabled": true,
  4687. "_color": {
  4688. "__type__": "cc.Color",
  4689. "r": 190,
  4690. "g": 213,
  4691. "b": 4,
  4692. "a": 255
  4693. },
  4694. "_width": 5,
  4695. "_id": ""
  4696. },
  4697. {
  4698. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4699. "_name": "",
  4700. "_objFlags": 0,
  4701. "node": {
  4702. "__id__": 125
  4703. },
  4704. "_enabled": true,
  4705. "_englishCase": 1,
  4706. "i18n_string": "t15",
  4707. "i18n_params": [],
  4708. "_addColon": false,
  4709. "_id": ""
  4710. },
  4711. {
  4712. "__type__": "cc.PrefabInfo",
  4713. "root": {
  4714. "__id__": 124
  4715. },
  4716. "asset": {
  4717. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  4718. },
  4719. "fileId": "50rygI7tlMKZiREuVUpLZv",
  4720. "sync": false
  4721. },
  4722. {
  4723. "__type__": "cc.Sprite",
  4724. "_name": "",
  4725. "_objFlags": 0,
  4726. "node": {
  4727. "__id__": 124
  4728. },
  4729. "_enabled": true,
  4730. "_materials": [
  4731. {
  4732. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4733. }
  4734. ],
  4735. "_srcBlendFactor": 770,
  4736. "_dstBlendFactor": 771,
  4737. "_spriteFrame": {
  4738. "__uuid__": "79ade49c-941d-4e47-a06a-8c8504fa6f4a"
  4739. },
  4740. "_type": 0,
  4741. "_sizeMode": 0,
  4742. "_fillType": 0,
  4743. "_fillCenter": {
  4744. "__type__": "cc.Vec2",
  4745. "x": 0,
  4746. "y": 0
  4747. },
  4748. "_fillStart": 0,
  4749. "_fillRange": 0,
  4750. "_isTrimmedMode": true,
  4751. "_atlas": null,
  4752. "_id": ""
  4753. },
  4754. {
  4755. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  4756. "_name": "",
  4757. "_objFlags": 0,
  4758. "node": {
  4759. "__id__": 124
  4760. },
  4761. "_enabled": true,
  4762. "openContinuous": true,
  4763. "continuousTime": 0.2,
  4764. "multiTouch": false,
  4765. "_id": ""
  4766. },
  4767. {
  4768. "__type__": "61994AafntNFIbmt1zoyLq+",
  4769. "_name": "",
  4770. "_objFlags": 0,
  4771. "node": {
  4772. "__id__": 124
  4773. },
  4774. "_enabled": true,
  4775. "_normalMaterial": null,
  4776. "_grayMaterial": null,
  4777. "duration": 0.1,
  4778. "zoomScale": 1.2,
  4779. "clickEvents": [
  4780. {
  4781. "__id__": 133
  4782. }
  4783. ],
  4784. "_N$interactable": true,
  4785. "_N$enableAutoGrayEffect": false,
  4786. "_N$transition": 3,
  4787. "transition": 3,
  4788. "_N$normalColor": {
  4789. "__type__": "cc.Color",
  4790. "r": 255,
  4791. "g": 255,
  4792. "b": 255,
  4793. "a": 255
  4794. },
  4795. "_N$pressedColor": {
  4796. "__type__": "cc.Color",
  4797. "r": 211,
  4798. "g": 211,
  4799. "b": 211,
  4800. "a": 255
  4801. },
  4802. "pressedColor": {
  4803. "__type__": "cc.Color",
  4804. "r": 211,
  4805. "g": 211,
  4806. "b": 211,
  4807. "a": 255
  4808. },
  4809. "_N$hoverColor": {
  4810. "__type__": "cc.Color",
  4811. "r": 255,
  4812. "g": 255,
  4813. "b": 255,
  4814. "a": 255
  4815. },
  4816. "hoverColor": {
  4817. "__type__": "cc.Color",
  4818. "r": 255,
  4819. "g": 255,
  4820. "b": 255,
  4821. "a": 255
  4822. },
  4823. "_N$disabledColor": {
  4824. "__type__": "cc.Color",
  4825. "r": 124,
  4826. "g": 124,
  4827. "b": 124,
  4828. "a": 255
  4829. },
  4830. "_N$normalSprite": null,
  4831. "_N$pressedSprite": null,
  4832. "pressedSprite": null,
  4833. "_N$hoverSprite": null,
  4834. "hoverSprite": null,
  4835. "_N$disabledSprite": null,
  4836. "_N$target": {
  4837. "__id__": 124
  4838. },
  4839. "_id": ""
  4840. },
  4841. {
  4842. "__type__": "cc.ClickEvent",
  4843. "target": {
  4844. "__id__": 1
  4845. },
  4846. "component": "",
  4847. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  4848. "handler": "onClainClick",
  4849. "customEventData": ""
  4850. },
  4851. {
  4852. "__type__": "cc.PrefabInfo",
  4853. "root": {
  4854. "__id__": 124
  4855. },
  4856. "asset": {
  4857. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  4858. },
  4859. "fileId": "f7Wdl1ZjVOmr/99blIDeGz",
  4860. "sync": false
  4861. },
  4862. {
  4863. "__type__": "cc.Node",
  4864. "_name": "task_decs",
  4865. "_objFlags": 0,
  4866. "_parent": {
  4867. "__id__": 117
  4868. },
  4869. "_children": [],
  4870. "_active": true,
  4871. "_components": [
  4872. {
  4873. "__id__": 136
  4874. },
  4875. {
  4876. "__id__": 137
  4877. },
  4878. {
  4879. "__id__": 138
  4880. }
  4881. ],
  4882. "_prefab": {
  4883. "__id__": 139
  4884. },
  4885. "_opacity": 255,
  4886. "_color": {
  4887. "__type__": "cc.Color",
  4888. "r": 255,
  4889. "g": 255,
  4890. "b": 255,
  4891. "a": 255
  4892. },
  4893. "_contentSize": {
  4894. "__type__": "cc.Size",
  4895. "width": 280,
  4896. "height": 120
  4897. },
  4898. "_anchorPoint": {
  4899. "__type__": "cc.Vec2",
  4900. "x": 0.5,
  4901. "y": 0.5
  4902. },
  4903. "_trs": {
  4904. "__type__": "TypedArray",
  4905. "ctor": "Float64Array",
  4906. "array": [
  4907. -230,
  4908. 16.153,
  4909. 0,
  4910. 0,
  4911. 0,
  4912. 0,
  4913. 1,
  4914. 1,
  4915. 1,
  4916. 1
  4917. ]
  4918. },
  4919. "_eulerAngles": {
  4920. "__type__": "cc.Vec3",
  4921. "x": 0,
  4922. "y": 0,
  4923. "z": 0
  4924. },
  4925. "_skewX": 0,
  4926. "_skewY": 0,
  4927. "_is3DNode": false,
  4928. "_groupIndex": 0,
  4929. "groupIndex": 0,
  4930. "_id": ""
  4931. },
  4932. {
  4933. "__type__": "cc.Label",
  4934. "_name": "",
  4935. "_objFlags": 0,
  4936. "node": {
  4937. "__id__": 135
  4938. },
  4939. "_enabled": true,
  4940. "_materials": [
  4941. {
  4942. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4943. }
  4944. ],
  4945. "_srcBlendFactor": 770,
  4946. "_dstBlendFactor": 771,
  4947. "_string": "Gain stamina by purchasing or watching videos once",
  4948. "_N$string": "Gain stamina by purchasing or watching videos once",
  4949. "_fontSize": 30,
  4950. "_lineHeight": 30,
  4951. "_enableWrapText": true,
  4952. "_N$file": {
  4953. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4954. },
  4955. "_isSystemFontUsed": false,
  4956. "_spacingX": 0,
  4957. "_batchAsBitmap": false,
  4958. "_styleFlags": 0,
  4959. "_underlineHeight": 0,
  4960. "_N$horizontalAlign": 0,
  4961. "_N$verticalAlign": 1,
  4962. "_N$fontFamily": "Arial",
  4963. "_N$overflow": 2,
  4964. "_N$cacheMode": 0,
  4965. "_id": ""
  4966. },
  4967. {
  4968. "__type__": "cc.LabelOutline",
  4969. "_name": "",
  4970. "_objFlags": 0,
  4971. "node": {
  4972. "__id__": 135
  4973. },
  4974. "_enabled": true,
  4975. "_color": {
  4976. "__type__": "cc.Color",
  4977. "r": 38,
  4978. "g": 17,
  4979. "b": 12,
  4980. "a": 255
  4981. },
  4982. "_width": 3,
  4983. "_id": ""
  4984. },
  4985. {
  4986. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4987. "_name": "",
  4988. "_objFlags": 0,
  4989. "node": {
  4990. "__id__": 135
  4991. },
  4992. "_enabled": true,
  4993. "_englishCase": 0,
  4994. "i18n_string": "",
  4995. "i18n_params": [],
  4996. "_addColon": false,
  4997. "_id": ""
  4998. },
  4999. {
  5000. "__type__": "cc.PrefabInfo",
  5001. "root": {
  5002. "__id__": 135
  5003. },
  5004. "asset": {
  5005. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  5006. },
  5007. "fileId": "4bfIgyx1lFyKMscTtZujC7",
  5008. "sync": false
  5009. },
  5010. {
  5011. "__type__": "cc.Node",
  5012. "_name": "progress_bottom",
  5013. "_objFlags": 0,
  5014. "_parent": {
  5015. "__id__": 117
  5016. },
  5017. "_children": [
  5018. {
  5019. "__id__": 141
  5020. },
  5021. {
  5022. "__id__": 144
  5023. }
  5024. ],
  5025. "_active": true,
  5026. "_components": [
  5027. {
  5028. "__id__": 149
  5029. },
  5030. {
  5031. "__id__": 150
  5032. }
  5033. ],
  5034. "_prefab": {
  5035. "__id__": 151
  5036. },
  5037. "_opacity": 255,
  5038. "_color": {
  5039. "__type__": "cc.Color",
  5040. "r": 255,
  5041. "g": 255,
  5042. "b": 255,
  5043. "a": 255
  5044. },
  5045. "_contentSize": {
  5046. "__type__": "cc.Size",
  5047. "width": 280,
  5048. "height": 22
  5049. },
  5050. "_anchorPoint": {
  5051. "__type__": "cc.Vec2",
  5052. "x": 0.5,
  5053. "y": 0.5
  5054. },
  5055. "_trs": {
  5056. "__type__": "TypedArray",
  5057. "ctor": "Float64Array",
  5058. "array": [
  5059. -230,
  5060. -61.251,
  5061. 0,
  5062. 0,
  5063. 0,
  5064. 0,
  5065. 1,
  5066. 1,
  5067. 1,
  5068. 1
  5069. ]
  5070. },
  5071. "_eulerAngles": {
  5072. "__type__": "cc.Vec3",
  5073. "x": 0,
  5074. "y": 0,
  5075. "z": 0
  5076. },
  5077. "_skewX": 0,
  5078. "_skewY": 0,
  5079. "_is3DNode": false,
  5080. "_groupIndex": 0,
  5081. "groupIndex": 0,
  5082. "_id": ""
  5083. },
  5084. {
  5085. "__type__": "cc.Node",
  5086. "_name": "progress_bg",
  5087. "_objFlags": 0,
  5088. "_parent": {
  5089. "__id__": 140
  5090. },
  5091. "_children": [],
  5092. "_active": true,
  5093. "_components": [
  5094. {
  5095. "__id__": 142
  5096. }
  5097. ],
  5098. "_prefab": {
  5099. "__id__": 143
  5100. },
  5101. "_opacity": 255,
  5102. "_color": {
  5103. "__type__": "cc.Color",
  5104. "r": 255,
  5105. "g": 255,
  5106. "b": 255,
  5107. "a": 255
  5108. },
  5109. "_contentSize": {
  5110. "__type__": "cc.Size",
  5111. "width": 274,
  5112. "height": 15
  5113. },
  5114. "_anchorPoint": {
  5115. "__type__": "cc.Vec2",
  5116. "x": 0,
  5117. "y": 0.5
  5118. },
  5119. "_trs": {
  5120. "__type__": "TypedArray",
  5121. "ctor": "Float64Array",
  5122. "array": [
  5123. -137,
  5124. 0,
  5125. 0,
  5126. 0,
  5127. 0,
  5128. 0,
  5129. 1,
  5130. 1,
  5131. 1,
  5132. 1
  5133. ]
  5134. },
  5135. "_eulerAngles": {
  5136. "__type__": "cc.Vec3",
  5137. "x": 0,
  5138. "y": 0,
  5139. "z": 0
  5140. },
  5141. "_skewX": 0,
  5142. "_skewY": 0,
  5143. "_is3DNode": false,
  5144. "_groupIndex": 0,
  5145. "groupIndex": 0,
  5146. "_id": ""
  5147. },
  5148. {
  5149. "__type__": "cc.Sprite",
  5150. "_name": "",
  5151. "_objFlags": 0,
  5152. "node": {
  5153. "__id__": 141
  5154. },
  5155. "_enabled": true,
  5156. "_materials": [
  5157. {
  5158. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5159. }
  5160. ],
  5161. "_srcBlendFactor": 770,
  5162. "_dstBlendFactor": 771,
  5163. "_spriteFrame": {
  5164. "__uuid__": "71e7d413-f0e5-421a-bf12-a2478164a0e1"
  5165. },
  5166. "_type": 0,
  5167. "_sizeMode": 0,
  5168. "_fillType": 0,
  5169. "_fillCenter": {
  5170. "__type__": "cc.Vec2",
  5171. "x": 0,
  5172. "y": 0
  5173. },
  5174. "_fillStart": 0,
  5175. "_fillRange": 0,
  5176. "_isTrimmedMode": true,
  5177. "_atlas": null,
  5178. "_id": ""
  5179. },
  5180. {
  5181. "__type__": "cc.PrefabInfo",
  5182. "root": {
  5183. "__id__": 1
  5184. },
  5185. "asset": {
  5186. "__id__": 0
  5187. },
  5188. "fileId": "f58IgOBbZKaYKlw46Y2ovx",
  5189. "sync": false
  5190. },
  5191. {
  5192. "__type__": "cc.Node",
  5193. "_name": "progress_label",
  5194. "_objFlags": 0,
  5195. "_parent": {
  5196. "__id__": 140
  5197. },
  5198. "_children": [],
  5199. "_active": true,
  5200. "_components": [
  5201. {
  5202. "__id__": 145
  5203. },
  5204. {
  5205. "__id__": 146
  5206. },
  5207. {
  5208. "__id__": 147
  5209. }
  5210. ],
  5211. "_prefab": {
  5212. "__id__": 148
  5213. },
  5214. "_opacity": 255,
  5215. "_color": {
  5216. "__type__": "cc.Color",
  5217. "r": 255,
  5218. "g": 255,
  5219. "b": 255,
  5220. "a": 255
  5221. },
  5222. "_contentSize": {
  5223. "__type__": "cc.Size",
  5224. "width": 133.88,
  5225. "height": 56.4
  5226. },
  5227. "_anchorPoint": {
  5228. "__type__": "cc.Vec2",
  5229. "x": 0.5,
  5230. "y": 0.5
  5231. },
  5232. "_trs": {
  5233. "__type__": "TypedArray",
  5234. "ctor": "Float64Array",
  5235. "array": [
  5236. 0,
  5237. 0,
  5238. 0,
  5239. 0,
  5240. 0,
  5241. 0,
  5242. 1,
  5243. 1,
  5244. 1,
  5245. 1
  5246. ]
  5247. },
  5248. "_eulerAngles": {
  5249. "__type__": "cc.Vec3",
  5250. "x": 0,
  5251. "y": 0,
  5252. "z": 0
  5253. },
  5254. "_skewX": 0,
  5255. "_skewY": 0,
  5256. "_is3DNode": false,
  5257. "_groupIndex": 0,
  5258. "groupIndex": 0,
  5259. "_id": ""
  5260. },
  5261. {
  5262. "__type__": "cc.Label",
  5263. "_name": "",
  5264. "_objFlags": 0,
  5265. "node": {
  5266. "__id__": 144
  5267. },
  5268. "_enabled": true,
  5269. "_materials": [
  5270. {
  5271. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5272. }
  5273. ],
  5274. "_srcBlendFactor": 770,
  5275. "_dstBlendFactor": 771,
  5276. "_string": "120/120",
  5277. "_N$string": "120/120",
  5278. "_fontSize": 30,
  5279. "_lineHeight": 40,
  5280. "_enableWrapText": true,
  5281. "_N$file": {
  5282. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5283. },
  5284. "_isSystemFontUsed": false,
  5285. "_spacingX": 0,
  5286. "_batchAsBitmap": false,
  5287. "_styleFlags": 0,
  5288. "_underlineHeight": 0,
  5289. "_N$horizontalAlign": 1,
  5290. "_N$verticalAlign": 1,
  5291. "_N$fontFamily": "Arial",
  5292. "_N$overflow": 0,
  5293. "_N$cacheMode": 0,
  5294. "_id": ""
  5295. },
  5296. {
  5297. "__type__": "cc.LabelOutline",
  5298. "_name": "",
  5299. "_objFlags": 0,
  5300. "node": {
  5301. "__id__": 144
  5302. },
  5303. "_enabled": true,
  5304. "_color": {
  5305. "__type__": "cc.Color",
  5306. "r": 38,
  5307. "g": 17,
  5308. "b": 12,
  5309. "a": 255
  5310. },
  5311. "_width": 3,
  5312. "_id": ""
  5313. },
  5314. {
  5315. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  5316. "_name": "",
  5317. "_objFlags": 0,
  5318. "node": {
  5319. "__id__": 144
  5320. },
  5321. "_enabled": true,
  5322. "_englishCase": 0,
  5323. "i18n_string": "",
  5324. "i18n_params": [],
  5325. "_addColon": false,
  5326. "_id": ""
  5327. },
  5328. {
  5329. "__type__": "cc.PrefabInfo",
  5330. "root": {
  5331. "__id__": 144
  5332. },
  5333. "asset": {
  5334. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  5335. },
  5336. "fileId": "advjNeqQ1OaYXvP8I4n3ta",
  5337. "sync": false
  5338. },
  5339. {
  5340. "__type__": "cc.Sprite",
  5341. "_name": "",
  5342. "_objFlags": 0,
  5343. "node": {
  5344. "__id__": 140
  5345. },
  5346. "_enabled": true,
  5347. "_materials": [
  5348. {
  5349. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5350. }
  5351. ],
  5352. "_srcBlendFactor": 770,
  5353. "_dstBlendFactor": 771,
  5354. "_spriteFrame": {
  5355. "__uuid__": "6c5887ea-c6d0-4154-8d27-1b800a057096"
  5356. },
  5357. "_type": 2,
  5358. "_sizeMode": 0,
  5359. "_fillType": 0,
  5360. "_fillCenter": {
  5361. "__type__": "cc.Vec2",
  5362. "x": 0,
  5363. "y": 0
  5364. },
  5365. "_fillStart": 0,
  5366. "_fillRange": 0,
  5367. "_isTrimmedMode": true,
  5368. "_atlas": null,
  5369. "_id": ""
  5370. },
  5371. {
  5372. "__type__": "cc.ProgressBar",
  5373. "_name": "",
  5374. "_objFlags": 0,
  5375. "node": {
  5376. "__id__": 140
  5377. },
  5378. "_enabled": true,
  5379. "_N$totalLength": 274,
  5380. "_N$barSprite": {
  5381. "__id__": 142
  5382. },
  5383. "_N$mode": 0,
  5384. "_N$progress": 1,
  5385. "_N$reverse": false,
  5386. "_id": ""
  5387. },
  5388. {
  5389. "__type__": "cc.PrefabInfo",
  5390. "root": {
  5391. "__id__": 1
  5392. },
  5393. "asset": {
  5394. "__id__": 0
  5395. },
  5396. "fileId": "df2vWh4+JIe76Tbg09Imid",
  5397. "sync": false
  5398. },
  5399. {
  5400. "__type__": "cc.Node",
  5401. "_name": "rewards",
  5402. "_objFlags": 0,
  5403. "_parent": {
  5404. "__id__": 117
  5405. },
  5406. "_children": [
  5407. {
  5408. "__id__": 153
  5409. },
  5410. {
  5411. "__id__": 160
  5412. }
  5413. ],
  5414. "_active": true,
  5415. "_components": [
  5416. {
  5417. "__id__": 167
  5418. }
  5419. ],
  5420. "_prefab": {
  5421. "__id__": 168
  5422. },
  5423. "_opacity": 255,
  5424. "_color": {
  5425. "__type__": "cc.Color",
  5426. "r": 255,
  5427. "g": 255,
  5428. "b": 255,
  5429. "a": 255
  5430. },
  5431. "_contentSize": {
  5432. "__type__": "cc.Size",
  5433. "width": 237,
  5434. "height": 116
  5435. },
  5436. "_anchorPoint": {
  5437. "__type__": "cc.Vec2",
  5438. "x": 0.5,
  5439. "y": 0.5
  5440. },
  5441. "_trs": {
  5442. "__type__": "TypedArray",
  5443. "ctor": "Float64Array",
  5444. "array": [
  5445. 40,
  5446. 1.189,
  5447. 0,
  5448. 0,
  5449. 0,
  5450. 0,
  5451. 1,
  5452. 1,
  5453. 1,
  5454. 1
  5455. ]
  5456. },
  5457. "_eulerAngles": {
  5458. "__type__": "cc.Vec3",
  5459. "x": 0,
  5460. "y": 0,
  5461. "z": 0
  5462. },
  5463. "_skewX": 0,
  5464. "_skewY": 0,
  5465. "_is3DNode": false,
  5466. "_groupIndex": 0,
  5467. "groupIndex": 0,
  5468. "_id": ""
  5469. },
  5470. {
  5471. "__type__": "cc.Node",
  5472. "_name": "reward_item",
  5473. "_objFlags": 0,
  5474. "_parent": {
  5475. "__id__": 152
  5476. },
  5477. "_children": [
  5478. {
  5479. "__id__": 154
  5480. },
  5481. {
  5482. "__id__": 156
  5483. }
  5484. ],
  5485. "_active": true,
  5486. "_components": [],
  5487. "_prefab": {
  5488. "__id__": 159
  5489. },
  5490. "_opacity": 255,
  5491. "_color": {
  5492. "__type__": "cc.Color",
  5493. "r": 255,
  5494. "g": 255,
  5495. "b": 255,
  5496. "a": 255
  5497. },
  5498. "_contentSize": {
  5499. "__type__": "cc.Size",
  5500. "width": 116,
  5501. "height": 116
  5502. },
  5503. "_anchorPoint": {
  5504. "__type__": "cc.Vec2",
  5505. "x": 0.5,
  5506. "y": 0.5
  5507. },
  5508. "_trs": {
  5509. "__type__": "TypedArray",
  5510. "ctor": "Float64Array",
  5511. "array": [
  5512. -60.5,
  5513. 0,
  5514. 0,
  5515. 0,
  5516. 0,
  5517. 0,
  5518. 1,
  5519. 1,
  5520. 1,
  5521. 1
  5522. ]
  5523. },
  5524. "_eulerAngles": {
  5525. "__type__": "cc.Vec3",
  5526. "x": 0,
  5527. "y": 0,
  5528. "z": 0
  5529. },
  5530. "_skewX": 0,
  5531. "_skewY": 0,
  5532. "_is3DNode": false,
  5533. "_groupIndex": 0,
  5534. "groupIndex": 0,
  5535. "_id": ""
  5536. },
  5537. {
  5538. "__type__": "cc.Node",
  5539. "_name": "goods",
  5540. "_objFlags": 0,
  5541. "_parent": {
  5542. "__id__": 153
  5543. },
  5544. "_children": [],
  5545. "_active": true,
  5546. "_components": [],
  5547. "_prefab": {
  5548. "__id__": 155
  5549. },
  5550. "_opacity": 255,
  5551. "_color": {
  5552. "__type__": "cc.Color",
  5553. "r": 255,
  5554. "g": 255,
  5555. "b": 255,
  5556. "a": 255
  5557. },
  5558. "_contentSize": {
  5559. "__type__": "cc.Size",
  5560. "width": 166,
  5561. "height": 166
  5562. },
  5563. "_anchorPoint": {
  5564. "__type__": "cc.Vec2",
  5565. "x": 0.5,
  5566. "y": 0.5
  5567. },
  5568. "_trs": {
  5569. "__type__": "TypedArray",
  5570. "ctor": "Float64Array",
  5571. "array": [
  5572. 0,
  5573. 0,
  5574. 0,
  5575. 0,
  5576. 0,
  5577. 0,
  5578. 1,
  5579. 0.7,
  5580. 0.7,
  5581. 1
  5582. ]
  5583. },
  5584. "_eulerAngles": {
  5585. "__type__": "cc.Vec3",
  5586. "x": 0,
  5587. "y": 0,
  5588. "z": 0
  5589. },
  5590. "_skewX": 0,
  5591. "_skewY": 0,
  5592. "_is3DNode": false,
  5593. "_groupIndex": 0,
  5594. "groupIndex": 0,
  5595. "_id": ""
  5596. },
  5597. {
  5598. "__type__": "cc.PrefabInfo",
  5599. "root": {
  5600. "__id__": 154
  5601. },
  5602. "asset": {
  5603. "__uuid__": "304eee68-47d8-489e-9653-3ffe326cc362"
  5604. },
  5605. "fileId": "83o9bLBrlPQo2DbKqFf0AG",
  5606. "sync": false
  5607. },
  5608. {
  5609. "__type__": "cc.Node",
  5610. "_name": "select_1",
  5611. "_objFlags": 0,
  5612. "_parent": {
  5613. "__id__": 153
  5614. },
  5615. "_children": [],
  5616. "_active": false,
  5617. "_components": [
  5618. {
  5619. "__id__": 157
  5620. }
  5621. ],
  5622. "_prefab": {
  5623. "__id__": 158
  5624. },
  5625. "_opacity": 255,
  5626. "_color": {
  5627. "__type__": "cc.Color",
  5628. "r": 255,
  5629. "g": 255,
  5630. "b": 255,
  5631. "a": 255
  5632. },
  5633. "_contentSize": {
  5634. "__type__": "cc.Size",
  5635. "width": 92,
  5636. "height": 66
  5637. },
  5638. "_anchorPoint": {
  5639. "__type__": "cc.Vec2",
  5640. "x": 0.5,
  5641. "y": 0.5
  5642. },
  5643. "_trs": {
  5644. "__type__": "TypedArray",
  5645. "ctor": "Float64Array",
  5646. "array": [
  5647. 0,
  5648. 0,
  5649. 0,
  5650. 0,
  5651. 0,
  5652. 0,
  5653. 1,
  5654. 0.6,
  5655. 0.6,
  5656. 1
  5657. ]
  5658. },
  5659. "_eulerAngles": {
  5660. "__type__": "cc.Vec3",
  5661. "x": 0,
  5662. "y": 0,
  5663. "z": 0
  5664. },
  5665. "_skewX": 0,
  5666. "_skewY": 0,
  5667. "_is3DNode": false,
  5668. "_groupIndex": 0,
  5669. "groupIndex": 0,
  5670. "_id": ""
  5671. },
  5672. {
  5673. "__type__": "cc.Sprite",
  5674. "_name": "",
  5675. "_objFlags": 0,
  5676. "node": {
  5677. "__id__": 156
  5678. },
  5679. "_enabled": true,
  5680. "_materials": [
  5681. {
  5682. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5683. }
  5684. ],
  5685. "_srcBlendFactor": 770,
  5686. "_dstBlendFactor": 771,
  5687. "_spriteFrame": {
  5688. "__uuid__": "b9e4722c-e1d5-4892-ade4-2d0f9587183e"
  5689. },
  5690. "_type": 0,
  5691. "_sizeMode": 1,
  5692. "_fillType": 0,
  5693. "_fillCenter": {
  5694. "__type__": "cc.Vec2",
  5695. "x": 0,
  5696. "y": 0
  5697. },
  5698. "_fillStart": 0,
  5699. "_fillRange": 0,
  5700. "_isTrimmedMode": true,
  5701. "_atlas": null,
  5702. "_id": ""
  5703. },
  5704. {
  5705. "__type__": "cc.PrefabInfo",
  5706. "root": {
  5707. "__id__": 1
  5708. },
  5709. "asset": {
  5710. "__id__": 0
  5711. },
  5712. "fileId": "46EMTSnTVMgJVu2YW7kFCo",
  5713. "sync": false
  5714. },
  5715. {
  5716. "__type__": "cc.PrefabInfo",
  5717. "root": {
  5718. "__id__": 1
  5719. },
  5720. "asset": {
  5721. "__id__": 0
  5722. },
  5723. "fileId": "393031ypNPpZUx9aTOP2Yf",
  5724. "sync": false
  5725. },
  5726. {
  5727. "__type__": "cc.Node",
  5728. "_name": "reward_item",
  5729. "_objFlags": 0,
  5730. "_parent": {
  5731. "__id__": 152
  5732. },
  5733. "_children": [
  5734. {
  5735. "__id__": 161
  5736. },
  5737. {
  5738. "__id__": 163
  5739. }
  5740. ],
  5741. "_active": true,
  5742. "_components": [],
  5743. "_prefab": {
  5744. "__id__": 166
  5745. },
  5746. "_opacity": 255,
  5747. "_color": {
  5748. "__type__": "cc.Color",
  5749. "r": 255,
  5750. "g": 255,
  5751. "b": 255,
  5752. "a": 255
  5753. },
  5754. "_contentSize": {
  5755. "__type__": "cc.Size",
  5756. "width": 116,
  5757. "height": 116
  5758. },
  5759. "_anchorPoint": {
  5760. "__type__": "cc.Vec2",
  5761. "x": 0.5,
  5762. "y": 0.5
  5763. },
  5764. "_trs": {
  5765. "__type__": "TypedArray",
  5766. "ctor": "Float64Array",
  5767. "array": [
  5768. 60.5,
  5769. 0,
  5770. 0,
  5771. 0,
  5772. 0,
  5773. 0,
  5774. 1,
  5775. 1,
  5776. 1,
  5777. 1
  5778. ]
  5779. },
  5780. "_eulerAngles": {
  5781. "__type__": "cc.Vec3",
  5782. "x": 0,
  5783. "y": 0,
  5784. "z": 0
  5785. },
  5786. "_skewX": 0,
  5787. "_skewY": 0,
  5788. "_is3DNode": false,
  5789. "_groupIndex": 0,
  5790. "groupIndex": 0,
  5791. "_id": ""
  5792. },
  5793. {
  5794. "__type__": "cc.Node",
  5795. "_name": "goods",
  5796. "_objFlags": 0,
  5797. "_parent": {
  5798. "__id__": 160
  5799. },
  5800. "_children": [],
  5801. "_active": true,
  5802. "_components": [],
  5803. "_prefab": {
  5804. "__id__": 162
  5805. },
  5806. "_opacity": 255,
  5807. "_color": {
  5808. "__type__": "cc.Color",
  5809. "r": 255,
  5810. "g": 255,
  5811. "b": 255,
  5812. "a": 255
  5813. },
  5814. "_contentSize": {
  5815. "__type__": "cc.Size",
  5816. "width": 166,
  5817. "height": 166
  5818. },
  5819. "_anchorPoint": {
  5820. "__type__": "cc.Vec2",
  5821. "x": 0.5,
  5822. "y": 0.5
  5823. },
  5824. "_trs": {
  5825. "__type__": "TypedArray",
  5826. "ctor": "Float64Array",
  5827. "array": [
  5828. 0,
  5829. 0,
  5830. 0,
  5831. 0,
  5832. 0,
  5833. 0,
  5834. 1,
  5835. 0.7,
  5836. 0.7,
  5837. 1
  5838. ]
  5839. },
  5840. "_eulerAngles": {
  5841. "__type__": "cc.Vec3",
  5842. "x": 0,
  5843. "y": 0,
  5844. "z": 0
  5845. },
  5846. "_skewX": 0,
  5847. "_skewY": 0,
  5848. "_is3DNode": false,
  5849. "_groupIndex": 0,
  5850. "groupIndex": 0,
  5851. "_id": ""
  5852. },
  5853. {
  5854. "__type__": "cc.PrefabInfo",
  5855. "root": {
  5856. "__id__": 161
  5857. },
  5858. "asset": {
  5859. "__uuid__": "304eee68-47d8-489e-9653-3ffe326cc362"
  5860. },
  5861. "fileId": "83o9bLBrlPQo2DbKqFf0AG",
  5862. "sync": false
  5863. },
  5864. {
  5865. "__type__": "cc.Node",
  5866. "_name": "select_1",
  5867. "_objFlags": 0,
  5868. "_parent": {
  5869. "__id__": 160
  5870. },
  5871. "_children": [],
  5872. "_active": false,
  5873. "_components": [
  5874. {
  5875. "__id__": 164
  5876. }
  5877. ],
  5878. "_prefab": {
  5879. "__id__": 165
  5880. },
  5881. "_opacity": 255,
  5882. "_color": {
  5883. "__type__": "cc.Color",
  5884. "r": 255,
  5885. "g": 255,
  5886. "b": 255,
  5887. "a": 255
  5888. },
  5889. "_contentSize": {
  5890. "__type__": "cc.Size",
  5891. "width": 92,
  5892. "height": 66
  5893. },
  5894. "_anchorPoint": {
  5895. "__type__": "cc.Vec2",
  5896. "x": 0.5,
  5897. "y": 0.5
  5898. },
  5899. "_trs": {
  5900. "__type__": "TypedArray",
  5901. "ctor": "Float64Array",
  5902. "array": [
  5903. 0,
  5904. 0,
  5905. 0,
  5906. 0,
  5907. 0,
  5908. 0,
  5909. 1,
  5910. 0.6,
  5911. 0.6,
  5912. 1
  5913. ]
  5914. },
  5915. "_eulerAngles": {
  5916. "__type__": "cc.Vec3",
  5917. "x": 0,
  5918. "y": 0,
  5919. "z": 0
  5920. },
  5921. "_skewX": 0,
  5922. "_skewY": 0,
  5923. "_is3DNode": false,
  5924. "_groupIndex": 0,
  5925. "groupIndex": 0,
  5926. "_id": ""
  5927. },
  5928. {
  5929. "__type__": "cc.Sprite",
  5930. "_name": "",
  5931. "_objFlags": 0,
  5932. "node": {
  5933. "__id__": 163
  5934. },
  5935. "_enabled": true,
  5936. "_materials": [
  5937. {
  5938. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5939. }
  5940. ],
  5941. "_srcBlendFactor": 770,
  5942. "_dstBlendFactor": 771,
  5943. "_spriteFrame": {
  5944. "__uuid__": "b9e4722c-e1d5-4892-ade4-2d0f9587183e"
  5945. },
  5946. "_type": 0,
  5947. "_sizeMode": 1,
  5948. "_fillType": 0,
  5949. "_fillCenter": {
  5950. "__type__": "cc.Vec2",
  5951. "x": 0,
  5952. "y": 0
  5953. },
  5954. "_fillStart": 0,
  5955. "_fillRange": 0,
  5956. "_isTrimmedMode": true,
  5957. "_atlas": null,
  5958. "_id": ""
  5959. },
  5960. {
  5961. "__type__": "cc.PrefabInfo",
  5962. "root": {
  5963. "__id__": 1
  5964. },
  5965. "asset": {
  5966. "__id__": 0
  5967. },
  5968. "fileId": "eekvQTOnJM8KA1LPlWoS27",
  5969. "sync": false
  5970. },
  5971. {
  5972. "__type__": "cc.PrefabInfo",
  5973. "root": {
  5974. "__id__": 1
  5975. },
  5976. "asset": {
  5977. "__id__": 0
  5978. },
  5979. "fileId": "76GUJvE65Dpqx6MPrrVfjL",
  5980. "sync": false
  5981. },
  5982. {
  5983. "__type__": "cc.Layout",
  5984. "_name": "",
  5985. "_objFlags": 0,
  5986. "node": {
  5987. "__id__": 152
  5988. },
  5989. "_enabled": true,
  5990. "_layoutSize": {
  5991. "__type__": "cc.Size",
  5992. "width": 237,
  5993. "height": 116
  5994. },
  5995. "_resize": 1,
  5996. "_N$layoutType": 1,
  5997. "_N$cellSize": {
  5998. "__type__": "cc.Size",
  5999. "width": 40,
  6000. "height": 40
  6001. },
  6002. "_N$startAxis": 0,
  6003. "_N$paddingLeft": 0,
  6004. "_N$paddingRight": 0,
  6005. "_N$paddingTop": 0,
  6006. "_N$paddingBottom": 0,
  6007. "_N$spacingX": 5,
  6008. "_N$spacingY": 0,
  6009. "_N$verticalDirection": 1,
  6010. "_N$horizontalDirection": 0,
  6011. "_N$affectedByScale": false,
  6012. "_id": ""
  6013. },
  6014. {
  6015. "__type__": "cc.PrefabInfo",
  6016. "root": {
  6017. "__id__": 1
  6018. },
  6019. "asset": {
  6020. "__id__": 0
  6021. },
  6022. "fileId": "d26R//7f9LN7PD53oJcT9a",
  6023. "sync": false
  6024. },
  6025. {
  6026. "__type__": "cc.Node",
  6027. "_name": "com_label",
  6028. "_objFlags": 0,
  6029. "_parent": {
  6030. "__id__": 117
  6031. },
  6032. "_children": [],
  6033. "_active": false,
  6034. "_components": [
  6035. {
  6036. "__id__": 170
  6037. },
  6038. {
  6039. "__id__": 171
  6040. },
  6041. {
  6042. "__id__": 172
  6043. }
  6044. ],
  6045. "_prefab": {
  6046. "__id__": 173
  6047. },
  6048. "_opacity": 255,
  6049. "_color": {
  6050. "__type__": "cc.Color",
  6051. "r": 84,
  6052. "g": 42,
  6053. "b": 4,
  6054. "a": 255
  6055. },
  6056. "_contentSize": {
  6057. "__type__": "cc.Size",
  6058. "width": 173.38,
  6059. "height": 56.4
  6060. },
  6061. "_anchorPoint": {
  6062. "__type__": "cc.Vec2",
  6063. "x": 0.5,
  6064. "y": 0.5
  6065. },
  6066. "_trs": {
  6067. "__type__": "TypedArray",
  6068. "ctor": "Float64Array",
  6069. "array": [
  6070. 265,
  6071. 0,
  6072. 0,
  6073. 0,
  6074. 0,
  6075. 0,
  6076. 1,
  6077. 1,
  6078. 1,
  6079. 1
  6080. ]
  6081. },
  6082. "_eulerAngles": {
  6083. "__type__": "cc.Vec3",
  6084. "x": 0,
  6085. "y": 0,
  6086. "z": 0
  6087. },
  6088. "_skewX": 0,
  6089. "_skewY": 0,
  6090. "_is3DNode": false,
  6091. "_groupIndex": 0,
  6092. "groupIndex": 0,
  6093. "_id": ""
  6094. },
  6095. {
  6096. "__type__": "cc.Label",
  6097. "_name": "",
  6098. "_objFlags": 0,
  6099. "node": {
  6100. "__id__": 169
  6101. },
  6102. "_enabled": true,
  6103. "_materials": [
  6104. {
  6105. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6106. }
  6107. ],
  6108. "_srcBlendFactor": 770,
  6109. "_dstBlendFactor": 771,
  6110. "_string": "Completed",
  6111. "_N$string": "Completed",
  6112. "_fontSize": 36,
  6113. "_lineHeight": 40,
  6114. "_enableWrapText": true,
  6115. "_N$file": {
  6116. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6117. },
  6118. "_isSystemFontUsed": false,
  6119. "_spacingX": 0,
  6120. "_batchAsBitmap": false,
  6121. "_styleFlags": 0,
  6122. "_underlineHeight": 0,
  6123. "_N$horizontalAlign": 1,
  6124. "_N$verticalAlign": 1,
  6125. "_N$fontFamily": "Arial",
  6126. "_N$overflow": 0,
  6127. "_N$cacheMode": 0,
  6128. "_id": ""
  6129. },
  6130. {
  6131. "__type__": "cc.LabelOutline",
  6132. "_name": "",
  6133. "_objFlags": 0,
  6134. "node": {
  6135. "__id__": 169
  6136. },
  6137. "_enabled": true,
  6138. "_color": {
  6139. "__type__": "cc.Color",
  6140. "r": 214,
  6141. "g": 214,
  6142. "b": 214,
  6143. "a": 0
  6144. },
  6145. "_width": 3,
  6146. "_id": ""
  6147. },
  6148. {
  6149. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  6150. "_name": "",
  6151. "_objFlags": 0,
  6152. "node": {
  6153. "__id__": 169
  6154. },
  6155. "_enabled": true,
  6156. "_englishCase": 1,
  6157. "i18n_string": "t426",
  6158. "i18n_params": [],
  6159. "_addColon": false,
  6160. "_id": ""
  6161. },
  6162. {
  6163. "__type__": "cc.PrefabInfo",
  6164. "root": {
  6165. "__id__": 169
  6166. },
  6167. "asset": {
  6168. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  6169. },
  6170. "fileId": "e5lZoBLLtF1ZiYOiyGUJdX",
  6171. "sync": false
  6172. },
  6173. {
  6174. "__type__": "cc.Node",
  6175. "_name": "go_btn",
  6176. "_objFlags": 0,
  6177. "_parent": {
  6178. "__id__": 117
  6179. },
  6180. "_children": [
  6181. {
  6182. "__id__": 175
  6183. }
  6184. ],
  6185. "_active": true,
  6186. "_components": [
  6187. {
  6188. "__id__": 180
  6189. },
  6190. {
  6191. "__id__": 181
  6192. },
  6193. {
  6194. "__id__": 182
  6195. }
  6196. ],
  6197. "_prefab": {
  6198. "__id__": 184
  6199. },
  6200. "_opacity": 255,
  6201. "_color": {
  6202. "__type__": "cc.Color",
  6203. "r": 255,
  6204. "g": 255,
  6205. "b": 255,
  6206. "a": 255
  6207. },
  6208. "_contentSize": {
  6209. "__type__": "cc.Size",
  6210. "width": 191,
  6211. "height": 77
  6212. },
  6213. "_anchorPoint": {
  6214. "__type__": "cc.Vec2",
  6215. "x": 0.5,
  6216. "y": 0.5
  6217. },
  6218. "_trs": {
  6219. "__type__": "TypedArray",
  6220. "ctor": "Float64Array",
  6221. "array": [
  6222. 265,
  6223. 3,
  6224. 0,
  6225. 0,
  6226. 0,
  6227. 0,
  6228. 1,
  6229. 1,
  6230. 1,
  6231. 0
  6232. ]
  6233. },
  6234. "_eulerAngles": {
  6235. "__type__": "cc.Vec3",
  6236. "x": 0,
  6237. "y": 0,
  6238. "z": 0
  6239. },
  6240. "_skewX": 0,
  6241. "_skewY": 0,
  6242. "_is3DNode": false,
  6243. "_groupIndex": 0,
  6244. "groupIndex": 0,
  6245. "_id": ""
  6246. },
  6247. {
  6248. "__type__": "cc.Node",
  6249. "_name": "label",
  6250. "_objFlags": 0,
  6251. "_parent": {
  6252. "__id__": 174
  6253. },
  6254. "_children": [],
  6255. "_active": true,
  6256. "_components": [
  6257. {
  6258. "__id__": 176
  6259. },
  6260. {
  6261. "__id__": 177
  6262. },
  6263. {
  6264. "__id__": 178
  6265. }
  6266. ],
  6267. "_prefab": {
  6268. "__id__": 179
  6269. },
  6270. "_opacity": 255,
  6271. "_color": {
  6272. "__type__": "cc.Color",
  6273. "r": 68,
  6274. "g": 41,
  6275. "b": 0,
  6276. "a": 255
  6277. },
  6278. "_contentSize": {
  6279. "__type__": "cc.Size",
  6280. "width": 53.19,
  6281. "height": 55.36
  6282. },
  6283. "_anchorPoint": {
  6284. "__type__": "cc.Vec2",
  6285. "x": 0.5,
  6286. "y": 0.5
  6287. },
  6288. "_trs": {
  6289. "__type__": "TypedArray",
  6290. "ctor": "Float64Array",
  6291. "array": [
  6292. 0,
  6293. 0,
  6294. 0,
  6295. 0,
  6296. 0,
  6297. 0,
  6298. 1,
  6299. 1,
  6300. 1,
  6301. 1
  6302. ]
  6303. },
  6304. "_eulerAngles": {
  6305. "__type__": "cc.Vec3",
  6306. "x": 0,
  6307. "y": 0,
  6308. "z": 0
  6309. },
  6310. "_skewX": 0,
  6311. "_skewY": 0,
  6312. "_is3DNode": false,
  6313. "_groupIndex": 0,
  6314. "groupIndex": 0,
  6315. "_id": ""
  6316. },
  6317. {
  6318. "__type__": "cc.Label",
  6319. "_name": "",
  6320. "_objFlags": 0,
  6321. "node": {
  6322. "__id__": 175
  6323. },
  6324. "_enabled": true,
  6325. "_materials": [
  6326. {
  6327. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6328. }
  6329. ],
  6330. "_srcBlendFactor": 770,
  6331. "_dstBlendFactor": 771,
  6332. "_string": "Go",
  6333. "_N$string": "Go",
  6334. "_fontSize": 36,
  6335. "_lineHeight": 36,
  6336. "_enableWrapText": false,
  6337. "_N$file": {
  6338. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6339. },
  6340. "_isSystemFontUsed": false,
  6341. "_spacingX": 0,
  6342. "_batchAsBitmap": false,
  6343. "_styleFlags": 0,
  6344. "_underlineHeight": 0,
  6345. "_N$horizontalAlign": 1,
  6346. "_N$verticalAlign": 1,
  6347. "_N$fontFamily": "Arial",
  6348. "_N$overflow": 0,
  6349. "_N$cacheMode": 0,
  6350. "_id": ""
  6351. },
  6352. {
  6353. "__type__": "cc.LabelOutline",
  6354. "_name": "",
  6355. "_objFlags": 0,
  6356. "node": {
  6357. "__id__": 175
  6358. },
  6359. "_enabled": true,
  6360. "_color": {
  6361. "__type__": "cc.Color",
  6362. "r": 255,
  6363. "g": 210,
  6364. "b": 0,
  6365. "a": 255
  6366. },
  6367. "_width": 5,
  6368. "_id": ""
  6369. },
  6370. {
  6371. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  6372. "_name": "",
  6373. "_objFlags": 0,
  6374. "node": {
  6375. "__id__": 175
  6376. },
  6377. "_enabled": true,
  6378. "_englishCase": 1,
  6379. "i18n_string": "t413",
  6380. "i18n_params": [],
  6381. "_addColon": false,
  6382. "_id": ""
  6383. },
  6384. {
  6385. "__type__": "cc.PrefabInfo",
  6386. "root": {
  6387. "__id__": 174
  6388. },
  6389. "asset": {
  6390. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  6391. },
  6392. "fileId": "12tNP2G5xGpY9oecBiNRvR",
  6393. "sync": false
  6394. },
  6395. {
  6396. "__type__": "cc.Sprite",
  6397. "_name": "",
  6398. "_objFlags": 0,
  6399. "node": {
  6400. "__id__": 174
  6401. },
  6402. "_enabled": true,
  6403. "_materials": [
  6404. {
  6405. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6406. }
  6407. ],
  6408. "_srcBlendFactor": 770,
  6409. "_dstBlendFactor": 771,
  6410. "_spriteFrame": {
  6411. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  6412. },
  6413. "_type": 0,
  6414. "_sizeMode": 0,
  6415. "_fillType": 0,
  6416. "_fillCenter": {
  6417. "__type__": "cc.Vec2",
  6418. "x": 0,
  6419. "y": 0
  6420. },
  6421. "_fillStart": 0,
  6422. "_fillRange": 0,
  6423. "_isTrimmedMode": true,
  6424. "_atlas": null,
  6425. "_id": ""
  6426. },
  6427. {
  6428. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  6429. "_name": "",
  6430. "_objFlags": 0,
  6431. "node": {
  6432. "__id__": 174
  6433. },
  6434. "_enabled": true,
  6435. "openContinuous": true,
  6436. "continuousTime": 0.2,
  6437. "multiTouch": false,
  6438. "_id": ""
  6439. },
  6440. {
  6441. "__type__": "61994AafntNFIbmt1zoyLq+",
  6442. "_name": "",
  6443. "_objFlags": 0,
  6444. "node": {
  6445. "__id__": 174
  6446. },
  6447. "_enabled": true,
  6448. "_normalMaterial": null,
  6449. "_grayMaterial": null,
  6450. "duration": 0.1,
  6451. "zoomScale": 1.2,
  6452. "clickEvents": [
  6453. {
  6454. "__id__": 183
  6455. }
  6456. ],
  6457. "_N$interactable": true,
  6458. "_N$enableAutoGrayEffect": false,
  6459. "_N$transition": 3,
  6460. "transition": 3,
  6461. "_N$normalColor": {
  6462. "__type__": "cc.Color",
  6463. "r": 255,
  6464. "g": 255,
  6465. "b": 255,
  6466. "a": 255
  6467. },
  6468. "_N$pressedColor": {
  6469. "__type__": "cc.Color",
  6470. "r": 211,
  6471. "g": 211,
  6472. "b": 211,
  6473. "a": 255
  6474. },
  6475. "pressedColor": {
  6476. "__type__": "cc.Color",
  6477. "r": 211,
  6478. "g": 211,
  6479. "b": 211,
  6480. "a": 255
  6481. },
  6482. "_N$hoverColor": {
  6483. "__type__": "cc.Color",
  6484. "r": 255,
  6485. "g": 255,
  6486. "b": 255,
  6487. "a": 255
  6488. },
  6489. "hoverColor": {
  6490. "__type__": "cc.Color",
  6491. "r": 255,
  6492. "g": 255,
  6493. "b": 255,
  6494. "a": 255
  6495. },
  6496. "_N$disabledColor": {
  6497. "__type__": "cc.Color",
  6498. "r": 124,
  6499. "g": 124,
  6500. "b": 124,
  6501. "a": 255
  6502. },
  6503. "_N$normalSprite": null,
  6504. "_N$pressedSprite": null,
  6505. "pressedSprite": null,
  6506. "_N$hoverSprite": null,
  6507. "hoverSprite": null,
  6508. "_N$disabledSprite": null,
  6509. "_N$target": {
  6510. "__id__": 174
  6511. },
  6512. "_id": ""
  6513. },
  6514. {
  6515. "__type__": "cc.ClickEvent",
  6516. "target": {
  6517. "__id__": 1
  6518. },
  6519. "component": "",
  6520. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  6521. "handler": "onGoClick",
  6522. "customEventData": ""
  6523. },
  6524. {
  6525. "__type__": "cc.PrefabInfo",
  6526. "root": {
  6527. "__id__": 174
  6528. },
  6529. "asset": {
  6530. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  6531. },
  6532. "fileId": "7fLQdecq9AmIO4SYHXXqOo",
  6533. "sync": false
  6534. },
  6535. {
  6536. "__type__": "cc.Node",
  6537. "_name": "gray",
  6538. "_objFlags": 0,
  6539. "_parent": {
  6540. "__id__": 117
  6541. },
  6542. "_children": [],
  6543. "_active": false,
  6544. "_components": [
  6545. {
  6546. "__id__": 186
  6547. }
  6548. ],
  6549. "_prefab": {
  6550. "__id__": 187
  6551. },
  6552. "_opacity": 153,
  6553. "_color": {
  6554. "__type__": "cc.Color",
  6555. "r": 0,
  6556. "g": 0,
  6557. "b": 0,
  6558. "a": 255
  6559. },
  6560. "_contentSize": {
  6561. "__type__": "cc.Size",
  6562. "width": 775,
  6563. "height": 180
  6564. },
  6565. "_anchorPoint": {
  6566. "__type__": "cc.Vec2",
  6567. "x": 0.5,
  6568. "y": 0.5
  6569. },
  6570. "_trs": {
  6571. "__type__": "TypedArray",
  6572. "ctor": "Float64Array",
  6573. "array": [
  6574. 0,
  6575. 0,
  6576. 0,
  6577. 0,
  6578. 0,
  6579. 0,
  6580. 1,
  6581. 1,
  6582. 1,
  6583. 1
  6584. ]
  6585. },
  6586. "_eulerAngles": {
  6587. "__type__": "cc.Vec3",
  6588. "x": 0,
  6589. "y": 0,
  6590. "z": 0
  6591. },
  6592. "_skewX": 0,
  6593. "_skewY": 0,
  6594. "_is3DNode": false,
  6595. "_groupIndex": 0,
  6596. "groupIndex": 0,
  6597. "_id": ""
  6598. },
  6599. {
  6600. "__type__": "cc.Sprite",
  6601. "_name": "",
  6602. "_objFlags": 0,
  6603. "node": {
  6604. "__id__": 185
  6605. },
  6606. "_enabled": true,
  6607. "_materials": [
  6608. {
  6609. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6610. }
  6611. ],
  6612. "_srcBlendFactor": 770,
  6613. "_dstBlendFactor": 771,
  6614. "_spriteFrame": {
  6615. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  6616. },
  6617. "_type": 1,
  6618. "_sizeMode": 0,
  6619. "_fillType": 0,
  6620. "_fillCenter": {
  6621. "__type__": "cc.Vec2",
  6622. "x": 0,
  6623. "y": 0
  6624. },
  6625. "_fillStart": 0,
  6626. "_fillRange": 0,
  6627. "_isTrimmedMode": true,
  6628. "_atlas": null,
  6629. "_id": ""
  6630. },
  6631. {
  6632. "__type__": "cc.PrefabInfo",
  6633. "root": {
  6634. "__id__": 1
  6635. },
  6636. "asset": {
  6637. "__id__": 0
  6638. },
  6639. "fileId": "1bljwXB8ZDrKyeibh7bkft",
  6640. "sync": false
  6641. },
  6642. {
  6643. "__type__": "cc.PrefabInfo",
  6644. "root": {
  6645. "__id__": 1
  6646. },
  6647. "asset": {
  6648. "__id__": 0
  6649. },
  6650. "fileId": "b6M/ANnOBIzr5TytFFvHyX",
  6651. "sync": false
  6652. },
  6653. {
  6654. "__type__": "cc.Layout",
  6655. "_name": "",
  6656. "_objFlags": 0,
  6657. "node": {
  6658. "__id__": 116
  6659. },
  6660. "_enabled": true,
  6661. "_layoutSize": {
  6662. "__type__": "cc.Size",
  6663. "width": 300,
  6664. "height": 200
  6665. },
  6666. "_resize": 0,
  6667. "_N$layoutType": 3,
  6668. "_N$cellSize": {
  6669. "__type__": "cc.Size",
  6670. "width": 775,
  6671. "height": 180
  6672. },
  6673. "_N$startAxis": 0,
  6674. "_N$paddingLeft": 5,
  6675. "_N$paddingRight": 0,
  6676. "_N$paddingTop": 5,
  6677. "_N$paddingBottom": 0,
  6678. "_N$spacingX": 0,
  6679. "_N$spacingY": 0,
  6680. "_N$verticalDirection": 1,
  6681. "_N$horizontalDirection": 0,
  6682. "_N$affectedByScale": false,
  6683. "_id": ""
  6684. },
  6685. {
  6686. "__type__": "cc.PrefabInfo",
  6687. "root": {
  6688. "__id__": 1
  6689. },
  6690. "asset": {
  6691. "__id__": 0
  6692. },
  6693. "fileId": "b0Kvvbyv9EWKQ0Y5m89RTu",
  6694. "sync": false
  6695. },
  6696. {
  6697. "__type__": "cc.Mask",
  6698. "_name": "",
  6699. "_objFlags": 0,
  6700. "node": {
  6701. "__id__": 115
  6702. },
  6703. "_enabled": true,
  6704. "_materials": [
  6705. {
  6706. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6707. }
  6708. ],
  6709. "_spriteFrame": null,
  6710. "_type": 0,
  6711. "_segments": 64,
  6712. "_N$alphaThreshold": 0.1,
  6713. "_N$inverted": false,
  6714. "_id": ""
  6715. },
  6716. {
  6717. "__type__": "cc.PrefabInfo",
  6718. "root": {
  6719. "__id__": 1
  6720. },
  6721. "asset": {
  6722. "__id__": 0
  6723. },
  6724. "fileId": "d8ASyDsw9G/4jBEuPKi/Iu",
  6725. "sync": false
  6726. },
  6727. {
  6728. "__type__": "cc.Sprite",
  6729. "_name": "",
  6730. "_objFlags": 0,
  6731. "node": {
  6732. "__id__": 114
  6733. },
  6734. "_enabled": true,
  6735. "_materials": [
  6736. {
  6737. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6738. }
  6739. ],
  6740. "_srcBlendFactor": 770,
  6741. "_dstBlendFactor": 771,
  6742. "_spriteFrame": {
  6743. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  6744. },
  6745. "_type": 2,
  6746. "_sizeMode": 0,
  6747. "_fillType": 0,
  6748. "_fillCenter": {
  6749. "__type__": "cc.Vec2",
  6750. "x": 0,
  6751. "y": 0
  6752. },
  6753. "_fillStart": 0,
  6754. "_fillRange": 0,
  6755. "_isTrimmedMode": true,
  6756. "_atlas": null,
  6757. "_id": ""
  6758. },
  6759. {
  6760. "__type__": "cc.ScrollView",
  6761. "_name": "",
  6762. "_objFlags": 0,
  6763. "node": {
  6764. "__id__": 114
  6765. },
  6766. "_enabled": true,
  6767. "horizontal": false,
  6768. "vertical": true,
  6769. "inertia": true,
  6770. "brake": 0.5,
  6771. "elastic": true,
  6772. "bounceDuration": 1,
  6773. "scrollEvents": [],
  6774. "cancelInnerEvents": false,
  6775. "_N$content": {
  6776. "__id__": 116
  6777. },
  6778. "content": {
  6779. "__id__": 116
  6780. },
  6781. "_id": ""
  6782. },
  6783. {
  6784. "__type__": "c8b0avBBlRLLLMX0ufI4l6A",
  6785. "_name": "",
  6786. "_objFlags": 0,
  6787. "node": {
  6788. "__id__": 114
  6789. },
  6790. "_enabled": true,
  6791. "templateType": 1,
  6792. "tmpNode": {
  6793. "__id__": 117
  6794. },
  6795. "tmpPrefab": null,
  6796. "_slideMode": 1,
  6797. "pageDistance": 0.3,
  6798. "pageChangeEvent": {
  6799. "__id__": 196
  6800. },
  6801. "_virtual": true,
  6802. "cyclic": false,
  6803. "lackCenter": false,
  6804. "lackSlide": false,
  6805. "_updateRate": 0,
  6806. "frameByFrameRenderNum": 1,
  6807. "renderEvent": {
  6808. "__id__": 197
  6809. },
  6810. "selectedMode": 0,
  6811. "repeatEventSingle": false,
  6812. "selectedEvent": null,
  6813. "_id": ""
  6814. },
  6815. {
  6816. "__type__": "cc.ClickEvent",
  6817. "target": null,
  6818. "component": "",
  6819. "_componentId": "",
  6820. "handler": "",
  6821. "customEventData": ""
  6822. },
  6823. {
  6824. "__type__": "cc.ClickEvent",
  6825. "target": {
  6826. "__id__": 1
  6827. },
  6828. "component": "",
  6829. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  6830. "handler": "initTaskItem",
  6831. "customEventData": ""
  6832. },
  6833. {
  6834. "__type__": "cc.PrefabInfo",
  6835. "root": {
  6836. "__id__": 1
  6837. },
  6838. "asset": {
  6839. "__id__": 0
  6840. },
  6841. "fileId": "1b7qj9hmxPh7bur80/iCXc",
  6842. "sync": false
  6843. },
  6844. {
  6845. "__type__": "cc.Node",
  6846. "_name": "bottom1",
  6847. "_objFlags": 0,
  6848. "_parent": {
  6849. "__id__": 1
  6850. },
  6851. "_children": [],
  6852. "_active": false,
  6853. "_components": [
  6854. {
  6855. "__id__": 200
  6856. }
  6857. ],
  6858. "_prefab": {
  6859. "__id__": 201
  6860. },
  6861. "_opacity": 255,
  6862. "_color": {
  6863. "__type__": "cc.Color",
  6864. "r": 255,
  6865. "g": 255,
  6866. "b": 255,
  6867. "a": 255
  6868. },
  6869. "_contentSize": {
  6870. "__type__": "cc.Size",
  6871. "width": 1556,
  6872. "height": 880
  6873. },
  6874. "_anchorPoint": {
  6875. "__type__": "cc.Vec2",
  6876. "x": 0.5,
  6877. "y": 0.5
  6878. },
  6879. "_trs": {
  6880. "__type__": "TypedArray",
  6881. "ctor": "Float64Array",
  6882. "array": [
  6883. 145.884,
  6884. -36.471,
  6885. 0,
  6886. 0,
  6887. 0,
  6888. 0,
  6889. 1,
  6890. 1,
  6891. 1,
  6892. 1
  6893. ]
  6894. },
  6895. "_eulerAngles": {
  6896. "__type__": "cc.Vec3",
  6897. "x": 0,
  6898. "y": 0,
  6899. "z": 0
  6900. },
  6901. "_skewX": 0,
  6902. "_skewY": 0,
  6903. "_is3DNode": false,
  6904. "_groupIndex": 0,
  6905. "groupIndex": 0,
  6906. "_id": ""
  6907. },
  6908. {
  6909. "__type__": "cc.Sprite",
  6910. "_name": "",
  6911. "_objFlags": 0,
  6912. "node": {
  6913. "__id__": 199
  6914. },
  6915. "_enabled": true,
  6916. "_materials": [
  6917. {
  6918. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6919. }
  6920. ],
  6921. "_srcBlendFactor": 770,
  6922. "_dstBlendFactor": 771,
  6923. "_spriteFrame": {
  6924. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  6925. },
  6926. "_type": 1,
  6927. "_sizeMode": 0,
  6928. "_fillType": 0,
  6929. "_fillCenter": {
  6930. "__type__": "cc.Vec2",
  6931. "x": 0,
  6932. "y": 0
  6933. },
  6934. "_fillStart": 0,
  6935. "_fillRange": 0,
  6936. "_isTrimmedMode": true,
  6937. "_atlas": null,
  6938. "_id": ""
  6939. },
  6940. {
  6941. "__type__": "cc.PrefabInfo",
  6942. "root": {
  6943. "__id__": 1
  6944. },
  6945. "asset": {
  6946. "__id__": 0
  6947. },
  6948. "fileId": "84Rgs7YyhGQKp4QEQBvzIG",
  6949. "sync": false
  6950. },
  6951. {
  6952. "__type__": "cc.Node",
  6953. "_name": "achievement_list",
  6954. "_objFlags": 0,
  6955. "_parent": {
  6956. "__id__": 1
  6957. },
  6958. "_children": [
  6959. {
  6960. "__id__": 203
  6961. }
  6962. ],
  6963. "_active": false,
  6964. "_components": [
  6965. {
  6966. "__id__": 274
  6967. },
  6968. {
  6969. "__id__": 275
  6970. },
  6971. {
  6972. "__id__": 278
  6973. }
  6974. ],
  6975. "_prefab": {
  6976. "__id__": 279
  6977. },
  6978. "_opacity": 255,
  6979. "_color": {
  6980. "__type__": "cc.Color",
  6981. "r": 255,
  6982. "g": 255,
  6983. "b": 255,
  6984. "a": 255
  6985. },
  6986. "_contentSize": {
  6987. "__type__": "cc.Size",
  6988. "width": 1556,
  6989. "height": 880
  6990. },
  6991. "_anchorPoint": {
  6992. "__type__": "cc.Vec2",
  6993. "x": 0.5,
  6994. "y": 0.5
  6995. },
  6996. "_trs": {
  6997. "__type__": "TypedArray",
  6998. "ctor": "Float64Array",
  6999. "array": [
  7000. 140,
  7001. -40,
  7002. 0,
  7003. 0,
  7004. 0,
  7005. 0,
  7006. 1,
  7007. 1,
  7008. 1,
  7009. 1
  7010. ]
  7011. },
  7012. "_eulerAngles": {
  7013. "__type__": "cc.Vec3",
  7014. "x": 0,
  7015. "y": 0,
  7016. "z": 0
  7017. },
  7018. "_skewX": 0,
  7019. "_skewY": 0,
  7020. "_is3DNode": false,
  7021. "_groupIndex": 0,
  7022. "groupIndex": 0,
  7023. "_id": ""
  7024. },
  7025. {
  7026. "__type__": "cc.Node",
  7027. "_name": "view",
  7028. "_objFlags": 0,
  7029. "_parent": {
  7030. "__id__": 202
  7031. },
  7032. "_children": [
  7033. {
  7034. "__id__": 204
  7035. }
  7036. ],
  7037. "_active": true,
  7038. "_components": [
  7039. {
  7040. "__id__": 272
  7041. }
  7042. ],
  7043. "_prefab": {
  7044. "__id__": 273
  7045. },
  7046. "_opacity": 255,
  7047. "_color": {
  7048. "__type__": "cc.Color",
  7049. "r": 255,
  7050. "g": 255,
  7051. "b": 255,
  7052. "a": 255
  7053. },
  7054. "_contentSize": {
  7055. "__type__": "cc.Size",
  7056. "width": 1556,
  7057. "height": 880
  7058. },
  7059. "_anchorPoint": {
  7060. "__type__": "cc.Vec2",
  7061. "x": 0.5,
  7062. "y": 1
  7063. },
  7064. "_trs": {
  7065. "__type__": "TypedArray",
  7066. "ctor": "Float64Array",
  7067. "array": [
  7068. 0,
  7069. 440,
  7070. 0,
  7071. 0,
  7072. 0,
  7073. 0,
  7074. 1,
  7075. 1,
  7076. 1,
  7077. 1
  7078. ]
  7079. },
  7080. "_eulerAngles": {
  7081. "__type__": "cc.Vec3",
  7082. "x": 0,
  7083. "y": 0,
  7084. "z": 0
  7085. },
  7086. "_skewX": 0,
  7087. "_skewY": 0,
  7088. "_is3DNode": false,
  7089. "_groupIndex": 0,
  7090. "groupIndex": 0,
  7091. "_id": ""
  7092. },
  7093. {
  7094. "__type__": "cc.Node",
  7095. "_name": "content",
  7096. "_objFlags": 0,
  7097. "_parent": {
  7098. "__id__": 203
  7099. },
  7100. "_children": [
  7101. {
  7102. "__id__": 205
  7103. }
  7104. ],
  7105. "_active": true,
  7106. "_components": [
  7107. {
  7108. "__id__": 270
  7109. }
  7110. ],
  7111. "_prefab": {
  7112. "__id__": 271
  7113. },
  7114. "_opacity": 255,
  7115. "_color": {
  7116. "__type__": "cc.Color",
  7117. "r": 255,
  7118. "g": 255,
  7119. "b": 255,
  7120. "a": 255
  7121. },
  7122. "_contentSize": {
  7123. "__type__": "cc.Size",
  7124. "width": 1556,
  7125. "height": 880
  7126. },
  7127. "_anchorPoint": {
  7128. "__type__": "cc.Vec2",
  7129. "x": 0.5,
  7130. "y": 1
  7131. },
  7132. "_trs": {
  7133. "__type__": "TypedArray",
  7134. "ctor": "Float64Array",
  7135. "array": [
  7136. 0,
  7137. 0,
  7138. 0,
  7139. 0,
  7140. 0,
  7141. 0,
  7142. 1,
  7143. 1,
  7144. 1,
  7145. 1
  7146. ]
  7147. },
  7148. "_eulerAngles": {
  7149. "__type__": "cc.Vec3",
  7150. "x": 0,
  7151. "y": 0,
  7152. "z": 0
  7153. },
  7154. "_skewX": 0,
  7155. "_skewY": 0,
  7156. "_is3DNode": false,
  7157. "_groupIndex": 0,
  7158. "groupIndex": 0,
  7159. "_id": ""
  7160. },
  7161. {
  7162. "__type__": "cc.Node",
  7163. "_name": "task_item",
  7164. "_objFlags": 0,
  7165. "_parent": {
  7166. "__id__": 204
  7167. },
  7168. "_children": [
  7169. {
  7170. "__id__": 206
  7171. },
  7172. {
  7173. "__id__": 209
  7174. },
  7175. {
  7176. "__id__": 212
  7177. },
  7178. {
  7179. "__id__": 223
  7180. },
  7181. {
  7182. "__id__": 228
  7183. },
  7184. {
  7185. "__id__": 240
  7186. },
  7187. {
  7188. "__id__": 245
  7189. },
  7190. {
  7191. "__id__": 256
  7192. },
  7193. {
  7194. "__id__": 259
  7195. }
  7196. ],
  7197. "_active": true,
  7198. "_components": [],
  7199. "_prefab": {
  7200. "__id__": 269
  7201. },
  7202. "_opacity": 255,
  7203. "_color": {
  7204. "__type__": "cc.Color",
  7205. "r": 255,
  7206. "g": 255,
  7207. "b": 255,
  7208. "a": 255
  7209. },
  7210. "_contentSize": {
  7211. "__type__": "cc.Size",
  7212. "width": 775,
  7213. "height": 180
  7214. },
  7215. "_anchorPoint": {
  7216. "__type__": "cc.Vec2",
  7217. "x": 0.5,
  7218. "y": 0.5
  7219. },
  7220. "_trs": {
  7221. "__type__": "TypedArray",
  7222. "ctor": "Float64Array",
  7223. "array": [
  7224. -390.5,
  7225. -90,
  7226. 0,
  7227. 0,
  7228. 0,
  7229. 0,
  7230. 1,
  7231. 1,
  7232. 1,
  7233. 1
  7234. ]
  7235. },
  7236. "_eulerAngles": {
  7237. "__type__": "cc.Vec3",
  7238. "x": 0,
  7239. "y": 0,
  7240. "z": 0
  7241. },
  7242. "_skewX": 0,
  7243. "_skewY": 0,
  7244. "_is3DNode": false,
  7245. "_groupIndex": 0,
  7246. "groupIndex": 0,
  7247. "_id": ""
  7248. },
  7249. {
  7250. "__type__": "cc.Node",
  7251. "_name": "normal",
  7252. "_objFlags": 0,
  7253. "_parent": {
  7254. "__id__": 205
  7255. },
  7256. "_children": [],
  7257. "_active": true,
  7258. "_components": [
  7259. {
  7260. "__id__": 207
  7261. }
  7262. ],
  7263. "_prefab": {
  7264. "__id__": 208
  7265. },
  7266. "_opacity": 255,
  7267. "_color": {
  7268. "__type__": "cc.Color",
  7269. "r": 255,
  7270. "g": 255,
  7271. "b": 255,
  7272. "a": 255
  7273. },
  7274. "_contentSize": {
  7275. "__type__": "cc.Size",
  7276. "width": 769,
  7277. "height": 170
  7278. },
  7279. "_anchorPoint": {
  7280. "__type__": "cc.Vec2",
  7281. "x": 0.5,
  7282. "y": 0.5
  7283. },
  7284. "_trs": {
  7285. "__type__": "TypedArray",
  7286. "ctor": "Float64Array",
  7287. "array": [
  7288. 0,
  7289. 0,
  7290. 0,
  7291. 0,
  7292. 0,
  7293. 0,
  7294. 1,
  7295. 1,
  7296. 1,
  7297. 1
  7298. ]
  7299. },
  7300. "_eulerAngles": {
  7301. "__type__": "cc.Vec3",
  7302. "x": 0,
  7303. "y": 0,
  7304. "z": 0
  7305. },
  7306. "_skewX": 0,
  7307. "_skewY": 0,
  7308. "_is3DNode": false,
  7309. "_groupIndex": 0,
  7310. "groupIndex": 0,
  7311. "_id": ""
  7312. },
  7313. {
  7314. "__type__": "cc.Sprite",
  7315. "_name": "",
  7316. "_objFlags": 0,
  7317. "node": {
  7318. "__id__": 206
  7319. },
  7320. "_enabled": true,
  7321. "_materials": [
  7322. {
  7323. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7324. }
  7325. ],
  7326. "_srcBlendFactor": 770,
  7327. "_dstBlendFactor": 771,
  7328. "_spriteFrame": {
  7329. "__uuid__": "74734905-72ab-4180-b88e-57e30a112b3c"
  7330. },
  7331. "_type": 0,
  7332. "_sizeMode": 1,
  7333. "_fillType": 0,
  7334. "_fillCenter": {
  7335. "__type__": "cc.Vec2",
  7336. "x": 0,
  7337. "y": 0
  7338. },
  7339. "_fillStart": 0,
  7340. "_fillRange": 0,
  7341. "_isTrimmedMode": true,
  7342. "_atlas": null,
  7343. "_id": ""
  7344. },
  7345. {
  7346. "__type__": "cc.PrefabInfo",
  7347. "root": {
  7348. "__id__": 1
  7349. },
  7350. "asset": {
  7351. "__id__": 0
  7352. },
  7353. "fileId": "43/TDyRz5BqqPQOicS/3JT",
  7354. "sync": false
  7355. },
  7356. {
  7357. "__type__": "cc.Node",
  7358. "_name": "complete",
  7359. "_objFlags": 0,
  7360. "_parent": {
  7361. "__id__": 205
  7362. },
  7363. "_children": [],
  7364. "_active": false,
  7365. "_components": [
  7366. {
  7367. "__id__": 210
  7368. }
  7369. ],
  7370. "_prefab": {
  7371. "__id__": 211
  7372. },
  7373. "_opacity": 255,
  7374. "_color": {
  7375. "__type__": "cc.Color",
  7376. "r": 255,
  7377. "g": 255,
  7378. "b": 255,
  7379. "a": 255
  7380. },
  7381. "_contentSize": {
  7382. "__type__": "cc.Size",
  7383. "width": 775,
  7384. "height": 180
  7385. },
  7386. "_anchorPoint": {
  7387. "__type__": "cc.Vec2",
  7388. "x": 0.5,
  7389. "y": 0.5
  7390. },
  7391. "_trs": {
  7392. "__type__": "TypedArray",
  7393. "ctor": "Float64Array",
  7394. "array": [
  7395. 0,
  7396. 0,
  7397. 0,
  7398. 0,
  7399. 0,
  7400. 0,
  7401. 1,
  7402. 1,
  7403. 1,
  7404. 1
  7405. ]
  7406. },
  7407. "_eulerAngles": {
  7408. "__type__": "cc.Vec3",
  7409. "x": 0,
  7410. "y": 0,
  7411. "z": 0
  7412. },
  7413. "_skewX": 0,
  7414. "_skewY": 0,
  7415. "_is3DNode": false,
  7416. "_groupIndex": 0,
  7417. "groupIndex": 0,
  7418. "_id": ""
  7419. },
  7420. {
  7421. "__type__": "cc.Sprite",
  7422. "_name": "",
  7423. "_objFlags": 0,
  7424. "node": {
  7425. "__id__": 209
  7426. },
  7427. "_enabled": true,
  7428. "_materials": [
  7429. {
  7430. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7431. }
  7432. ],
  7433. "_srcBlendFactor": 770,
  7434. "_dstBlendFactor": 771,
  7435. "_spriteFrame": {
  7436. "__uuid__": "76da3103-0507-4bc9-be57-0c7cc8f65f66"
  7437. },
  7438. "_type": 0,
  7439. "_sizeMode": 0,
  7440. "_fillType": 0,
  7441. "_fillCenter": {
  7442. "__type__": "cc.Vec2",
  7443. "x": 0,
  7444. "y": 0
  7445. },
  7446. "_fillStart": 0,
  7447. "_fillRange": 0,
  7448. "_isTrimmedMode": true,
  7449. "_atlas": null,
  7450. "_id": ""
  7451. },
  7452. {
  7453. "__type__": "cc.PrefabInfo",
  7454. "root": {
  7455. "__id__": 1
  7456. },
  7457. "asset": {
  7458. "__id__": 0
  7459. },
  7460. "fileId": "78IrM4L3lF3INOb7yGe9SD",
  7461. "sync": false
  7462. },
  7463. {
  7464. "__type__": "cc.Node",
  7465. "_name": "clain_btn",
  7466. "_objFlags": 0,
  7467. "_parent": {
  7468. "__id__": 205
  7469. },
  7470. "_children": [
  7471. {
  7472. "__id__": 213
  7473. }
  7474. ],
  7475. "_active": false,
  7476. "_components": [
  7477. {
  7478. "__id__": 218
  7479. },
  7480. {
  7481. "__id__": 219
  7482. },
  7483. {
  7484. "__id__": 220
  7485. }
  7486. ],
  7487. "_prefab": {
  7488. "__id__": 222
  7489. },
  7490. "_opacity": 255,
  7491. "_color": {
  7492. "__type__": "cc.Color",
  7493. "r": 255,
  7494. "g": 255,
  7495. "b": 255,
  7496. "a": 255
  7497. },
  7498. "_contentSize": {
  7499. "__type__": "cc.Size",
  7500. "width": 191,
  7501. "height": 77
  7502. },
  7503. "_anchorPoint": {
  7504. "__type__": "cc.Vec2",
  7505. "x": 0.5,
  7506. "y": 0.5
  7507. },
  7508. "_trs": {
  7509. "__type__": "TypedArray",
  7510. "ctor": "Float64Array",
  7511. "array": [
  7512. 260,
  7513. 0,
  7514. 0,
  7515. 0,
  7516. 0,
  7517. 0,
  7518. 1,
  7519. 1,
  7520. 1,
  7521. 0
  7522. ]
  7523. },
  7524. "_eulerAngles": {
  7525. "__type__": "cc.Vec3",
  7526. "x": 0,
  7527. "y": 0,
  7528. "z": 0
  7529. },
  7530. "_skewX": 0,
  7531. "_skewY": 0,
  7532. "_is3DNode": false,
  7533. "_groupIndex": 0,
  7534. "groupIndex": 0,
  7535. "_id": ""
  7536. },
  7537. {
  7538. "__type__": "cc.Node",
  7539. "_name": "label",
  7540. "_objFlags": 0,
  7541. "_parent": {
  7542. "__id__": 212
  7543. },
  7544. "_children": [],
  7545. "_active": true,
  7546. "_components": [
  7547. {
  7548. "__id__": 214
  7549. },
  7550. {
  7551. "__id__": 215
  7552. },
  7553. {
  7554. "__id__": 216
  7555. }
  7556. ],
  7557. "_prefab": {
  7558. "__id__": 217
  7559. },
  7560. "_opacity": 255,
  7561. "_color": {
  7562. "__type__": "cc.Color",
  7563. "r": 29,
  7564. "g": 37,
  7565. "b": 7,
  7566. "a": 255
  7567. },
  7568. "_contentSize": {
  7569. "__type__": "cc.Size",
  7570. "width": 110.67,
  7571. "height": 46
  7572. },
  7573. "_anchorPoint": {
  7574. "__type__": "cc.Vec2",
  7575. "x": 0.5,
  7576. "y": 0.5
  7577. },
  7578. "_trs": {
  7579. "__type__": "TypedArray",
  7580. "ctor": "Float64Array",
  7581. "array": [
  7582. 0,
  7583. 0,
  7584. 0,
  7585. 0,
  7586. 0,
  7587. 0,
  7588. 1,
  7589. 1,
  7590. 1,
  7591. 0
  7592. ]
  7593. },
  7594. "_eulerAngles": {
  7595. "__type__": "cc.Vec3",
  7596. "x": 0,
  7597. "y": 0,
  7598. "z": 0
  7599. },
  7600. "_skewX": 0,
  7601. "_skewY": 0,
  7602. "_is3DNode": false,
  7603. "_groupIndex": 0,
  7604. "groupIndex": 0,
  7605. "_id": ""
  7606. },
  7607. {
  7608. "__type__": "cc.Label",
  7609. "_name": "",
  7610. "_objFlags": 0,
  7611. "node": {
  7612. "__id__": 213
  7613. },
  7614. "_enabled": true,
  7615. "_materials": [
  7616. {
  7617. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7618. }
  7619. ],
  7620. "_srcBlendFactor": 770,
  7621. "_dstBlendFactor": 771,
  7622. "_string": "Claim",
  7623. "_N$string": "Claim",
  7624. "_fontSize": 36,
  7625. "_lineHeight": 36,
  7626. "_enableWrapText": true,
  7627. "_N$file": {
  7628. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  7629. },
  7630. "_isSystemFontUsed": false,
  7631. "_spacingX": 0,
  7632. "_batchAsBitmap": false,
  7633. "_styleFlags": 0,
  7634. "_underlineHeight": 0,
  7635. "_N$horizontalAlign": 1,
  7636. "_N$verticalAlign": 1,
  7637. "_N$fontFamily": "Arial",
  7638. "_N$overflow": 0,
  7639. "_N$cacheMode": 0,
  7640. "_id": ""
  7641. },
  7642. {
  7643. "__type__": "cc.LabelOutline",
  7644. "_name": "",
  7645. "_objFlags": 0,
  7646. "node": {
  7647. "__id__": 213
  7648. },
  7649. "_enabled": true,
  7650. "_color": {
  7651. "__type__": "cc.Color",
  7652. "r": 190,
  7653. "g": 213,
  7654. "b": 4,
  7655. "a": 255
  7656. },
  7657. "_width": 5,
  7658. "_id": ""
  7659. },
  7660. {
  7661. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  7662. "_name": "",
  7663. "_objFlags": 0,
  7664. "node": {
  7665. "__id__": 213
  7666. },
  7667. "_enabled": true,
  7668. "_englishCase": 1,
  7669. "i18n_string": "t15",
  7670. "i18n_params": [],
  7671. "_addColon": false,
  7672. "_id": ""
  7673. },
  7674. {
  7675. "__type__": "cc.PrefabInfo",
  7676. "root": {
  7677. "__id__": 212
  7678. },
  7679. "asset": {
  7680. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  7681. },
  7682. "fileId": "50rygI7tlMKZiREuVUpLZv",
  7683. "sync": false
  7684. },
  7685. {
  7686. "__type__": "cc.Sprite",
  7687. "_name": "",
  7688. "_objFlags": 0,
  7689. "node": {
  7690. "__id__": 212
  7691. },
  7692. "_enabled": true,
  7693. "_materials": [
  7694. {
  7695. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7696. }
  7697. ],
  7698. "_srcBlendFactor": 770,
  7699. "_dstBlendFactor": 771,
  7700. "_spriteFrame": {
  7701. "__uuid__": "79ade49c-941d-4e47-a06a-8c8504fa6f4a"
  7702. },
  7703. "_type": 0,
  7704. "_sizeMode": 0,
  7705. "_fillType": 0,
  7706. "_fillCenter": {
  7707. "__type__": "cc.Vec2",
  7708. "x": 0,
  7709. "y": 0
  7710. },
  7711. "_fillStart": 0,
  7712. "_fillRange": 0,
  7713. "_isTrimmedMode": true,
  7714. "_atlas": null,
  7715. "_id": ""
  7716. },
  7717. {
  7718. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  7719. "_name": "",
  7720. "_objFlags": 0,
  7721. "node": {
  7722. "__id__": 212
  7723. },
  7724. "_enabled": true,
  7725. "openContinuous": true,
  7726. "continuousTime": 0.2,
  7727. "multiTouch": false,
  7728. "_id": ""
  7729. },
  7730. {
  7731. "__type__": "61994AafntNFIbmt1zoyLq+",
  7732. "_name": "",
  7733. "_objFlags": 0,
  7734. "node": {
  7735. "__id__": 212
  7736. },
  7737. "_enabled": true,
  7738. "_normalMaterial": null,
  7739. "_grayMaterial": null,
  7740. "duration": 0.1,
  7741. "zoomScale": 1.2,
  7742. "clickEvents": [
  7743. {
  7744. "__id__": 221
  7745. }
  7746. ],
  7747. "_N$interactable": true,
  7748. "_N$enableAutoGrayEffect": false,
  7749. "_N$transition": 3,
  7750. "transition": 3,
  7751. "_N$normalColor": {
  7752. "__type__": "cc.Color",
  7753. "r": 255,
  7754. "g": 255,
  7755. "b": 255,
  7756. "a": 255
  7757. },
  7758. "_N$pressedColor": {
  7759. "__type__": "cc.Color",
  7760. "r": 211,
  7761. "g": 211,
  7762. "b": 211,
  7763. "a": 255
  7764. },
  7765. "pressedColor": {
  7766. "__type__": "cc.Color",
  7767. "r": 211,
  7768. "g": 211,
  7769. "b": 211,
  7770. "a": 255
  7771. },
  7772. "_N$hoverColor": {
  7773. "__type__": "cc.Color",
  7774. "r": 255,
  7775. "g": 255,
  7776. "b": 255,
  7777. "a": 255
  7778. },
  7779. "hoverColor": {
  7780. "__type__": "cc.Color",
  7781. "r": 255,
  7782. "g": 255,
  7783. "b": 255,
  7784. "a": 255
  7785. },
  7786. "_N$disabledColor": {
  7787. "__type__": "cc.Color",
  7788. "r": 124,
  7789. "g": 124,
  7790. "b": 124,
  7791. "a": 255
  7792. },
  7793. "_N$normalSprite": null,
  7794. "_N$pressedSprite": null,
  7795. "pressedSprite": null,
  7796. "_N$hoverSprite": null,
  7797. "hoverSprite": null,
  7798. "_N$disabledSprite": null,
  7799. "_N$target": {
  7800. "__id__": 212
  7801. },
  7802. "_id": ""
  7803. },
  7804. {
  7805. "__type__": "cc.ClickEvent",
  7806. "target": {
  7807. "__id__": 1
  7808. },
  7809. "component": "",
  7810. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  7811. "handler": "onClainClick",
  7812. "customEventData": ""
  7813. },
  7814. {
  7815. "__type__": "cc.PrefabInfo",
  7816. "root": {
  7817. "__id__": 212
  7818. },
  7819. "asset": {
  7820. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  7821. },
  7822. "fileId": "f7Wdl1ZjVOmr/99blIDeGz",
  7823. "sync": false
  7824. },
  7825. {
  7826. "__type__": "cc.Node",
  7827. "_name": "task_decs",
  7828. "_objFlags": 0,
  7829. "_parent": {
  7830. "__id__": 205
  7831. },
  7832. "_children": [],
  7833. "_active": true,
  7834. "_components": [
  7835. {
  7836. "__id__": 224
  7837. },
  7838. {
  7839. "__id__": 225
  7840. },
  7841. {
  7842. "__id__": 226
  7843. }
  7844. ],
  7845. "_prefab": {
  7846. "__id__": 227
  7847. },
  7848. "_opacity": 255,
  7849. "_color": {
  7850. "__type__": "cc.Color",
  7851. "r": 255,
  7852. "g": 255,
  7853. "b": 255,
  7854. "a": 255
  7855. },
  7856. "_contentSize": {
  7857. "__type__": "cc.Size",
  7858. "width": 360,
  7859. "height": 120
  7860. },
  7861. "_anchorPoint": {
  7862. "__type__": "cc.Vec2",
  7863. "x": 0.5,
  7864. "y": 0.5
  7865. },
  7866. "_trs": {
  7867. "__type__": "TypedArray",
  7868. "ctor": "Float64Array",
  7869. "array": [
  7870. -36,
  7871. 20,
  7872. 0,
  7873. 0,
  7874. 0,
  7875. 0,
  7876. 1,
  7877. 1,
  7878. 1,
  7879. 1
  7880. ]
  7881. },
  7882. "_eulerAngles": {
  7883. "__type__": "cc.Vec3",
  7884. "x": 0,
  7885. "y": 0,
  7886. "z": 0
  7887. },
  7888. "_skewX": 0,
  7889. "_skewY": 0,
  7890. "_is3DNode": false,
  7891. "_groupIndex": 0,
  7892. "groupIndex": 0,
  7893. "_id": ""
  7894. },
  7895. {
  7896. "__type__": "cc.Label",
  7897. "_name": "",
  7898. "_objFlags": 0,
  7899. "node": {
  7900. "__id__": 223
  7901. },
  7902. "_enabled": true,
  7903. "_materials": [
  7904. {
  7905. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7906. }
  7907. ],
  7908. "_srcBlendFactor": 770,
  7909. "_dstBlendFactor": 771,
  7910. "_string": "Challenge or sweep though adventure stages three times",
  7911. "_N$string": "Challenge or sweep though adventure stages three times",
  7912. "_fontSize": 30,
  7913. "_lineHeight": 30,
  7914. "_enableWrapText": true,
  7915. "_N$file": {
  7916. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  7917. },
  7918. "_isSystemFontUsed": false,
  7919. "_spacingX": 0,
  7920. "_batchAsBitmap": false,
  7921. "_styleFlags": 0,
  7922. "_underlineHeight": 0,
  7923. "_N$horizontalAlign": 0,
  7924. "_N$verticalAlign": 1,
  7925. "_N$fontFamily": "Arial",
  7926. "_N$overflow": 2,
  7927. "_N$cacheMode": 0,
  7928. "_id": ""
  7929. },
  7930. {
  7931. "__type__": "cc.LabelOutline",
  7932. "_name": "",
  7933. "_objFlags": 0,
  7934. "node": {
  7935. "__id__": 223
  7936. },
  7937. "_enabled": true,
  7938. "_color": {
  7939. "__type__": "cc.Color",
  7940. "r": 38,
  7941. "g": 17,
  7942. "b": 12,
  7943. "a": 255
  7944. },
  7945. "_width": 3,
  7946. "_id": ""
  7947. },
  7948. {
  7949. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  7950. "_name": "",
  7951. "_objFlags": 0,
  7952. "node": {
  7953. "__id__": 223
  7954. },
  7955. "_enabled": true,
  7956. "_englishCase": 0,
  7957. "i18n_string": "",
  7958. "i18n_params": [],
  7959. "_addColon": false,
  7960. "_id": ""
  7961. },
  7962. {
  7963. "__type__": "cc.PrefabInfo",
  7964. "root": {
  7965. "__id__": 223
  7966. },
  7967. "asset": {
  7968. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  7969. },
  7970. "fileId": "4bfIgyx1lFyKMscTtZujC7",
  7971. "sync": false
  7972. },
  7973. {
  7974. "__type__": "cc.Node",
  7975. "_name": "progress_bottom",
  7976. "_objFlags": 0,
  7977. "_parent": {
  7978. "__id__": 205
  7979. },
  7980. "_children": [
  7981. {
  7982. "__id__": 229
  7983. },
  7984. {
  7985. "__id__": 232
  7986. }
  7987. ],
  7988. "_active": true,
  7989. "_components": [
  7990. {
  7991. "__id__": 237
  7992. },
  7993. {
  7994. "__id__": 238
  7995. }
  7996. ],
  7997. "_prefab": {
  7998. "__id__": 239
  7999. },
  8000. "_opacity": 255,
  8001. "_color": {
  8002. "__type__": "cc.Color",
  8003. "r": 255,
  8004. "g": 255,
  8005. "b": 255,
  8006. "a": 255
  8007. },
  8008. "_contentSize": {
  8009. "__type__": "cc.Size",
  8010. "width": 360,
  8011. "height": 22
  8012. },
  8013. "_anchorPoint": {
  8014. "__type__": "cc.Vec2",
  8015. "x": 0.5,
  8016. "y": 0.5
  8017. },
  8018. "_trs": {
  8019. "__type__": "TypedArray",
  8020. "ctor": "Float64Array",
  8021. "array": [
  8022. -36,
  8023. -50,
  8024. 0,
  8025. 0,
  8026. 0,
  8027. 0,
  8028. 1,
  8029. 1,
  8030. 1,
  8031. 1
  8032. ]
  8033. },
  8034. "_eulerAngles": {
  8035. "__type__": "cc.Vec3",
  8036. "x": 0,
  8037. "y": 0,
  8038. "z": 0
  8039. },
  8040. "_skewX": 0,
  8041. "_skewY": 0,
  8042. "_is3DNode": false,
  8043. "_groupIndex": 0,
  8044. "groupIndex": 0,
  8045. "_id": ""
  8046. },
  8047. {
  8048. "__type__": "cc.Node",
  8049. "_name": "progress_bg",
  8050. "_objFlags": 0,
  8051. "_parent": {
  8052. "__id__": 228
  8053. },
  8054. "_children": [],
  8055. "_active": true,
  8056. "_components": [
  8057. {
  8058. "__id__": 230
  8059. }
  8060. ],
  8061. "_prefab": {
  8062. "__id__": 231
  8063. },
  8064. "_opacity": 255,
  8065. "_color": {
  8066. "__type__": "cc.Color",
  8067. "r": 255,
  8068. "g": 255,
  8069. "b": 255,
  8070. "a": 255
  8071. },
  8072. "_contentSize": {
  8073. "__type__": "cc.Size",
  8074. "width": 354,
  8075. "height": 15
  8076. },
  8077. "_anchorPoint": {
  8078. "__type__": "cc.Vec2",
  8079. "x": 0,
  8080. "y": 0.5
  8081. },
  8082. "_trs": {
  8083. "__type__": "TypedArray",
  8084. "ctor": "Float64Array",
  8085. "array": [
  8086. -177,
  8087. 0,
  8088. 0,
  8089. 0,
  8090. 0,
  8091. 0,
  8092. 1,
  8093. 1,
  8094. 1,
  8095. 1
  8096. ]
  8097. },
  8098. "_eulerAngles": {
  8099. "__type__": "cc.Vec3",
  8100. "x": 0,
  8101. "y": 0,
  8102. "z": 0
  8103. },
  8104. "_skewX": 0,
  8105. "_skewY": 0,
  8106. "_is3DNode": false,
  8107. "_groupIndex": 0,
  8108. "groupIndex": 0,
  8109. "_id": ""
  8110. },
  8111. {
  8112. "__type__": "cc.Sprite",
  8113. "_name": "",
  8114. "_objFlags": 0,
  8115. "node": {
  8116. "__id__": 229
  8117. },
  8118. "_enabled": true,
  8119. "_materials": [
  8120. {
  8121. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8122. }
  8123. ],
  8124. "_srcBlendFactor": 770,
  8125. "_dstBlendFactor": 771,
  8126. "_spriteFrame": {
  8127. "__uuid__": "71e7d413-f0e5-421a-bf12-a2478164a0e1"
  8128. },
  8129. "_type": 0,
  8130. "_sizeMode": 0,
  8131. "_fillType": 0,
  8132. "_fillCenter": {
  8133. "__type__": "cc.Vec2",
  8134. "x": 0,
  8135. "y": 0
  8136. },
  8137. "_fillStart": 0,
  8138. "_fillRange": 0,
  8139. "_isTrimmedMode": true,
  8140. "_atlas": null,
  8141. "_id": ""
  8142. },
  8143. {
  8144. "__type__": "cc.PrefabInfo",
  8145. "root": {
  8146. "__id__": 1
  8147. },
  8148. "asset": {
  8149. "__id__": 0
  8150. },
  8151. "fileId": "5brnmbd9RKcbhq1sR9CWyI",
  8152. "sync": false
  8153. },
  8154. {
  8155. "__type__": "cc.Node",
  8156. "_name": "progress_label",
  8157. "_objFlags": 0,
  8158. "_parent": {
  8159. "__id__": 228
  8160. },
  8161. "_children": [],
  8162. "_active": true,
  8163. "_components": [
  8164. {
  8165. "__id__": 233
  8166. },
  8167. {
  8168. "__id__": 234
  8169. },
  8170. {
  8171. "__id__": 235
  8172. }
  8173. ],
  8174. "_prefab": {
  8175. "__id__": 236
  8176. },
  8177. "_opacity": 255,
  8178. "_color": {
  8179. "__type__": "cc.Color",
  8180. "r": 255,
  8181. "g": 255,
  8182. "b": 255,
  8183. "a": 255
  8184. },
  8185. "_contentSize": {
  8186. "__type__": "cc.Size",
  8187. "width": 88.97,
  8188. "height": 56.4
  8189. },
  8190. "_anchorPoint": {
  8191. "__type__": "cc.Vec2",
  8192. "x": 0.5,
  8193. "y": 0.5
  8194. },
  8195. "_trs": {
  8196. "__type__": "TypedArray",
  8197. "ctor": "Float64Array",
  8198. "array": [
  8199. 0,
  8200. 0,
  8201. 0,
  8202. 0,
  8203. 0,
  8204. 0,
  8205. 1,
  8206. 1,
  8207. 1,
  8208. 1
  8209. ]
  8210. },
  8211. "_eulerAngles": {
  8212. "__type__": "cc.Vec3",
  8213. "x": 0,
  8214. "y": 0,
  8215. "z": 0
  8216. },
  8217. "_skewX": 0,
  8218. "_skewY": 0,
  8219. "_is3DNode": false,
  8220. "_groupIndex": 0,
  8221. "groupIndex": 0,
  8222. "_id": ""
  8223. },
  8224. {
  8225. "__type__": "cc.Label",
  8226. "_name": "",
  8227. "_objFlags": 0,
  8228. "node": {
  8229. "__id__": 232
  8230. },
  8231. "_enabled": true,
  8232. "_materials": [
  8233. {
  8234. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8235. }
  8236. ],
  8237. "_srcBlendFactor": 770,
  8238. "_dstBlendFactor": 771,
  8239. "_string": "12/12",
  8240. "_N$string": "12/12",
  8241. "_fontSize": 30,
  8242. "_lineHeight": 40,
  8243. "_enableWrapText": true,
  8244. "_N$file": {
  8245. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  8246. },
  8247. "_isSystemFontUsed": false,
  8248. "_spacingX": 0,
  8249. "_batchAsBitmap": false,
  8250. "_styleFlags": 0,
  8251. "_underlineHeight": 0,
  8252. "_N$horizontalAlign": 1,
  8253. "_N$verticalAlign": 1,
  8254. "_N$fontFamily": "Arial",
  8255. "_N$overflow": 0,
  8256. "_N$cacheMode": 0,
  8257. "_id": ""
  8258. },
  8259. {
  8260. "__type__": "cc.LabelOutline",
  8261. "_name": "",
  8262. "_objFlags": 0,
  8263. "node": {
  8264. "__id__": 232
  8265. },
  8266. "_enabled": true,
  8267. "_color": {
  8268. "__type__": "cc.Color",
  8269. "r": 38,
  8270. "g": 17,
  8271. "b": 12,
  8272. "a": 255
  8273. },
  8274. "_width": 3,
  8275. "_id": ""
  8276. },
  8277. {
  8278. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  8279. "_name": "",
  8280. "_objFlags": 0,
  8281. "node": {
  8282. "__id__": 232
  8283. },
  8284. "_enabled": true,
  8285. "_englishCase": 0,
  8286. "i18n_string": "",
  8287. "i18n_params": [],
  8288. "_addColon": false,
  8289. "_id": ""
  8290. },
  8291. {
  8292. "__type__": "cc.PrefabInfo",
  8293. "root": {
  8294. "__id__": 232
  8295. },
  8296. "asset": {
  8297. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  8298. },
  8299. "fileId": "advjNeqQ1OaYXvP8I4n3ta",
  8300. "sync": false
  8301. },
  8302. {
  8303. "__type__": "cc.Sprite",
  8304. "_name": "",
  8305. "_objFlags": 0,
  8306. "node": {
  8307. "__id__": 228
  8308. },
  8309. "_enabled": true,
  8310. "_materials": [
  8311. {
  8312. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8313. }
  8314. ],
  8315. "_srcBlendFactor": 770,
  8316. "_dstBlendFactor": 771,
  8317. "_spriteFrame": {
  8318. "__uuid__": "6c5887ea-c6d0-4154-8d27-1b800a057096"
  8319. },
  8320. "_type": 2,
  8321. "_sizeMode": 0,
  8322. "_fillType": 0,
  8323. "_fillCenter": {
  8324. "__type__": "cc.Vec2",
  8325. "x": 0,
  8326. "y": 0
  8327. },
  8328. "_fillStart": 0,
  8329. "_fillRange": 0,
  8330. "_isTrimmedMode": true,
  8331. "_atlas": null,
  8332. "_id": ""
  8333. },
  8334. {
  8335. "__type__": "cc.ProgressBar",
  8336. "_name": "",
  8337. "_objFlags": 0,
  8338. "node": {
  8339. "__id__": 228
  8340. },
  8341. "_enabled": true,
  8342. "_N$totalLength": 354,
  8343. "_N$barSprite": {
  8344. "__id__": 230
  8345. },
  8346. "_N$mode": 0,
  8347. "_N$progress": 1,
  8348. "_N$reverse": false,
  8349. "_id": ""
  8350. },
  8351. {
  8352. "__type__": "cc.PrefabInfo",
  8353. "root": {
  8354. "__id__": 1
  8355. },
  8356. "asset": {
  8357. "__id__": 0
  8358. },
  8359. "fileId": "f8yEH7Y/ZGC4Mg0Di4vVzV",
  8360. "sync": false
  8361. },
  8362. {
  8363. "__type__": "cc.Node",
  8364. "_name": "com_label",
  8365. "_objFlags": 0,
  8366. "_parent": {
  8367. "__id__": 205
  8368. },
  8369. "_children": [],
  8370. "_active": false,
  8371. "_components": [
  8372. {
  8373. "__id__": 241
  8374. },
  8375. {
  8376. "__id__": 242
  8377. },
  8378. {
  8379. "__id__": 243
  8380. }
  8381. ],
  8382. "_prefab": {
  8383. "__id__": 244
  8384. },
  8385. "_opacity": 255,
  8386. "_color": {
  8387. "__type__": "cc.Color",
  8388. "r": 84,
  8389. "g": 42,
  8390. "b": 4,
  8391. "a": 255
  8392. },
  8393. "_contentSize": {
  8394. "__type__": "cc.Size",
  8395. "width": 179.6,
  8396. "height": 46
  8397. },
  8398. "_anchorPoint": {
  8399. "__type__": "cc.Vec2",
  8400. "x": 0.5,
  8401. "y": 0.5
  8402. },
  8403. "_trs": {
  8404. "__type__": "TypedArray",
  8405. "ctor": "Float64Array",
  8406. "array": [
  8407. 260,
  8408. 0,
  8409. 0,
  8410. 0,
  8411. 0,
  8412. 0,
  8413. 1,
  8414. 1,
  8415. 1,
  8416. 1
  8417. ]
  8418. },
  8419. "_eulerAngles": {
  8420. "__type__": "cc.Vec3",
  8421. "x": 0,
  8422. "y": 0,
  8423. "z": 0
  8424. },
  8425. "_skewX": 0,
  8426. "_skewY": 0,
  8427. "_is3DNode": false,
  8428. "_groupIndex": 0,
  8429. "groupIndex": 0,
  8430. "_id": ""
  8431. },
  8432. {
  8433. "__type__": "cc.Label",
  8434. "_name": "",
  8435. "_objFlags": 0,
  8436. "node": {
  8437. "__id__": 240
  8438. },
  8439. "_enabled": true,
  8440. "_materials": [
  8441. {
  8442. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8443. }
  8444. ],
  8445. "_srcBlendFactor": 770,
  8446. "_dstBlendFactor": 771,
  8447. "_string": "Completed",
  8448. "_N$string": "Completed",
  8449. "_fontSize": 36,
  8450. "_lineHeight": 35.8,
  8451. "_enableWrapText": true,
  8452. "_N$file": {
  8453. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  8454. },
  8455. "_isSystemFontUsed": false,
  8456. "_spacingX": 0,
  8457. "_batchAsBitmap": false,
  8458. "_styleFlags": 0,
  8459. "_underlineHeight": 0,
  8460. "_N$horizontalAlign": 1,
  8461. "_N$verticalAlign": 1,
  8462. "_N$fontFamily": "Arial",
  8463. "_N$overflow": 0,
  8464. "_N$cacheMode": 0,
  8465. "_id": ""
  8466. },
  8467. {
  8468. "__type__": "cc.LabelOutline",
  8469. "_name": "",
  8470. "_objFlags": 0,
  8471. "node": {
  8472. "__id__": 240
  8473. },
  8474. "_enabled": true,
  8475. "_color": {
  8476. "__type__": "cc.Color",
  8477. "r": 214,
  8478. "g": 214,
  8479. "b": 214,
  8480. "a": 0
  8481. },
  8482. "_width": 3,
  8483. "_id": ""
  8484. },
  8485. {
  8486. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  8487. "_name": "",
  8488. "_objFlags": 0,
  8489. "node": {
  8490. "__id__": 240
  8491. },
  8492. "_enabled": true,
  8493. "_englishCase": 1,
  8494. "i18n_string": "t426",
  8495. "i18n_params": [],
  8496. "_addColon": false,
  8497. "_id": ""
  8498. },
  8499. {
  8500. "__type__": "cc.PrefabInfo",
  8501. "root": {
  8502. "__id__": 240
  8503. },
  8504. "asset": {
  8505. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  8506. },
  8507. "fileId": "e5lZoBLLtF1ZiYOiyGUJdX",
  8508. "sync": false
  8509. },
  8510. {
  8511. "__type__": "cc.Node",
  8512. "_name": "go_btn",
  8513. "_objFlags": 0,
  8514. "_parent": {
  8515. "__id__": 205
  8516. },
  8517. "_children": [
  8518. {
  8519. "__id__": 246
  8520. }
  8521. ],
  8522. "_active": true,
  8523. "_components": [
  8524. {
  8525. "__id__": 251
  8526. },
  8527. {
  8528. "__id__": 252
  8529. },
  8530. {
  8531. "__id__": 253
  8532. }
  8533. ],
  8534. "_prefab": {
  8535. "__id__": 255
  8536. },
  8537. "_opacity": 255,
  8538. "_color": {
  8539. "__type__": "cc.Color",
  8540. "r": 255,
  8541. "g": 255,
  8542. "b": 255,
  8543. "a": 255
  8544. },
  8545. "_contentSize": {
  8546. "__type__": "cc.Size",
  8547. "width": 191,
  8548. "height": 77
  8549. },
  8550. "_anchorPoint": {
  8551. "__type__": "cc.Vec2",
  8552. "x": 0.5,
  8553. "y": 0.5
  8554. },
  8555. "_trs": {
  8556. "__type__": "TypedArray",
  8557. "ctor": "Float64Array",
  8558. "array": [
  8559. 260,
  8560. 0,
  8561. 0,
  8562. 0,
  8563. 0,
  8564. 0,
  8565. 1,
  8566. 1,
  8567. 1,
  8568. 0
  8569. ]
  8570. },
  8571. "_eulerAngles": {
  8572. "__type__": "cc.Vec3",
  8573. "x": 0,
  8574. "y": 0,
  8575. "z": 0
  8576. },
  8577. "_skewX": 0,
  8578. "_skewY": 0,
  8579. "_is3DNode": false,
  8580. "_groupIndex": 0,
  8581. "groupIndex": 0,
  8582. "_id": ""
  8583. },
  8584. {
  8585. "__type__": "cc.Node",
  8586. "_name": "label",
  8587. "_objFlags": 0,
  8588. "_parent": {
  8589. "__id__": 245
  8590. },
  8591. "_children": [],
  8592. "_active": true,
  8593. "_components": [
  8594. {
  8595. "__id__": 247
  8596. },
  8597. {
  8598. "__id__": 248
  8599. },
  8600. {
  8601. "__id__": 249
  8602. }
  8603. ],
  8604. "_prefab": {
  8605. "__id__": 250
  8606. },
  8607. "_opacity": 255,
  8608. "_color": {
  8609. "__type__": "cc.Color",
  8610. "r": 68,
  8611. "g": 41,
  8612. "b": 0,
  8613. "a": 255
  8614. },
  8615. "_contentSize": {
  8616. "__type__": "cc.Size",
  8617. "width": 53.19,
  8618. "height": 55.36
  8619. },
  8620. "_anchorPoint": {
  8621. "__type__": "cc.Vec2",
  8622. "x": 0.5,
  8623. "y": 0.5
  8624. },
  8625. "_trs": {
  8626. "__type__": "TypedArray",
  8627. "ctor": "Float64Array",
  8628. "array": [
  8629. 0,
  8630. 0,
  8631. 0,
  8632. 0,
  8633. 0,
  8634. 0,
  8635. 1,
  8636. 1,
  8637. 1,
  8638. 1
  8639. ]
  8640. },
  8641. "_eulerAngles": {
  8642. "__type__": "cc.Vec3",
  8643. "x": 0,
  8644. "y": 0,
  8645. "z": 0
  8646. },
  8647. "_skewX": 0,
  8648. "_skewY": 0,
  8649. "_is3DNode": false,
  8650. "_groupIndex": 0,
  8651. "groupIndex": 0,
  8652. "_id": ""
  8653. },
  8654. {
  8655. "__type__": "cc.Label",
  8656. "_name": "",
  8657. "_objFlags": 0,
  8658. "node": {
  8659. "__id__": 246
  8660. },
  8661. "_enabled": true,
  8662. "_materials": [
  8663. {
  8664. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8665. }
  8666. ],
  8667. "_srcBlendFactor": 770,
  8668. "_dstBlendFactor": 771,
  8669. "_string": "Go",
  8670. "_N$string": "Go",
  8671. "_fontSize": 36,
  8672. "_lineHeight": 36,
  8673. "_enableWrapText": false,
  8674. "_N$file": {
  8675. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  8676. },
  8677. "_isSystemFontUsed": false,
  8678. "_spacingX": 0,
  8679. "_batchAsBitmap": false,
  8680. "_styleFlags": 0,
  8681. "_underlineHeight": 0,
  8682. "_N$horizontalAlign": 1,
  8683. "_N$verticalAlign": 1,
  8684. "_N$fontFamily": "Arial",
  8685. "_N$overflow": 0,
  8686. "_N$cacheMode": 0,
  8687. "_id": ""
  8688. },
  8689. {
  8690. "__type__": "cc.LabelOutline",
  8691. "_name": "",
  8692. "_objFlags": 0,
  8693. "node": {
  8694. "__id__": 246
  8695. },
  8696. "_enabled": true,
  8697. "_color": {
  8698. "__type__": "cc.Color",
  8699. "r": 255,
  8700. "g": 210,
  8701. "b": 0,
  8702. "a": 255
  8703. },
  8704. "_width": 5,
  8705. "_id": ""
  8706. },
  8707. {
  8708. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  8709. "_name": "",
  8710. "_objFlags": 0,
  8711. "node": {
  8712. "__id__": 246
  8713. },
  8714. "_enabled": true,
  8715. "_englishCase": 1,
  8716. "i18n_string": "t413",
  8717. "i18n_params": [],
  8718. "_addColon": false,
  8719. "_id": ""
  8720. },
  8721. {
  8722. "__type__": "cc.PrefabInfo",
  8723. "root": {
  8724. "__id__": 245
  8725. },
  8726. "asset": {
  8727. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  8728. },
  8729. "fileId": "12tNP2G5xGpY9oecBiNRvR",
  8730. "sync": false
  8731. },
  8732. {
  8733. "__type__": "cc.Sprite",
  8734. "_name": "",
  8735. "_objFlags": 0,
  8736. "node": {
  8737. "__id__": 245
  8738. },
  8739. "_enabled": true,
  8740. "_materials": [
  8741. {
  8742. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8743. }
  8744. ],
  8745. "_srcBlendFactor": 770,
  8746. "_dstBlendFactor": 771,
  8747. "_spriteFrame": {
  8748. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  8749. },
  8750. "_type": 0,
  8751. "_sizeMode": 0,
  8752. "_fillType": 0,
  8753. "_fillCenter": {
  8754. "__type__": "cc.Vec2",
  8755. "x": 0,
  8756. "y": 0
  8757. },
  8758. "_fillStart": 0,
  8759. "_fillRange": 0,
  8760. "_isTrimmedMode": true,
  8761. "_atlas": null,
  8762. "_id": ""
  8763. },
  8764. {
  8765. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  8766. "_name": "",
  8767. "_objFlags": 0,
  8768. "node": {
  8769. "__id__": 245
  8770. },
  8771. "_enabled": true,
  8772. "openContinuous": true,
  8773. "continuousTime": 0.2,
  8774. "multiTouch": false,
  8775. "_id": ""
  8776. },
  8777. {
  8778. "__type__": "61994AafntNFIbmt1zoyLq+",
  8779. "_name": "",
  8780. "_objFlags": 0,
  8781. "node": {
  8782. "__id__": 245
  8783. },
  8784. "_enabled": true,
  8785. "_normalMaterial": null,
  8786. "_grayMaterial": null,
  8787. "duration": 0.1,
  8788. "zoomScale": 1.2,
  8789. "clickEvents": [
  8790. {
  8791. "__id__": 254
  8792. }
  8793. ],
  8794. "_N$interactable": true,
  8795. "_N$enableAutoGrayEffect": false,
  8796. "_N$transition": 3,
  8797. "transition": 3,
  8798. "_N$normalColor": {
  8799. "__type__": "cc.Color",
  8800. "r": 255,
  8801. "g": 255,
  8802. "b": 255,
  8803. "a": 255
  8804. },
  8805. "_N$pressedColor": {
  8806. "__type__": "cc.Color",
  8807. "r": 211,
  8808. "g": 211,
  8809. "b": 211,
  8810. "a": 255
  8811. },
  8812. "pressedColor": {
  8813. "__type__": "cc.Color",
  8814. "r": 211,
  8815. "g": 211,
  8816. "b": 211,
  8817. "a": 255
  8818. },
  8819. "_N$hoverColor": {
  8820. "__type__": "cc.Color",
  8821. "r": 255,
  8822. "g": 255,
  8823. "b": 255,
  8824. "a": 255
  8825. },
  8826. "hoverColor": {
  8827. "__type__": "cc.Color",
  8828. "r": 255,
  8829. "g": 255,
  8830. "b": 255,
  8831. "a": 255
  8832. },
  8833. "_N$disabledColor": {
  8834. "__type__": "cc.Color",
  8835. "r": 124,
  8836. "g": 124,
  8837. "b": 124,
  8838. "a": 255
  8839. },
  8840. "_N$normalSprite": null,
  8841. "_N$pressedSprite": null,
  8842. "pressedSprite": null,
  8843. "_N$hoverSprite": null,
  8844. "hoverSprite": null,
  8845. "_N$disabledSprite": null,
  8846. "_N$target": {
  8847. "__id__": 245
  8848. },
  8849. "_id": ""
  8850. },
  8851. {
  8852. "__type__": "cc.ClickEvent",
  8853. "target": {
  8854. "__id__": 1
  8855. },
  8856. "component": "",
  8857. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  8858. "handler": "onGoClick",
  8859. "customEventData": ""
  8860. },
  8861. {
  8862. "__type__": "cc.PrefabInfo",
  8863. "root": {
  8864. "__id__": 245
  8865. },
  8866. "asset": {
  8867. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  8868. },
  8869. "fileId": "7fLQdecq9AmIO4SYHXXqOo",
  8870. "sync": false
  8871. },
  8872. {
  8873. "__type__": "cc.Node",
  8874. "_name": "gray",
  8875. "_objFlags": 0,
  8876. "_parent": {
  8877. "__id__": 205
  8878. },
  8879. "_children": [],
  8880. "_active": false,
  8881. "_components": [
  8882. {
  8883. "__id__": 257
  8884. }
  8885. ],
  8886. "_prefab": {
  8887. "__id__": 258
  8888. },
  8889. "_opacity": 153,
  8890. "_color": {
  8891. "__type__": "cc.Color",
  8892. "r": 0,
  8893. "g": 0,
  8894. "b": 0,
  8895. "a": 255
  8896. },
  8897. "_contentSize": {
  8898. "__type__": "cc.Size",
  8899. "width": 775,
  8900. "height": 180
  8901. },
  8902. "_anchorPoint": {
  8903. "__type__": "cc.Vec2",
  8904. "x": 0.5,
  8905. "y": 0.5
  8906. },
  8907. "_trs": {
  8908. "__type__": "TypedArray",
  8909. "ctor": "Float64Array",
  8910. "array": [
  8911. 0,
  8912. 0,
  8913. 0,
  8914. 0,
  8915. 0,
  8916. 0,
  8917. 1,
  8918. 1,
  8919. 1,
  8920. 1
  8921. ]
  8922. },
  8923. "_eulerAngles": {
  8924. "__type__": "cc.Vec3",
  8925. "x": 0,
  8926. "y": 0,
  8927. "z": 0
  8928. },
  8929. "_skewX": 0,
  8930. "_skewY": 0,
  8931. "_is3DNode": false,
  8932. "_groupIndex": 0,
  8933. "groupIndex": 0,
  8934. "_id": ""
  8935. },
  8936. {
  8937. "__type__": "cc.Sprite",
  8938. "_name": "",
  8939. "_objFlags": 0,
  8940. "node": {
  8941. "__id__": 256
  8942. },
  8943. "_enabled": true,
  8944. "_materials": [
  8945. {
  8946. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8947. }
  8948. ],
  8949. "_srcBlendFactor": 770,
  8950. "_dstBlendFactor": 771,
  8951. "_spriteFrame": {
  8952. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  8953. },
  8954. "_type": 1,
  8955. "_sizeMode": 0,
  8956. "_fillType": 0,
  8957. "_fillCenter": {
  8958. "__type__": "cc.Vec2",
  8959. "x": 0,
  8960. "y": 0
  8961. },
  8962. "_fillStart": 0,
  8963. "_fillRange": 0,
  8964. "_isTrimmedMode": true,
  8965. "_atlas": null,
  8966. "_id": ""
  8967. },
  8968. {
  8969. "__type__": "cc.PrefabInfo",
  8970. "root": {
  8971. "__id__": 1
  8972. },
  8973. "asset": {
  8974. "__id__": 0
  8975. },
  8976. "fileId": "1flzeGIXRMyI2EMpF5/4Eo",
  8977. "sync": false
  8978. },
  8979. {
  8980. "__type__": "cc.Node",
  8981. "_name": "rewards",
  8982. "_objFlags": 0,
  8983. "_parent": {
  8984. "__id__": 205
  8985. },
  8986. "_children": [
  8987. {
  8988. "__id__": 260
  8989. }
  8990. ],
  8991. "_active": true,
  8992. "_components": [
  8993. {
  8994. "__id__": 267
  8995. }
  8996. ],
  8997. "_prefab": {
  8998. "__id__": 268
  8999. },
  9000. "_opacity": 255,
  9001. "_color": {
  9002. "__type__": "cc.Color",
  9003. "r": 255,
  9004. "g": 255,
  9005. "b": 255,
  9006. "a": 255
  9007. },
  9008. "_contentSize": {
  9009. "__type__": "cc.Size",
  9010. "width": 132.8,
  9011. "height": 132.8
  9012. },
  9013. "_anchorPoint": {
  9014. "__type__": "cc.Vec2",
  9015. "x": 0.5,
  9016. "y": 0.5
  9017. },
  9018. "_trs": {
  9019. "__type__": "TypedArray",
  9020. "ctor": "Float64Array",
  9021. "array": [
  9022. -294,
  9023. -4,
  9024. 0,
  9025. 0,
  9026. 0,
  9027. 0,
  9028. 1,
  9029. 1,
  9030. 1,
  9031. 1
  9032. ]
  9033. },
  9034. "_eulerAngles": {
  9035. "__type__": "cc.Vec3",
  9036. "x": 0,
  9037. "y": 0,
  9038. "z": 0
  9039. },
  9040. "_skewX": 0,
  9041. "_skewY": 0,
  9042. "_is3DNode": false,
  9043. "_groupIndex": 0,
  9044. "groupIndex": 0,
  9045. "_id": ""
  9046. },
  9047. {
  9048. "__type__": "cc.Node",
  9049. "_name": "reward_item",
  9050. "_objFlags": 0,
  9051. "_parent": {
  9052. "__id__": 259
  9053. },
  9054. "_children": [
  9055. {
  9056. "__id__": 261
  9057. },
  9058. {
  9059. "__id__": 263
  9060. }
  9061. ],
  9062. "_active": true,
  9063. "_components": [],
  9064. "_prefab": {
  9065. "__id__": 266
  9066. },
  9067. "_opacity": 255,
  9068. "_color": {
  9069. "__type__": "cc.Color",
  9070. "r": 255,
  9071. "g": 255,
  9072. "b": 255,
  9073. "a": 255
  9074. },
  9075. "_contentSize": {
  9076. "__type__": "cc.Size",
  9077. "width": 132.8,
  9078. "height": 132.8
  9079. },
  9080. "_anchorPoint": {
  9081. "__type__": "cc.Vec2",
  9082. "x": 0.5,
  9083. "y": 0.5
  9084. },
  9085. "_trs": {
  9086. "__type__": "TypedArray",
  9087. "ctor": "Float64Array",
  9088. "array": [
  9089. 0,
  9090. 0,
  9091. 0,
  9092. 0,
  9093. 0,
  9094. 0,
  9095. 1,
  9096. 1,
  9097. 1,
  9098. 1
  9099. ]
  9100. },
  9101. "_eulerAngles": {
  9102. "__type__": "cc.Vec3",
  9103. "x": 0,
  9104. "y": 0,
  9105. "z": 0
  9106. },
  9107. "_skewX": 0,
  9108. "_skewY": 0,
  9109. "_is3DNode": false,
  9110. "_groupIndex": 0,
  9111. "groupIndex": 0,
  9112. "_id": ""
  9113. },
  9114. {
  9115. "__type__": "cc.Node",
  9116. "_name": "goods",
  9117. "_objFlags": 0,
  9118. "_parent": {
  9119. "__id__": 260
  9120. },
  9121. "_children": [],
  9122. "_active": true,
  9123. "_components": [],
  9124. "_prefab": {
  9125. "__id__": 262
  9126. },
  9127. "_opacity": 255,
  9128. "_color": {
  9129. "__type__": "cc.Color",
  9130. "r": 255,
  9131. "g": 255,
  9132. "b": 255,
  9133. "a": 255
  9134. },
  9135. "_contentSize": {
  9136. "__type__": "cc.Size",
  9137. "width": 166,
  9138. "height": 166
  9139. },
  9140. "_anchorPoint": {
  9141. "__type__": "cc.Vec2",
  9142. "x": 0.5,
  9143. "y": 0.5
  9144. },
  9145. "_trs": {
  9146. "__type__": "TypedArray",
  9147. "ctor": "Float64Array",
  9148. "array": [
  9149. 0,
  9150. 0,
  9151. 0,
  9152. 0,
  9153. 0,
  9154. 0,
  9155. 1,
  9156. 0.8,
  9157. 0.8,
  9158. 1
  9159. ]
  9160. },
  9161. "_eulerAngles": {
  9162. "__type__": "cc.Vec3",
  9163. "x": 0,
  9164. "y": 0,
  9165. "z": 0
  9166. },
  9167. "_skewX": 0,
  9168. "_skewY": 0,
  9169. "_is3DNode": false,
  9170. "_groupIndex": 0,
  9171. "groupIndex": 0,
  9172. "_id": ""
  9173. },
  9174. {
  9175. "__type__": "cc.PrefabInfo",
  9176. "root": {
  9177. "__id__": 261
  9178. },
  9179. "asset": {
  9180. "__uuid__": "304eee68-47d8-489e-9653-3ffe326cc362"
  9181. },
  9182. "fileId": "83o9bLBrlPQo2DbKqFf0AG",
  9183. "sync": false
  9184. },
  9185. {
  9186. "__type__": "cc.Node",
  9187. "_name": "select_1",
  9188. "_objFlags": 0,
  9189. "_parent": {
  9190. "__id__": 260
  9191. },
  9192. "_children": [],
  9193. "_active": false,
  9194. "_components": [
  9195. {
  9196. "__id__": 264
  9197. }
  9198. ],
  9199. "_prefab": {
  9200. "__id__": 265
  9201. },
  9202. "_opacity": 255,
  9203. "_color": {
  9204. "__type__": "cc.Color",
  9205. "r": 255,
  9206. "g": 255,
  9207. "b": 255,
  9208. "a": 255
  9209. },
  9210. "_contentSize": {
  9211. "__type__": "cc.Size",
  9212. "width": 92,
  9213. "height": 66
  9214. },
  9215. "_anchorPoint": {
  9216. "__type__": "cc.Vec2",
  9217. "x": 0.5,
  9218. "y": 0.5
  9219. },
  9220. "_trs": {
  9221. "__type__": "TypedArray",
  9222. "ctor": "Float64Array",
  9223. "array": [
  9224. 0,
  9225. 0,
  9226. 0,
  9227. 0,
  9228. 0,
  9229. 0,
  9230. 1,
  9231. 0.6,
  9232. 0.6,
  9233. 1
  9234. ]
  9235. },
  9236. "_eulerAngles": {
  9237. "__type__": "cc.Vec3",
  9238. "x": 0,
  9239. "y": 0,
  9240. "z": 0
  9241. },
  9242. "_skewX": 0,
  9243. "_skewY": 0,
  9244. "_is3DNode": false,
  9245. "_groupIndex": 0,
  9246. "groupIndex": 0,
  9247. "_id": ""
  9248. },
  9249. {
  9250. "__type__": "cc.Sprite",
  9251. "_name": "",
  9252. "_objFlags": 0,
  9253. "node": {
  9254. "__id__": 263
  9255. },
  9256. "_enabled": true,
  9257. "_materials": [
  9258. {
  9259. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9260. }
  9261. ],
  9262. "_srcBlendFactor": 770,
  9263. "_dstBlendFactor": 771,
  9264. "_spriteFrame": {
  9265. "__uuid__": "b9e4722c-e1d5-4892-ade4-2d0f9587183e"
  9266. },
  9267. "_type": 0,
  9268. "_sizeMode": 1,
  9269. "_fillType": 0,
  9270. "_fillCenter": {
  9271. "__type__": "cc.Vec2",
  9272. "x": 0,
  9273. "y": 0
  9274. },
  9275. "_fillStart": 0,
  9276. "_fillRange": 0,
  9277. "_isTrimmedMode": true,
  9278. "_atlas": null,
  9279. "_id": ""
  9280. },
  9281. {
  9282. "__type__": "cc.PrefabInfo",
  9283. "root": {
  9284. "__id__": 1
  9285. },
  9286. "asset": {
  9287. "__id__": 0
  9288. },
  9289. "fileId": "f95cLsTCZD4qw2NU1nQPxQ",
  9290. "sync": false
  9291. },
  9292. {
  9293. "__type__": "cc.PrefabInfo",
  9294. "root": {
  9295. "__id__": 1
  9296. },
  9297. "asset": {
  9298. "__id__": 0
  9299. },
  9300. "fileId": "1bpCIx7eRHOYo7ArYYrub6",
  9301. "sync": false
  9302. },
  9303. {
  9304. "__type__": "cc.Layout",
  9305. "_name": "",
  9306. "_objFlags": 0,
  9307. "node": {
  9308. "__id__": 259
  9309. },
  9310. "_enabled": true,
  9311. "_layoutSize": {
  9312. "__type__": "cc.Size",
  9313. "width": 132.8,
  9314. "height": 132.8
  9315. },
  9316. "_resize": 1,
  9317. "_N$layoutType": 1,
  9318. "_N$cellSize": {
  9319. "__type__": "cc.Size",
  9320. "width": 40,
  9321. "height": 40
  9322. },
  9323. "_N$startAxis": 0,
  9324. "_N$paddingLeft": 0,
  9325. "_N$paddingRight": 0,
  9326. "_N$paddingTop": 0,
  9327. "_N$paddingBottom": 0,
  9328. "_N$spacingX": 0,
  9329. "_N$spacingY": 0,
  9330. "_N$verticalDirection": 1,
  9331. "_N$horizontalDirection": 0,
  9332. "_N$affectedByScale": false,
  9333. "_id": ""
  9334. },
  9335. {
  9336. "__type__": "cc.PrefabInfo",
  9337. "root": {
  9338. "__id__": 1
  9339. },
  9340. "asset": {
  9341. "__id__": 0
  9342. },
  9343. "fileId": "82WkOo8PhFFom8SjlBv2zP",
  9344. "sync": false
  9345. },
  9346. {
  9347. "__type__": "cc.PrefabInfo",
  9348. "root": {
  9349. "__id__": 1
  9350. },
  9351. "asset": {
  9352. "__id__": 0
  9353. },
  9354. "fileId": "32Ef8Z6PhDPKqHgBFwGmOG",
  9355. "sync": false
  9356. },
  9357. {
  9358. "__type__": "cc.Layout",
  9359. "_name": "",
  9360. "_objFlags": 0,
  9361. "node": {
  9362. "__id__": 204
  9363. },
  9364. "_enabled": true,
  9365. "_layoutSize": {
  9366. "__type__": "cc.Size",
  9367. "width": 1556,
  9368. "height": 880
  9369. },
  9370. "_resize": 0,
  9371. "_N$layoutType": 3,
  9372. "_N$cellSize": {
  9373. "__type__": "cc.Size",
  9374. "width": 40,
  9375. "height": 40
  9376. },
  9377. "_N$startAxis": 0,
  9378. "_N$paddingLeft": 0,
  9379. "_N$paddingRight": 0,
  9380. "_N$paddingTop": 0,
  9381. "_N$paddingBottom": 0,
  9382. "_N$spacingX": 0,
  9383. "_N$spacingY": 0,
  9384. "_N$verticalDirection": 1,
  9385. "_N$horizontalDirection": 0,
  9386. "_N$affectedByScale": false,
  9387. "_id": ""
  9388. },
  9389. {
  9390. "__type__": "cc.PrefabInfo",
  9391. "root": {
  9392. "__id__": 1
  9393. },
  9394. "asset": {
  9395. "__id__": 0
  9396. },
  9397. "fileId": "81ip+Q9B5OgID6ukwPOdmM",
  9398. "sync": false
  9399. },
  9400. {
  9401. "__type__": "cc.Mask",
  9402. "_name": "",
  9403. "_objFlags": 0,
  9404. "node": {
  9405. "__id__": 203
  9406. },
  9407. "_enabled": true,
  9408. "_materials": [
  9409. {
  9410. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9411. }
  9412. ],
  9413. "_spriteFrame": null,
  9414. "_type": 0,
  9415. "_segments": 64,
  9416. "_N$alphaThreshold": 0.1,
  9417. "_N$inverted": false,
  9418. "_id": ""
  9419. },
  9420. {
  9421. "__type__": "cc.PrefabInfo",
  9422. "root": {
  9423. "__id__": 1
  9424. },
  9425. "asset": {
  9426. "__id__": 0
  9427. },
  9428. "fileId": "623Id+8cJBv67D7oK+RLEQ",
  9429. "sync": false
  9430. },
  9431. {
  9432. "__type__": "cc.ScrollView",
  9433. "_name": "",
  9434. "_objFlags": 0,
  9435. "node": {
  9436. "__id__": 202
  9437. },
  9438. "_enabled": true,
  9439. "horizontal": false,
  9440. "vertical": true,
  9441. "inertia": true,
  9442. "brake": 0.5,
  9443. "elastic": true,
  9444. "bounceDuration": 1,
  9445. "scrollEvents": [],
  9446. "cancelInnerEvents": false,
  9447. "_N$content": {
  9448. "__id__": 204
  9449. },
  9450. "content": {
  9451. "__id__": 204
  9452. },
  9453. "_id": ""
  9454. },
  9455. {
  9456. "__type__": "c8b0avBBlRLLLMX0ufI4l6A",
  9457. "_name": "",
  9458. "_objFlags": 0,
  9459. "node": {
  9460. "__id__": 202
  9461. },
  9462. "_enabled": true,
  9463. "templateType": 1,
  9464. "tmpNode": {
  9465. "__id__": 205
  9466. },
  9467. "tmpPrefab": null,
  9468. "_slideMode": 1,
  9469. "pageDistance": 0.3,
  9470. "pageChangeEvent": {
  9471. "__id__": 276
  9472. },
  9473. "_virtual": true,
  9474. "cyclic": false,
  9475. "lackCenter": false,
  9476. "lackSlide": false,
  9477. "_updateRate": 0,
  9478. "frameByFrameRenderNum": 0,
  9479. "renderEvent": {
  9480. "__id__": 277
  9481. },
  9482. "selectedMode": 0,
  9483. "repeatEventSingle": false,
  9484. "selectedEvent": null,
  9485. "_id": ""
  9486. },
  9487. {
  9488. "__type__": "cc.ClickEvent",
  9489. "target": null,
  9490. "component": "",
  9491. "_componentId": "",
  9492. "handler": "",
  9493. "customEventData": ""
  9494. },
  9495. {
  9496. "__type__": "cc.ClickEvent",
  9497. "target": {
  9498. "__id__": 1
  9499. },
  9500. "component": "",
  9501. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  9502. "handler": "initTaskItem",
  9503. "customEventData": ""
  9504. },
  9505. {
  9506. "__type__": "cc.Sprite",
  9507. "_name": "",
  9508. "_objFlags": 0,
  9509. "node": {
  9510. "__id__": 202
  9511. },
  9512. "_enabled": true,
  9513. "_materials": [
  9514. {
  9515. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9516. }
  9517. ],
  9518. "_srcBlendFactor": 770,
  9519. "_dstBlendFactor": 771,
  9520. "_spriteFrame": {
  9521. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  9522. },
  9523. "_type": 1,
  9524. "_sizeMode": 0,
  9525. "_fillType": 0,
  9526. "_fillCenter": {
  9527. "__type__": "cc.Vec2",
  9528. "x": 0,
  9529. "y": 0
  9530. },
  9531. "_fillStart": 0,
  9532. "_fillRange": 0,
  9533. "_isTrimmedMode": true,
  9534. "_atlas": null,
  9535. "_id": ""
  9536. },
  9537. {
  9538. "__type__": "cc.PrefabInfo",
  9539. "root": {
  9540. "__id__": 1
  9541. },
  9542. "asset": {
  9543. "__id__": 0
  9544. },
  9545. "fileId": "d4JJ3Uwk9EwYyi480K5xel",
  9546. "sync": false
  9547. },
  9548. {
  9549. "__type__": "cc.Node",
  9550. "_name": "trans",
  9551. "_objFlags": 0,
  9552. "_parent": {
  9553. "__id__": 1
  9554. },
  9555. "_children": [],
  9556. "_active": true,
  9557. "_components": [
  9558. {
  9559. "__id__": 281
  9560. }
  9561. ],
  9562. "_prefab": {
  9563. "__id__": 282
  9564. },
  9565. "_opacity": 255,
  9566. "_color": {
  9567. "__type__": "cc.Color",
  9568. "r": 255,
  9569. "g": 255,
  9570. "b": 255,
  9571. "a": 255
  9572. },
  9573. "_contentSize": {
  9574. "__type__": "cc.Size",
  9575. "width": 0,
  9576. "height": 0
  9577. },
  9578. "_anchorPoint": {
  9579. "__type__": "cc.Vec2",
  9580. "x": 0.5,
  9581. "y": 0.5
  9582. },
  9583. "_trs": {
  9584. "__type__": "TypedArray",
  9585. "ctor": "Float64Array",
  9586. "array": [
  9587. 0,
  9588. 0,
  9589. 0,
  9590. 0,
  9591. 0,
  9592. 0,
  9593. 1,
  9594. 1,
  9595. 1,
  9596. 1
  9597. ]
  9598. },
  9599. "_eulerAngles": {
  9600. "__type__": "cc.Vec3",
  9601. "x": 0,
  9602. "y": 0,
  9603. "z": 0
  9604. },
  9605. "_skewX": 0,
  9606. "_skewY": 0,
  9607. "_is3DNode": false,
  9608. "_groupIndex": 0,
  9609. "groupIndex": 0,
  9610. "_id": ""
  9611. },
  9612. {
  9613. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  9614. "_name": "",
  9615. "_objFlags": 0,
  9616. "node": {
  9617. "__id__": 280
  9618. },
  9619. "_enabled": true,
  9620. "widthFit": true,
  9621. "heightFit": true,
  9622. "_id": ""
  9623. },
  9624. {
  9625. "__type__": "cc.PrefabInfo",
  9626. "root": {
  9627. "__id__": 1
  9628. },
  9629. "asset": {
  9630. "__id__": 0
  9631. },
  9632. "fileId": "b8T++B6/xA4Jydoc/tV79N",
  9633. "sync": false
  9634. },
  9635. {
  9636. "__type__": "cc.Node",
  9637. "_name": "activation",
  9638. "_objFlags": 0,
  9639. "_parent": {
  9640. "__id__": 1
  9641. },
  9642. "_children": [
  9643. {
  9644. "__id__": 284
  9645. },
  9646. {
  9647. "__id__": 287
  9648. },
  9649. {
  9650. "__id__": 343
  9651. },
  9652. {
  9653. "__id__": 361
  9654. }
  9655. ],
  9656. "_active": true,
  9657. "_components": [],
  9658. "_prefab": {
  9659. "__id__": 374
  9660. },
  9661. "_opacity": 255,
  9662. "_color": {
  9663. "__type__": "cc.Color",
  9664. "r": 255,
  9665. "g": 255,
  9666. "b": 255,
  9667. "a": 255
  9668. },
  9669. "_contentSize": {
  9670. "__type__": "cc.Size",
  9671. "width": 1568,
  9672. "height": 246
  9673. },
  9674. "_anchorPoint": {
  9675. "__type__": "cc.Vec2",
  9676. "x": 0.5,
  9677. "y": 0.5
  9678. },
  9679. "_trs": {
  9680. "__type__": "TypedArray",
  9681. "ctor": "Float64Array",
  9682. "array": [
  9683. 143,
  9684. 282.237,
  9685. 0,
  9686. 0,
  9687. 0,
  9688. 0,
  9689. 1,
  9690. 1,
  9691. 1,
  9692. 1
  9693. ]
  9694. },
  9695. "_eulerAngles": {
  9696. "__type__": "cc.Vec3",
  9697. "x": 0,
  9698. "y": 0,
  9699. "z": 0
  9700. },
  9701. "_skewX": 0,
  9702. "_skewY": 0,
  9703. "_is3DNode": false,
  9704. "_groupIndex": 0,
  9705. "groupIndex": 0,
  9706. "_id": ""
  9707. },
  9708. {
  9709. "__type__": "cc.Node",
  9710. "_name": "paging2",
  9711. "_objFlags": 0,
  9712. "_parent": {
  9713. "__id__": 283
  9714. },
  9715. "_children": [],
  9716. "_active": true,
  9717. "_components": [
  9718. {
  9719. "__id__": 285
  9720. }
  9721. ],
  9722. "_prefab": {
  9723. "__id__": 286
  9724. },
  9725. "_opacity": 255,
  9726. "_color": {
  9727. "__type__": "cc.Color",
  9728. "r": 255,
  9729. "g": 255,
  9730. "b": 255,
  9731. "a": 255
  9732. },
  9733. "_contentSize": {
  9734. "__type__": "cc.Size",
  9735. "width": 1568,
  9736. "height": 246
  9737. },
  9738. "_anchorPoint": {
  9739. "__type__": "cc.Vec2",
  9740. "x": 0.5,
  9741. "y": 0.5
  9742. },
  9743. "_trs": {
  9744. "__type__": "TypedArray",
  9745. "ctor": "Float64Array",
  9746. "array": [
  9747. 0,
  9748. 0,
  9749. 0,
  9750. 0,
  9751. 0,
  9752. 0,
  9753. 1,
  9754. 1,
  9755. 1,
  9756. 1
  9757. ]
  9758. },
  9759. "_eulerAngles": {
  9760. "__type__": "cc.Vec3",
  9761. "x": 0,
  9762. "y": 0,
  9763. "z": 0
  9764. },
  9765. "_skewX": 0,
  9766. "_skewY": 0,
  9767. "_is3DNode": false,
  9768. "_groupIndex": 0,
  9769. "groupIndex": 0,
  9770. "_id": ""
  9771. },
  9772. {
  9773. "__type__": "cc.Sprite",
  9774. "_name": "",
  9775. "_objFlags": 0,
  9776. "node": {
  9777. "__id__": 284
  9778. },
  9779. "_enabled": true,
  9780. "_materials": [
  9781. {
  9782. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9783. }
  9784. ],
  9785. "_srcBlendFactor": 770,
  9786. "_dstBlendFactor": 771,
  9787. "_spriteFrame": {
  9788. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  9789. },
  9790. "_type": 1,
  9791. "_sizeMode": 0,
  9792. "_fillType": 0,
  9793. "_fillCenter": {
  9794. "__type__": "cc.Vec2",
  9795. "x": 0,
  9796. "y": 0
  9797. },
  9798. "_fillStart": 0,
  9799. "_fillRange": 0,
  9800. "_isTrimmedMode": true,
  9801. "_atlas": null,
  9802. "_id": ""
  9803. },
  9804. {
  9805. "__type__": "cc.PrefabInfo",
  9806. "root": {
  9807. "__id__": 1
  9808. },
  9809. "asset": {
  9810. "__id__": 0
  9811. },
  9812. "fileId": "fdgRWb28xPX6aaAClqFICU",
  9813. "sync": false
  9814. },
  9815. {
  9816. "__type__": "cc.Node",
  9817. "_name": "activation_progress",
  9818. "_objFlags": 0,
  9819. "_parent": {
  9820. "__id__": 283
  9821. },
  9822. "_children": [
  9823. {
  9824. "__id__": 288
  9825. },
  9826. {
  9827. "__id__": 295
  9828. },
  9829. {
  9830. "__id__": 298
  9831. }
  9832. ],
  9833. "_active": true,
  9834. "_components": [
  9835. {
  9836. "__id__": 341
  9837. }
  9838. ],
  9839. "_prefab": {
  9840. "__id__": 342
  9841. },
  9842. "_opacity": 255,
  9843. "_color": {
  9844. "__type__": "cc.Color",
  9845. "r": 255,
  9846. "g": 255,
  9847. "b": 255,
  9848. "a": 255
  9849. },
  9850. "_contentSize": {
  9851. "__type__": "cc.Size",
  9852. "width": 1130,
  9853. "height": 200
  9854. },
  9855. "_anchorPoint": {
  9856. "__type__": "cc.Vec2",
  9857. "x": 0.5,
  9858. "y": 0.5
  9859. },
  9860. "_trs": {
  9861. "__type__": "TypedArray",
  9862. "ctor": "Float64Array",
  9863. "array": [
  9864. 185.436,
  9865. 3.427,
  9866. 0,
  9867. 0,
  9868. 0,
  9869. 0,
  9870. 1,
  9871. 1,
  9872. 1,
  9873. 1
  9874. ]
  9875. },
  9876. "_eulerAngles": {
  9877. "__type__": "cc.Vec3",
  9878. "x": 0,
  9879. "y": 0,
  9880. "z": 0
  9881. },
  9882. "_skewX": 0,
  9883. "_skewY": 0,
  9884. "_is3DNode": false,
  9885. "_groupIndex": 0,
  9886. "groupIndex": 0,
  9887. "_id": ""
  9888. },
  9889. {
  9890. "__type__": "cc.Node",
  9891. "_name": "progress_bottom",
  9892. "_objFlags": 0,
  9893. "_parent": {
  9894. "__id__": 287
  9895. },
  9896. "_children": [
  9897. {
  9898. "__id__": 289
  9899. }
  9900. ],
  9901. "_active": true,
  9902. "_components": [
  9903. {
  9904. "__id__": 292
  9905. },
  9906. {
  9907. "__id__": 293
  9908. }
  9909. ],
  9910. "_prefab": {
  9911. "__id__": 294
  9912. },
  9913. "_opacity": 255,
  9914. "_color": {
  9915. "__type__": "cc.Color",
  9916. "r": 255,
  9917. "g": 255,
  9918. "b": 255,
  9919. "a": 255
  9920. },
  9921. "_contentSize": {
  9922. "__type__": "cc.Size",
  9923. "width": 980,
  9924. "height": 36
  9925. },
  9926. "_anchorPoint": {
  9927. "__type__": "cc.Vec2",
  9928. "x": 0.5,
  9929. "y": 0.5
  9930. },
  9931. "_trs": {
  9932. "__type__": "TypedArray",
  9933. "ctor": "Float64Array",
  9934. "array": [
  9935. 0,
  9936. -32,
  9937. 0,
  9938. 0,
  9939. 0,
  9940. 0,
  9941. 1,
  9942. 1,
  9943. 1,
  9944. 0
  9945. ]
  9946. },
  9947. "_eulerAngles": {
  9948. "__type__": "cc.Vec3",
  9949. "x": 0,
  9950. "y": 0,
  9951. "z": 0
  9952. },
  9953. "_skewX": 0,
  9954. "_skewY": 0,
  9955. "_is3DNode": false,
  9956. "_groupIndex": 0,
  9957. "groupIndex": 0,
  9958. "_id": ""
  9959. },
  9960. {
  9961. "__type__": "cc.Node",
  9962. "_name": "progress_bg",
  9963. "_objFlags": 0,
  9964. "_parent": {
  9965. "__id__": 288
  9966. },
  9967. "_children": [],
  9968. "_active": true,
  9969. "_components": [
  9970. {
  9971. "__id__": 290
  9972. }
  9973. ],
  9974. "_prefab": {
  9975. "__id__": 291
  9976. },
  9977. "_opacity": 255,
  9978. "_color": {
  9979. "__type__": "cc.Color",
  9980. "r": 255,
  9981. "g": 255,
  9982. "b": 255,
  9983. "a": 255
  9984. },
  9985. "_contentSize": {
  9986. "__type__": "cc.Size",
  9987. "width": 980,
  9988. "height": 18
  9989. },
  9990. "_anchorPoint": {
  9991. "__type__": "cc.Vec2",
  9992. "x": 0,
  9993. "y": 0.5
  9994. },
  9995. "_trs": {
  9996. "__type__": "TypedArray",
  9997. "ctor": "Float64Array",
  9998. "array": [
  9999. -490,
  10000. 0,
  10001. 0,
  10002. 0,
  10003. 0,
  10004. 0,
  10005. 1,
  10006. 1,
  10007. 1,
  10008. 1
  10009. ]
  10010. },
  10011. "_eulerAngles": {
  10012. "__type__": "cc.Vec3",
  10013. "x": 0,
  10014. "y": 0,
  10015. "z": 0
  10016. },
  10017. "_skewX": 0,
  10018. "_skewY": 0,
  10019. "_is3DNode": false,
  10020. "_groupIndex": 0,
  10021. "groupIndex": 0,
  10022. "_id": ""
  10023. },
  10024. {
  10025. "__type__": "cc.Sprite",
  10026. "_name": "",
  10027. "_objFlags": 0,
  10028. "node": {
  10029. "__id__": 289
  10030. },
  10031. "_enabled": true,
  10032. "_materials": [
  10033. {
  10034. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10035. }
  10036. ],
  10037. "_srcBlendFactor": 770,
  10038. "_dstBlendFactor": 771,
  10039. "_spriteFrame": {
  10040. "__uuid__": "4f4cfcfc-dd4f-4752-86cc-09c99ea7df9f"
  10041. },
  10042. "_type": 0,
  10043. "_sizeMode": 0,
  10044. "_fillType": 0,
  10045. "_fillCenter": {
  10046. "__type__": "cc.Vec2",
  10047. "x": 0,
  10048. "y": 0
  10049. },
  10050. "_fillStart": 0,
  10051. "_fillRange": 0,
  10052. "_isTrimmedMode": true,
  10053. "_atlas": null,
  10054. "_id": ""
  10055. },
  10056. {
  10057. "__type__": "cc.PrefabInfo",
  10058. "root": {
  10059. "__id__": 1
  10060. },
  10061. "asset": {
  10062. "__id__": 0
  10063. },
  10064. "fileId": "feTIheU/REfKC64m56qaHm",
  10065. "sync": false
  10066. },
  10067. {
  10068. "__type__": "cc.Sprite",
  10069. "_name": "",
  10070. "_objFlags": 0,
  10071. "node": {
  10072. "__id__": 288
  10073. },
  10074. "_enabled": true,
  10075. "_materials": [
  10076. {
  10077. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10078. }
  10079. ],
  10080. "_srcBlendFactor": 770,
  10081. "_dstBlendFactor": 771,
  10082. "_spriteFrame": {
  10083. "__uuid__": "7b762ff9-39ec-4073-a9f1-2961b83b5e5c"
  10084. },
  10085. "_type": 2,
  10086. "_sizeMode": 0,
  10087. "_fillType": 0,
  10088. "_fillCenter": {
  10089. "__type__": "cc.Vec2",
  10090. "x": 0,
  10091. "y": 0
  10092. },
  10093. "_fillStart": 0,
  10094. "_fillRange": 0,
  10095. "_isTrimmedMode": true,
  10096. "_atlas": null,
  10097. "_id": ""
  10098. },
  10099. {
  10100. "__type__": "cc.ProgressBar",
  10101. "_name": "",
  10102. "_objFlags": 0,
  10103. "node": {
  10104. "__id__": 288
  10105. },
  10106. "_enabled": true,
  10107. "_N$totalLength": 980,
  10108. "_N$barSprite": {
  10109. "__id__": 290
  10110. },
  10111. "_N$mode": 0,
  10112. "_N$progress": 1,
  10113. "_N$reverse": false,
  10114. "_id": ""
  10115. },
  10116. {
  10117. "__type__": "cc.PrefabInfo",
  10118. "root": {
  10119. "__id__": 1
  10120. },
  10121. "asset": {
  10122. "__id__": 0
  10123. },
  10124. "fileId": "daIByEbA5JJJdT70kChMuz",
  10125. "sync": false
  10126. },
  10127. {
  10128. "__type__": "cc.Node",
  10129. "_name": "icon",
  10130. "_objFlags": 0,
  10131. "_parent": {
  10132. "__id__": 287
  10133. },
  10134. "_children": [],
  10135. "_active": true,
  10136. "_components": [
  10137. {
  10138. "__id__": 296
  10139. }
  10140. ],
  10141. "_prefab": {
  10142. "__id__": 297
  10143. },
  10144. "_opacity": 255,
  10145. "_color": {
  10146. "__type__": "cc.Color",
  10147. "r": 255,
  10148. "g": 255,
  10149. "b": 255,
  10150. "a": 255
  10151. },
  10152. "_contentSize": {
  10153. "__type__": "cc.Size",
  10154. "width": 127,
  10155. "height": 129
  10156. },
  10157. "_anchorPoint": {
  10158. "__type__": "cc.Vec2",
  10159. "x": 0.5,
  10160. "y": 0.5
  10161. },
  10162. "_trs": {
  10163. "__type__": "TypedArray",
  10164. "ctor": "Float64Array",
  10165. "array": [
  10166. -499.228,
  10167. -32,
  10168. 0,
  10169. 0,
  10170. 0,
  10171. 0,
  10172. 1,
  10173. 0.6,
  10174. 0.6,
  10175. 1
  10176. ]
  10177. },
  10178. "_eulerAngles": {
  10179. "__type__": "cc.Vec3",
  10180. "x": 0,
  10181. "y": 0,
  10182. "z": 0
  10183. },
  10184. "_skewX": 0,
  10185. "_skewY": 0,
  10186. "_is3DNode": false,
  10187. "_groupIndex": 0,
  10188. "groupIndex": 0,
  10189. "_id": ""
  10190. },
  10191. {
  10192. "__type__": "cc.Sprite",
  10193. "_name": "",
  10194. "_objFlags": 0,
  10195. "node": {
  10196. "__id__": 295
  10197. },
  10198. "_enabled": true,
  10199. "_materials": [
  10200. {
  10201. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10202. }
  10203. ],
  10204. "_srcBlendFactor": 770,
  10205. "_dstBlendFactor": 771,
  10206. "_spriteFrame": {
  10207. "__uuid__": "79c0f6b0-1eab-4c0c-b55a-f001bd6ee6e2"
  10208. },
  10209. "_type": 0,
  10210. "_sizeMode": 1,
  10211. "_fillType": 0,
  10212. "_fillCenter": {
  10213. "__type__": "cc.Vec2",
  10214. "x": 0,
  10215. "y": 0
  10216. },
  10217. "_fillStart": 0,
  10218. "_fillRange": 0,
  10219. "_isTrimmedMode": true,
  10220. "_atlas": null,
  10221. "_id": ""
  10222. },
  10223. {
  10224. "__type__": "cc.PrefabInfo",
  10225. "root": {
  10226. "__id__": 1
  10227. },
  10228. "asset": {
  10229. "__id__": 0
  10230. },
  10231. "fileId": "9cxAgP+zxCir0HRD7RacdW",
  10232. "sync": false
  10233. },
  10234. {
  10235. "__type__": "cc.Node",
  10236. "_name": "chest_box",
  10237. "_objFlags": 0,
  10238. "_parent": {
  10239. "__id__": 287
  10240. },
  10241. "_children": [
  10242. {
  10243. "__id__": 299
  10244. }
  10245. ],
  10246. "_active": true,
  10247. "_components": [
  10248. {
  10249. "__id__": 339
  10250. }
  10251. ],
  10252. "_prefab": {
  10253. "__id__": 340
  10254. },
  10255. "_opacity": 255,
  10256. "_color": {
  10257. "__type__": "cc.Color",
  10258. "r": 255,
  10259. "g": 255,
  10260. "b": 255,
  10261. "a": 255
  10262. },
  10263. "_contentSize": {
  10264. "__type__": "cc.Size",
  10265. "width": 900,
  10266. "height": 170
  10267. },
  10268. "_anchorPoint": {
  10269. "__type__": "cc.Vec2",
  10270. "x": 0,
  10271. "y": 0.5
  10272. },
  10273. "_trs": {
  10274. "__type__": "TypedArray",
  10275. "ctor": "Float64Array",
  10276. "array": [
  10277. -339,
  10278. 56,
  10279. 0,
  10280. 0,
  10281. 0,
  10282. 0,
  10283. 1,
  10284. 1,
  10285. 1,
  10286. 1
  10287. ]
  10288. },
  10289. "_eulerAngles": {
  10290. "__type__": "cc.Vec3",
  10291. "x": 0,
  10292. "y": 0,
  10293. "z": 0
  10294. },
  10295. "_skewX": 0,
  10296. "_skewY": 0,
  10297. "_is3DNode": false,
  10298. "_groupIndex": 0,
  10299. "groupIndex": 0,
  10300. "_id": ""
  10301. },
  10302. {
  10303. "__type__": "cc.Node",
  10304. "_name": "chest_item",
  10305. "_objFlags": 0,
  10306. "_parent": {
  10307. "__id__": 298
  10308. },
  10309. "_children": [
  10310. {
  10311. "__id__": 300
  10312. },
  10313. {
  10314. "__id__": 303
  10315. },
  10316. {
  10317. "__id__": 306
  10318. },
  10319. {
  10320. "__id__": 312
  10321. },
  10322. {
  10323. "__id__": 321
  10324. },
  10325. {
  10326. "__id__": 326
  10327. },
  10328. {
  10329. "__id__": 334
  10330. }
  10331. ],
  10332. "_active": true,
  10333. "_components": [
  10334. {
  10335. "__id__": 337
  10336. }
  10337. ],
  10338. "_prefab": {
  10339. "__id__": 338
  10340. },
  10341. "_opacity": 255,
  10342. "_color": {
  10343. "__type__": "cc.Color",
  10344. "r": 255,
  10345. "g": 255,
  10346. "b": 255,
  10347. "a": 255
  10348. },
  10349. "_contentSize": {
  10350. "__type__": "cc.Size",
  10351. "width": 90,
  10352. "height": 76
  10353. },
  10354. "_anchorPoint": {
  10355. "__type__": "cc.Vec2",
  10356. "x": 0.5,
  10357. "y": 0.5
  10358. },
  10359. "_trs": {
  10360. "__type__": "TypedArray",
  10361. "ctor": "Float64Array",
  10362. "array": [
  10363. 45,
  10364. -26.000000000000014,
  10365. 0,
  10366. 0,
  10367. 0,
  10368. 0,
  10369. 1,
  10370. 1,
  10371. 1,
  10372. 0
  10373. ]
  10374. },
  10375. "_eulerAngles": {
  10376. "__type__": "cc.Vec3",
  10377. "x": 0,
  10378. "y": 0,
  10379. "z": 0
  10380. },
  10381. "_skewX": 0,
  10382. "_skewY": 0,
  10383. "_is3DNode": false,
  10384. "_groupIndex": 0,
  10385. "groupIndex": 0,
  10386. "_id": ""
  10387. },
  10388. {
  10389. "__type__": "cc.Node",
  10390. "_name": "inactive",
  10391. "_objFlags": 0,
  10392. "_parent": {
  10393. "__id__": 299
  10394. },
  10395. "_children": [],
  10396. "_active": true,
  10397. "_components": [
  10398. {
  10399. "__id__": 301
  10400. }
  10401. ],
  10402. "_prefab": {
  10403. "__id__": 302
  10404. },
  10405. "_opacity": 255,
  10406. "_color": {
  10407. "__type__": "cc.Color",
  10408. "r": 255,
  10409. "g": 255,
  10410. "b": 255,
  10411. "a": 255
  10412. },
  10413. "_contentSize": {
  10414. "__type__": "cc.Size",
  10415. "width": 63,
  10416. "height": 63
  10417. },
  10418. "_anchorPoint": {
  10419. "__type__": "cc.Vec2",
  10420. "x": 0.5,
  10421. "y": 0.5
  10422. },
  10423. "_trs": {
  10424. "__type__": "TypedArray",
  10425. "ctor": "Float64Array",
  10426. "array": [
  10427. 0,
  10428. -65,
  10429. 0,
  10430. 0,
  10431. 0,
  10432. 0,
  10433. 1,
  10434. 1,
  10435. 1,
  10436. 1
  10437. ]
  10438. },
  10439. "_eulerAngles": {
  10440. "__type__": "cc.Vec3",
  10441. "x": 0,
  10442. "y": 0,
  10443. "z": 0
  10444. },
  10445. "_skewX": 0,
  10446. "_skewY": 0,
  10447. "_is3DNode": false,
  10448. "_groupIndex": 0,
  10449. "groupIndex": 0,
  10450. "_id": ""
  10451. },
  10452. {
  10453. "__type__": "cc.Sprite",
  10454. "_name": "",
  10455. "_objFlags": 0,
  10456. "node": {
  10457. "__id__": 300
  10458. },
  10459. "_enabled": true,
  10460. "_materials": [
  10461. {
  10462. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10463. }
  10464. ],
  10465. "_srcBlendFactor": 770,
  10466. "_dstBlendFactor": 771,
  10467. "_spriteFrame": {
  10468. "__uuid__": "af7f71d5-a115-4c42-a09f-321563cbc296"
  10469. },
  10470. "_type": 0,
  10471. "_sizeMode": 1,
  10472. "_fillType": 0,
  10473. "_fillCenter": {
  10474. "__type__": "cc.Vec2",
  10475. "x": 0,
  10476. "y": 0
  10477. },
  10478. "_fillStart": 0,
  10479. "_fillRange": 0,
  10480. "_isTrimmedMode": true,
  10481. "_atlas": null,
  10482. "_id": ""
  10483. },
  10484. {
  10485. "__type__": "cc.PrefabInfo",
  10486. "root": {
  10487. "__id__": 1
  10488. },
  10489. "asset": {
  10490. "__id__": 0
  10491. },
  10492. "fileId": "cb8rmkl1tNiZ3t4+h6gX4E",
  10493. "sync": false
  10494. },
  10495. {
  10496. "__type__": "cc.Node",
  10497. "_name": "active",
  10498. "_objFlags": 0,
  10499. "_parent": {
  10500. "__id__": 299
  10501. },
  10502. "_children": [],
  10503. "_active": false,
  10504. "_components": [
  10505. {
  10506. "__id__": 304
  10507. }
  10508. ],
  10509. "_prefab": {
  10510. "__id__": 305
  10511. },
  10512. "_opacity": 255,
  10513. "_color": {
  10514. "__type__": "cc.Color",
  10515. "r": 255,
  10516. "g": 255,
  10517. "b": 255,
  10518. "a": 255
  10519. },
  10520. "_contentSize": {
  10521. "__type__": "cc.Size",
  10522. "width": 63,
  10523. "height": 63
  10524. },
  10525. "_anchorPoint": {
  10526. "__type__": "cc.Vec2",
  10527. "x": 0.5,
  10528. "y": 0.5
  10529. },
  10530. "_trs": {
  10531. "__type__": "TypedArray",
  10532. "ctor": "Float64Array",
  10533. "array": [
  10534. 0,
  10535. -65,
  10536. 0,
  10537. 0,
  10538. 0,
  10539. 0,
  10540. 1,
  10541. 1,
  10542. 1,
  10543. 1
  10544. ]
  10545. },
  10546. "_eulerAngles": {
  10547. "__type__": "cc.Vec3",
  10548. "x": 0,
  10549. "y": 0,
  10550. "z": 0
  10551. },
  10552. "_skewX": 0,
  10553. "_skewY": 0,
  10554. "_is3DNode": false,
  10555. "_groupIndex": 0,
  10556. "groupIndex": 0,
  10557. "_id": ""
  10558. },
  10559. {
  10560. "__type__": "cc.Sprite",
  10561. "_name": "",
  10562. "_objFlags": 0,
  10563. "node": {
  10564. "__id__": 303
  10565. },
  10566. "_enabled": true,
  10567. "_materials": [
  10568. {
  10569. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10570. }
  10571. ],
  10572. "_srcBlendFactor": 770,
  10573. "_dstBlendFactor": 771,
  10574. "_spriteFrame": {
  10575. "__uuid__": "68a5b546-337f-4a30-b35f-d7c96b950e6e"
  10576. },
  10577. "_type": 0,
  10578. "_sizeMode": 1,
  10579. "_fillType": 0,
  10580. "_fillCenter": {
  10581. "__type__": "cc.Vec2",
  10582. "x": 0,
  10583. "y": 0
  10584. },
  10585. "_fillStart": 0,
  10586. "_fillRange": 0,
  10587. "_isTrimmedMode": true,
  10588. "_atlas": null,
  10589. "_id": ""
  10590. },
  10591. {
  10592. "__type__": "cc.PrefabInfo",
  10593. "root": {
  10594. "__id__": 1
  10595. },
  10596. "asset": {
  10597. "__id__": 0
  10598. },
  10599. "fileId": "142IFJpzdMyaNPos9/6y0H",
  10600. "sync": false
  10601. },
  10602. {
  10603. "__type__": "cc.Node",
  10604. "_name": "chest_icon",
  10605. "_objFlags": 0,
  10606. "_parent": {
  10607. "__id__": 299
  10608. },
  10609. "_children": [],
  10610. "_active": true,
  10611. "_components": [
  10612. {
  10613. "__id__": 307
  10614. },
  10615. {
  10616. "__id__": 308
  10617. },
  10618. {
  10619. "__id__": 309
  10620. }
  10621. ],
  10622. "_prefab": {
  10623. "__id__": 311
  10624. },
  10625. "_opacity": 255,
  10626. "_color": {
  10627. "__type__": "cc.Color",
  10628. "r": 255,
  10629. "g": 255,
  10630. "b": 255,
  10631. "a": 255
  10632. },
  10633. "_contentSize": {
  10634. "__type__": "cc.Size",
  10635. "width": 90,
  10636. "height": 76
  10637. },
  10638. "_anchorPoint": {
  10639. "__type__": "cc.Vec2",
  10640. "x": 0.5,
  10641. "y": 0.5
  10642. },
  10643. "_trs": {
  10644. "__type__": "TypedArray",
  10645. "ctor": "Float64Array",
  10646. "array": [
  10647. 0,
  10648. 0,
  10649. 0,
  10650. 0,
  10651. 0,
  10652. 0,
  10653. 1,
  10654. 1,
  10655. 1,
  10656. 0
  10657. ]
  10658. },
  10659. "_eulerAngles": {
  10660. "__type__": "cc.Vec3",
  10661. "x": 0,
  10662. "y": 0,
  10663. "z": 0
  10664. },
  10665. "_skewX": 0,
  10666. "_skewY": 0,
  10667. "_is3DNode": false,
  10668. "_groupIndex": 0,
  10669. "groupIndex": 0,
  10670. "_id": ""
  10671. },
  10672. {
  10673. "__type__": "cc.Sprite",
  10674. "_name": "",
  10675. "_objFlags": 0,
  10676. "node": {
  10677. "__id__": 306
  10678. },
  10679. "_enabled": true,
  10680. "_materials": [
  10681. {
  10682. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10683. }
  10684. ],
  10685. "_srcBlendFactor": 770,
  10686. "_dstBlendFactor": 771,
  10687. "_spriteFrame": {
  10688. "__uuid__": "1d7b5a40-97c3-45b1-a7f2-4c4b4f5f7c1c"
  10689. },
  10690. "_type": 0,
  10691. "_sizeMode": 0,
  10692. "_fillType": 0,
  10693. "_fillCenter": {
  10694. "__type__": "cc.Vec2",
  10695. "x": 0,
  10696. "y": 0
  10697. },
  10698. "_fillStart": 0,
  10699. "_fillRange": 0,
  10700. "_isTrimmedMode": true,
  10701. "_atlas": null,
  10702. "_id": ""
  10703. },
  10704. {
  10705. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  10706. "_name": "",
  10707. "_objFlags": 0,
  10708. "node": {
  10709. "__id__": 306
  10710. },
  10711. "_enabled": true,
  10712. "openContinuous": true,
  10713. "continuousTime": 0.2,
  10714. "multiTouch": false,
  10715. "_id": ""
  10716. },
  10717. {
  10718. "__type__": "61994AafntNFIbmt1zoyLq+",
  10719. "_name": "",
  10720. "_objFlags": 0,
  10721. "node": {
  10722. "__id__": 306
  10723. },
  10724. "_enabled": true,
  10725. "_normalMaterial": null,
  10726. "_grayMaterial": null,
  10727. "duration": 0.1,
  10728. "zoomScale": 1.2,
  10729. "clickEvents": [
  10730. {
  10731. "__id__": 310
  10732. }
  10733. ],
  10734. "_N$interactable": true,
  10735. "_N$enableAutoGrayEffect": false,
  10736. "_N$transition": 0,
  10737. "transition": 0,
  10738. "_N$normalColor": {
  10739. "__type__": "cc.Color",
  10740. "r": 255,
  10741. "g": 255,
  10742. "b": 255,
  10743. "a": 255
  10744. },
  10745. "_N$pressedColor": {
  10746. "__type__": "cc.Color",
  10747. "r": 211,
  10748. "g": 211,
  10749. "b": 211,
  10750. "a": 255
  10751. },
  10752. "pressedColor": {
  10753. "__type__": "cc.Color",
  10754. "r": 211,
  10755. "g": 211,
  10756. "b": 211,
  10757. "a": 255
  10758. },
  10759. "_N$hoverColor": {
  10760. "__type__": "cc.Color",
  10761. "r": 255,
  10762. "g": 255,
  10763. "b": 255,
  10764. "a": 255
  10765. },
  10766. "hoverColor": {
  10767. "__type__": "cc.Color",
  10768. "r": 255,
  10769. "g": 255,
  10770. "b": 255,
  10771. "a": 255
  10772. },
  10773. "_N$disabledColor": {
  10774. "__type__": "cc.Color",
  10775. "r": 124,
  10776. "g": 124,
  10777. "b": 124,
  10778. "a": 255
  10779. },
  10780. "_N$normalSprite": null,
  10781. "_N$pressedSprite": null,
  10782. "pressedSprite": null,
  10783. "_N$hoverSprite": null,
  10784. "hoverSprite": null,
  10785. "_N$disabledSprite": null,
  10786. "_N$target": null,
  10787. "_id": ""
  10788. },
  10789. {
  10790. "__type__": "cc.ClickEvent",
  10791. "target": {
  10792. "__id__": 1
  10793. },
  10794. "component": "",
  10795. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  10796. "handler": "onChestClick",
  10797. "customEventData": ""
  10798. },
  10799. {
  10800. "__type__": "cc.PrefabInfo",
  10801. "root": {
  10802. "__id__": 1
  10803. },
  10804. "asset": {
  10805. "__id__": 0
  10806. },
  10807. "fileId": "26Npn/pEVF0IrQpKA0qOpJ",
  10808. "sync": false
  10809. },
  10810. {
  10811. "__type__": "cc.Node",
  10812. "_name": "hasReward",
  10813. "_objFlags": 0,
  10814. "_parent": {
  10815. "__id__": 299
  10816. },
  10817. "_children": [
  10818. {
  10819. "__id__": 313
  10820. }
  10821. ],
  10822. "_active": false,
  10823. "_components": [
  10824. {
  10825. "__id__": 316
  10826. },
  10827. {
  10828. "__id__": 317
  10829. },
  10830. {
  10831. "__id__": 318
  10832. }
  10833. ],
  10834. "_prefab": {
  10835. "__id__": 320
  10836. },
  10837. "_opacity": 255,
  10838. "_color": {
  10839. "__type__": "cc.Color",
  10840. "r": 255,
  10841. "g": 255,
  10842. "b": 255,
  10843. "a": 255
  10844. },
  10845. "_contentSize": {
  10846. "__type__": "cc.Size",
  10847. "width": 135,
  10848. "height": 117
  10849. },
  10850. "_anchorPoint": {
  10851. "__type__": "cc.Vec2",
  10852. "x": 0.5,
  10853. "y": 0.5
  10854. },
  10855. "_trs": {
  10856. "__type__": "TypedArray",
  10857. "ctor": "Float64Array",
  10858. "array": [
  10859. 0,
  10860. 0,
  10861. 0,
  10862. 0,
  10863. 0,
  10864. 0,
  10865. 1,
  10866. 0.8,
  10867. 0.8,
  10868. 1
  10869. ]
  10870. },
  10871. "_eulerAngles": {
  10872. "__type__": "cc.Vec3",
  10873. "x": 0,
  10874. "y": 0,
  10875. "z": 0
  10876. },
  10877. "_skewX": 0,
  10878. "_skewY": 0,
  10879. "_is3DNode": false,
  10880. "_groupIndex": 0,
  10881. "groupIndex": 0,
  10882. "_id": ""
  10883. },
  10884. {
  10885. "__type__": "cc.Node",
  10886. "_name": "box_1",
  10887. "_objFlags": 0,
  10888. "_parent": {
  10889. "__id__": 312
  10890. },
  10891. "_children": [],
  10892. "_active": true,
  10893. "_components": [
  10894. {
  10895. "__id__": 314
  10896. }
  10897. ],
  10898. "_prefab": {
  10899. "__id__": 315
  10900. },
  10901. "_opacity": 255,
  10902. "_color": {
  10903. "__type__": "cc.Color",
  10904. "r": 255,
  10905. "g": 255,
  10906. "b": 255,
  10907. "a": 255
  10908. },
  10909. "_contentSize": {
  10910. "__type__": "cc.Size",
  10911. "width": 135,
  10912. "height": 117
  10913. },
  10914. "_anchorPoint": {
  10915. "__type__": "cc.Vec2",
  10916. "x": 0.5,
  10917. "y": 0
  10918. },
  10919. "_trs": {
  10920. "__type__": "TypedArray",
  10921. "ctor": "Float64Array",
  10922. "array": [
  10923. 0,
  10924. -60,
  10925. 0,
  10926. 0,
  10927. 0,
  10928. 0,
  10929. 1,
  10930. 1,
  10931. 1,
  10932. 1
  10933. ]
  10934. },
  10935. "_eulerAngles": {
  10936. "__type__": "cc.Vec3",
  10937. "x": 0,
  10938. "y": 0,
  10939. "z": 0
  10940. },
  10941. "_skewX": 0,
  10942. "_skewY": 0,
  10943. "_is3DNode": false,
  10944. "_groupIndex": 0,
  10945. "groupIndex": 0,
  10946. "_id": ""
  10947. },
  10948. {
  10949. "__type__": "cc.Sprite",
  10950. "_name": "",
  10951. "_objFlags": 0,
  10952. "node": {
  10953. "__id__": 313
  10954. },
  10955. "_enabled": true,
  10956. "_materials": [
  10957. {
  10958. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10959. }
  10960. ],
  10961. "_srcBlendFactor": 770,
  10962. "_dstBlendFactor": 771,
  10963. "_spriteFrame": {
  10964. "__uuid__": "f32ece61-31d0-44fb-a840-fdf6de3acf18"
  10965. },
  10966. "_type": 0,
  10967. "_sizeMode": 1,
  10968. "_fillType": 0,
  10969. "_fillCenter": {
  10970. "__type__": "cc.Vec2",
  10971. "x": 0,
  10972. "y": 0
  10973. },
  10974. "_fillStart": 0,
  10975. "_fillRange": 0,
  10976. "_isTrimmedMode": true,
  10977. "_atlas": null,
  10978. "_id": ""
  10979. },
  10980. {
  10981. "__type__": "cc.PrefabInfo",
  10982. "root": {
  10983. "__id__": 1
  10984. },
  10985. "asset": {
  10986. "__id__": 0
  10987. },
  10988. "fileId": "159R7R4h9KSIMrUPX1GAu4",
  10989. "sync": false
  10990. },
  10991. {
  10992. "__type__": "cc.Animation",
  10993. "_name": "",
  10994. "_objFlags": 0,
  10995. "node": {
  10996. "__id__": 312
  10997. },
  10998. "_enabled": true,
  10999. "_defaultClip": {
  11000. "__uuid__": "bf8d6751-47c8-4ae6-b667-0ae2d5a3fd33"
  11001. },
  11002. "_clips": [
  11003. {
  11004. "__uuid__": "bf8d6751-47c8-4ae6-b667-0ae2d5a3fd33"
  11005. }
  11006. ],
  11007. "playOnLoad": true,
  11008. "_id": ""
  11009. },
  11010. {
  11011. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  11012. "_name": "",
  11013. "_objFlags": 0,
  11014. "node": {
  11015. "__id__": 312
  11016. },
  11017. "_enabled": true,
  11018. "openContinuous": true,
  11019. "continuousTime": 0.2,
  11020. "multiTouch": false,
  11021. "_id": ""
  11022. },
  11023. {
  11024. "__type__": "61994AafntNFIbmt1zoyLq+",
  11025. "_name": "",
  11026. "_objFlags": 0,
  11027. "node": {
  11028. "__id__": 312
  11029. },
  11030. "_enabled": true,
  11031. "_normalMaterial": null,
  11032. "_grayMaterial": null,
  11033. "duration": 0.1,
  11034. "zoomScale": 1.2,
  11035. "clickEvents": [
  11036. {
  11037. "__id__": 319
  11038. }
  11039. ],
  11040. "_N$interactable": true,
  11041. "_N$enableAutoGrayEffect": false,
  11042. "_N$transition": 0,
  11043. "transition": 0,
  11044. "_N$normalColor": {
  11045. "__type__": "cc.Color",
  11046. "r": 255,
  11047. "g": 255,
  11048. "b": 255,
  11049. "a": 255
  11050. },
  11051. "_N$pressedColor": {
  11052. "__type__": "cc.Color",
  11053. "r": 211,
  11054. "g": 211,
  11055. "b": 211,
  11056. "a": 255
  11057. },
  11058. "pressedColor": {
  11059. "__type__": "cc.Color",
  11060. "r": 211,
  11061. "g": 211,
  11062. "b": 211,
  11063. "a": 255
  11064. },
  11065. "_N$hoverColor": {
  11066. "__type__": "cc.Color",
  11067. "r": 255,
  11068. "g": 255,
  11069. "b": 255,
  11070. "a": 255
  11071. },
  11072. "hoverColor": {
  11073. "__type__": "cc.Color",
  11074. "r": 255,
  11075. "g": 255,
  11076. "b": 255,
  11077. "a": 255
  11078. },
  11079. "_N$disabledColor": {
  11080. "__type__": "cc.Color",
  11081. "r": 124,
  11082. "g": 124,
  11083. "b": 124,
  11084. "a": 255
  11085. },
  11086. "_N$normalSprite": null,
  11087. "_N$pressedSprite": null,
  11088. "pressedSprite": null,
  11089. "_N$hoverSprite": null,
  11090. "hoverSprite": null,
  11091. "_N$disabledSprite": null,
  11092. "_N$target": null,
  11093. "_id": ""
  11094. },
  11095. {
  11096. "__type__": "cc.ClickEvent",
  11097. "target": {
  11098. "__id__": 1
  11099. },
  11100. "component": "",
  11101. "_componentId": "e0668Xvob9FuI7FV+nBYIHV",
  11102. "handler": "onChestClick",
  11103. "customEventData": ""
  11104. },
  11105. {
  11106. "__type__": "cc.PrefabInfo",
  11107. "root": {
  11108. "__id__": 1
  11109. },
  11110. "asset": {
  11111. "__id__": 0
  11112. },
  11113. "fileId": "37GFEWJo9EIqQBOcj0kLaM",
  11114. "sync": false
  11115. },
  11116. {
  11117. "__type__": "cc.Node",
  11118. "_name": "label",
  11119. "_objFlags": 0,
  11120. "_parent": {
  11121. "__id__": 299
  11122. },
  11123. "_children": [],
  11124. "_active": true,
  11125. "_components": [
  11126. {
  11127. "__id__": 322
  11128. },
  11129. {
  11130. "__id__": 323
  11131. },
  11132. {
  11133. "__id__": 324
  11134. }
  11135. ],
  11136. "_prefab": {
  11137. "__id__": 325
  11138. },
  11139. "_opacity": 255,
  11140. "_color": {
  11141. "__type__": "cc.Color",
  11142. "r": 255,
  11143. "g": 255,
  11144. "b": 255,
  11145. "a": 255
  11146. },
  11147. "_contentSize": {
  11148. "__type__": "cc.Size",
  11149. "width": 48.23,
  11150. "height": 56.4
  11151. },
  11152. "_anchorPoint": {
  11153. "__type__": "cc.Vec2",
  11154. "x": 0.5,
  11155. "y": 0.5
  11156. },
  11157. "_trs": {
  11158. "__type__": "TypedArray",
  11159. "ctor": "Float64Array",
  11160. "array": [
  11161. 0,
  11162. -108,
  11163. 0,
  11164. 0,
  11165. 0,
  11166. 0,
  11167. 1,
  11168. 1,
  11169. 1,
  11170. 1
  11171. ]
  11172. },
  11173. "_eulerAngles": {
  11174. "__type__": "cc.Vec3",
  11175. "x": 0,
  11176. "y": 0,
  11177. "z": 0
  11178. },
  11179. "_skewX": 0,
  11180. "_skewY": 0,
  11181. "_is3DNode": false,
  11182. "_groupIndex": 0,
  11183. "groupIndex": 0,
  11184. "_id": ""
  11185. },
  11186. {
  11187. "__type__": "cc.Label",
  11188. "_name": "",
  11189. "_objFlags": 0,
  11190. "node": {
  11191. "__id__": 321
  11192. },
  11193. "_enabled": true,
  11194. "_materials": [
  11195. {
  11196. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11197. }
  11198. ],
  11199. "_srcBlendFactor": 770,
  11200. "_dstBlendFactor": 771,
  11201. "_string": "20",
  11202. "_N$string": "20",
  11203. "_fontSize": 30,
  11204. "_lineHeight": 40,
  11205. "_enableWrapText": true,
  11206. "_N$file": {
  11207. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  11208. },
  11209. "_isSystemFontUsed": false,
  11210. "_spacingX": 0,
  11211. "_batchAsBitmap": false,
  11212. "_styleFlags": 0,
  11213. "_underlineHeight": 0,
  11214. "_N$horizontalAlign": 1,
  11215. "_N$verticalAlign": 1,
  11216. "_N$fontFamily": "Arial",
  11217. "_N$overflow": 0,
  11218. "_N$cacheMode": 0,
  11219. "_id": ""
  11220. },
  11221. {
  11222. "__type__": "cc.LabelOutline",
  11223. "_name": "",
  11224. "_objFlags": 0,
  11225. "node": {
  11226. "__id__": 321
  11227. },
  11228. "_enabled": true,
  11229. "_color": {
  11230. "__type__": "cc.Color",
  11231. "r": 38,
  11232. "g": 17,
  11233. "b": 12,
  11234. "a": 255
  11235. },
  11236. "_width": 3,
  11237. "_id": ""
  11238. },
  11239. {
  11240. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  11241. "_name": "",
  11242. "_objFlags": 0,
  11243. "node": {
  11244. "__id__": 321
  11245. },
  11246. "_enabled": true,
  11247. "_englishCase": 0,
  11248. "i18n_string": "0",
  11249. "i18n_params": [],
  11250. "_addColon": false,
  11251. "_id": ""
  11252. },
  11253. {
  11254. "__type__": "cc.PrefabInfo",
  11255. "root": {
  11256. "__id__": 321
  11257. },
  11258. "asset": {
  11259. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  11260. },
  11261. "fileId": "bci/QzzlZIIKtHI1FFdQ0P",
  11262. "sync": false
  11263. },
  11264. {
  11265. "__type__": "cc.Node",
  11266. "_name": "bubble_box",
  11267. "_objFlags": 0,
  11268. "_parent": {
  11269. "__id__": 299
  11270. },
  11271. "_children": [
  11272. {
  11273. "__id__": 327
  11274. }
  11275. ],
  11276. "_active": false,
  11277. "_components": [
  11278. {
  11279. "__id__": 331
  11280. },
  11281. {
  11282. "__id__": 332
  11283. }
  11284. ],
  11285. "_prefab": {
  11286. "__id__": 333
  11287. },
  11288. "_opacity": 255,
  11289. "_color": {
  11290. "__type__": "cc.Color",
  11291. "r": 255,
  11292. "g": 255,
  11293. "b": 255,
  11294. "a": 255
  11295. },
  11296. "_contentSize": {
  11297. "__type__": "cc.Size",
  11298. "width": 130,
  11299. "height": 139.6
  11300. },
  11301. "_anchorPoint": {
  11302. "__type__": "cc.Vec2",
  11303. "x": 0.5,
  11304. "y": 0.5
  11305. },
  11306. "_trs": {
  11307. "__type__": "TypedArray",
  11308. "ctor": "Float64Array",
  11309. "array": [
  11310. 0,
  11311. -96,
  11312. 0,
  11313. 0,
  11314. 0,
  11315. 0.7071067811865475,
  11316. 0.7071067811865476,
  11317. 1,
  11318. 1,
  11319. 1
  11320. ]
  11321. },
  11322. "_eulerAngles": {
  11323. "__type__": "cc.Vec3",
  11324. "x": 0,
  11325. "y": 0,
  11326. "z": 90
  11327. },
  11328. "_skewX": 0,
  11329. "_skewY": 0,
  11330. "_is3DNode": false,
  11331. "_groupIndex": 0,
  11332. "groupIndex": 0,
  11333. "_id": ""
  11334. },
  11335. {
  11336. "__type__": "cc.Node",
  11337. "_name": "reward_item",
  11338. "_objFlags": 0,
  11339. "_parent": {
  11340. "__id__": 326
  11341. },
  11342. "_children": [
  11343. {
  11344. "__id__": 328
  11345. }
  11346. ],
  11347. "_active": true,
  11348. "_components": [],
  11349. "_prefab": {
  11350. "__id__": 330
  11351. },
  11352. "_opacity": 255,
  11353. "_color": {
  11354. "__type__": "cc.Color",
  11355. "r": 255,
  11356. "g": 255,
  11357. "b": 255,
  11358. "a": 255
  11359. },
  11360. "_contentSize": {
  11361. "__type__": "cc.Size",
  11362. "width": 99.6,
  11363. "height": 99.6
  11364. },
  11365. "_anchorPoint": {
  11366. "__type__": "cc.Vec2",
  11367. "x": 0.5,
  11368. "y": 0.5
  11369. },
  11370. "_trs": {
  11371. "__type__": "TypedArray",
  11372. "ctor": "Float64Array",
  11373. "array": [
  11374. 0,
  11375. 0,
  11376. 0,
  11377. 0,
  11378. 0,
  11379. -0.7071067811865475,
  11380. 0.7071067811865476,
  11381. 1,
  11382. 1,
  11383. 1
  11384. ]
  11385. },
  11386. "_eulerAngles": {
  11387. "__type__": "cc.Vec3",
  11388. "x": 0,
  11389. "y": 0,
  11390. "z": -90
  11391. },
  11392. "_skewX": 0,
  11393. "_skewY": 0,
  11394. "_is3DNode": false,
  11395. "_groupIndex": 0,
  11396. "groupIndex": 0,
  11397. "_id": ""
  11398. },
  11399. {
  11400. "__type__": "cc.Node",
  11401. "_name": "goods",
  11402. "_objFlags": 0,
  11403. "_parent": {
  11404. "__id__": 327
  11405. },
  11406. "_children": [],
  11407. "_active": true,
  11408. "_components": [],
  11409. "_prefab": {
  11410. "__id__": 329
  11411. },
  11412. "_opacity": 255,
  11413. "_color": {
  11414. "__type__": "cc.Color",
  11415. "r": 255,
  11416. "g": 255,
  11417. "b": 255,
  11418. "a": 255
  11419. },
  11420. "_contentSize": {
  11421. "__type__": "cc.Size",
  11422. "width": 166,
  11423. "height": 166
  11424. },
  11425. "_anchorPoint": {
  11426. "__type__": "cc.Vec2",
  11427. "x": 0.5,
  11428. "y": 0.5
  11429. },
  11430. "_trs": {
  11431. "__type__": "TypedArray",
  11432. "ctor": "Float64Array",
  11433. "array": [
  11434. 0,
  11435. 0,
  11436. 0,
  11437. 0,
  11438. 0,
  11439. 0,
  11440. 1,
  11441. 0.6,
  11442. 0.6,
  11443. 1
  11444. ]
  11445. },
  11446. "_eulerAngles": {
  11447. "__type__": "cc.Vec3",
  11448. "x": 0,
  11449. "y": 0,
  11450. "z": 0
  11451. },
  11452. "_skewX": 0,
  11453. "_skewY": 0,
  11454. "_is3DNode": false,
  11455. "_groupIndex": 0,
  11456. "groupIndex": 0,
  11457. "_id": ""
  11458. },
  11459. {
  11460. "__type__": "cc.PrefabInfo",
  11461. "root": {
  11462. "__id__": 328
  11463. },
  11464. "asset": {
  11465. "__uuid__": "304eee68-47d8-489e-9653-3ffe326cc362"
  11466. },
  11467. "fileId": "617nSkLsRHCY/l1XmUDwB6",
  11468. "sync": false
  11469. },
  11470. {
  11471. "__type__": "cc.PrefabInfo",
  11472. "root": {
  11473. "__id__": 1
  11474. },
  11475. "asset": {
  11476. "__id__": 0
  11477. },
  11478. "fileId": "14VFFJFmNMXLq+KpR0a+wK",
  11479. "sync": false
  11480. },
  11481. {
  11482. "__type__": "cc.Sprite",
  11483. "_name": "",
  11484. "_objFlags": 0,
  11485. "node": {
  11486. "__id__": 326
  11487. },
  11488. "_enabled": true,
  11489. "_materials": [
  11490. {
  11491. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11492. }
  11493. ],
  11494. "_srcBlendFactor": 770,
  11495. "_dstBlendFactor": 771,
  11496. "_spriteFrame": {
  11497. "__uuid__": "596e1b91-746e-4db9-a2d5-21c2265c4087"
  11498. },
  11499. "_type": 1,
  11500. "_sizeMode": 0,
  11501. "_fillType": 0,
  11502. "_fillCenter": {
  11503. "__type__": "cc.Vec2",
  11504. "x": 0,
  11505. "y": 0
  11506. },
  11507. "_fillStart": 0,
  11508. "_fillRange": 0,
  11509. "_isTrimmedMode": true,
  11510. "_atlas": null,
  11511. "_id": ""
  11512. },
  11513. {
  11514. "__type__": "cc.Layout",
  11515. "_name": "",
  11516. "_objFlags": 0,
  11517. "node": {
  11518. "__id__": 326
  11519. },
  11520. "_enabled": true,
  11521. "_layoutSize": {
  11522. "__type__": "cc.Size",
  11523. "width": 130,
  11524. "height": 139.6
  11525. },
  11526. "_resize": 1,
  11527. "_N$layoutType": 2,
  11528. "_N$cellSize": {
  11529. "__type__": "cc.Size",
  11530. "width": 40,
  11531. "height": 40
  11532. },
  11533. "_N$startAxis": 0,
  11534. "_N$paddingLeft": 0,
  11535. "_N$paddingRight": 0,
  11536. "_N$paddingTop": 20,
  11537. "_N$paddingBottom": 20,
  11538. "_N$spacingX": 0,
  11539. "_N$spacingY": 10,
  11540. "_N$verticalDirection": 1,
  11541. "_N$horizontalDirection": 0,
  11542. "_N$affectedByScale": false,
  11543. "_id": ""
  11544. },
  11545. {
  11546. "__type__": "cc.PrefabInfo",
  11547. "root": {
  11548. "__id__": 1
  11549. },
  11550. "asset": {
  11551. "__id__": 0
  11552. },
  11553. "fileId": "09WdoNvclJwJ1HNyqjCTkl",
  11554. "sync": false
  11555. },
  11556. {
  11557. "__type__": "cc.Node",
  11558. "_name": "arrow",
  11559. "_objFlags": 0,
  11560. "_parent": {
  11561. "__id__": 299
  11562. },
  11563. "_children": [],
  11564. "_active": false,
  11565. "_components": [
  11566. {
  11567. "__id__": 335
  11568. }
  11569. ],
  11570. "_prefab": {
  11571. "__id__": 336
  11572. },
  11573. "_opacity": 255,
  11574. "_color": {
  11575. "__type__": "cc.Color",
  11576. "r": 255,
  11577. "g": 255,
  11578. "b": 255,
  11579. "a": 255
  11580. },
  11581. "_contentSize": {
  11582. "__type__": "cc.Size",
  11583. "width": 21,
  11584. "height": 32
  11585. },
  11586. "_anchorPoint": {
  11587. "__type__": "cc.Vec2",
  11588. "x": 0.5,
  11589. "y": 0.5
  11590. },
  11591. "_trs": {
  11592. "__type__": "TypedArray",
  11593. "ctor": "Float64Array",
  11594. "array": [
  11595. 0,
  11596. -20.5,
  11597. 0,
  11598. 0,
  11599. 0,
  11600. 1,
  11601. 6.123233995736766e-17,
  11602. 1,
  11603. 1,
  11604. 1
  11605. ]
  11606. },
  11607. "_eulerAngles": {
  11608. "__type__": "cc.Vec3",
  11609. "x": 0,
  11610. "y": 0,
  11611. "z": 180
  11612. },
  11613. "_skewX": 0,
  11614. "_skewY": 0,
  11615. "_is3DNode": false,
  11616. "_groupIndex": 0,
  11617. "groupIndex": 0,
  11618. "_id": ""
  11619. },
  11620. {
  11621. "__type__": "cc.Sprite",
  11622. "_name": "",
  11623. "_objFlags": 0,
  11624. "node": {
  11625. "__id__": 334
  11626. },
  11627. "_enabled": true,
  11628. "_materials": [
  11629. {
  11630. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11631. }
  11632. ],
  11633. "_srcBlendFactor": 770,
  11634. "_dstBlendFactor": 771,
  11635. "_spriteFrame": {
  11636. "__uuid__": "6afee6f0-9ded-483f-9a37-ca114f5f1169"
  11637. },
  11638. "_type": 0,
  11639. "_sizeMode": 1,
  11640. "_fillType": 0,
  11641. "_fillCenter": {
  11642. "__type__": "cc.Vec2",
  11643. "x": 0,
  11644. "y": 0
  11645. },
  11646. "_fillStart": 0,
  11647. "_fillRange": 0,
  11648. "_isTrimmedMode": true,
  11649. "_atlas": null,
  11650. "_id": ""
  11651. },
  11652. {
  11653. "__type__": "cc.PrefabInfo",
  11654. "root": {
  11655. "__id__": 1
  11656. },
  11657. "asset": {
  11658. "__id__": 0
  11659. },
  11660. "fileId": "dfaWGSGoVFDZetyHk778B/",
  11661. "sync": false
  11662. },
  11663. {
  11664. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  11665. "_name": "",
  11666. "_objFlags": 0,
  11667. "node": {
  11668. "__id__": 299
  11669. },
  11670. "_enabled": true,
  11671. "openContinuous": true,
  11672. "continuousTime": 0.2,
  11673. "multiTouch": false,
  11674. "_id": ""
  11675. },
  11676. {
  11677. "__type__": "cc.PrefabInfo",
  11678. "root": {
  11679. "__id__": 1
  11680. },
  11681. "asset": {
  11682. "__id__": 0
  11683. },
  11684. "fileId": "9eVwKYmkFD353DM9iWuset",
  11685. "sync": false
  11686. },
  11687. {
  11688. "__type__": "cc.Layout",
  11689. "_name": "",
  11690. "_objFlags": 0,
  11691. "node": {
  11692. "__id__": 298
  11693. },
  11694. "_enabled": true,
  11695. "_layoutSize": {
  11696. "__type__": "cc.Size",
  11697. "width": 900,
  11698. "height": 170
  11699. },
  11700. "_resize": 0,
  11701. "_N$layoutType": 1,
  11702. "_N$cellSize": {
  11703. "__type__": "cc.Size",
  11704. "width": 40,
  11705. "height": 40
  11706. },
  11707. "_N$startAxis": 0,
  11708. "_N$paddingLeft": 0,
  11709. "_N$paddingRight": 0,
  11710. "_N$paddingTop": 0,
  11711. "_N$paddingBottom": 0,
  11712. "_N$spacingX": 105,
  11713. "_N$spacingY": 0,
  11714. "_N$verticalDirection": 1,
  11715. "_N$horizontalDirection": 0,
  11716. "_N$affectedByScale": false,
  11717. "_id": ""
  11718. },
  11719. {
  11720. "__type__": "cc.PrefabInfo",
  11721. "root": {
  11722. "__id__": 1
  11723. },
  11724. "asset": {
  11725. "__id__": 0
  11726. },
  11727. "fileId": "3b0n2w6ElOprXzXKho5npw",
  11728. "sync": false
  11729. },
  11730. {
  11731. "__type__": "cc.Sprite",
  11732. "_name": "",
  11733. "_objFlags": 0,
  11734. "node": {
  11735. "__id__": 287
  11736. },
  11737. "_enabled": true,
  11738. "_materials": [
  11739. {
  11740. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11741. }
  11742. ],
  11743. "_srcBlendFactor": 770,
  11744. "_dstBlendFactor": 771,
  11745. "_spriteFrame": {
  11746. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  11747. },
  11748. "_type": 2,
  11749. "_sizeMode": 0,
  11750. "_fillType": 0,
  11751. "_fillCenter": {
  11752. "__type__": "cc.Vec2",
  11753. "x": 0,
  11754. "y": 0
  11755. },
  11756. "_fillStart": 0,
  11757. "_fillRange": 0,
  11758. "_isTrimmedMode": true,
  11759. "_atlas": null,
  11760. "_id": ""
  11761. },
  11762. {
  11763. "__type__": "cc.PrefabInfo",
  11764. "root": {
  11765. "__id__": 1
  11766. },
  11767. "asset": {
  11768. "__id__": 0
  11769. },
  11770. "fileId": "88o+nWntdA1rT0CEjaWqSE",
  11771. "sync": false
  11772. },
  11773. {
  11774. "__type__": "cc.Node",
  11775. "_name": "remain_time",
  11776. "_objFlags": 0,
  11777. "_parent": {
  11778. "__id__": 283
  11779. },
  11780. "_children": [
  11781. {
  11782. "__id__": 344
  11783. },
  11784. {
  11785. "__id__": 347
  11786. }
  11787. ],
  11788. "_active": true,
  11789. "_components": [],
  11790. "_prefab": {
  11791. "__id__": 360
  11792. },
  11793. "_opacity": 255,
  11794. "_color": {
  11795. "__type__": "cc.Color",
  11796. "r": 255,
  11797. "g": 255,
  11798. "b": 255,
  11799. "a": 255
  11800. },
  11801. "_contentSize": {
  11802. "__type__": "cc.Size",
  11803. "width": 355,
  11804. "height": 90
  11805. },
  11806. "_anchorPoint": {
  11807. "__type__": "cc.Vec2",
  11808. "x": 0.5,
  11809. "y": 0.5
  11810. },
  11811. "_trs": {
  11812. "__type__": "TypedArray",
  11813. "ctor": "Float64Array",
  11814. "array": [
  11815. -579,
  11816. -20.696,
  11817. 0,
  11818. 0,
  11819. 0,
  11820. 0,
  11821. 1,
  11822. 1,
  11823. 1,
  11824. 1
  11825. ]
  11826. },
  11827. "_eulerAngles": {
  11828. "__type__": "cc.Vec3",
  11829. "x": 0,
  11830. "y": 0,
  11831. "z": 0
  11832. },
  11833. "_skewX": 0,
  11834. "_skewY": 0,
  11835. "_is3DNode": false,
  11836. "_groupIndex": 0,
  11837. "groupIndex": 0,
  11838. "_id": ""
  11839. },
  11840. {
  11841. "__type__": "cc.Node",
  11842. "_name": "bg",
  11843. "_objFlags": 0,
  11844. "_parent": {
  11845. "__id__": 343
  11846. },
  11847. "_children": [],
  11848. "_active": true,
  11849. "_components": [
  11850. {
  11851. "__id__": 345
  11852. }
  11853. ],
  11854. "_prefab": {
  11855. "__id__": 346
  11856. },
  11857. "_opacity": 76.5,
  11858. "_color": {
  11859. "__type__": "cc.Color",
  11860. "r": 0,
  11861. "g": 0,
  11862. "b": 0,
  11863. "a": 255
  11864. },
  11865. "_contentSize": {
  11866. "__type__": "cc.Size",
  11867. "width": 355,
  11868. "height": 90
  11869. },
  11870. "_anchorPoint": {
  11871. "__type__": "cc.Vec2",
  11872. "x": 0.5,
  11873. "y": 0.5
  11874. },
  11875. "_trs": {
  11876. "__type__": "TypedArray",
  11877. "ctor": "Float64Array",
  11878. "array": [
  11879. 0,
  11880. 0,
  11881. 0,
  11882. 0,
  11883. 0,
  11884. 0,
  11885. 1,
  11886. 1,
  11887. 1,
  11888. 1
  11889. ]
  11890. },
  11891. "_eulerAngles": {
  11892. "__type__": "cc.Vec3",
  11893. "x": 0,
  11894. "y": 0,
  11895. "z": 0
  11896. },
  11897. "_skewX": 0,
  11898. "_skewY": 0,
  11899. "_is3DNode": false,
  11900. "_groupIndex": 0,
  11901. "groupIndex": 0,
  11902. "_id": ""
  11903. },
  11904. {
  11905. "__type__": "cc.Sprite",
  11906. "_name": "",
  11907. "_objFlags": 0,
  11908. "node": {
  11909. "__id__": 344
  11910. },
  11911. "_enabled": true,
  11912. "_materials": [
  11913. {
  11914. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11915. }
  11916. ],
  11917. "_srcBlendFactor": 770,
  11918. "_dstBlendFactor": 771,
  11919. "_spriteFrame": {
  11920. "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69"
  11921. },
  11922. "_type": 1,
  11923. "_sizeMode": 0,
  11924. "_fillType": 0,
  11925. "_fillCenter": {
  11926. "__type__": "cc.Vec2",
  11927. "x": 0,
  11928. "y": 0
  11929. },
  11930. "_fillStart": 0,
  11931. "_fillRange": 0,
  11932. "_isTrimmedMode": true,
  11933. "_atlas": null,
  11934. "_id": ""
  11935. },
  11936. {
  11937. "__type__": "cc.PrefabInfo",
  11938. "root": {
  11939. "__id__": 1
  11940. },
  11941. "asset": {
  11942. "__id__": 0
  11943. },
  11944. "fileId": "1bc4dzO9hP7osyUHcggtF4",
  11945. "sync": false
  11946. },
  11947. {
  11948. "__type__": "cc.Node",
  11949. "_name": "layout",
  11950. "_objFlags": 0,
  11951. "_parent": {
  11952. "__id__": 343
  11953. },
  11954. "_children": [
  11955. {
  11956. "__id__": 348
  11957. },
  11958. {
  11959. "__id__": 353
  11960. }
  11961. ],
  11962. "_active": true,
  11963. "_components": [
  11964. {
  11965. "__id__": 358
  11966. }
  11967. ],
  11968. "_prefab": {
  11969. "__id__": 359
  11970. },
  11971. "_opacity": 255,
  11972. "_color": {
  11973. "__type__": "cc.Color",
  11974. "r": 255,
  11975. "g": 255,
  11976. "b": 255,
  11977. "a": 255
  11978. },
  11979. "_contentSize": {
  11980. "__type__": "cc.Size",
  11981. "width": 355,
  11982. "height": 90
  11983. },
  11984. "_anchorPoint": {
  11985. "__type__": "cc.Vec2",
  11986. "x": 0.5,
  11987. "y": 0.5
  11988. },
  11989. "_trs": {
  11990. "__type__": "TypedArray",
  11991. "ctor": "Float64Array",
  11992. "array": [
  11993. 0,
  11994. 0,
  11995. 0,
  11996. 0,
  11997. 0,
  11998. 0,
  11999. 1,
  12000. 1,
  12001. 1,
  12002. 1
  12003. ]
  12004. },
  12005. "_eulerAngles": {
  12006. "__type__": "cc.Vec3",
  12007. "x": 0,
  12008. "y": 0,
  12009. "z": 0
  12010. },
  12011. "_skewX": 0,
  12012. "_skewY": 0,
  12013. "_is3DNode": false,
  12014. "_groupIndex": 0,
  12015. "groupIndex": 0,
  12016. "_id": ""
  12017. },
  12018. {
  12019. "__type__": "cc.Node",
  12020. "_name": "label",
  12021. "_objFlags": 0,
  12022. "_parent": {
  12023. "__id__": 347
  12024. },
  12025. "_children": [],
  12026. "_active": true,
  12027. "_components": [
  12028. {
  12029. "__id__": 349
  12030. },
  12031. {
  12032. "__id__": 350
  12033. },
  12034. {
  12035. "__id__": 351
  12036. }
  12037. ],
  12038. "_prefab": {
  12039. "__id__": 352
  12040. },
  12041. "_opacity": 255,
  12042. "_color": {
  12043. "__type__": "cc.Color",
  12044. "r": 255,
  12045. "g": 255,
  12046. "b": 255,
  12047. "a": 255
  12048. },
  12049. "_contentSize": {
  12050. "__type__": "cc.Size",
  12051. "width": 217.77,
  12052. "height": 43.8
  12053. },
  12054. "_anchorPoint": {
  12055. "__type__": "cc.Vec2",
  12056. "x": 0.5,
  12057. "y": 0.5
  12058. },
  12059. "_trs": {
  12060. "__type__": "TypedArray",
  12061. "ctor": "Float64Array",
  12062. "array": [
  12063. 0,
  12064. 23.1,
  12065. 0,
  12066. 0,
  12067. 0,
  12068. 0,
  12069. 1,
  12070. 1,
  12071. 1,
  12072. 0
  12073. ]
  12074. },
  12075. "_eulerAngles": {
  12076. "__type__": "cc.Vec3",
  12077. "x": 0,
  12078. "y": 0,
  12079. "z": 0
  12080. },
  12081. "_skewX": 0,
  12082. "_skewY": 0,
  12083. "_is3DNode": false,
  12084. "_groupIndex": 0,
  12085. "groupIndex": 0,
  12086. "_id": ""
  12087. },
  12088. {
  12089. "__type__": "cc.Label",
  12090. "_name": "",
  12091. "_objFlags": 0,
  12092. "node": {
  12093. "__id__": 348
  12094. },
  12095. "_enabled": true,
  12096. "_materials": [
  12097. {
  12098. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12099. }
  12100. ],
  12101. "_srcBlendFactor": 770,
  12102. "_dstBlendFactor": 771,
  12103. "_string": "Remaining Time:",
  12104. "_N$string": "Remaining Time:",
  12105. "_fontSize": 30,
  12106. "_lineHeight": 30,
  12107. "_enableWrapText": true,
  12108. "_N$file": {
  12109. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  12110. },
  12111. "_isSystemFontUsed": false,
  12112. "_spacingX": 0,
  12113. "_batchAsBitmap": false,
  12114. "_styleFlags": 0,
  12115. "_underlineHeight": 0,
  12116. "_N$horizontalAlign": 1,
  12117. "_N$verticalAlign": 1,
  12118. "_N$fontFamily": "Arial",
  12119. "_N$overflow": 0,
  12120. "_N$cacheMode": 0,
  12121. "_id": ""
  12122. },
  12123. {
  12124. "__type__": "cc.LabelOutline",
  12125. "_name": "",
  12126. "_objFlags": 0,
  12127. "node": {
  12128. "__id__": 348
  12129. },
  12130. "_enabled": true,
  12131. "_color": {
  12132. "__type__": "cc.Color",
  12133. "r": 38,
  12134. "g": 17,
  12135. "b": 12,
  12136. "a": 255
  12137. },
  12138. "_width": 3,
  12139. "_id": ""
  12140. },
  12141. {
  12142. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  12143. "_name": "",
  12144. "_objFlags": 0,
  12145. "node": {
  12146. "__id__": 348
  12147. },
  12148. "_enabled": true,
  12149. "_englishCase": 3,
  12150. "i18n_string": "t121",
  12151. "i18n_params": [],
  12152. "_addColon": true,
  12153. "_id": ""
  12154. },
  12155. {
  12156. "__type__": "cc.PrefabInfo",
  12157. "root": {
  12158. "__id__": 348
  12159. },
  12160. "asset": {
  12161. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  12162. },
  12163. "fileId": "21J58iDFlJXJNmryPCDlEg",
  12164. "sync": false
  12165. },
  12166. {
  12167. "__type__": "cc.Node",
  12168. "_name": "info",
  12169. "_objFlags": 0,
  12170. "_parent": {
  12171. "__id__": 347
  12172. },
  12173. "_children": [],
  12174. "_active": true,
  12175. "_components": [
  12176. {
  12177. "__id__": 354
  12178. },
  12179. {
  12180. "__id__": 355
  12181. },
  12182. {
  12183. "__id__": 356
  12184. }
  12185. ],
  12186. "_prefab": {
  12187. "__id__": 357
  12188. },
  12189. "_opacity": 255,
  12190. "_color": {
  12191. "__type__": "cc.Color",
  12192. "r": 255,
  12193. "g": 255,
  12194. "b": 255,
  12195. "a": 255
  12196. },
  12197. "_contentSize": {
  12198. "__type__": "cc.Size",
  12199. "width": 122.48,
  12200. "height": 43.8
  12201. },
  12202. "_anchorPoint": {
  12203. "__type__": "cc.Vec2",
  12204. "x": 0.5,
  12205. "y": 0.5
  12206. },
  12207. "_trs": {
  12208. "__type__": "TypedArray",
  12209. "ctor": "Float64Array",
  12210. "array": [
  12211. 0,
  12212. -20.699999999999996,
  12213. 0,
  12214. 0,
  12215. 0,
  12216. 0,
  12217. 1,
  12218. 1,
  12219. 1,
  12220. 0
  12221. ]
  12222. },
  12223. "_eulerAngles": {
  12224. "__type__": "cc.Vec3",
  12225. "x": 0,
  12226. "y": 0,
  12227. "z": 0
  12228. },
  12229. "_skewX": 0,
  12230. "_skewY": 0,
  12231. "_is3DNode": false,
  12232. "_groupIndex": 0,
  12233. "groupIndex": 0,
  12234. "_id": ""
  12235. },
  12236. {
  12237. "__type__": "cc.Label",
  12238. "_name": "",
  12239. "_objFlags": 0,
  12240. "node": {
  12241. "__id__": 353
  12242. },
  12243. "_enabled": true,
  12244. "_materials": [
  12245. {
  12246. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12247. }
  12248. ],
  12249. "_srcBlendFactor": 770,
  12250. "_dstBlendFactor": 771,
  12251. "_string": "14h55m",
  12252. "_N$string": "14h55m",
  12253. "_fontSize": 30,
  12254. "_lineHeight": 30,
  12255. "_enableWrapText": true,
  12256. "_N$file": {
  12257. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  12258. },
  12259. "_isSystemFontUsed": false,
  12260. "_spacingX": 0,
  12261. "_batchAsBitmap": false,
  12262. "_styleFlags": 0,
  12263. "_underlineHeight": 0,
  12264. "_N$horizontalAlign": 1,
  12265. "_N$verticalAlign": 1,
  12266. "_N$fontFamily": "Arial",
  12267. "_N$overflow": 0,
  12268. "_N$cacheMode": 0,
  12269. "_id": ""
  12270. },
  12271. {
  12272. "__type__": "cc.LabelOutline",
  12273. "_name": "",
  12274. "_objFlags": 0,
  12275. "node": {
  12276. "__id__": 353
  12277. },
  12278. "_enabled": true,
  12279. "_color": {
  12280. "__type__": "cc.Color",
  12281. "r": 38,
  12282. "g": 17,
  12283. "b": 12,
  12284. "a": 255
  12285. },
  12286. "_width": 3,
  12287. "_id": ""
  12288. },
  12289. {
  12290. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  12291. "_name": "",
  12292. "_objFlags": 0,
  12293. "node": {
  12294. "__id__": 353
  12295. },
  12296. "_enabled": true,
  12297. "_englishCase": 3,
  12298. "i18n_string": "",
  12299. "i18n_params": [],
  12300. "_addColon": false,
  12301. "_id": ""
  12302. },
  12303. {
  12304. "__type__": "cc.PrefabInfo",
  12305. "root": {
  12306. "__id__": 353
  12307. },
  12308. "asset": {
  12309. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  12310. },
  12311. "fileId": "bfL/P4ISlLJbkxo3Fmv1iq",
  12312. "sync": false
  12313. },
  12314. {
  12315. "__type__": "cc.Layout",
  12316. "_name": "",
  12317. "_objFlags": 0,
  12318. "node": {
  12319. "__id__": 347
  12320. },
  12321. "_enabled": true,
  12322. "_layoutSize": {
  12323. "__type__": "cc.Size",
  12324. "width": 355,
  12325. "height": 90
  12326. },
  12327. "_resize": 0,
  12328. "_N$layoutType": 2,
  12329. "_N$cellSize": {
  12330. "__type__": "cc.Size",
  12331. "width": 40,
  12332. "height": 40
  12333. },
  12334. "_N$startAxis": 0,
  12335. "_N$paddingLeft": 0,
  12336. "_N$paddingRight": 0,
  12337. "_N$paddingTop": 0,
  12338. "_N$paddingBottom": 0,
  12339. "_N$spacingX": 0,
  12340. "_N$spacingY": 0,
  12341. "_N$verticalDirection": 1,
  12342. "_N$horizontalDirection": 0,
  12343. "_N$affectedByScale": false,
  12344. "_id": ""
  12345. },
  12346. {
  12347. "__type__": "cc.PrefabInfo",
  12348. "root": {
  12349. "__id__": 1
  12350. },
  12351. "asset": {
  12352. "__id__": 0
  12353. },
  12354. "fileId": "9cH9kQM9pDhZO376X/2zCg",
  12355. "sync": false
  12356. },
  12357. {
  12358. "__type__": "cc.PrefabInfo",
  12359. "root": {
  12360. "__id__": 1
  12361. },
  12362. "asset": {
  12363. "__id__": 0
  12364. },
  12365. "fileId": "eay7kihkhAdbNEoccoy9bp",
  12366. "sync": false
  12367. },
  12368. {
  12369. "__type__": "cc.Node",
  12370. "_name": "activate_box",
  12371. "_objFlags": 0,
  12372. "_parent": {
  12373. "__id__": 283
  12374. },
  12375. "_children": [
  12376. {
  12377. "__id__": 362
  12378. },
  12379. {
  12380. "__id__": 367
  12381. }
  12382. ],
  12383. "_active": true,
  12384. "_components": [
  12385. {
  12386. "__id__": 372
  12387. }
  12388. ],
  12389. "_prefab": {
  12390. "__id__": 373
  12391. },
  12392. "_opacity": 255,
  12393. "_color": {
  12394. "__type__": "cc.Color",
  12395. "r": 255,
  12396. "g": 255,
  12397. "b": 255,
  12398. "a": 255
  12399. },
  12400. "_contentSize": {
  12401. "__type__": "cc.Size",
  12402. "width": 340.51,
  12403. "height": 70
  12404. },
  12405. "_anchorPoint": {
  12406. "__type__": "cc.Vec2",
  12407. "x": 0.5,
  12408. "y": 0.5
  12409. },
  12410. "_trs": {
  12411. "__type__": "TypedArray",
  12412. "ctor": "Float64Array",
  12413. "array": [
  12414. -579,
  12415. 55.016,
  12416. 0,
  12417. 0,
  12418. 0,
  12419. 0,
  12420. 1,
  12421. 1,
  12422. 1,
  12423. 1
  12424. ]
  12425. },
  12426. "_eulerAngles": {
  12427. "__type__": "cc.Vec3",
  12428. "x": 0,
  12429. "y": 0,
  12430. "z": 0
  12431. },
  12432. "_skewX": 0,
  12433. "_skewY": 0,
  12434. "_is3DNode": false,
  12435. "_groupIndex": 0,
  12436. "groupIndex": 0,
  12437. "_id": ""
  12438. },
  12439. {
  12440. "__type__": "cc.Node",
  12441. "_name": "lb",
  12442. "_objFlags": 0,
  12443. "_parent": {
  12444. "__id__": 361
  12445. },
  12446. "_children": [],
  12447. "_active": true,
  12448. "_components": [
  12449. {
  12450. "__id__": 363
  12451. },
  12452. {
  12453. "__id__": 364
  12454. },
  12455. {
  12456. "__id__": 365
  12457. }
  12458. ],
  12459. "_prefab": {
  12460. "__id__": 366
  12461. },
  12462. "_opacity": 255,
  12463. "_color": {
  12464. "__type__": "cc.Color",
  12465. "r": 255,
  12466. "g": 255,
  12467. "b": 255,
  12468. "a": 255
  12469. },
  12470. "_contentSize": {
  12471. "__type__": "cc.Size",
  12472. "width": 235.01,
  12473. "height": 66.47999999999999
  12474. },
  12475. "_anchorPoint": {
  12476. "__type__": "cc.Vec2",
  12477. "x": 0.5,
  12478. "y": 0.5
  12479. },
  12480. "_trs": {
  12481. "__type__": "TypedArray",
  12482. "ctor": "Float64Array",
  12483. "array": [
  12484. -52.75,
  12485. 7.056,
  12486. 0,
  12487. 0,
  12488. 0,
  12489. 0,
  12490. 1,
  12491. 1,
  12492. 1,
  12493. 1
  12494. ]
  12495. },
  12496. "_eulerAngles": {
  12497. "__type__": "cc.Vec3",
  12498. "x": 0,
  12499. "y": 0,
  12500. "z": 0
  12501. },
  12502. "_skewX": 0,
  12503. "_skewY": 0,
  12504. "_is3DNode": false,
  12505. "_groupIndex": 0,
  12506. "groupIndex": 0,
  12507. "_id": ""
  12508. },
  12509. {
  12510. "__type__": "cc.Label",
  12511. "_name": "",
  12512. "_objFlags": 0,
  12513. "node": {
  12514. "__id__": 362
  12515. },
  12516. "_enabled": true,
  12517. "_materials": [
  12518. {
  12519. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12520. }
  12521. ],
  12522. "_srcBlendFactor": 770,
  12523. "_dstBlendFactor": 771,
  12524. "_string": "Activation:",
  12525. "_N$string": "Activation:",
  12526. "_fontSize": 48,
  12527. "_lineHeight": 48,
  12528. "_enableWrapText": true,
  12529. "_N$file": {
  12530. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  12531. },
  12532. "_isSystemFontUsed": false,
  12533. "_spacingX": 0,
  12534. "_batchAsBitmap": false,
  12535. "_styleFlags": 0,
  12536. "_underlineHeight": 0,
  12537. "_N$horizontalAlign": 1,
  12538. "_N$verticalAlign": 1,
  12539. "_N$fontFamily": "Arial",
  12540. "_N$overflow": 0,
  12541. "_N$cacheMode": 0,
  12542. "_id": ""
  12543. },
  12544. {
  12545. "__type__": "cc.LabelOutline",
  12546. "_name": "",
  12547. "_objFlags": 0,
  12548. "node": {
  12549. "__id__": 362
  12550. },
  12551. "_enabled": true,
  12552. "_color": {
  12553. "__type__": "cc.Color",
  12554. "r": 38,
  12555. "g": 17,
  12556. "b": 12,
  12557. "a": 255
  12558. },
  12559. "_width": 3,
  12560. "_id": ""
  12561. },
  12562. {
  12563. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  12564. "_name": "",
  12565. "_objFlags": 0,
  12566. "node": {
  12567. "__id__": 362
  12568. },
  12569. "_enabled": true,
  12570. "_englishCase": 1,
  12571. "i18n_string": "t404",
  12572. "i18n_params": [],
  12573. "_addColon": true,
  12574. "_id": ""
  12575. },
  12576. {
  12577. "__type__": "cc.PrefabInfo",
  12578. "root": {
  12579. "__id__": 362
  12580. },
  12581. "asset": {
  12582. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  12583. },
  12584. "fileId": "7bq59ctPJMNpqaQOFo/zX4",
  12585. "sync": false
  12586. },
  12587. {
  12588. "__type__": "cc.Node",
  12589. "_name": "num",
  12590. "_objFlags": 0,
  12591. "_parent": {
  12592. "__id__": 361
  12593. },
  12594. "_children": [],
  12595. "_active": true,
  12596. "_components": [
  12597. {
  12598. "__id__": 368
  12599. },
  12600. {
  12601. "__id__": 369
  12602. },
  12603. {
  12604. "__id__": 370
  12605. }
  12606. ],
  12607. "_prefab": {
  12608. "__id__": 371
  12609. },
  12610. "_opacity": 255,
  12611. "_color": {
  12612. "__type__": "cc.Color",
  12613. "r": 255,
  12614. "g": 216,
  12615. "b": 0,
  12616. "a": 255
  12617. },
  12618. "_contentSize": {
  12619. "__type__": "cc.Size",
  12620. "width": 100.5,
  12621. "height": 66.47999999999999
  12622. },
  12623. "_anchorPoint": {
  12624. "__type__": "cc.Vec2",
  12625. "x": 0,
  12626. "y": 0.5
  12627. },
  12628. "_trs": {
  12629. "__type__": "TypedArray",
  12630. "ctor": "Float64Array",
  12631. "array": [
  12632. 69.755,
  12633. 5.292,
  12634. 0,
  12635. 0,
  12636. 0,
  12637. 0,
  12638. 1,
  12639. 1,
  12640. 1,
  12641. 1
  12642. ]
  12643. },
  12644. "_eulerAngles": {
  12645. "__type__": "cc.Vec3",
  12646. "x": 0,
  12647. "y": 0,
  12648. "z": 0
  12649. },
  12650. "_skewX": 0,
  12651. "_skewY": 0,
  12652. "_is3DNode": false,
  12653. "_groupIndex": 0,
  12654. "groupIndex": 0,
  12655. "_id": ""
  12656. },
  12657. {
  12658. "__type__": "cc.Label",
  12659. "_name": "",
  12660. "_objFlags": 0,
  12661. "node": {
  12662. "__id__": 367
  12663. },
  12664. "_enabled": true,
  12665. "_materials": [
  12666. {
  12667. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12668. }
  12669. ],
  12670. "_srcBlendFactor": 770,
  12671. "_dstBlendFactor": 771,
  12672. "_string": "100",
  12673. "_N$string": "100",
  12674. "_fontSize": 48,
  12675. "_lineHeight": 48,
  12676. "_enableWrapText": true,
  12677. "_N$file": {
  12678. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  12679. },
  12680. "_isSystemFontUsed": false,
  12681. "_spacingX": 0,
  12682. "_batchAsBitmap": false,
  12683. "_styleFlags": 0,
  12684. "_underlineHeight": 0,
  12685. "_N$horizontalAlign": 1,
  12686. "_N$verticalAlign": 1,
  12687. "_N$fontFamily": "Arial",
  12688. "_N$overflow": 0,
  12689. "_N$cacheMode": 0,
  12690. "_id": ""
  12691. },
  12692. {
  12693. "__type__": "cc.LabelOutline",
  12694. "_name": "",
  12695. "_objFlags": 0,
  12696. "node": {
  12697. "__id__": 367
  12698. },
  12699. "_enabled": true,
  12700. "_color": {
  12701. "__type__": "cc.Color",
  12702. "r": 38,
  12703. "g": 17,
  12704. "b": 12,
  12705. "a": 255
  12706. },
  12707. "_width": 3,
  12708. "_id": ""
  12709. },
  12710. {
  12711. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  12712. "_name": "",
  12713. "_objFlags": 0,
  12714. "node": {
  12715. "__id__": 367
  12716. },
  12717. "_enabled": true,
  12718. "_englishCase": 0,
  12719. "i18n_string": "0",
  12720. "i18n_params": [],
  12721. "_addColon": false,
  12722. "_id": ""
  12723. },
  12724. {
  12725. "__type__": "cc.PrefabInfo",
  12726. "root": {
  12727. "__id__": 367
  12728. },
  12729. "asset": {
  12730. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  12731. },
  12732. "fileId": "b6rc86sGhO6ohHDlw/WOIg",
  12733. "sync": false
  12734. },
  12735. {
  12736. "__type__": "cc.Layout",
  12737. "_name": "",
  12738. "_objFlags": 0,
  12739. "node": {
  12740. "__id__": 361
  12741. },
  12742. "_enabled": true,
  12743. "_layoutSize": {
  12744. "__type__": "cc.Size",
  12745. "width": 340.51,
  12746. "height": 70
  12747. },
  12748. "_resize": 1,
  12749. "_N$layoutType": 1,
  12750. "_N$cellSize": {
  12751. "__type__": "cc.Size",
  12752. "width": 40,
  12753. "height": 40
  12754. },
  12755. "_N$startAxis": 0,
  12756. "_N$paddingLeft": 0,
  12757. "_N$paddingRight": 0,
  12758. "_N$paddingTop": 0,
  12759. "_N$paddingBottom": 0,
  12760. "_N$spacingX": 5,
  12761. "_N$spacingY": 0,
  12762. "_N$verticalDirection": 1,
  12763. "_N$horizontalDirection": 0,
  12764. "_N$affectedByScale": false,
  12765. "_id": ""
  12766. },
  12767. {
  12768. "__type__": "cc.PrefabInfo",
  12769. "root": {
  12770. "__id__": 1
  12771. },
  12772. "asset": {
  12773. "__id__": 0
  12774. },
  12775. "fileId": "44XgwYnGlPzItdjh+IhKku",
  12776. "sync": false
  12777. },
  12778. {
  12779. "__type__": "cc.PrefabInfo",
  12780. "root": {
  12781. "__id__": 1
  12782. },
  12783. "asset": {
  12784. "__id__": 0
  12785. },
  12786. "fileId": "97eY0Kr6ZCFaCPw/CFg8wN",
  12787. "sync": false
  12788. },
  12789. {
  12790. "__type__": "e0668Xvob9FuI7FV+nBYIHV",
  12791. "_name": "",
  12792. "_objFlags": 0,
  12793. "node": {
  12794. "__id__": 1
  12795. },
  12796. "_enabled": true,
  12797. "quickClose": false,
  12798. "cache": false,
  12799. "showType": 0,
  12800. "prevent": true,
  12801. "_id": ""
  12802. },
  12803. {
  12804. "__type__": "cc.PrefabInfo",
  12805. "root": {
  12806. "__id__": 1
  12807. },
  12808. "asset": {
  12809. "__id__": 0
  12810. },
  12811. "fileId": "",
  12812. "sync": false
  12813. }
  12814. ]