starHandbook.prefab 153 KB

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