starHandbook.prefab 105 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849
  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__": 92
  27. }
  28. ],
  29. "_active": true,
  30. "_level": 1,
  31. "_components": [
  32. {
  33. "__id__": 171
  34. }
  35. ],
  36. "_prefab": {
  37. "__id__": 172
  38. },
  39. "_opacity": 255,
  40. "_color": {
  41. "__type__": "cc.Color",
  42. "r": 255,
  43. "g": 255,
  44. "b": 255,
  45. "a": 255
  46. },
  47. "_contentSize": {
  48. "__type__": "cc.Size",
  49. "width": 750,
  50. "height": 1334
  51. },
  52. "_anchorPoint": {
  53. "__type__": "cc.Vec2",
  54. "x": 0.5,
  55. "y": 0.5
  56. },
  57. "_position": {
  58. "__type__": "cc.Vec3",
  59. "x": 0,
  60. "y": 0,
  61. "z": 0
  62. },
  63. "_scale": {
  64. "__type__": "cc.Vec3",
  65. "x": 1,
  66. "y": 1,
  67. "z": 1
  68. },
  69. "_rotationX": 0,
  70. "_rotationY": 0,
  71. "_quat": {
  72. "__type__": "cc.Quat",
  73. "x": 0,
  74. "y": 0,
  75. "z": 0,
  76. "w": 1
  77. },
  78. "_skewX": 0,
  79. "_skewY": 0,
  80. "_zIndex": 0,
  81. "groupIndex": 0,
  82. "_id": ""
  83. },
  84. {
  85. "__type__": "cc.Node",
  86. "_name": "maskBg",
  87. "_objFlags": 0,
  88. "_parent": {
  89. "__id__": 1
  90. },
  91. "_children": [],
  92. "_active": true,
  93. "_level": 2,
  94. "_components": [
  95. {
  96. "__id__": 3
  97. },
  98. {
  99. "__id__": 4
  100. }
  101. ],
  102. "_prefab": {
  103. "__id__": 5
  104. },
  105. "_opacity": 153,
  106. "_color": {
  107. "__type__": "cc.Color",
  108. "r": 0,
  109. "g": 0,
  110. "b": 0,
  111. "a": 255
  112. },
  113. "_contentSize": {
  114. "__type__": "cc.Size",
  115. "width": 1500,
  116. "height": 2000
  117. },
  118. "_anchorPoint": {
  119. "__type__": "cc.Vec2",
  120. "x": 0.5,
  121. "y": 0.5
  122. },
  123. "_position": {
  124. "__type__": "cc.Vec3",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0
  128. },
  129. "_scale": {
  130. "__type__": "cc.Vec3",
  131. "x": 1,
  132. "y": 1,
  133. "z": 1
  134. },
  135. "_rotationX": 0,
  136. "_rotationY": 0,
  137. "_quat": {
  138. "__type__": "cc.Quat",
  139. "x": 0,
  140. "y": 0,
  141. "z": 0,
  142. "w": 1
  143. },
  144. "_skewX": 0,
  145. "_skewY": 0,
  146. "_zIndex": 0,
  147. "groupIndex": 0,
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.Sprite",
  152. "_name": "",
  153. "_objFlags": 0,
  154. "node": {
  155. "__id__": 2
  156. },
  157. "_enabled": true,
  158. "_srcBlendFactor": 770,
  159. "_dstBlendFactor": 771,
  160. "_spriteFrame": {
  161. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  162. },
  163. "_type": 0,
  164. "_sizeMode": 0,
  165. "_fillType": 0,
  166. "_fillCenter": {
  167. "__type__": "cc.Vec2",
  168. "x": 0,
  169. "y": 0
  170. },
  171. "_fillStart": 0,
  172. "_fillRange": 0,
  173. "_isTrimmedMode": true,
  174. "_state": 0,
  175. "_atlas": null,
  176. "_id": "801LQK4oxAgqH1ldgOy3rh"
  177. },
  178. {
  179. "__type__": "cc.BlockInputEvents",
  180. "_name": "",
  181. "_objFlags": 0,
  182. "node": {
  183. "__id__": 2
  184. },
  185. "_enabled": true,
  186. "_id": "b57T3SnepF+qI5hA+t/U9c"
  187. },
  188. {
  189. "__type__": "cc.PrefabInfo",
  190. "root": {
  191. "__id__": 1
  192. },
  193. "asset": {
  194. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  195. },
  196. "fileId": "ceb3ClZrFPkL9vEyxeBEoq",
  197. "sync": false
  198. },
  199. {
  200. "__type__": "cc.Node",
  201. "_name": "content",
  202. "_objFlags": 0,
  203. "_parent": {
  204. "__id__": 1
  205. },
  206. "_children": [
  207. {
  208. "__id__": 7
  209. },
  210. {
  211. "__id__": 77
  212. },
  213. {
  214. "__id__": 85
  215. }
  216. ],
  217. "_active": true,
  218. "_level": 2,
  219. "_components": [],
  220. "_prefab": {
  221. "__id__": 91
  222. },
  223. "_opacity": 255,
  224. "_color": {
  225. "__type__": "cc.Color",
  226. "r": 255,
  227. "g": 255,
  228. "b": 255,
  229. "a": 255
  230. },
  231. "_contentSize": {
  232. "__type__": "cc.Size",
  233. "width": 700,
  234. "height": 1040
  235. },
  236. "_anchorPoint": {
  237. "__type__": "cc.Vec2",
  238. "x": 0.5,
  239. "y": 0.5
  240. },
  241. "_position": {
  242. "__type__": "cc.Vec3",
  243. "x": 0,
  244. "y": 0,
  245. "z": 0
  246. },
  247. "_scale": {
  248. "__type__": "cc.Vec3",
  249. "x": 1,
  250. "y": 1,
  251. "z": 1
  252. },
  253. "_rotationX": 0,
  254. "_rotationY": 0,
  255. "_quat": {
  256. "__type__": "cc.Quat",
  257. "x": 0,
  258. "y": 0,
  259. "z": 0,
  260. "w": 1
  261. },
  262. "_skewX": 0,
  263. "_skewY": 0,
  264. "_zIndex": 0,
  265. "groupIndex": 0,
  266. "_id": ""
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "common_frame_bg",
  271. "_objFlags": 0,
  272. "_parent": {
  273. "__id__": 6
  274. },
  275. "_children": [
  276. {
  277. "__id__": 8
  278. },
  279. {
  280. "__id__": 16
  281. },
  282. {
  283. "__id__": 25
  284. },
  285. {
  286. "__id__": 30
  287. },
  288. {
  289. "__id__": 38
  290. }
  291. ],
  292. "_active": true,
  293. "_level": 3,
  294. "_components": [
  295. {
  296. "__id__": 74
  297. },
  298. {
  299. "__id__": 75
  300. }
  301. ],
  302. "_prefab": {
  303. "__id__": 76
  304. },
  305. "_opacity": 255,
  306. "_color": {
  307. "__type__": "cc.Color",
  308. "r": 255,
  309. "g": 255,
  310. "b": 255,
  311. "a": 255
  312. },
  313. "_contentSize": {
  314. "__type__": "cc.Size",
  315. "width": 700,
  316. "height": 1040
  317. },
  318. "_anchorPoint": {
  319. "__type__": "cc.Vec2",
  320. "x": 0.5,
  321. "y": 0.5
  322. },
  323. "_position": {
  324. "__type__": "cc.Vec3",
  325. "x": 0,
  326. "y": 0,
  327. "z": 0
  328. },
  329. "_scale": {
  330. "__type__": "cc.Vec3",
  331. "x": 1,
  332. "y": 1,
  333. "z": 1
  334. },
  335. "_rotationX": 0,
  336. "_rotationY": 0,
  337. "_quat": {
  338. "__type__": "cc.Quat",
  339. "x": 0,
  340. "y": 0,
  341. "z": 0,
  342. "w": 1
  343. },
  344. "_skewX": 0,
  345. "_skewY": 0,
  346. "_zIndex": 0,
  347. "groupIndex": 0,
  348. "_id": ""
  349. },
  350. {
  351. "__type__": "cc.Node",
  352. "_name": "New ProgressBar",
  353. "_objFlags": 0,
  354. "_parent": {
  355. "__id__": 7
  356. },
  357. "_children": [
  358. {
  359. "__id__": 9
  360. }
  361. ],
  362. "_active": true,
  363. "_level": 4,
  364. "_components": [
  365. {
  366. "__id__": 12
  367. },
  368. {
  369. "__id__": 13
  370. },
  371. {
  372. "__id__": 14
  373. }
  374. ],
  375. "_prefab": {
  376. "__id__": 15
  377. },
  378. "_opacity": 255,
  379. "_color": {
  380. "__type__": "cc.Color",
  381. "r": 255,
  382. "g": 255,
  383. "b": 255,
  384. "a": 255
  385. },
  386. "_contentSize": {
  387. "__type__": "cc.Size",
  388. "width": 620,
  389. "height": 34
  390. },
  391. "_anchorPoint": {
  392. "__type__": "cc.Vec2",
  393. "x": 0.5,
  394. "y": 0.5
  395. },
  396. "_position": {
  397. "__type__": "cc.Vec3",
  398. "x": 0,
  399. "y": 418,
  400. "z": 0
  401. },
  402. "_scale": {
  403. "__type__": "cc.Vec3",
  404. "x": 1,
  405. "y": 1,
  406. "z": 1
  407. },
  408. "_rotationX": 0,
  409. "_rotationY": 0,
  410. "_quat": {
  411. "__type__": "cc.Quat",
  412. "x": 0,
  413. "y": 0,
  414. "z": 0,
  415. "w": 1
  416. },
  417. "_skewX": 0,
  418. "_skewY": 0,
  419. "_zIndex": 0,
  420. "groupIndex": 0,
  421. "_id": ""
  422. },
  423. {
  424. "__type__": "cc.Node",
  425. "_name": "bar",
  426. "_objFlags": 0,
  427. "_parent": {
  428. "__id__": 8
  429. },
  430. "_children": [],
  431. "_active": true,
  432. "_level": 0,
  433. "_components": [
  434. {
  435. "__id__": 10
  436. }
  437. ],
  438. "_prefab": {
  439. "__id__": 11
  440. },
  441. "_opacity": 255,
  442. "_color": {
  443. "__type__": "cc.Color",
  444. "r": 255,
  445. "g": 255,
  446. "b": 255,
  447. "a": 255
  448. },
  449. "_contentSize": {
  450. "__type__": "cc.Size",
  451. "width": 0,
  452. "height": 34
  453. },
  454. "_anchorPoint": {
  455. "__type__": "cc.Vec2",
  456. "x": 0,
  457. "y": 0.5
  458. },
  459. "_position": {
  460. "__type__": "cc.Vec3",
  461. "x": -310,
  462. "y": 0,
  463. "z": 0
  464. },
  465. "_scale": {
  466. "__type__": "cc.Vec3",
  467. "x": 1,
  468. "y": 1,
  469. "z": 1
  470. },
  471. "_rotationX": 0,
  472. "_rotationY": 0,
  473. "_quat": {
  474. "__type__": "cc.Quat",
  475. "x": 0,
  476. "y": 0,
  477. "z": 0,
  478. "w": 1
  479. },
  480. "_skewX": 0,
  481. "_skewY": 0,
  482. "_zIndex": 0,
  483. "groupIndex": 0,
  484. "_id": ""
  485. },
  486. {
  487. "__type__": "cc.Sprite",
  488. "_name": "",
  489. "_objFlags": 0,
  490. "node": {
  491. "__id__": 9
  492. },
  493. "_enabled": true,
  494. "_srcBlendFactor": 770,
  495. "_dstBlendFactor": 771,
  496. "_spriteFrame": {
  497. "__uuid__": "37dd7a58-920c-4fbf-a8af-d8a71a4842dc"
  498. },
  499. "_type": 2,
  500. "_sizeMode": 0,
  501. "_fillType": 0,
  502. "_fillCenter": {
  503. "__type__": "cc.Vec2",
  504. "x": 0,
  505. "y": 0
  506. },
  507. "_fillStart": 0,
  508. "_fillRange": 0,
  509. "_isTrimmedMode": true,
  510. "_state": 0,
  511. "_atlas": null,
  512. "_id": "8boomjkSZOR591UJ6SMZaQ"
  513. },
  514. {
  515. "__type__": "cc.PrefabInfo",
  516. "root": {
  517. "__id__": 1
  518. },
  519. "asset": {
  520. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  521. },
  522. "fileId": "c3hNHeKTFFortmkJzrEqT1",
  523. "sync": false
  524. },
  525. {
  526. "__type__": "cc.Sprite",
  527. "_name": "",
  528. "_objFlags": 0,
  529. "node": {
  530. "__id__": 8
  531. },
  532. "_enabled": true,
  533. "_srcBlendFactor": 770,
  534. "_dstBlendFactor": 771,
  535. "_spriteFrame": {
  536. "__uuid__": "6c222544-71d1-46b6-a7d0-16ff053160a6"
  537. },
  538. "_type": 0,
  539. "_sizeMode": 0,
  540. "_fillType": 0,
  541. "_fillCenter": {
  542. "__type__": "cc.Vec2",
  543. "x": 0,
  544. "y": 0
  545. },
  546. "_fillStart": 0,
  547. "_fillRange": 0,
  548. "_isTrimmedMode": true,
  549. "_state": 0,
  550. "_atlas": null,
  551. "_id": "25qqIPEwJDLruaLigNlxME"
  552. },
  553. {
  554. "__type__": "cc.ProgressBar",
  555. "_name": "",
  556. "_objFlags": 0,
  557. "node": {
  558. "__id__": 8
  559. },
  560. "_enabled": true,
  561. "_N$totalLength": 620,
  562. "_N$barSprite": {
  563. "__id__": 10
  564. },
  565. "_N$mode": 0,
  566. "_N$progress": 0,
  567. "_N$reverse": false,
  568. "_id": "14QVZWbNNCJ4hnIyH73Ttm"
  569. },
  570. {
  571. "__type__": "cc.Widget",
  572. "_name": "",
  573. "_objFlags": 0,
  574. "node": {
  575. "__id__": 8
  576. },
  577. "_enabled": true,
  578. "alignMode": 1,
  579. "_target": null,
  580. "_alignFlags": 41,
  581. "_left": 40,
  582. "_right": 40,
  583. "_top": 85,
  584. "_bottom": 0,
  585. "_verticalCenter": 0,
  586. "_horizontalCenter": 0,
  587. "_isAbsLeft": true,
  588. "_isAbsRight": true,
  589. "_isAbsTop": true,
  590. "_isAbsBottom": true,
  591. "_isAbsHorizontalCenter": true,
  592. "_isAbsVerticalCenter": true,
  593. "_originalWidth": 300,
  594. "_originalHeight": 0,
  595. "_id": "60013a50dGooKHdiWjA6yd"
  596. },
  597. {
  598. "__type__": "cc.PrefabInfo",
  599. "root": {
  600. "__id__": 1
  601. },
  602. "asset": {
  603. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  604. },
  605. "fileId": "b2ya91zJZGZKYvi64zs1G5",
  606. "sync": false
  607. },
  608. {
  609. "__type__": "cc.Node",
  610. "_name": "scrollview",
  611. "_objFlags": 0,
  612. "_parent": {
  613. "__id__": 7
  614. },
  615. "_children": [
  616. {
  617. "__id__": 17
  618. }
  619. ],
  620. "_active": true,
  621. "_level": 4,
  622. "_components": [
  623. {
  624. "__id__": 21
  625. },
  626. {
  627. "__id__": 22
  628. },
  629. {
  630. "__id__": 23
  631. }
  632. ],
  633. "_prefab": {
  634. "__id__": 24
  635. },
  636. "_opacity": 255,
  637. "_color": {
  638. "__type__": "cc.Color",
  639. "r": 255,
  640. "g": 255,
  641. "b": 255,
  642. "a": 255
  643. },
  644. "_contentSize": {
  645. "__type__": "cc.Size",
  646. "width": 620,
  647. "height": 720
  648. },
  649. "_anchorPoint": {
  650. "__type__": "cc.Vec2",
  651. "x": 0.5,
  652. "y": 0.5
  653. },
  654. "_position": {
  655. "__type__": "cc.Vec3",
  656. "x": 0,
  657. "y": 15,
  658. "z": 0
  659. },
  660. "_scale": {
  661. "__type__": "cc.Vec3",
  662. "x": 1,
  663. "y": 1,
  664. "z": 1
  665. },
  666. "_rotationX": 0,
  667. "_rotationY": 0,
  668. "_quat": {
  669. "__type__": "cc.Quat",
  670. "x": 0,
  671. "y": 0,
  672. "z": 0,
  673. "w": 1
  674. },
  675. "_skewX": 0,
  676. "_skewY": 0,
  677. "_zIndex": 0,
  678. "groupIndex": 0,
  679. "_id": ""
  680. },
  681. {
  682. "__type__": "cc.Node",
  683. "_name": "content",
  684. "_objFlags": 0,
  685. "_parent": {
  686. "__id__": 16
  687. },
  688. "_children": [],
  689. "_active": true,
  690. "_level": 5,
  691. "_components": [
  692. {
  693. "__id__": 18
  694. },
  695. {
  696. "__id__": 19
  697. }
  698. ],
  699. "_prefab": {
  700. "__id__": 20
  701. },
  702. "_opacity": 255,
  703. "_color": {
  704. "__type__": "cc.Color",
  705. "r": 255,
  706. "g": 255,
  707. "b": 255,
  708. "a": 255
  709. },
  710. "_contentSize": {
  711. "__type__": "cc.Size",
  712. "width": 620,
  713. "height": 720
  714. },
  715. "_anchorPoint": {
  716. "__type__": "cc.Vec2",
  717. "x": 0.5,
  718. "y": 1
  719. },
  720. "_position": {
  721. "__type__": "cc.Vec3",
  722. "x": 0,
  723. "y": 360,
  724. "z": 0
  725. },
  726. "_scale": {
  727. "__type__": "cc.Vec3",
  728. "x": 1,
  729. "y": 1,
  730. "z": 1
  731. },
  732. "_rotationX": 0,
  733. "_rotationY": 0,
  734. "_quat": {
  735. "__type__": "cc.Quat",
  736. "x": 0,
  737. "y": 0,
  738. "z": 0,
  739. "w": 1
  740. },
  741. "_skewX": 0,
  742. "_skewY": 0,
  743. "_zIndex": 0,
  744. "groupIndex": 0,
  745. "_id": ""
  746. },
  747. {
  748. "__type__": "cc.Layout",
  749. "_name": "",
  750. "_objFlags": 0,
  751. "node": {
  752. "__id__": 17
  753. },
  754. "_enabled": true,
  755. "_layoutSize": {
  756. "__type__": "cc.Size",
  757. "width": 620,
  758. "height": 720
  759. },
  760. "_resize": 1,
  761. "_N$layoutType": 3,
  762. "_N$padding": 0,
  763. "_N$cellSize": {
  764. "__type__": "cc.Size",
  765. "width": 40,
  766. "height": 40
  767. },
  768. "_N$startAxis": 0,
  769. "_N$paddingLeft": 0,
  770. "_N$paddingRight": 0,
  771. "_N$paddingTop": 0,
  772. "_N$paddingBottom": 0,
  773. "_N$spacingX": 9,
  774. "_N$spacingY": 8,
  775. "_N$verticalDirection": 1,
  776. "_N$horizontalDirection": 0,
  777. "_id": "97EVlmxNlGk7e3RrmrkqKo"
  778. },
  779. {
  780. "__type__": "cc.Widget",
  781. "_name": "",
  782. "_objFlags": 0,
  783. "node": {
  784. "__id__": 17
  785. },
  786. "_enabled": true,
  787. "alignMode": 1,
  788. "_target": null,
  789. "_alignFlags": 45,
  790. "_left": 0,
  791. "_right": 0,
  792. "_top": 0,
  793. "_bottom": 0,
  794. "_verticalCenter": 0,
  795. "_horizontalCenter": 0,
  796. "_isAbsLeft": true,
  797. "_isAbsRight": true,
  798. "_isAbsTop": true,
  799. "_isAbsBottom": true,
  800. "_isAbsHorizontalCenter": true,
  801. "_isAbsVerticalCenter": true,
  802. "_originalWidth": 220,
  803. "_originalHeight": 400,
  804. "_id": "bf2wid5llKT4QgVsxdTRRz"
  805. },
  806. {
  807. "__type__": "cc.PrefabInfo",
  808. "root": {
  809. "__id__": 1
  810. },
  811. "asset": {
  812. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  813. },
  814. "fileId": "50x1nMnj5NnqZVInrHcLKX",
  815. "sync": false
  816. },
  817. {
  818. "__type__": "cc.ScrollView",
  819. "_name": "",
  820. "_objFlags": 0,
  821. "node": {
  822. "__id__": 16
  823. },
  824. "_enabled": true,
  825. "content": {
  826. "__id__": 17
  827. },
  828. "horizontal": false,
  829. "vertical": true,
  830. "inertia": true,
  831. "brake": 0.75,
  832. "elastic": true,
  833. "bounceDuration": 0.23,
  834. "scrollEvents": [],
  835. "cancelInnerEvents": true,
  836. "_N$horizontalScrollBar": null,
  837. "_N$verticalScrollBar": null,
  838. "_id": "7d85Tgaz5L05EEFxaW4/XU"
  839. },
  840. {
  841. "__type__": "cc.Widget",
  842. "_name": "",
  843. "_objFlags": 0,
  844. "node": {
  845. "__id__": 16
  846. },
  847. "_enabled": true,
  848. "alignMode": 1,
  849. "_target": null,
  850. "_alignFlags": 45,
  851. "_left": 40,
  852. "_right": 40,
  853. "_top": 145,
  854. "_bottom": 175,
  855. "_verticalCenter": 0,
  856. "_horizontalCenter": 0,
  857. "_isAbsLeft": true,
  858. "_isAbsRight": true,
  859. "_isAbsTop": true,
  860. "_isAbsBottom": true,
  861. "_isAbsHorizontalCenter": true,
  862. "_isAbsVerticalCenter": true,
  863. "_originalWidth": 240,
  864. "_originalHeight": 250,
  865. "_id": "7agRoHQIhDn4XirWRfdYBV"
  866. },
  867. {
  868. "__type__": "cc.Mask",
  869. "_name": "",
  870. "_objFlags": 0,
  871. "node": {
  872. "__id__": 16
  873. },
  874. "_enabled": true,
  875. "_srcBlendFactor": 770,
  876. "_dstBlendFactor": 771,
  877. "_spriteFrame": null,
  878. "_type": 0,
  879. "_segments": 64,
  880. "_N$alphaThreshold": 0,
  881. "_N$inverted": false,
  882. "_id": "e533Gs6tNOb61tk4cW5OHg"
  883. },
  884. {
  885. "__type__": "cc.PrefabInfo",
  886. "root": {
  887. "__id__": 1
  888. },
  889. "asset": {
  890. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  891. },
  892. "fileId": "7cJVACB+tCb4WYWLiCL2XT",
  893. "sync": false
  894. },
  895. {
  896. "__type__": "cc.Node",
  897. "_name": "label",
  898. "_objFlags": 0,
  899. "_parent": {
  900. "__id__": 7
  901. },
  902. "_children": [],
  903. "_active": true,
  904. "_level": 4,
  905. "_components": [
  906. {
  907. "__id__": 26
  908. },
  909. {
  910. "__id__": 27
  911. },
  912. {
  913. "__id__": 28
  914. }
  915. ],
  916. "_prefab": {
  917. "__id__": 29
  918. },
  919. "_opacity": 255,
  920. "_color": {
  921. "__type__": "cc.Color",
  922. "r": 255,
  923. "g": 255,
  924. "b": 255,
  925. "a": 255
  926. },
  927. "_contentSize": {
  928. "__type__": "cc.Size",
  929. "width": 194.71,
  930. "height": 28
  931. },
  932. "_anchorPoint": {
  933. "__type__": "cc.Vec2",
  934. "x": 0,
  935. "y": 0.5
  936. },
  937. "_position": {
  938. "__type__": "cc.Vec3",
  939. "x": -285,
  940. "y": 417,
  941. "z": 0
  942. },
  943. "_scale": {
  944. "__type__": "cc.Vec3",
  945. "x": 1,
  946. "y": 1,
  947. "z": 1
  948. },
  949. "_rotationX": 0,
  950. "_rotationY": 0,
  951. "_quat": {
  952. "__type__": "cc.Quat",
  953. "x": 0,
  954. "y": 0,
  955. "z": 0,
  956. "w": 1
  957. },
  958. "_skewX": 0,
  959. "_skewY": 0,
  960. "_zIndex": 0,
  961. "groupIndex": 0,
  962. "_id": ""
  963. },
  964. {
  965. "__type__": "cc.Label",
  966. "_name": "",
  967. "_objFlags": 0,
  968. "node": {
  969. "__id__": 25
  970. },
  971. "_enabled": true,
  972. "_srcBlendFactor": 1,
  973. "_dstBlendFactor": 771,
  974. "_useOriginalSize": false,
  975. "_string": "0/50已收集的明星",
  976. "_N$string": "0/50已收集的明星",
  977. "_fontSize": 24,
  978. "_lineHeight": 28,
  979. "_enableWrapText": true,
  980. "_N$file": null,
  981. "_isSystemFontUsed": true,
  982. "_spacingX": 0,
  983. "_N$horizontalAlign": 1,
  984. "_N$verticalAlign": 1,
  985. "_N$fontFamily": "Arial",
  986. "_N$overflow": 0,
  987. "_id": "b2gdYLKy9EDKVFWOAAmvUI"
  988. },
  989. {
  990. "__type__": "cc.LabelOutline",
  991. "_name": "",
  992. "_objFlags": 0,
  993. "node": {
  994. "__id__": 25
  995. },
  996. "_enabled": true,
  997. "_color": {
  998. "__type__": "cc.Color",
  999. "r": 61,
  1000. "g": 46,
  1001. "b": 29,
  1002. "a": 255
  1003. },
  1004. "_width": 2,
  1005. "_id": "24ZYiMdoJA5L+8nZwK79h+"
  1006. },
  1007. {
  1008. "__type__": "cc.Widget",
  1009. "_name": "",
  1010. "_objFlags": 0,
  1011. "node": {
  1012. "__id__": 25
  1013. },
  1014. "_enabled": true,
  1015. "alignMode": 1,
  1016. "_target": null,
  1017. "_alignFlags": 1,
  1018. "_left": 0,
  1019. "_right": 0,
  1020. "_top": 89,
  1021. "_bottom": 0,
  1022. "_verticalCenter": 0,
  1023. "_horizontalCenter": 0,
  1024. "_isAbsLeft": true,
  1025. "_isAbsRight": true,
  1026. "_isAbsTop": true,
  1027. "_isAbsBottom": true,
  1028. "_isAbsHorizontalCenter": true,
  1029. "_isAbsVerticalCenter": true,
  1030. "_originalWidth": 0,
  1031. "_originalHeight": 0,
  1032. "_id": "63IhW4m9pDub9FONS8KVHz"
  1033. },
  1034. {
  1035. "__type__": "cc.PrefabInfo",
  1036. "root": {
  1037. "__id__": 1
  1038. },
  1039. "asset": {
  1040. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  1041. },
  1042. "fileId": "7ew+sBfktDb7dEsU2kWkB8",
  1043. "sync": false
  1044. },
  1045. {
  1046. "__type__": "cc.Node",
  1047. "_name": "richtext",
  1048. "_objFlags": 0,
  1049. "_parent": {
  1050. "__id__": 7
  1051. },
  1052. "_children": [
  1053. {
  1054. "__id__": 31
  1055. }
  1056. ],
  1057. "_active": true,
  1058. "_level": 4,
  1059. "_components": [
  1060. {
  1061. "__id__": 35
  1062. },
  1063. {
  1064. "__id__": 36
  1065. }
  1066. ],
  1067. "_prefab": {
  1068. "__id__": 37
  1069. },
  1070. "_opacity": 255,
  1071. "_color": {
  1072. "__type__": "cc.Color",
  1073. "r": 255,
  1074. "g": 255,
  1075. "b": 255,
  1076. "a": 255
  1077. },
  1078. "_contentSize": {
  1079. "__type__": "cc.Size",
  1080. "width": 56.03,
  1081. "height": 40
  1082. },
  1083. "_anchorPoint": {
  1084. "__type__": "cc.Vec2",
  1085. "x": 1,
  1086. "y": 0.5
  1087. },
  1088. "_position": {
  1089. "__type__": "cc.Vec3",
  1090. "x": 285,
  1091. "y": 435,
  1092. "z": 0
  1093. },
  1094. "_scale": {
  1095. "__type__": "cc.Vec3",
  1096. "x": 1,
  1097. "y": 1,
  1098. "z": 1
  1099. },
  1100. "_rotationX": 0,
  1101. "_rotationY": 0,
  1102. "_quat": {
  1103. "__type__": "cc.Quat",
  1104. "x": 0,
  1105. "y": 0,
  1106. "z": 0,
  1107. "w": 1
  1108. },
  1109. "_skewX": 0,
  1110. "_skewY": 0,
  1111. "_zIndex": 0,
  1112. "groupIndex": 0,
  1113. "_id": ""
  1114. },
  1115. {
  1116. "__type__": "cc.PrivateNode",
  1117. "_name": "RICHTEXT_CHILD",
  1118. "_objFlags": 0,
  1119. "_parent": {
  1120. "__id__": 30
  1121. },
  1122. "_children": [],
  1123. "_active": true,
  1124. "_level": 5,
  1125. "_components": [
  1126. {
  1127. "__id__": 32
  1128. },
  1129. {
  1130. "__id__": 33
  1131. }
  1132. ],
  1133. "_prefab": {
  1134. "__id__": 34
  1135. },
  1136. "_opacity": 255,
  1137. "_color": {
  1138. "__type__": "cc.Color",
  1139. "r": 255,
  1140. "g": 150,
  1141. "b": 0,
  1142. "a": 255
  1143. },
  1144. "_contentSize": {
  1145. "__type__": "cc.Size",
  1146. "width": 56.03,
  1147. "height": 40
  1148. },
  1149. "_anchorPoint": {
  1150. "__type__": "cc.Vec2",
  1151. "x": 0,
  1152. "y": 0
  1153. },
  1154. "_position": {
  1155. "__type__": "cc.Vec3",
  1156. "x": -56.03,
  1157. "y": -20,
  1158. "z": 0
  1159. },
  1160. "_scale": {
  1161. "__type__": "cc.Vec3",
  1162. "x": 1,
  1163. "y": 1,
  1164. "z": 1
  1165. },
  1166. "_rotationX": 0,
  1167. "_rotationY": 0,
  1168. "_quat": {
  1169. "__type__": "cc.Quat",
  1170. "x": 0,
  1171. "y": 0,
  1172. "z": 0,
  1173. "w": 1
  1174. },
  1175. "_skewX": 0,
  1176. "_skewY": 0,
  1177. "_zIndex": -32768,
  1178. "groupIndex": 0,
  1179. "_id": ""
  1180. },
  1181. {
  1182. "__type__": "cc.Label",
  1183. "_name": "",
  1184. "_objFlags": 0,
  1185. "node": {
  1186. "__id__": 31
  1187. },
  1188. "_enabled": true,
  1189. "_srcBlendFactor": 1,
  1190. "_dstBlendFactor": 771,
  1191. "_useOriginalSize": true,
  1192. "_string": "0%",
  1193. "_N$string": "0%",
  1194. "_fontSize": 36,
  1195. "_lineHeight": 40,
  1196. "_enableWrapText": true,
  1197. "_N$file": null,
  1198. "_isSystemFontUsed": true,
  1199. "_spacingX": 0,
  1200. "_N$horizontalAlign": 0,
  1201. "_N$verticalAlign": 1,
  1202. "_N$fontFamily": "Arial",
  1203. "_N$overflow": 0,
  1204. "_id": "ffyNugG/tH+5pyykyoAsEm"
  1205. },
  1206. {
  1207. "__type__": "cc.LabelOutline",
  1208. "_name": "",
  1209. "_objFlags": 0,
  1210. "node": {
  1211. "__id__": 31
  1212. },
  1213. "_enabled": true,
  1214. "_color": {
  1215. "__type__": "cc.Color",
  1216. "r": 61,
  1217. "g": 46,
  1218. "b": 29,
  1219. "a": 255
  1220. },
  1221. "_width": 2,
  1222. "_id": "a6MXwm4JhA4ryzQLzPBMnE"
  1223. },
  1224. {
  1225. "__type__": "cc.PrefabInfo",
  1226. "root": {
  1227. "__id__": 1
  1228. },
  1229. "asset": {
  1230. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  1231. },
  1232. "fileId": "56xVcmcB1MnoKhyOGkXpyc",
  1233. "sync": false
  1234. },
  1235. {
  1236. "__type__": "cc.RichText",
  1237. "_name": "",
  1238. "_objFlags": 0,
  1239. "node": {
  1240. "__id__": 30
  1241. },
  1242. "_enabled": true,
  1243. "_N$string": "<b><outline color=#3d2e1d width=2><color=#ff9600 >0%</color></outline></b>",
  1244. "_N$horizontalAlign": 2,
  1245. "_N$fontSize": 36,
  1246. "_N$font": null,
  1247. "_N$maxWidth": 0,
  1248. "_N$lineHeight": 40,
  1249. "_N$imageAtlas": null,
  1250. "_N$handleTouchEvent": true,
  1251. "_id": "2bzOWAx6pKyqVkvm6wwvAr"
  1252. },
  1253. {
  1254. "__type__": "cc.Widget",
  1255. "_name": "",
  1256. "_objFlags": 0,
  1257. "node": {
  1258. "__id__": 30
  1259. },
  1260. "_enabled": true,
  1261. "alignMode": 1,
  1262. "_target": null,
  1263. "_alignFlags": 1,
  1264. "_left": 0,
  1265. "_right": 0,
  1266. "_top": 65,
  1267. "_bottom": 0,
  1268. "_verticalCenter": 0,
  1269. "_horizontalCenter": 0,
  1270. "_isAbsLeft": true,
  1271. "_isAbsRight": true,
  1272. "_isAbsTop": true,
  1273. "_isAbsBottom": true,
  1274. "_isAbsHorizontalCenter": true,
  1275. "_isAbsVerticalCenter": true,
  1276. "_originalWidth": 0,
  1277. "_originalHeight": 0,
  1278. "_id": "4b1ssBqmNPC5gOM2/gEuEz"
  1279. },
  1280. {
  1281. "__type__": "cc.PrefabInfo",
  1282. "root": {
  1283. "__id__": 1
  1284. },
  1285. "asset": {
  1286. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  1287. },
  1288. "fileId": "8axTmM+8BC3YhwTXZUhI44",
  1289. "sync": false
  1290. },
  1291. {
  1292. "__type__": "cc.Node",
  1293. "_name": "bottomNode",
  1294. "_objFlags": 0,
  1295. "_parent": {
  1296. "__id__": 7
  1297. },
  1298. "_children": [
  1299. {
  1300. "__id__": 39
  1301. },
  1302. {
  1303. "__id__": 45
  1304. },
  1305. {
  1306. "__id__": 49
  1307. },
  1308. {
  1309. "__id__": 56
  1310. },
  1311. {
  1312. "__id__": 64
  1313. }
  1314. ],
  1315. "_active": true,
  1316. "_level": 4,
  1317. "_components": [
  1318. {
  1319. "__id__": 72
  1320. }
  1321. ],
  1322. "_prefab": {
  1323. "__id__": 73
  1324. },
  1325. "_opacity": 255,
  1326. "_color": {
  1327. "__type__": "cc.Color",
  1328. "r": 255,
  1329. "g": 255,
  1330. "b": 255,
  1331. "a": 255
  1332. },
  1333. "_contentSize": {
  1334. "__type__": "cc.Size",
  1335. "width": 626,
  1336. "height": 130
  1337. },
  1338. "_anchorPoint": {
  1339. "__type__": "cc.Vec2",
  1340. "x": 0.5,
  1341. "y": 0.5
  1342. },
  1343. "_position": {
  1344. "__type__": "cc.Vec3",
  1345. "x": 0,
  1346. "y": -420,
  1347. "z": 0
  1348. },
  1349. "_scale": {
  1350. "__type__": "cc.Vec3",
  1351. "x": 1,
  1352. "y": 1,
  1353. "z": 1
  1354. },
  1355. "_rotationX": 0,
  1356. "_rotationY": 0,
  1357. "_quat": {
  1358. "__type__": "cc.Quat",
  1359. "x": 0,
  1360. "y": 0,
  1361. "z": 0,
  1362. "w": 1
  1363. },
  1364. "_skewX": 0,
  1365. "_skewY": 0,
  1366. "_zIndex": 0,
  1367. "groupIndex": 0,
  1368. "_id": ""
  1369. },
  1370. {
  1371. "__type__": "cc.Node",
  1372. "_name": "recallButton",
  1373. "_objFlags": 0,
  1374. "_parent": {
  1375. "__id__": 38
  1376. },
  1377. "_children": [],
  1378. "_active": true,
  1379. "_level": 5,
  1380. "_components": [
  1381. {
  1382. "__id__": 40
  1383. },
  1384. {
  1385. "__id__": 41
  1386. },
  1387. {
  1388. "__id__": 43
  1389. }
  1390. ],
  1391. "_prefab": {
  1392. "__id__": 44
  1393. },
  1394. "_opacity": 255,
  1395. "_color": {
  1396. "__type__": "cc.Color",
  1397. "r": 255,
  1398. "g": 255,
  1399. "b": 255,
  1400. "a": 255
  1401. },
  1402. "_contentSize": {
  1403. "__type__": "cc.Size",
  1404. "width": 626,
  1405. "height": 73
  1406. },
  1407. "_anchorPoint": {
  1408. "__type__": "cc.Vec2",
  1409. "x": 0.5,
  1410. "y": 0.5
  1411. },
  1412. "_position": {
  1413. "__type__": "cc.Vec3",
  1414. "x": 0,
  1415. "y": 28.5,
  1416. "z": 0
  1417. },
  1418. "_scale": {
  1419. "__type__": "cc.Vec3",
  1420. "x": 1,
  1421. "y": 1,
  1422. "z": 1
  1423. },
  1424. "_rotationX": 0,
  1425. "_rotationY": 0,
  1426. "_quat": {
  1427. "__type__": "cc.Quat",
  1428. "x": 0,
  1429. "y": 0,
  1430. "z": 0,
  1431. "w": 1
  1432. },
  1433. "_skewX": 0,
  1434. "_skewY": 0,
  1435. "_zIndex": 0,
  1436. "groupIndex": 0,
  1437. "_id": ""
  1438. },
  1439. {
  1440. "__type__": "cc.Sprite",
  1441. "_name": "",
  1442. "_objFlags": 0,
  1443. "node": {
  1444. "__id__": 39
  1445. },
  1446. "_enabled": true,
  1447. "_srcBlendFactor": 770,
  1448. "_dstBlendFactor": 771,
  1449. "_spriteFrame": {
  1450. "__uuid__": "6b7bd24f-5281-4bae-80c1-b5cef57053a6"
  1451. },
  1452. "_type": 0,
  1453. "_sizeMode": 1,
  1454. "_fillType": 0,
  1455. "_fillCenter": {
  1456. "__type__": "cc.Vec2",
  1457. "x": 0,
  1458. "y": 0
  1459. },
  1460. "_fillStart": 0,
  1461. "_fillRange": 0,
  1462. "_isTrimmedMode": true,
  1463. "_state": 0,
  1464. "_atlas": null,
  1465. "_id": "a8CSmZQNBNNIe7s2Mfc2Kb"
  1466. },
  1467. {
  1468. "__type__": "cc.Button",
  1469. "_name": "",
  1470. "_objFlags": 0,
  1471. "node": {
  1472. "__id__": 39
  1473. },
  1474. "_enabled": true,
  1475. "transition": 1,
  1476. "pressedColor": {
  1477. "__type__": "cc.Color",
  1478. "r": 120,
  1479. "g": 120,
  1480. "b": 120,
  1481. "a": 255
  1482. },
  1483. "hoverColor": {
  1484. "__type__": "cc.Color",
  1485. "r": 255,
  1486. "g": 255,
  1487. "b": 255,
  1488. "a": 255
  1489. },
  1490. "duration": 0.1,
  1491. "zoomScale": 1.2,
  1492. "clickEvents": [
  1493. {
  1494. "__id__": 42
  1495. }
  1496. ],
  1497. "_N$interactable": true,
  1498. "_N$enableAutoGrayEffect": false,
  1499. "_N$normalColor": {
  1500. "__type__": "cc.Color",
  1501. "r": 255,
  1502. "g": 255,
  1503. "b": 255,
  1504. "a": 255
  1505. },
  1506. "_N$disabledColor": {
  1507. "__type__": "cc.Color",
  1508. "r": 255,
  1509. "g": 255,
  1510. "b": 255,
  1511. "a": 255
  1512. },
  1513. "_N$normalSprite": {
  1514. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1515. },
  1516. "_N$pressedSprite": {
  1517. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1518. },
  1519. "pressedSprite": {
  1520. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1521. },
  1522. "_N$hoverSprite": {
  1523. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1524. },
  1525. "hoverSprite": {
  1526. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1527. },
  1528. "_N$disabledSprite": {
  1529. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1530. },
  1531. "_N$target": {
  1532. "__id__": 39
  1533. },
  1534. "_id": "36hzXbRMxLoKCGr09EXM4L"
  1535. },
  1536. {
  1537. "__type__": "cc.ClickEvent",
  1538. "target": {
  1539. "__id__": 1
  1540. },
  1541. "component": "StarHandbook",
  1542. "handler": "recallAllStar",
  1543. "customEventData": ""
  1544. },
  1545. {
  1546. "__type__": "cc.Widget",
  1547. "_name": "",
  1548. "_objFlags": 0,
  1549. "node": {
  1550. "__id__": 39
  1551. },
  1552. "_enabled": true,
  1553. "alignMode": 1,
  1554. "_target": null,
  1555. "_alignFlags": 1,
  1556. "_left": 0,
  1557. "_right": 0,
  1558. "_top": 0,
  1559. "_bottom": 0,
  1560. "_verticalCenter": 0,
  1561. "_horizontalCenter": 0,
  1562. "_isAbsLeft": true,
  1563. "_isAbsRight": true,
  1564. "_isAbsTop": true,
  1565. "_isAbsBottom": true,
  1566. "_isAbsHorizontalCenter": true,
  1567. "_isAbsVerticalCenter": true,
  1568. "_originalWidth": 0,
  1569. "_originalHeight": 0,
  1570. "_id": "c7XNYZovxG+LIIllbzVkmf"
  1571. },
  1572. {
  1573. "__type__": "cc.PrefabInfo",
  1574. "root": {
  1575. "__id__": 1
  1576. },
  1577. "asset": {
  1578. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  1579. },
  1580. "fileId": "82KHm2f45Nsay8Zb7zv7jm",
  1581. "sync": false
  1582. },
  1583. {
  1584. "__type__": "cc.Node",
  1585. "_name": "discountNode",
  1586. "_objFlags": 0,
  1587. "_parent": {
  1588. "__id__": 38
  1589. },
  1590. "_children": [],
  1591. "_active": true,
  1592. "_level": 5,
  1593. "_components": [
  1594. {
  1595. "__id__": 46
  1596. },
  1597. {
  1598. "__id__": 47
  1599. }
  1600. ],
  1601. "_prefab": {
  1602. "__id__": 48
  1603. },
  1604. "_opacity": 255,
  1605. "_color": {
  1606. "__type__": "cc.Color",
  1607. "r": 255,
  1608. "g": 255,
  1609. "b": 255,
  1610. "a": 255
  1611. },
  1612. "_contentSize": {
  1613. "__type__": "cc.Size",
  1614. "width": 626,
  1615. "height": 40
  1616. },
  1617. "_anchorPoint": {
  1618. "__type__": "cc.Vec2",
  1619. "x": 0.5,
  1620. "y": 0.5
  1621. },
  1622. "_position": {
  1623. "__type__": "cc.Vec3",
  1624. "x": 0,
  1625. "y": -45,
  1626. "z": 0
  1627. },
  1628. "_scale": {
  1629. "__type__": "cc.Vec3",
  1630. "x": 1,
  1631. "y": 1,
  1632. "z": 1
  1633. },
  1634. "_rotationX": 0,
  1635. "_rotationY": 0,
  1636. "_quat": {
  1637. "__type__": "cc.Quat",
  1638. "x": 0,
  1639. "y": 0,
  1640. "z": 0,
  1641. "w": 1
  1642. },
  1643. "_skewX": 0,
  1644. "_skewY": 0,
  1645. "_zIndex": 0,
  1646. "groupIndex": 0,
  1647. "_id": ""
  1648. },
  1649. {
  1650. "__type__": "cc.Sprite",
  1651. "_name": "",
  1652. "_objFlags": 0,
  1653. "node": {
  1654. "__id__": 45
  1655. },
  1656. "_enabled": true,
  1657. "_srcBlendFactor": 770,
  1658. "_dstBlendFactor": 771,
  1659. "_spriteFrame": {
  1660. "__uuid__": "085b26d7-f0bd-4442-89bf-ffab6e7c682c"
  1661. },
  1662. "_type": 0,
  1663. "_sizeMode": 1,
  1664. "_fillType": 0,
  1665. "_fillCenter": {
  1666. "__type__": "cc.Vec2",
  1667. "x": 0,
  1668. "y": 0
  1669. },
  1670. "_fillStart": 0,
  1671. "_fillRange": 0,
  1672. "_isTrimmedMode": true,
  1673. "_state": 0,
  1674. "_atlas": null,
  1675. "_id": "2dHrG/g9ZKproERIosLIIZ"
  1676. },
  1677. {
  1678. "__type__": "cc.Widget",
  1679. "_name": "",
  1680. "_objFlags": 0,
  1681. "node": {
  1682. "__id__": 45
  1683. },
  1684. "_enabled": true,
  1685. "alignMode": 1,
  1686. "_target": null,
  1687. "_alignFlags": 4,
  1688. "_left": 0,
  1689. "_right": 0,
  1690. "_top": 16.5,
  1691. "_bottom": 0,
  1692. "_verticalCenter": 0,
  1693. "_horizontalCenter": 0,
  1694. "_isAbsLeft": true,
  1695. "_isAbsRight": true,
  1696. "_isAbsTop": true,
  1697. "_isAbsBottom": true,
  1698. "_isAbsHorizontalCenter": true,
  1699. "_isAbsVerticalCenter": true,
  1700. "_originalWidth": 0,
  1701. "_originalHeight": 0,
  1702. "_id": "62/aPbllVB+rslxRiRH4Hf"
  1703. },
  1704. {
  1705. "__type__": "cc.PrefabInfo",
  1706. "root": {
  1707. "__id__": 1
  1708. },
  1709. "asset": {
  1710. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  1711. },
  1712. "fileId": "e0HCSvn59C7LMS+ygrA8J0",
  1713. "sync": false
  1714. },
  1715. {
  1716. "__type__": "cc.Node",
  1717. "_name": "richtext",
  1718. "_objFlags": 0,
  1719. "_parent": {
  1720. "__id__": 38
  1721. },
  1722. "_children": [
  1723. {
  1724. "__id__": 50
  1725. }
  1726. ],
  1727. "_active": true,
  1728. "_level": 5,
  1729. "_components": [
  1730. {
  1731. "__id__": 54
  1732. }
  1733. ],
  1734. "_prefab": {
  1735. "__id__": 55
  1736. },
  1737. "_opacity": 255,
  1738. "_color": {
  1739. "__type__": "cc.Color",
  1740. "r": 255,
  1741. "g": 255,
  1742. "b": 255,
  1743. "a": 255
  1744. },
  1745. "_contentSize": {
  1746. "__type__": "cc.Size",
  1747. "width": 56.03,
  1748. "height": 40
  1749. },
  1750. "_anchorPoint": {
  1751. "__type__": "cc.Vec2",
  1752. "x": 0,
  1753. "y": 0.5
  1754. },
  1755. "_position": {
  1756. "__type__": "cc.Vec3",
  1757. "x": -126,
  1758. "y": -44,
  1759. "z": 0
  1760. },
  1761. "_scale": {
  1762. "__type__": "cc.Vec3",
  1763. "x": 1,
  1764. "y": 1,
  1765. "z": 1
  1766. },
  1767. "_rotationX": 0,
  1768. "_rotationY": 0,
  1769. "_quat": {
  1770. "__type__": "cc.Quat",
  1771. "x": 0,
  1772. "y": 0,
  1773. "z": 0,
  1774. "w": 1
  1775. },
  1776. "_skewX": 0,
  1777. "_skewY": 0,
  1778. "_zIndex": 0,
  1779. "groupIndex": 0,
  1780. "_id": ""
  1781. },
  1782. {
  1783. "__type__": "cc.PrivateNode",
  1784. "_name": "RICHTEXT_CHILD",
  1785. "_objFlags": 0,
  1786. "_parent": {
  1787. "__id__": 49
  1788. },
  1789. "_children": [],
  1790. "_active": true,
  1791. "_level": 6,
  1792. "_components": [
  1793. {
  1794. "__id__": 51
  1795. },
  1796. {
  1797. "__id__": 52
  1798. }
  1799. ],
  1800. "_prefab": {
  1801. "__id__": 53
  1802. },
  1803. "_opacity": 255,
  1804. "_color": {
  1805. "__type__": "cc.Color",
  1806. "r": 255,
  1807. "g": 255,
  1808. "b": 255,
  1809. "a": 255
  1810. },
  1811. "_contentSize": {
  1812. "__type__": "cc.Size",
  1813. "width": 56.03,
  1814. "height": 40
  1815. },
  1816. "_anchorPoint": {
  1817. "__type__": "cc.Vec2",
  1818. "x": 0,
  1819. "y": 0
  1820. },
  1821. "_position": {
  1822. "__type__": "cc.Vec3",
  1823. "x": 0,
  1824. "y": -20,
  1825. "z": 0
  1826. },
  1827. "_scale": {
  1828. "__type__": "cc.Vec3",
  1829. "x": 1,
  1830. "y": 1,
  1831. "z": 1
  1832. },
  1833. "_rotationX": 0,
  1834. "_rotationY": 0,
  1835. "_quat": {
  1836. "__type__": "cc.Quat",
  1837. "x": 0,
  1838. "y": 0,
  1839. "z": 0,
  1840. "w": 1
  1841. },
  1842. "_skewX": 0,
  1843. "_skewY": 0,
  1844. "_zIndex": -32768,
  1845. "groupIndex": 0,
  1846. "_id": ""
  1847. },
  1848. {
  1849. "__type__": "cc.Label",
  1850. "_name": "",
  1851. "_objFlags": 0,
  1852. "node": {
  1853. "__id__": 50
  1854. },
  1855. "_enabled": true,
  1856. "_srcBlendFactor": 1,
  1857. "_dstBlendFactor": 771,
  1858. "_useOriginalSize": true,
  1859. "_string": "0%",
  1860. "_N$string": "0%",
  1861. "_fontSize": 36,
  1862. "_lineHeight": 40,
  1863. "_enableWrapText": true,
  1864. "_N$file": null,
  1865. "_isSystemFontUsed": true,
  1866. "_spacingX": 0,
  1867. "_N$horizontalAlign": 0,
  1868. "_N$verticalAlign": 1,
  1869. "_N$fontFamily": "Arial",
  1870. "_N$overflow": 0,
  1871. "_id": "a2v2liGHZHkY/WGqHXl22O"
  1872. },
  1873. {
  1874. "__type__": "cc.LabelOutline",
  1875. "_name": "",
  1876. "_objFlags": 0,
  1877. "node": {
  1878. "__id__": 50
  1879. },
  1880. "_enabled": true,
  1881. "_color": {
  1882. "__type__": "cc.Color",
  1883. "r": 61,
  1884. "g": 46,
  1885. "b": 29,
  1886. "a": 255
  1887. },
  1888. "_width": 2,
  1889. "_id": "0c2eQ8CdVJKKmK8A4JZe7V"
  1890. },
  1891. {
  1892. "__type__": "cc.PrefabInfo",
  1893. "root": {
  1894. "__id__": 1
  1895. },
  1896. "asset": {
  1897. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  1898. },
  1899. "fileId": "0eweKYTSRJSaSJI3+/Ufw1",
  1900. "sync": false
  1901. },
  1902. {
  1903. "__type__": "cc.RichText",
  1904. "_name": "",
  1905. "_objFlags": 0,
  1906. "node": {
  1907. "__id__": 49
  1908. },
  1909. "_enabled": true,
  1910. "_N$string": "<b><outline color=#3d2e1d width=2>0%</outline></b>",
  1911. "_N$horizontalAlign": 0,
  1912. "_N$fontSize": 36,
  1913. "_N$font": null,
  1914. "_N$maxWidth": 0,
  1915. "_N$lineHeight": 40,
  1916. "_N$imageAtlas": null,
  1917. "_N$handleTouchEvent": true,
  1918. "_id": "75b7OgsMBIVrp08CbpU/CN"
  1919. },
  1920. {
  1921. "__type__": "cc.PrefabInfo",
  1922. "root": {
  1923. "__id__": 1
  1924. },
  1925. "asset": {
  1926. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  1927. },
  1928. "fileId": "90w//qVeZD5KxjCry4b601",
  1929. "sync": false
  1930. },
  1931. {
  1932. "__type__": "cc.Node",
  1933. "_name": "discountButton",
  1934. "_objFlags": 0,
  1935. "_parent": {
  1936. "__id__": 38
  1937. },
  1938. "_children": [
  1939. {
  1940. "__id__": 57
  1941. }
  1942. ],
  1943. "_active": true,
  1944. "_level": 5,
  1945. "_components": [
  1946. {
  1947. "__id__": 60
  1948. },
  1949. {
  1950. "__id__": 61
  1951. }
  1952. ],
  1953. "_prefab": {
  1954. "__id__": 63
  1955. },
  1956. "_opacity": 255,
  1957. "_color": {
  1958. "__type__": "cc.Color",
  1959. "r": 255,
  1960. "g": 255,
  1961. "b": 255,
  1962. "a": 255
  1963. },
  1964. "_contentSize": {
  1965. "__type__": "cc.Size",
  1966. "width": 96,
  1967. "height": 120
  1968. },
  1969. "_anchorPoint": {
  1970. "__type__": "cc.Vec2",
  1971. "x": 0.5,
  1972. "y": 0.5
  1973. },
  1974. "_position": {
  1975. "__type__": "cc.Vec3",
  1976. "x": 150,
  1977. "y": -77,
  1978. "z": 0
  1979. },
  1980. "_scale": {
  1981. "__type__": "cc.Vec3",
  1982. "x": 1,
  1983. "y": 1,
  1984. "z": 1
  1985. },
  1986. "_rotationX": 0,
  1987. "_rotationY": 0,
  1988. "_quat": {
  1989. "__type__": "cc.Quat",
  1990. "x": 0,
  1991. "y": 0,
  1992. "z": 0,
  1993. "w": 1
  1994. },
  1995. "_skewX": 0,
  1996. "_skewY": 0,
  1997. "_zIndex": 0,
  1998. "groupIndex": 0,
  1999. "_id": ""
  2000. },
  2001. {
  2002. "__type__": "cc.Node",
  2003. "_name": "label",
  2004. "_objFlags": 0,
  2005. "_parent": {
  2006. "__id__": 56
  2007. },
  2008. "_children": [],
  2009. "_active": true,
  2010. "_level": 6,
  2011. "_components": [
  2012. {
  2013. "__id__": 58
  2014. }
  2015. ],
  2016. "_prefab": {
  2017. "__id__": 59
  2018. },
  2019. "_opacity": 255,
  2020. "_color": {
  2021. "__type__": "cc.Color",
  2022. "r": 224,
  2023. "g": 56,
  2024. "b": 23,
  2025. "a": 255
  2026. },
  2027. "_contentSize": {
  2028. "__type__": "cc.Size",
  2029. "width": 32.02,
  2030. "height": 24
  2031. },
  2032. "_anchorPoint": {
  2033. "__type__": "cc.Vec2",
  2034. "x": 0.5,
  2035. "y": 0.5
  2036. },
  2037. "_position": {
  2038. "__type__": "cc.Vec3",
  2039. "x": 6.9,
  2040. "y": -23,
  2041. "z": 0
  2042. },
  2043. "_scale": {
  2044. "__type__": "cc.Vec3",
  2045. "x": 1,
  2046. "y": 1,
  2047. "z": 1
  2048. },
  2049. "_rotationX": 0,
  2050. "_rotationY": 0,
  2051. "_quat": {
  2052. "__type__": "cc.Quat",
  2053. "x": 0,
  2054. "y": 0,
  2055. "z": 0,
  2056. "w": 1
  2057. },
  2058. "_skewX": 0,
  2059. "_skewY": 0,
  2060. "_zIndex": 0,
  2061. "groupIndex": 0,
  2062. "_id": ""
  2063. },
  2064. {
  2065. "__type__": "cc.Label",
  2066. "_name": "",
  2067. "_objFlags": 0,
  2068. "node": {
  2069. "__id__": 57
  2070. },
  2071. "_enabled": true,
  2072. "_srcBlendFactor": 1,
  2073. "_dstBlendFactor": 771,
  2074. "_useOriginalSize": false,
  2075. "_string": "x 0",
  2076. "_N$string": "x 0",
  2077. "_fontSize": 24,
  2078. "_lineHeight": 24,
  2079. "_enableWrapText": true,
  2080. "_N$file": null,
  2081. "_isSystemFontUsed": true,
  2082. "_spacingX": 0,
  2083. "_N$horizontalAlign": 1,
  2084. "_N$verticalAlign": 1,
  2085. "_N$fontFamily": "Arial",
  2086. "_N$overflow": 0,
  2087. "_id": "c4a9CQHUpEB7eLBAQmA9L7"
  2088. },
  2089. {
  2090. "__type__": "cc.PrefabInfo",
  2091. "root": {
  2092. "__id__": 1
  2093. },
  2094. "asset": {
  2095. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  2096. },
  2097. "fileId": "3bP1/YMyJNzI0yp/huCZJJ",
  2098. "sync": false
  2099. },
  2100. {
  2101. "__type__": "cc.Sprite",
  2102. "_name": "",
  2103. "_objFlags": 0,
  2104. "node": {
  2105. "__id__": 56
  2106. },
  2107. "_enabled": true,
  2108. "_srcBlendFactor": 770,
  2109. "_dstBlendFactor": 771,
  2110. "_spriteFrame": {
  2111. "__uuid__": "08ad1f4c-713d-47a8-a77b-7b4549108210"
  2112. },
  2113. "_type": 0,
  2114. "_sizeMode": 1,
  2115. "_fillType": 0,
  2116. "_fillCenter": {
  2117. "__type__": "cc.Vec2",
  2118. "x": 0,
  2119. "y": 0
  2120. },
  2121. "_fillStart": 0,
  2122. "_fillRange": 0,
  2123. "_isTrimmedMode": true,
  2124. "_state": 0,
  2125. "_atlas": null,
  2126. "_id": "6ehUQlqrZPwbdbA7gakKh2"
  2127. },
  2128. {
  2129. "__type__": "cc.Button",
  2130. "_name": "",
  2131. "_objFlags": 0,
  2132. "node": {
  2133. "__id__": 56
  2134. },
  2135. "_enabled": true,
  2136. "transition": 1,
  2137. "pressedColor": {
  2138. "__type__": "cc.Color",
  2139. "r": 120,
  2140. "g": 120,
  2141. "b": 120,
  2142. "a": 255
  2143. },
  2144. "hoverColor": {
  2145. "__type__": "cc.Color",
  2146. "r": 255,
  2147. "g": 255,
  2148. "b": 255,
  2149. "a": 255
  2150. },
  2151. "duration": 0.1,
  2152. "zoomScale": 1.2,
  2153. "clickEvents": [
  2154. {
  2155. "__id__": 62
  2156. }
  2157. ],
  2158. "_N$interactable": true,
  2159. "_N$enableAutoGrayEffect": false,
  2160. "_N$normalColor": {
  2161. "__type__": "cc.Color",
  2162. "r": 255,
  2163. "g": 255,
  2164. "b": 255,
  2165. "a": 255
  2166. },
  2167. "_N$disabledColor": {
  2168. "__type__": "cc.Color",
  2169. "r": 255,
  2170. "g": 255,
  2171. "b": 255,
  2172. "a": 255
  2173. },
  2174. "_N$normalSprite": {
  2175. "__uuid__": "08ad1f4c-713d-47a8-a77b-7b4549108210"
  2176. },
  2177. "_N$pressedSprite": {
  2178. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2179. },
  2180. "pressedSprite": {
  2181. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2182. },
  2183. "_N$hoverSprite": {
  2184. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2185. },
  2186. "hoverSprite": {
  2187. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2188. },
  2189. "_N$disabledSprite": {
  2190. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2191. },
  2192. "_N$target": {
  2193. "__id__": 56
  2194. },
  2195. "_id": "abVPK0M6FN24BwAt6lRUzw"
  2196. },
  2197. {
  2198. "__type__": "cc.ClickEvent",
  2199. "target": {
  2200. "__id__": 1
  2201. },
  2202. "component": "StarHandbook",
  2203. "handler": "showDiscountGift",
  2204. "customEventData": "0"
  2205. },
  2206. {
  2207. "__type__": "cc.PrefabInfo",
  2208. "root": {
  2209. "__id__": 1
  2210. },
  2211. "asset": {
  2212. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  2213. },
  2214. "fileId": "20ZzzV/0BKroZDn/kKcwgy",
  2215. "sync": false
  2216. },
  2217. {
  2218. "__type__": "cc.Node",
  2219. "_name": "discountButton",
  2220. "_objFlags": 0,
  2221. "_parent": {
  2222. "__id__": 38
  2223. },
  2224. "_children": [
  2225. {
  2226. "__id__": 65
  2227. }
  2228. ],
  2229. "_active": true,
  2230. "_level": 5,
  2231. "_components": [
  2232. {
  2233. "__id__": 68
  2234. },
  2235. {
  2236. "__id__": 69
  2237. }
  2238. ],
  2239. "_prefab": {
  2240. "__id__": 71
  2241. },
  2242. "_opacity": 255,
  2243. "_color": {
  2244. "__type__": "cc.Color",
  2245. "r": 255,
  2246. "g": 255,
  2247. "b": 255,
  2248. "a": 255
  2249. },
  2250. "_contentSize": {
  2251. "__type__": "cc.Size",
  2252. "width": 96,
  2253. "height": 120
  2254. },
  2255. "_anchorPoint": {
  2256. "__type__": "cc.Vec2",
  2257. "x": 0.5,
  2258. "y": 0.5
  2259. },
  2260. "_position": {
  2261. "__type__": "cc.Vec3",
  2262. "x": 250,
  2263. "y": -77,
  2264. "z": 0
  2265. },
  2266. "_scale": {
  2267. "__type__": "cc.Vec3",
  2268. "x": 1,
  2269. "y": 1,
  2270. "z": 1
  2271. },
  2272. "_rotationX": 0,
  2273. "_rotationY": 0,
  2274. "_quat": {
  2275. "__type__": "cc.Quat",
  2276. "x": 0,
  2277. "y": 0,
  2278. "z": 0,
  2279. "w": 1
  2280. },
  2281. "_skewX": 0,
  2282. "_skewY": 0,
  2283. "_zIndex": 0,
  2284. "groupIndex": 0,
  2285. "_id": ""
  2286. },
  2287. {
  2288. "__type__": "cc.Node",
  2289. "_name": "label",
  2290. "_objFlags": 0,
  2291. "_parent": {
  2292. "__id__": 64
  2293. },
  2294. "_children": [],
  2295. "_active": true,
  2296. "_level": 6,
  2297. "_components": [
  2298. {
  2299. "__id__": 66
  2300. }
  2301. ],
  2302. "_prefab": {
  2303. "__id__": 67
  2304. },
  2305. "_opacity": 255,
  2306. "_color": {
  2307. "__type__": "cc.Color",
  2308. "r": 224,
  2309. "g": 56,
  2310. "b": 23,
  2311. "a": 255
  2312. },
  2313. "_contentSize": {
  2314. "__type__": "cc.Size",
  2315. "width": 32.02,
  2316. "height": 24
  2317. },
  2318. "_anchorPoint": {
  2319. "__type__": "cc.Vec2",
  2320. "x": 0.5,
  2321. "y": 0.5
  2322. },
  2323. "_position": {
  2324. "__type__": "cc.Vec3",
  2325. "x": 6.9,
  2326. "y": -23,
  2327. "z": 0
  2328. },
  2329. "_scale": {
  2330. "__type__": "cc.Vec3",
  2331. "x": 1,
  2332. "y": 1,
  2333. "z": 1
  2334. },
  2335. "_rotationX": 0,
  2336. "_rotationY": 0,
  2337. "_quat": {
  2338. "__type__": "cc.Quat",
  2339. "x": 0,
  2340. "y": 0,
  2341. "z": 0,
  2342. "w": 1
  2343. },
  2344. "_skewX": 0,
  2345. "_skewY": 0,
  2346. "_zIndex": 0,
  2347. "groupIndex": 0,
  2348. "_id": ""
  2349. },
  2350. {
  2351. "__type__": "cc.Label",
  2352. "_name": "",
  2353. "_objFlags": 0,
  2354. "node": {
  2355. "__id__": 65
  2356. },
  2357. "_enabled": true,
  2358. "_srcBlendFactor": 1,
  2359. "_dstBlendFactor": 771,
  2360. "_useOriginalSize": false,
  2361. "_string": "x 0",
  2362. "_N$string": "x 0",
  2363. "_fontSize": 24,
  2364. "_lineHeight": 24,
  2365. "_enableWrapText": true,
  2366. "_N$file": null,
  2367. "_isSystemFontUsed": true,
  2368. "_spacingX": 0,
  2369. "_N$horizontalAlign": 1,
  2370. "_N$verticalAlign": 1,
  2371. "_N$fontFamily": "Arial",
  2372. "_N$overflow": 0,
  2373. "_id": "9cZPlsAspLx6fFVFVV1U+3"
  2374. },
  2375. {
  2376. "__type__": "cc.PrefabInfo",
  2377. "root": {
  2378. "__id__": 1
  2379. },
  2380. "asset": {
  2381. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  2382. },
  2383. "fileId": "efMBXU4rZIfoooq1VsUPhH",
  2384. "sync": false
  2385. },
  2386. {
  2387. "__type__": "cc.Sprite",
  2388. "_name": "",
  2389. "_objFlags": 0,
  2390. "node": {
  2391. "__id__": 64
  2392. },
  2393. "_enabled": true,
  2394. "_srcBlendFactor": 770,
  2395. "_dstBlendFactor": 771,
  2396. "_spriteFrame": {
  2397. "__uuid__": "8b0f170d-1f53-49bb-9b5e-397836520370"
  2398. },
  2399. "_type": 0,
  2400. "_sizeMode": 1,
  2401. "_fillType": 0,
  2402. "_fillCenter": {
  2403. "__type__": "cc.Vec2",
  2404. "x": 0,
  2405. "y": 0
  2406. },
  2407. "_fillStart": 0,
  2408. "_fillRange": 0,
  2409. "_isTrimmedMode": true,
  2410. "_state": 0,
  2411. "_atlas": null,
  2412. "_id": "a9gKJPZB5CGI2Ea5hhp62E"
  2413. },
  2414. {
  2415. "__type__": "cc.Button",
  2416. "_name": "",
  2417. "_objFlags": 0,
  2418. "node": {
  2419. "__id__": 64
  2420. },
  2421. "_enabled": true,
  2422. "transition": 1,
  2423. "pressedColor": {
  2424. "__type__": "cc.Color",
  2425. "r": 120,
  2426. "g": 120,
  2427. "b": 120,
  2428. "a": 255
  2429. },
  2430. "hoverColor": {
  2431. "__type__": "cc.Color",
  2432. "r": 255,
  2433. "g": 255,
  2434. "b": 255,
  2435. "a": 255
  2436. },
  2437. "duration": 0.1,
  2438. "zoomScale": 1.2,
  2439. "clickEvents": [
  2440. {
  2441. "__id__": 70
  2442. }
  2443. ],
  2444. "_N$interactable": true,
  2445. "_N$enableAutoGrayEffect": false,
  2446. "_N$normalColor": {
  2447. "__type__": "cc.Color",
  2448. "r": 255,
  2449. "g": 255,
  2450. "b": 255,
  2451. "a": 255
  2452. },
  2453. "_N$disabledColor": {
  2454. "__type__": "cc.Color",
  2455. "r": 255,
  2456. "g": 255,
  2457. "b": 255,
  2458. "a": 255
  2459. },
  2460. "_N$normalSprite": {
  2461. "__uuid__": "08ad1f4c-713d-47a8-a77b-7b4549108210"
  2462. },
  2463. "_N$pressedSprite": {
  2464. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2465. },
  2466. "pressedSprite": {
  2467. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2468. },
  2469. "_N$hoverSprite": {
  2470. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2471. },
  2472. "hoverSprite": {
  2473. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2474. },
  2475. "_N$disabledSprite": {
  2476. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2477. },
  2478. "_N$target": {
  2479. "__id__": 64
  2480. },
  2481. "_id": "23KpmLoCFLk6+xVNCAxWpv"
  2482. },
  2483. {
  2484. "__type__": "cc.ClickEvent",
  2485. "target": {
  2486. "__id__": 1
  2487. },
  2488. "component": "StarHandbook",
  2489. "handler": "showDiscountGift",
  2490. "customEventData": "1"
  2491. },
  2492. {
  2493. "__type__": "cc.PrefabInfo",
  2494. "root": {
  2495. "__id__": 1
  2496. },
  2497. "asset": {
  2498. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  2499. },
  2500. "fileId": "fb6K4FamlN94uD9FbupPXV",
  2501. "sync": false
  2502. },
  2503. {
  2504. "__type__": "cc.Widget",
  2505. "_name": "",
  2506. "_objFlags": 0,
  2507. "node": {
  2508. "__id__": 38
  2509. },
  2510. "_enabled": true,
  2511. "alignMode": 1,
  2512. "_target": null,
  2513. "_alignFlags": 4,
  2514. "_left": 0,
  2515. "_right": 0,
  2516. "_top": 0,
  2517. "_bottom": 35,
  2518. "_verticalCenter": 0,
  2519. "_horizontalCenter": 0,
  2520. "_isAbsLeft": true,
  2521. "_isAbsRight": true,
  2522. "_isAbsTop": true,
  2523. "_isAbsBottom": true,
  2524. "_isAbsHorizontalCenter": true,
  2525. "_isAbsVerticalCenter": true,
  2526. "_originalWidth": 0,
  2527. "_originalHeight": 0,
  2528. "_id": "d2+bvyWjtPI7L4NYe/vqK1"
  2529. },
  2530. {
  2531. "__type__": "cc.PrefabInfo",
  2532. "root": {
  2533. "__id__": 1
  2534. },
  2535. "asset": {
  2536. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  2537. },
  2538. "fileId": "35BhEhyxBFT5NsYuo105Ee",
  2539. "sync": false
  2540. },
  2541. {
  2542. "__type__": "cc.Sprite",
  2543. "_name": "",
  2544. "_objFlags": 0,
  2545. "node": {
  2546. "__id__": 7
  2547. },
  2548. "_enabled": true,
  2549. "_srcBlendFactor": 770,
  2550. "_dstBlendFactor": 771,
  2551. "_spriteFrame": {
  2552. "__uuid__": "47ce8a87-06e6-4fa9-b7f8-bf15f9c21c54"
  2553. },
  2554. "_type": 1,
  2555. "_sizeMode": 0,
  2556. "_fillType": 0,
  2557. "_fillCenter": {
  2558. "__type__": "cc.Vec2",
  2559. "x": 0,
  2560. "y": 0
  2561. },
  2562. "_fillStart": 0,
  2563. "_fillRange": 0,
  2564. "_isTrimmedMode": true,
  2565. "_state": 0,
  2566. "_atlas": null,
  2567. "_id": "f1RssD9KhPD7IDFjnp6mWk"
  2568. },
  2569. {
  2570. "__type__": "cc.Widget",
  2571. "_name": "",
  2572. "_objFlags": 0,
  2573. "node": {
  2574. "__id__": 7
  2575. },
  2576. "_enabled": true,
  2577. "alignMode": 1,
  2578. "_target": null,
  2579. "_alignFlags": 45,
  2580. "_left": 0,
  2581. "_right": 0,
  2582. "_top": 0,
  2583. "_bottom": 0,
  2584. "_verticalCenter": 0,
  2585. "_horizontalCenter": 0,
  2586. "_isAbsLeft": true,
  2587. "_isAbsRight": true,
  2588. "_isAbsTop": true,
  2589. "_isAbsBottom": true,
  2590. "_isAbsHorizontalCenter": true,
  2591. "_isAbsVerticalCenter": true,
  2592. "_originalWidth": 700,
  2593. "_originalHeight": 1040,
  2594. "_id": "2fp0DyXEBN75dqSMIffUiv"
  2595. },
  2596. {
  2597. "__type__": "cc.PrefabInfo",
  2598. "root": {
  2599. "__id__": 1
  2600. },
  2601. "asset": {
  2602. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  2603. },
  2604. "fileId": "eb7Pg0FPNIJb6y4qutwSts",
  2605. "sync": false
  2606. },
  2607. {
  2608. "__type__": "cc.Node",
  2609. "_name": "top_color_bar",
  2610. "_objFlags": 0,
  2611. "_parent": {
  2612. "__id__": 6
  2613. },
  2614. "_children": [
  2615. {
  2616. "__id__": 78
  2617. }
  2618. ],
  2619. "_active": true,
  2620. "_level": 3,
  2621. "_components": [
  2622. {
  2623. "__id__": 82
  2624. },
  2625. {
  2626. "__id__": 83
  2627. }
  2628. ],
  2629. "_prefab": {
  2630. "__id__": 84
  2631. },
  2632. "_opacity": 255,
  2633. "_color": {
  2634. "__type__": "cc.Color",
  2635. "r": 255,
  2636. "g": 255,
  2637. "b": 255,
  2638. "a": 255
  2639. },
  2640. "_contentSize": {
  2641. "__type__": "cc.Size",
  2642. "width": 432,
  2643. "height": 96
  2644. },
  2645. "_anchorPoint": {
  2646. "__type__": "cc.Vec2",
  2647. "x": 0.5,
  2648. "y": 0.5
  2649. },
  2650. "_position": {
  2651. "__type__": "cc.Vec3",
  2652. "x": 0,
  2653. "y": 522,
  2654. "z": 0
  2655. },
  2656. "_scale": {
  2657. "__type__": "cc.Vec3",
  2658. "x": 1,
  2659. "y": 1,
  2660. "z": 1
  2661. },
  2662. "_rotationX": 0,
  2663. "_rotationY": 0,
  2664. "_quat": {
  2665. "__type__": "cc.Quat",
  2666. "x": 0,
  2667. "y": 0,
  2668. "z": 0,
  2669. "w": 1
  2670. },
  2671. "_skewX": 0,
  2672. "_skewY": 0,
  2673. "_zIndex": 0,
  2674. "groupIndex": 0,
  2675. "_id": ""
  2676. },
  2677. {
  2678. "__type__": "cc.Node",
  2679. "_name": "label",
  2680. "_objFlags": 0,
  2681. "_parent": {
  2682. "__id__": 77
  2683. },
  2684. "_children": [],
  2685. "_active": true,
  2686. "_level": 4,
  2687. "_components": [
  2688. {
  2689. "__id__": 79
  2690. },
  2691. {
  2692. "__id__": 80
  2693. }
  2694. ],
  2695. "_prefab": {
  2696. "__id__": 81
  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": 166,
  2709. "height": 44
  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": 12,
  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.Label",
  2745. "_name": "",
  2746. "_objFlags": 0,
  2747. "node": {
  2748. "__id__": 78
  2749. },
  2750. "_enabled": true,
  2751. "_srcBlendFactor": 1,
  2752. "_dstBlendFactor": 771,
  2753. "_useOriginalSize": false,
  2754. "_string": "明星图鉴",
  2755. "_N$string": "明星图鉴",
  2756. "_fontSize": 40,
  2757. "_lineHeight": 44,
  2758. "_enableWrapText": true,
  2759. "_N$file": null,
  2760. "_isSystemFontUsed": true,
  2761. "_spacingX": 0,
  2762. "_N$horizontalAlign": 1,
  2763. "_N$verticalAlign": 1,
  2764. "_N$fontFamily": "Arial",
  2765. "_N$overflow": 0,
  2766. "_id": "d9k8y2ZwVACJgXUiKP2vO9"
  2767. },
  2768. {
  2769. "__type__": "cc.LabelOutline",
  2770. "_name": "",
  2771. "_objFlags": 0,
  2772. "node": {
  2773. "__id__": 78
  2774. },
  2775. "_enabled": true,
  2776. "_color": {
  2777. "__type__": "cc.Color",
  2778. "r": 194,
  2779. "g": 83,
  2780. "b": 83,
  2781. "a": 255
  2782. },
  2783. "_width": 3,
  2784. "_id": "b3nLaWOdtJBLD8eboaq2hV"
  2785. },
  2786. {
  2787. "__type__": "cc.PrefabInfo",
  2788. "root": {
  2789. "__id__": 1
  2790. },
  2791. "asset": {
  2792. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  2793. },
  2794. "fileId": "23UqqgMf5A+In9200stOWg",
  2795. "sync": false
  2796. },
  2797. {
  2798. "__type__": "cc.Sprite",
  2799. "_name": "",
  2800. "_objFlags": 0,
  2801. "node": {
  2802. "__id__": 77
  2803. },
  2804. "_enabled": true,
  2805. "_srcBlendFactor": 770,
  2806. "_dstBlendFactor": 771,
  2807. "_spriteFrame": {
  2808. "__uuid__": "a813d5dc-f021-4f82-803c-a3701eaffc4e"
  2809. },
  2810. "_type": 0,
  2811. "_sizeMode": 1,
  2812. "_fillType": 0,
  2813. "_fillCenter": {
  2814. "__type__": "cc.Vec2",
  2815. "x": 0,
  2816. "y": 0
  2817. },
  2818. "_fillStart": 0,
  2819. "_fillRange": 0,
  2820. "_isTrimmedMode": true,
  2821. "_state": 0,
  2822. "_atlas": null,
  2823. "_id": "7eoJFIV2VLwb3dFo9nV7y8"
  2824. },
  2825. {
  2826. "__type__": "cc.Widget",
  2827. "_name": "",
  2828. "_objFlags": 0,
  2829. "node": {
  2830. "__id__": 77
  2831. },
  2832. "_enabled": true,
  2833. "alignMode": 1,
  2834. "_target": null,
  2835. "_alignFlags": 1,
  2836. "_left": 0,
  2837. "_right": 0,
  2838. "_top": -50,
  2839. "_bottom": 0,
  2840. "_verticalCenter": 0,
  2841. "_horizontalCenter": 0,
  2842. "_isAbsLeft": true,
  2843. "_isAbsRight": true,
  2844. "_isAbsTop": true,
  2845. "_isAbsBottom": true,
  2846. "_isAbsHorizontalCenter": true,
  2847. "_isAbsVerticalCenter": true,
  2848. "_originalWidth": 0,
  2849. "_originalHeight": 0,
  2850. "_id": "d8FWVx1ItKLJZbEAvuG+IU"
  2851. },
  2852. {
  2853. "__type__": "cc.PrefabInfo",
  2854. "root": {
  2855. "__id__": 1
  2856. },
  2857. "asset": {
  2858. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  2859. },
  2860. "fileId": "85LkNblUZE94ZvtMAyEbHB",
  2861. "sync": false
  2862. },
  2863. {
  2864. "__type__": "cc.Node",
  2865. "_name": "button",
  2866. "_objFlags": 0,
  2867. "_parent": {
  2868. "__id__": 6
  2869. },
  2870. "_children": [],
  2871. "_active": true,
  2872. "_level": 3,
  2873. "_components": [
  2874. {
  2875. "__id__": 86
  2876. },
  2877. {
  2878. "__id__": 87
  2879. },
  2880. {
  2881. "__id__": 89
  2882. }
  2883. ],
  2884. "_prefab": {
  2885. "__id__": 90
  2886. },
  2887. "_opacity": 255,
  2888. "_color": {
  2889. "__type__": "cc.Color",
  2890. "r": 255,
  2891. "g": 255,
  2892. "b": 255,
  2893. "a": 255
  2894. },
  2895. "_contentSize": {
  2896. "__type__": "cc.Size",
  2897. "width": 70,
  2898. "height": 72
  2899. },
  2900. "_anchorPoint": {
  2901. "__type__": "cc.Vec2",
  2902. "x": 0.5,
  2903. "y": 0.5
  2904. },
  2905. "_position": {
  2906. "__type__": "cc.Vec3",
  2907. "x": 330,
  2908. "y": 494,
  2909. "z": 0
  2910. },
  2911. "_scale": {
  2912. "__type__": "cc.Vec3",
  2913. "x": 1,
  2914. "y": 1,
  2915. "z": 1
  2916. },
  2917. "_rotationX": 0,
  2918. "_rotationY": 0,
  2919. "_quat": {
  2920. "__type__": "cc.Quat",
  2921. "x": 0,
  2922. "y": 0,
  2923. "z": 0,
  2924. "w": 1
  2925. },
  2926. "_skewX": 0,
  2927. "_skewY": 0,
  2928. "_zIndex": 0,
  2929. "groupIndex": 0,
  2930. "_id": ""
  2931. },
  2932. {
  2933. "__type__": "cc.Sprite",
  2934. "_name": "",
  2935. "_objFlags": 0,
  2936. "node": {
  2937. "__id__": 85
  2938. },
  2939. "_enabled": true,
  2940. "_srcBlendFactor": 770,
  2941. "_dstBlendFactor": 771,
  2942. "_spriteFrame": {
  2943. "__uuid__": "5e4122b9-5634-44c1-af70-c2aae5fab4eb"
  2944. },
  2945. "_type": 0,
  2946. "_sizeMode": 0,
  2947. "_fillType": 0,
  2948. "_fillCenter": {
  2949. "__type__": "cc.Vec2",
  2950. "x": 0,
  2951. "y": 0
  2952. },
  2953. "_fillStart": 0,
  2954. "_fillRange": 0,
  2955. "_isTrimmedMode": true,
  2956. "_state": 0,
  2957. "_atlas": null,
  2958. "_id": "dcMMqb+mJEfI7ams5YjuHC"
  2959. },
  2960. {
  2961. "__type__": "cc.Button",
  2962. "_name": "",
  2963. "_objFlags": 0,
  2964. "node": {
  2965. "__id__": 85
  2966. },
  2967. "_enabled": true,
  2968. "transition": 1,
  2969. "pressedColor": {
  2970. "__type__": "cc.Color",
  2971. "r": 120,
  2972. "g": 120,
  2973. "b": 120,
  2974. "a": 255
  2975. },
  2976. "hoverColor": {
  2977. "__type__": "cc.Color",
  2978. "r": 255,
  2979. "g": 255,
  2980. "b": 255,
  2981. "a": 255
  2982. },
  2983. "duration": 0.1,
  2984. "zoomScale": 1.2,
  2985. "clickEvents": [
  2986. {
  2987. "__id__": 88
  2988. }
  2989. ],
  2990. "_N$interactable": true,
  2991. "_N$enableAutoGrayEffect": false,
  2992. "_N$normalColor": {
  2993. "__type__": "cc.Color",
  2994. "r": 255,
  2995. "g": 255,
  2996. "b": 255,
  2997. "a": 255
  2998. },
  2999. "_N$disabledColor": {
  3000. "__type__": "cc.Color",
  3001. "r": 255,
  3002. "g": 255,
  3003. "b": 255,
  3004. "a": 255
  3005. },
  3006. "_N$normalSprite": {
  3007. "__uuid__": "5e4122b9-5634-44c1-af70-c2aae5fab4eb"
  3008. },
  3009. "_N$pressedSprite": {
  3010. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3011. },
  3012. "pressedSprite": {
  3013. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3014. },
  3015. "_N$hoverSprite": {
  3016. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3017. },
  3018. "hoverSprite": {
  3019. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3020. },
  3021. "_N$disabledSprite": {
  3022. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3023. },
  3024. "_N$target": {
  3025. "__id__": 85
  3026. },
  3027. "_id": "11V7zeUkJBfqjl1EycmhUS"
  3028. },
  3029. {
  3030. "__type__": "cc.ClickEvent",
  3031. "target": {
  3032. "__id__": 1
  3033. },
  3034. "component": "StarHandbook",
  3035. "handler": "closeView",
  3036. "customEventData": ""
  3037. },
  3038. {
  3039. "__type__": "cc.Widget",
  3040. "_name": "",
  3041. "_objFlags": 0,
  3042. "node": {
  3043. "__id__": 85
  3044. },
  3045. "_enabled": true,
  3046. "alignMode": 1,
  3047. "_target": null,
  3048. "_alignFlags": 33,
  3049. "_left": 0,
  3050. "_right": -15,
  3051. "_top": -10,
  3052. "_bottom": 0,
  3053. "_verticalCenter": 0,
  3054. "_horizontalCenter": 0,
  3055. "_isAbsLeft": true,
  3056. "_isAbsRight": true,
  3057. "_isAbsTop": true,
  3058. "_isAbsBottom": true,
  3059. "_isAbsHorizontalCenter": true,
  3060. "_isAbsVerticalCenter": true,
  3061. "_originalWidth": 0,
  3062. "_originalHeight": 0,
  3063. "_id": "59WIWyV+1PfZZM4uWtszoL"
  3064. },
  3065. {
  3066. "__type__": "cc.PrefabInfo",
  3067. "root": {
  3068. "__id__": 1
  3069. },
  3070. "asset": {
  3071. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  3072. },
  3073. "fileId": "74bo4p3uFC8onvoxSoUAFL",
  3074. "sync": false
  3075. },
  3076. {
  3077. "__type__": "cc.PrefabInfo",
  3078. "root": {
  3079. "__id__": 1
  3080. },
  3081. "asset": {
  3082. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  3083. },
  3084. "fileId": "00djID6/NAu69D94ld5uiY",
  3085. "sync": false
  3086. },
  3087. {
  3088. "__type__": "cc.Node",
  3089. "_name": "descNode",
  3090. "_objFlags": 0,
  3091. "_parent": {
  3092. "__id__": 1
  3093. },
  3094. "_children": [
  3095. {
  3096. "__id__": 93
  3097. },
  3098. {
  3099. "__id__": 97
  3100. },
  3101. {
  3102. "__id__": 164
  3103. }
  3104. ],
  3105. "_active": false,
  3106. "_level": 2,
  3107. "_components": [
  3108. {
  3109. "__id__": 169
  3110. }
  3111. ],
  3112. "_prefab": {
  3113. "__id__": 170
  3114. },
  3115. "_opacity": 255,
  3116. "_color": {
  3117. "__type__": "cc.Color",
  3118. "r": 255,
  3119. "g": 255,
  3120. "b": 255,
  3121. "a": 255
  3122. },
  3123. "_contentSize": {
  3124. "__type__": "cc.Size",
  3125. "width": 0,
  3126. "height": 0
  3127. },
  3128. "_anchorPoint": {
  3129. "__type__": "cc.Vec2",
  3130. "x": 0.5,
  3131. "y": 0.5
  3132. },
  3133. "_position": {
  3134. "__type__": "cc.Vec3",
  3135. "x": 0,
  3136. "y": 0,
  3137. "z": 0
  3138. },
  3139. "_scale": {
  3140. "__type__": "cc.Vec3",
  3141. "x": 1,
  3142. "y": 1,
  3143. "z": 1
  3144. },
  3145. "_rotationX": 0,
  3146. "_rotationY": 0,
  3147. "_quat": {
  3148. "__type__": "cc.Quat",
  3149. "x": 0,
  3150. "y": 0,
  3151. "z": 0,
  3152. "w": 1
  3153. },
  3154. "_skewX": 0,
  3155. "_skewY": 0,
  3156. "_zIndex": 0,
  3157. "groupIndex": 0,
  3158. "_id": ""
  3159. },
  3160. {
  3161. "__type__": "cc.Node",
  3162. "_name": "maskBg",
  3163. "_objFlags": 0,
  3164. "_parent": {
  3165. "__id__": 92
  3166. },
  3167. "_children": [],
  3168. "_active": true,
  3169. "_level": 3,
  3170. "_components": [
  3171. {
  3172. "__id__": 94
  3173. },
  3174. {
  3175. "__id__": 95
  3176. }
  3177. ],
  3178. "_prefab": {
  3179. "__id__": 96
  3180. },
  3181. "_opacity": 153,
  3182. "_color": {
  3183. "__type__": "cc.Color",
  3184. "r": 0,
  3185. "g": 0,
  3186. "b": 0,
  3187. "a": 255
  3188. },
  3189. "_contentSize": {
  3190. "__type__": "cc.Size",
  3191. "width": 750,
  3192. "height": 2000
  3193. },
  3194. "_anchorPoint": {
  3195. "__type__": "cc.Vec2",
  3196. "x": 0.5,
  3197. "y": 0.5
  3198. },
  3199. "_position": {
  3200. "__type__": "cc.Vec3",
  3201. "x": 0,
  3202. "y": 0,
  3203. "z": 0
  3204. },
  3205. "_scale": {
  3206. "__type__": "cc.Vec3",
  3207. "x": 1,
  3208. "y": 1,
  3209. "z": 1
  3210. },
  3211. "_rotationX": 0,
  3212. "_rotationY": 0,
  3213. "_quat": {
  3214. "__type__": "cc.Quat",
  3215. "x": 0,
  3216. "y": 0,
  3217. "z": 0,
  3218. "w": 1
  3219. },
  3220. "_skewX": 0,
  3221. "_skewY": 0,
  3222. "_zIndex": 0,
  3223. "groupIndex": 0,
  3224. "_id": ""
  3225. },
  3226. {
  3227. "__type__": "cc.Sprite",
  3228. "_name": "",
  3229. "_objFlags": 0,
  3230. "node": {
  3231. "__id__": 93
  3232. },
  3233. "_enabled": true,
  3234. "_srcBlendFactor": 770,
  3235. "_dstBlendFactor": 771,
  3236. "_spriteFrame": {
  3237. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  3238. },
  3239. "_type": 0,
  3240. "_sizeMode": 0,
  3241. "_fillType": 0,
  3242. "_fillCenter": {
  3243. "__type__": "cc.Vec2",
  3244. "x": 0,
  3245. "y": 0
  3246. },
  3247. "_fillStart": 0,
  3248. "_fillRange": 0,
  3249. "_isTrimmedMode": true,
  3250. "_state": 0,
  3251. "_atlas": null,
  3252. "_id": "d6BhPDKh5FJom1mYAM7IhP"
  3253. },
  3254. {
  3255. "__type__": "cc.BlockInputEvents",
  3256. "_name": "",
  3257. "_objFlags": 0,
  3258. "node": {
  3259. "__id__": 93
  3260. },
  3261. "_enabled": true,
  3262. "_id": "b674Z2ZHxMlZYISVdb2oXK"
  3263. },
  3264. {
  3265. "__type__": "cc.PrefabInfo",
  3266. "root": {
  3267. "__id__": 1
  3268. },
  3269. "asset": {
  3270. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  3271. },
  3272. "fileId": "22BL9qoONO/KD+03FQL0em",
  3273. "sync": false
  3274. },
  3275. {
  3276. "__type__": "cc.Node",
  3277. "_name": "content",
  3278. "_objFlags": 0,
  3279. "_parent": {
  3280. "__id__": 92
  3281. },
  3282. "_children": [
  3283. {
  3284. "__id__": 98
  3285. },
  3286. {
  3287. "__id__": 102
  3288. },
  3289. {
  3290. "__id__": 106
  3291. },
  3292. {
  3293. "__id__": 110
  3294. },
  3295. {
  3296. "__id__": 150
  3297. },
  3298. {
  3299. "__id__": 156
  3300. }
  3301. ],
  3302. "_active": true,
  3303. "_level": 3,
  3304. "_components": [
  3305. {
  3306. "__id__": 162
  3307. }
  3308. ],
  3309. "_prefab": {
  3310. "__id__": 163
  3311. },
  3312. "_opacity": 255,
  3313. "_color": {
  3314. "__type__": "cc.Color",
  3315. "r": 255,
  3316. "g": 255,
  3317. "b": 255,
  3318. "a": 255
  3319. },
  3320. "_contentSize": {
  3321. "__type__": "cc.Size",
  3322. "width": 470,
  3323. "height": 700
  3324. },
  3325. "_anchorPoint": {
  3326. "__type__": "cc.Vec2",
  3327. "x": 0.5,
  3328. "y": 0.5
  3329. },
  3330. "_position": {
  3331. "__type__": "cc.Vec3",
  3332. "x": 0,
  3333. "y": 0,
  3334. "z": 0
  3335. },
  3336. "_scale": {
  3337. "__type__": "cc.Vec3",
  3338. "x": 1,
  3339. "y": 1,
  3340. "z": 1
  3341. },
  3342. "_rotationX": 0,
  3343. "_rotationY": 0,
  3344. "_quat": {
  3345. "__type__": "cc.Quat",
  3346. "x": 0,
  3347. "y": 0,
  3348. "z": 0,
  3349. "w": 1
  3350. },
  3351. "_skewX": 0,
  3352. "_skewY": 0,
  3353. "_zIndex": 0,
  3354. "groupIndex": 0,
  3355. "_id": ""
  3356. },
  3357. {
  3358. "__type__": "cc.Node",
  3359. "_name": "nameLabel",
  3360. "_objFlags": 0,
  3361. "_parent": {
  3362. "__id__": 97
  3363. },
  3364. "_children": [],
  3365. "_active": true,
  3366. "_level": 4,
  3367. "_components": [
  3368. {
  3369. "__id__": 99
  3370. },
  3371. {
  3372. "__id__": 100
  3373. }
  3374. ],
  3375. "_prefab": {
  3376. "__id__": 101
  3377. },
  3378. "_opacity": 255,
  3379. "_color": {
  3380. "__type__": "cc.Color",
  3381. "r": 1,
  3382. "g": 1,
  3383. "b": 1,
  3384. "a": 255
  3385. },
  3386. "_contentSize": {
  3387. "__type__": "cc.Size",
  3388. "width": 72,
  3389. "height": 24
  3390. },
  3391. "_anchorPoint": {
  3392. "__type__": "cc.Vec2",
  3393. "x": 0.5,
  3394. "y": 1
  3395. },
  3396. "_position": {
  3397. "__type__": "cc.Vec3",
  3398. "x": 0,
  3399. "y": 310,
  3400. "z": 0
  3401. },
  3402. "_scale": {
  3403. "__type__": "cc.Vec3",
  3404. "x": 1,
  3405. "y": 1,
  3406. "z": 1
  3407. },
  3408. "_rotationX": 0,
  3409. "_rotationY": 0,
  3410. "_quat": {
  3411. "__type__": "cc.Quat",
  3412. "x": 0,
  3413. "y": 0,
  3414. "z": 0,
  3415. "w": 1
  3416. },
  3417. "_skewX": 0,
  3418. "_skewY": 0,
  3419. "_zIndex": 0,
  3420. "groupIndex": 0,
  3421. "_id": ""
  3422. },
  3423. {
  3424. "__type__": "cc.Label",
  3425. "_name": "",
  3426. "_objFlags": 0,
  3427. "node": {
  3428. "__id__": 98
  3429. },
  3430. "_enabled": true,
  3431. "_srcBlendFactor": 1,
  3432. "_dstBlendFactor": 771,
  3433. "_useOriginalSize": false,
  3434. "_string": "吴亦烦",
  3435. "_N$string": "吴亦烦",
  3436. "_fontSize": 24,
  3437. "_lineHeight": 24,
  3438. "_enableWrapText": true,
  3439. "_N$file": null,
  3440. "_isSystemFontUsed": true,
  3441. "_spacingX": 0,
  3442. "_N$horizontalAlign": 1,
  3443. "_N$verticalAlign": 1,
  3444. "_N$fontFamily": "Arial",
  3445. "_N$overflow": 0,
  3446. "_id": "cfJw740g5LA5QYf/lneKQR"
  3447. },
  3448. {
  3449. "__type__": "cc.Widget",
  3450. "_name": "",
  3451. "_objFlags": 0,
  3452. "node": {
  3453. "__id__": 98
  3454. },
  3455. "_enabled": true,
  3456. "alignMode": 1,
  3457. "_target": null,
  3458. "_alignFlags": 1,
  3459. "_left": 0,
  3460. "_right": 0,
  3461. "_top": 40,
  3462. "_bottom": 0,
  3463. "_verticalCenter": 0,
  3464. "_horizontalCenter": 0,
  3465. "_isAbsLeft": true,
  3466. "_isAbsRight": true,
  3467. "_isAbsTop": true,
  3468. "_isAbsBottom": true,
  3469. "_isAbsHorizontalCenter": true,
  3470. "_isAbsVerticalCenter": true,
  3471. "_originalWidth": 0,
  3472. "_originalHeight": 0,
  3473. "_id": "d4N9c2TKNGpKNrB8bigoZX"
  3474. },
  3475. {
  3476. "__type__": "cc.PrefabInfo",
  3477. "root": {
  3478. "__id__": 1
  3479. },
  3480. "asset": {
  3481. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  3482. },
  3483. "fileId": "0fhZpCP4NPl6BNoZ0D1MQ7",
  3484. "sync": false
  3485. },
  3486. {
  3487. "__type__": "cc.Node",
  3488. "_name": "conditionLabel",
  3489. "_objFlags": 0,
  3490. "_parent": {
  3491. "__id__": 97
  3492. },
  3493. "_children": [],
  3494. "_active": true,
  3495. "_level": 4,
  3496. "_components": [
  3497. {
  3498. "__id__": 103
  3499. },
  3500. {
  3501. "__id__": 104
  3502. }
  3503. ],
  3504. "_prefab": {
  3505. "__id__": 105
  3506. },
  3507. "_opacity": 255,
  3508. "_color": {
  3509. "__type__": "cc.Color",
  3510. "r": 96,
  3511. "g": 96,
  3512. "b": 96,
  3513. "a": 255
  3514. },
  3515. "_contentSize": {
  3516. "__type__": "cc.Size",
  3517. "width": 400,
  3518. "height": 26
  3519. },
  3520. "_anchorPoint": {
  3521. "__type__": "cc.Vec2",
  3522. "x": 0.5,
  3523. "y": 1
  3524. },
  3525. "_position": {
  3526. "__type__": "cc.Vec3",
  3527. "x": 0,
  3528. "y": 275,
  3529. "z": 0
  3530. },
  3531. "_scale": {
  3532. "__type__": "cc.Vec3",
  3533. "x": 1,
  3534. "y": 1,
  3535. "z": 1
  3536. },
  3537. "_rotationX": 0,
  3538. "_rotationY": 0,
  3539. "_quat": {
  3540. "__type__": "cc.Quat",
  3541. "x": 0,
  3542. "y": 0,
  3543. "z": 0,
  3544. "w": 1
  3545. },
  3546. "_skewX": 0,
  3547. "_skewY": 0,
  3548. "_zIndex": 0,
  3549. "groupIndex": 0,
  3550. "_id": ""
  3551. },
  3552. {
  3553. "__type__": "cc.Label",
  3554. "_name": "",
  3555. "_objFlags": 0,
  3556. "node": {
  3557. "__id__": 102
  3558. },
  3559. "_enabled": true,
  3560. "_srcBlendFactor": 1,
  3561. "_dstBlendFactor": 771,
  3562. "_useOriginalSize": false,
  3563. "_string": "需要开启嘻哈歌房",
  3564. "_N$string": "需要开启嘻哈歌房",
  3565. "_fontSize": 22,
  3566. "_lineHeight": 26,
  3567. "_enableWrapText": true,
  3568. "_N$file": null,
  3569. "_isSystemFontUsed": true,
  3570. "_spacingX": 0,
  3571. "_N$horizontalAlign": 1,
  3572. "_N$verticalAlign": 1,
  3573. "_N$fontFamily": "Arial",
  3574. "_N$overflow": 3,
  3575. "_id": "72+a6OvtBM8bZYj+ELN529"
  3576. },
  3577. {
  3578. "__type__": "cc.Widget",
  3579. "_name": "",
  3580. "_objFlags": 0,
  3581. "node": {
  3582. "__id__": 102
  3583. },
  3584. "_enabled": true,
  3585. "alignMode": 1,
  3586. "_target": null,
  3587. "_alignFlags": 1,
  3588. "_left": 0,
  3589. "_right": 0,
  3590. "_top": 75,
  3591. "_bottom": 0,
  3592. "_verticalCenter": 0,
  3593. "_horizontalCenter": 0,
  3594. "_isAbsLeft": true,
  3595. "_isAbsRight": true,
  3596. "_isAbsTop": true,
  3597. "_isAbsBottom": true,
  3598. "_isAbsHorizontalCenter": true,
  3599. "_isAbsVerticalCenter": true,
  3600. "_originalWidth": 0,
  3601. "_originalHeight": 0,
  3602. "_id": "50QaxytU9HfIhnI0nk5Dh3"
  3603. },
  3604. {
  3605. "__type__": "cc.PrefabInfo",
  3606. "root": {
  3607. "__id__": 1
  3608. },
  3609. "asset": {
  3610. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  3611. },
  3612. "fileId": "ac44VkQYpLrrBYsy32PsQC",
  3613. "sync": false
  3614. },
  3615. {
  3616. "__type__": "cc.Node",
  3617. "_name": "starFigure",
  3618. "_objFlags": 0,
  3619. "_parent": {
  3620. "__id__": 97
  3621. },
  3622. "_children": [],
  3623. "_active": true,
  3624. "_level": 4,
  3625. "_components": [
  3626. {
  3627. "__id__": 107
  3628. },
  3629. {
  3630. "__id__": 108
  3631. }
  3632. ],
  3633. "_prefab": {
  3634. "__id__": 109
  3635. },
  3636. "_opacity": 255,
  3637. "_color": {
  3638. "__type__": "cc.Color",
  3639. "r": 255,
  3640. "g": 255,
  3641. "b": 255,
  3642. "a": 255
  3643. },
  3644. "_contentSize": {
  3645. "__type__": "cc.Size",
  3646. "width": 236,
  3647. "height": 352
  3648. },
  3649. "_anchorPoint": {
  3650. "__type__": "cc.Vec2",
  3651. "x": 0.5,
  3652. "y": 0.5
  3653. },
  3654. "_position": {
  3655. "__type__": "cc.Vec3",
  3656. "x": 0,
  3657. "y": 26,
  3658. "z": 0
  3659. },
  3660. "_scale": {
  3661. "__type__": "cc.Vec3",
  3662. "x": 1,
  3663. "y": 1,
  3664. "z": 1
  3665. },
  3666. "_rotationX": 0,
  3667. "_rotationY": 0,
  3668. "_quat": {
  3669. "__type__": "cc.Quat",
  3670. "x": 0,
  3671. "y": 0,
  3672. "z": 0,
  3673. "w": 1
  3674. },
  3675. "_skewX": 0,
  3676. "_skewY": 0,
  3677. "_zIndex": 0,
  3678. "groupIndex": 0,
  3679. "_id": ""
  3680. },
  3681. {
  3682. "__type__": "cc.Sprite",
  3683. "_name": "",
  3684. "_objFlags": 0,
  3685. "node": {
  3686. "__id__": 106
  3687. },
  3688. "_enabled": true,
  3689. "_srcBlendFactor": 770,
  3690. "_dstBlendFactor": 771,
  3691. "_spriteFrame": null,
  3692. "_type": 0,
  3693. "_sizeMode": 0,
  3694. "_fillType": 0,
  3695. "_fillCenter": {
  3696. "__type__": "cc.Vec2",
  3697. "x": 0,
  3698. "y": 0
  3699. },
  3700. "_fillStart": 0,
  3701. "_fillRange": 0,
  3702. "_isTrimmedMode": false,
  3703. "_state": 0,
  3704. "_atlas": null,
  3705. "_id": "6aXjLJpDhEvrBsCSI7fF0o"
  3706. },
  3707. {
  3708. "__type__": "cc.Widget",
  3709. "_name": "",
  3710. "_objFlags": 0,
  3711. "node": {
  3712. "__id__": 106
  3713. },
  3714. "_enabled": true,
  3715. "alignMode": 2,
  3716. "_target": null,
  3717. "_alignFlags": 20,
  3718. "_left": 0,
  3719. "_right": 0,
  3720. "_top": 0,
  3721. "_bottom": 200,
  3722. "_verticalCenter": 0,
  3723. "_horizontalCenter": 0,
  3724. "_isAbsLeft": true,
  3725. "_isAbsRight": true,
  3726. "_isAbsTop": true,
  3727. "_isAbsBottom": true,
  3728. "_isAbsHorizontalCenter": true,
  3729. "_isAbsVerticalCenter": true,
  3730. "_originalWidth": 0,
  3731. "_originalHeight": 0,
  3732. "_id": "f4niatqj9Mm6LmD36C0smI"
  3733. },
  3734. {
  3735. "__type__": "cc.PrefabInfo",
  3736. "root": {
  3737. "__id__": 1
  3738. },
  3739. "asset": {
  3740. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  3741. },
  3742. "fileId": "e4rNktCzJIZoPEtt0Njf+t",
  3743. "sync": false
  3744. },
  3745. {
  3746. "__type__": "cc.Node",
  3747. "_name": "layout",
  3748. "_objFlags": 0,
  3749. "_parent": {
  3750. "__id__": 97
  3751. },
  3752. "_children": [
  3753. {
  3754. "__id__": 111
  3755. },
  3756. {
  3757. "__id__": 122
  3758. },
  3759. {
  3760. "__id__": 135
  3761. }
  3762. ],
  3763. "_active": true,
  3764. "_level": 4,
  3765. "_components": [
  3766. {
  3767. "__id__": 148
  3768. }
  3769. ],
  3770. "_prefab": {
  3771. "__id__": 149
  3772. },
  3773. "_opacity": 255,
  3774. "_color": {
  3775. "__type__": "cc.Color",
  3776. "r": 255,
  3777. "g": 255,
  3778. "b": 255,
  3779. "a": 255
  3780. },
  3781. "_contentSize": {
  3782. "__type__": "cc.Size",
  3783. "width": 200,
  3784. "height": 148
  3785. },
  3786. "_anchorPoint": {
  3787. "__type__": "cc.Vec2",
  3788. "x": 0.5,
  3789. "y": 1
  3790. },
  3791. "_position": {
  3792. "__type__": "cc.Vec3",
  3793. "x": 0,
  3794. "y": -165,
  3795. "z": 0
  3796. },
  3797. "_scale": {
  3798. "__type__": "cc.Vec3",
  3799. "x": 1,
  3800. "y": 1,
  3801. "z": 1
  3802. },
  3803. "_rotationX": 0,
  3804. "_rotationY": 0,
  3805. "_quat": {
  3806. "__type__": "cc.Quat",
  3807. "x": 0,
  3808. "y": 0,
  3809. "z": 0,
  3810. "w": 1
  3811. },
  3812. "_skewX": 0,
  3813. "_skewY": 0,
  3814. "_zIndex": 0,
  3815. "groupIndex": 0,
  3816. "_id": ""
  3817. },
  3818. {
  3819. "__type__": "cc.Node",
  3820. "_name": "sprite_splash",
  3821. "_objFlags": 0,
  3822. "_parent": {
  3823. "__id__": 110
  3824. },
  3825. "_children": [
  3826. {
  3827. "__id__": 112
  3828. },
  3829. {
  3830. "__id__": 116
  3831. }
  3832. ],
  3833. "_active": true,
  3834. "_level": 5,
  3835. "_components": [
  3836. {
  3837. "__id__": 120
  3838. }
  3839. ],
  3840. "_prefab": {
  3841. "__id__": 121
  3842. },
  3843. "_opacity": 255,
  3844. "_color": {
  3845. "__type__": "cc.Color",
  3846. "r": 255,
  3847. "g": 255,
  3848. "b": 255,
  3849. "a": 255
  3850. },
  3851. "_contentSize": {
  3852. "__type__": "cc.Size",
  3853. "width": 200,
  3854. "height": 40
  3855. },
  3856. "_anchorPoint": {
  3857. "__type__": "cc.Vec2",
  3858. "x": 0.5,
  3859. "y": 0.5
  3860. },
  3861. "_position": {
  3862. "__type__": "cc.Vec3",
  3863. "x": 0,
  3864. "y": -20,
  3865. "z": 0
  3866. },
  3867. "_scale": {
  3868. "__type__": "cc.Vec3",
  3869. "x": 1,
  3870. "y": 1,
  3871. "z": 1
  3872. },
  3873. "_rotationX": 0,
  3874. "_rotationY": 0,
  3875. "_quat": {
  3876. "__type__": "cc.Quat",
  3877. "x": 0,
  3878. "y": 0,
  3879. "z": 0,
  3880. "w": 1
  3881. },
  3882. "_skewX": 0,
  3883. "_skewY": 0,
  3884. "_zIndex": 0,
  3885. "groupIndex": 0,
  3886. "_id": ""
  3887. },
  3888. {
  3889. "__type__": "cc.Node",
  3890. "_name": "label",
  3891. "_objFlags": 0,
  3892. "_parent": {
  3893. "__id__": 111
  3894. },
  3895. "_children": [],
  3896. "_active": true,
  3897. "_level": 5,
  3898. "_components": [
  3899. {
  3900. "__id__": 113
  3901. },
  3902. {
  3903. "__id__": 114
  3904. }
  3905. ],
  3906. "_prefab": {
  3907. "__id__": 115
  3908. },
  3909. "_opacity": 255,
  3910. "_color": {
  3911. "__type__": "cc.Color",
  3912. "r": 69,
  3913. "g": 46,
  3914. "b": 7,
  3915. "a": 255
  3916. },
  3917. "_contentSize": {
  3918. "__type__": "cc.Size",
  3919. "width": 80,
  3920. "height": 20
  3921. },
  3922. "_anchorPoint": {
  3923. "__type__": "cc.Vec2",
  3924. "x": 0,
  3925. "y": 0.5
  3926. },
  3927. "_position": {
  3928. "__type__": "cc.Vec3",
  3929. "x": -90,
  3930. "y": 0,
  3931. "z": 0
  3932. },
  3933. "_scale": {
  3934. "__type__": "cc.Vec3",
  3935. "x": 1,
  3936. "y": 1,
  3937. "z": 1
  3938. },
  3939. "_rotationX": 0,
  3940. "_rotationY": 0,
  3941. "_quat": {
  3942. "__type__": "cc.Quat",
  3943. "x": 0,
  3944. "y": 0,
  3945. "z": 0,
  3946. "w": 1
  3947. },
  3948. "_skewX": 0,
  3949. "_skewY": 0,
  3950. "_zIndex": 0,
  3951. "groupIndex": 0,
  3952. "_id": ""
  3953. },
  3954. {
  3955. "__type__": "cc.Label",
  3956. "_name": "",
  3957. "_objFlags": 0,
  3958. "node": {
  3959. "__id__": 112
  3960. },
  3961. "_enabled": true,
  3962. "_srcBlendFactor": 1,
  3963. "_dstBlendFactor": 771,
  3964. "_useOriginalSize": false,
  3965. "_string": "合计拥有",
  3966. "_N$string": "合计拥有",
  3967. "_fontSize": 20,
  3968. "_lineHeight": 20,
  3969. "_enableWrapText": true,
  3970. "_N$file": null,
  3971. "_isSystemFontUsed": true,
  3972. "_spacingX": 0,
  3973. "_N$horizontalAlign": 0,
  3974. "_N$verticalAlign": 1,
  3975. "_N$fontFamily": "Arial",
  3976. "_N$overflow": 0,
  3977. "_id": "b5e9q6vMVMfJCDG/oqgwHd"
  3978. },
  3979. {
  3980. "__type__": "cc.Widget",
  3981. "_name": "",
  3982. "_objFlags": 0,
  3983. "node": {
  3984. "__id__": 112
  3985. },
  3986. "_enabled": true,
  3987. "alignMode": 1,
  3988. "_target": null,
  3989. "_alignFlags": 10,
  3990. "_left": 10,
  3991. "_right": 0,
  3992. "_top": 0,
  3993. "_bottom": 0,
  3994. "_verticalCenter": 0,
  3995. "_horizontalCenter": 0,
  3996. "_isAbsLeft": true,
  3997. "_isAbsRight": true,
  3998. "_isAbsTop": true,
  3999. "_isAbsBottom": true,
  4000. "_isAbsHorizontalCenter": true,
  4001. "_isAbsVerticalCenter": true,
  4002. "_originalWidth": 0,
  4003. "_originalHeight": 0,
  4004. "_id": "39gqVDpGBFv6hXZGX/FS9Z"
  4005. },
  4006. {
  4007. "__type__": "cc.PrefabInfo",
  4008. "root": {
  4009. "__id__": 1
  4010. },
  4011. "asset": {
  4012. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  4013. },
  4014. "fileId": "803ixCya9B36biPy16D8Xw",
  4015. "sync": false
  4016. },
  4017. {
  4018. "__type__": "cc.Node",
  4019. "_name": "countLabel",
  4020. "_objFlags": 0,
  4021. "_parent": {
  4022. "__id__": 111
  4023. },
  4024. "_children": [],
  4025. "_active": true,
  4026. "_level": 5,
  4027. "_components": [
  4028. {
  4029. "__id__": 117
  4030. },
  4031. {
  4032. "__id__": 118
  4033. }
  4034. ],
  4035. "_prefab": {
  4036. "__id__": 119
  4037. },
  4038. "_opacity": 255,
  4039. "_color": {
  4040. "__type__": "cc.Color",
  4041. "r": 222,
  4042. "g": 84,
  4043. "b": 0,
  4044. "a": 255
  4045. },
  4046. "_contentSize": {
  4047. "__type__": "cc.Size",
  4048. "width": 34.24,
  4049. "height": 22
  4050. },
  4051. "_anchorPoint": {
  4052. "__type__": "cc.Vec2",
  4053. "x": 1,
  4054. "y": 0.5
  4055. },
  4056. "_position": {
  4057. "__type__": "cc.Vec3",
  4058. "x": 90,
  4059. "y": 0,
  4060. "z": 0
  4061. },
  4062. "_scale": {
  4063. "__type__": "cc.Vec3",
  4064. "x": 1,
  4065. "y": 1,
  4066. "z": 1
  4067. },
  4068. "_rotationX": 0,
  4069. "_rotationY": 0,
  4070. "_quat": {
  4071. "__type__": "cc.Quat",
  4072. "x": 0,
  4073. "y": 0,
  4074. "z": 0,
  4075. "w": 1
  4076. },
  4077. "_skewX": 0,
  4078. "_skewY": 0,
  4079. "_zIndex": 0,
  4080. "groupIndex": 0,
  4081. "_id": ""
  4082. },
  4083. {
  4084. "__type__": "cc.Label",
  4085. "_name": "",
  4086. "_objFlags": 0,
  4087. "node": {
  4088. "__id__": 116
  4089. },
  4090. "_enabled": true,
  4091. "_srcBlendFactor": 1,
  4092. "_dstBlendFactor": 771,
  4093. "_useOriginalSize": false,
  4094. "_string": "0人",
  4095. "_N$string": "0人",
  4096. "_fontSize": 22,
  4097. "_lineHeight": 22,
  4098. "_enableWrapText": false,
  4099. "_N$file": null,
  4100. "_isSystemFontUsed": true,
  4101. "_spacingX": 0,
  4102. "_N$horizontalAlign": 2,
  4103. "_N$verticalAlign": 1,
  4104. "_N$fontFamily": "Arial",
  4105. "_N$overflow": 2,
  4106. "_id": "29lrw1pHFLUpqReZduveSD"
  4107. },
  4108. {
  4109. "__type__": "cc.Widget",
  4110. "_name": "",
  4111. "_objFlags": 0,
  4112. "node": {
  4113. "__id__": 116
  4114. },
  4115. "_enabled": true,
  4116. "alignMode": 1,
  4117. "_target": null,
  4118. "_alignFlags": 34,
  4119. "_left": 0,
  4120. "_right": 10,
  4121. "_top": 0,
  4122. "_bottom": 0,
  4123. "_verticalCenter": 0,
  4124. "_horizontalCenter": 0,
  4125. "_isAbsLeft": true,
  4126. "_isAbsRight": true,
  4127. "_isAbsTop": true,
  4128. "_isAbsBottom": true,
  4129. "_isAbsHorizontalCenter": true,
  4130. "_isAbsVerticalCenter": true,
  4131. "_originalWidth": 0,
  4132. "_originalHeight": 0,
  4133. "_id": "e8YJPAF0FLoZoZkUuU4ekq"
  4134. },
  4135. {
  4136. "__type__": "cc.PrefabInfo",
  4137. "root": {
  4138. "__id__": 1
  4139. },
  4140. "asset": {
  4141. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  4142. },
  4143. "fileId": "8292KIWsJOCK6wc9OGa3b6",
  4144. "sync": false
  4145. },
  4146. {
  4147. "__type__": "cc.Sprite",
  4148. "_name": "",
  4149. "_objFlags": 0,
  4150. "node": {
  4151. "__id__": 111
  4152. },
  4153. "_enabled": true,
  4154. "_srcBlendFactor": 770,
  4155. "_dstBlendFactor": 771,
  4156. "_spriteFrame": {
  4157. "__uuid__": "4d5a2585-b910-4ed3-928f-55442619bdcf"
  4158. },
  4159. "_type": 0,
  4160. "_sizeMode": 0,
  4161. "_fillType": 0,
  4162. "_fillCenter": {
  4163. "__type__": "cc.Vec2",
  4164. "x": 0,
  4165. "y": 0
  4166. },
  4167. "_fillStart": 0,
  4168. "_fillRange": 0,
  4169. "_isTrimmedMode": true,
  4170. "_state": 0,
  4171. "_atlas": null,
  4172. "_id": "50uXsQlVpPI5ZfIKN5Uf9a"
  4173. },
  4174. {
  4175. "__type__": "cc.PrefabInfo",
  4176. "root": {
  4177. "__id__": 1
  4178. },
  4179. "asset": {
  4180. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  4181. },
  4182. "fileId": "3eyJhcOZ9F1KxGso5ln9Pn",
  4183. "sync": false
  4184. },
  4185. {
  4186. "__type__": "cc.Node",
  4187. "_name": "workNode",
  4188. "_objFlags": 0,
  4189. "_parent": {
  4190. "__id__": 110
  4191. },
  4192. "_children": [
  4193. {
  4194. "__id__": 123
  4195. },
  4196. {
  4197. "__id__": 126
  4198. },
  4199. {
  4200. "__id__": 130
  4201. }
  4202. ],
  4203. "_active": true,
  4204. "_level": 5,
  4205. "_components": [],
  4206. "_prefab": {
  4207. "__id__": 134
  4208. },
  4209. "_opacity": 255,
  4210. "_color": {
  4211. "__type__": "cc.Color",
  4212. "r": 255,
  4213. "g": 255,
  4214. "b": 255,
  4215. "a": 255
  4216. },
  4217. "_contentSize": {
  4218. "__type__": "cc.Size",
  4219. "width": 200,
  4220. "height": 40
  4221. },
  4222. "_anchorPoint": {
  4223. "__type__": "cc.Vec2",
  4224. "x": 0.5,
  4225. "y": 0.5
  4226. },
  4227. "_position": {
  4228. "__type__": "cc.Vec3",
  4229. "x": 0,
  4230. "y": -74,
  4231. "z": 0
  4232. },
  4233. "_scale": {
  4234. "__type__": "cc.Vec3",
  4235. "x": 1,
  4236. "y": 1,
  4237. "z": 1
  4238. },
  4239. "_rotationX": 0,
  4240. "_rotationY": 0,
  4241. "_quat": {
  4242. "__type__": "cc.Quat",
  4243. "x": 0,
  4244. "y": 0,
  4245. "z": 0,
  4246. "w": 1
  4247. },
  4248. "_skewX": 0,
  4249. "_skewY": 0,
  4250. "_zIndex": 0,
  4251. "groupIndex": 0,
  4252. "_id": ""
  4253. },
  4254. {
  4255. "__type__": "cc.Node",
  4256. "_name": "star_handbook_count",
  4257. "_objFlags": 0,
  4258. "_parent": {
  4259. "__id__": 122
  4260. },
  4261. "_children": [],
  4262. "_active": true,
  4263. "_level": 6,
  4264. "_components": [
  4265. {
  4266. "__id__": 124
  4267. }
  4268. ],
  4269. "_prefab": {
  4270. "__id__": 125
  4271. },
  4272. "_opacity": 230,
  4273. "_color": {
  4274. "__type__": "cc.Color",
  4275. "r": 255,
  4276. "g": 255,
  4277. "b": 255,
  4278. "a": 255
  4279. },
  4280. "_contentSize": {
  4281. "__type__": "cc.Size",
  4282. "width": 200,
  4283. "height": 40
  4284. },
  4285. "_anchorPoint": {
  4286. "__type__": "cc.Vec2",
  4287. "x": 0.5,
  4288. "y": 0.5
  4289. },
  4290. "_position": {
  4291. "__type__": "cc.Vec3",
  4292. "x": 0,
  4293. "y": 0,
  4294. "z": 0
  4295. },
  4296. "_scale": {
  4297. "__type__": "cc.Vec3",
  4298. "x": 1,
  4299. "y": 1,
  4300. "z": 1
  4301. },
  4302. "_rotationX": 0,
  4303. "_rotationY": 0,
  4304. "_quat": {
  4305. "__type__": "cc.Quat",
  4306. "x": 0,
  4307. "y": 0,
  4308. "z": 0,
  4309. "w": 1
  4310. },
  4311. "_skewX": 0,
  4312. "_skewY": 0,
  4313. "_zIndex": 0,
  4314. "groupIndex": 0,
  4315. "_id": ""
  4316. },
  4317. {
  4318. "__type__": "cc.Sprite",
  4319. "_name": "",
  4320. "_objFlags": 0,
  4321. "node": {
  4322. "__id__": 123
  4323. },
  4324. "_enabled": true,
  4325. "_srcBlendFactor": 770,
  4326. "_dstBlendFactor": 771,
  4327. "_spriteFrame": {
  4328. "__uuid__": "4d5a2585-b910-4ed3-928f-55442619bdcf"
  4329. },
  4330. "_type": 0,
  4331. "_sizeMode": 1,
  4332. "_fillType": 0,
  4333. "_fillCenter": {
  4334. "__type__": "cc.Vec2",
  4335. "x": 0,
  4336. "y": 0
  4337. },
  4338. "_fillStart": 0,
  4339. "_fillRange": 0,
  4340. "_isTrimmedMode": true,
  4341. "_state": 0,
  4342. "_atlas": null,
  4343. "_id": "09KoE1F25CPLrBPqw9HlAz"
  4344. },
  4345. {
  4346. "__type__": "cc.PrefabInfo",
  4347. "root": {
  4348. "__id__": 1
  4349. },
  4350. "asset": {
  4351. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  4352. },
  4353. "fileId": "850D1biB1MboyXVqXc+12W",
  4354. "sync": false
  4355. },
  4356. {
  4357. "__type__": "cc.Node",
  4358. "_name": "label",
  4359. "_objFlags": 0,
  4360. "_parent": {
  4361. "__id__": 122
  4362. },
  4363. "_children": [],
  4364. "_active": true,
  4365. "_level": 6,
  4366. "_components": [
  4367. {
  4368. "__id__": 127
  4369. },
  4370. {
  4371. "__id__": 128
  4372. }
  4373. ],
  4374. "_prefab": {
  4375. "__id__": 129
  4376. },
  4377. "_opacity": 255,
  4378. "_color": {
  4379. "__type__": "cc.Color",
  4380. "r": 229,
  4381. "g": 199,
  4382. "b": 154,
  4383. "a": 255
  4384. },
  4385. "_contentSize": {
  4386. "__type__": "cc.Size",
  4387. "width": 60,
  4388. "height": 20
  4389. },
  4390. "_anchorPoint": {
  4391. "__type__": "cc.Vec2",
  4392. "x": 0,
  4393. "y": 0.5
  4394. },
  4395. "_position": {
  4396. "__type__": "cc.Vec3",
  4397. "x": -90,
  4398. "y": 0,
  4399. "z": 0
  4400. },
  4401. "_scale": {
  4402. "__type__": "cc.Vec3",
  4403. "x": 1,
  4404. "y": 1,
  4405. "z": 1
  4406. },
  4407. "_rotationX": 0,
  4408. "_rotationY": 0,
  4409. "_quat": {
  4410. "__type__": "cc.Quat",
  4411. "x": 0,
  4412. "y": 0,
  4413. "z": 0,
  4414. "w": 1
  4415. },
  4416. "_skewX": 0,
  4417. "_skewY": 0,
  4418. "_zIndex": 0,
  4419. "groupIndex": 0,
  4420. "_id": ""
  4421. },
  4422. {
  4423. "__type__": "cc.Label",
  4424. "_name": "",
  4425. "_objFlags": 0,
  4426. "node": {
  4427. "__id__": 126
  4428. },
  4429. "_enabled": true,
  4430. "_srcBlendFactor": 1,
  4431. "_dstBlendFactor": 771,
  4432. "_useOriginalSize": false,
  4433. "_string": "工作中",
  4434. "_N$string": "工作中",
  4435. "_fontSize": 20,
  4436. "_lineHeight": 20,
  4437. "_enableWrapText": true,
  4438. "_N$file": null,
  4439. "_isSystemFontUsed": true,
  4440. "_spacingX": 0,
  4441. "_N$horizontalAlign": 1,
  4442. "_N$verticalAlign": 1,
  4443. "_N$fontFamily": "Arial",
  4444. "_N$overflow": 0,
  4445. "_id": "14Kj96lVZGlbRYKTMtT2HT"
  4446. },
  4447. {
  4448. "__type__": "cc.Widget",
  4449. "_name": "",
  4450. "_objFlags": 0,
  4451. "node": {
  4452. "__id__": 126
  4453. },
  4454. "_enabled": true,
  4455. "alignMode": 1,
  4456. "_target": null,
  4457. "_alignFlags": 10,
  4458. "_left": 10,
  4459. "_right": 0,
  4460. "_top": 0,
  4461. "_bottom": 0,
  4462. "_verticalCenter": 0,
  4463. "_horizontalCenter": 0,
  4464. "_isAbsLeft": true,
  4465. "_isAbsRight": true,
  4466. "_isAbsTop": true,
  4467. "_isAbsBottom": true,
  4468. "_isAbsHorizontalCenter": true,
  4469. "_isAbsVerticalCenter": true,
  4470. "_originalWidth": 0,
  4471. "_originalHeight": 0,
  4472. "_id": "499vhPfrZMIKL+gLwZYKCi"
  4473. },
  4474. {
  4475. "__type__": "cc.PrefabInfo",
  4476. "root": {
  4477. "__id__": 1
  4478. },
  4479. "asset": {
  4480. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  4481. },
  4482. "fileId": "64phS6tb5JZpzl0vFRt9Qy",
  4483. "sync": false
  4484. },
  4485. {
  4486. "__type__": "cc.Node",
  4487. "_name": "label",
  4488. "_objFlags": 0,
  4489. "_parent": {
  4490. "__id__": 122
  4491. },
  4492. "_children": [],
  4493. "_active": true,
  4494. "_level": 6,
  4495. "_components": [
  4496. {
  4497. "__id__": 131
  4498. },
  4499. {
  4500. "__id__": 132
  4501. }
  4502. ],
  4503. "_prefab": {
  4504. "__id__": 133
  4505. },
  4506. "_opacity": 255,
  4507. "_color": {
  4508. "__type__": "cc.Color",
  4509. "r": 162,
  4510. "g": 146,
  4511. "b": 122,
  4512. "a": 255
  4513. },
  4514. "_contentSize": {
  4515. "__type__": "cc.Size",
  4516. "width": 34.24,
  4517. "height": 22
  4518. },
  4519. "_anchorPoint": {
  4520. "__type__": "cc.Vec2",
  4521. "x": 1,
  4522. "y": 0.5
  4523. },
  4524. "_position": {
  4525. "__type__": "cc.Vec3",
  4526. "x": 90,
  4527. "y": 0,
  4528. "z": 0
  4529. },
  4530. "_scale": {
  4531. "__type__": "cc.Vec3",
  4532. "x": 1,
  4533. "y": 1,
  4534. "z": 1
  4535. },
  4536. "_rotationX": 0,
  4537. "_rotationY": 0,
  4538. "_quat": {
  4539. "__type__": "cc.Quat",
  4540. "x": 0,
  4541. "y": 0,
  4542. "z": 0,
  4543. "w": 1
  4544. },
  4545. "_skewX": 0,
  4546. "_skewY": 0,
  4547. "_zIndex": 0,
  4548. "groupIndex": 0,
  4549. "_id": ""
  4550. },
  4551. {
  4552. "__type__": "cc.Label",
  4553. "_name": "",
  4554. "_objFlags": 0,
  4555. "node": {
  4556. "__id__": 130
  4557. },
  4558. "_enabled": true,
  4559. "_srcBlendFactor": 1,
  4560. "_dstBlendFactor": 771,
  4561. "_useOriginalSize": false,
  4562. "_string": "0人",
  4563. "_N$string": "0人",
  4564. "_fontSize": 22,
  4565. "_lineHeight": 22,
  4566. "_enableWrapText": true,
  4567. "_N$file": null,
  4568. "_isSystemFontUsed": true,
  4569. "_spacingX": 0,
  4570. "_N$horizontalAlign": 1,
  4571. "_N$verticalAlign": 1,
  4572. "_N$fontFamily": "Arial",
  4573. "_N$overflow": 0,
  4574. "_id": "d8BFD+mchACLXP4U/CbVlF"
  4575. },
  4576. {
  4577. "__type__": "cc.Widget",
  4578. "_name": "",
  4579. "_objFlags": 0,
  4580. "node": {
  4581. "__id__": 130
  4582. },
  4583. "_enabled": true,
  4584. "alignMode": 1,
  4585. "_target": null,
  4586. "_alignFlags": 34,
  4587. "_left": 0,
  4588. "_right": 10,
  4589. "_top": 0,
  4590. "_bottom": 0,
  4591. "_verticalCenter": 0,
  4592. "_horizontalCenter": 0,
  4593. "_isAbsLeft": true,
  4594. "_isAbsRight": true,
  4595. "_isAbsTop": true,
  4596. "_isAbsBottom": true,
  4597. "_isAbsHorizontalCenter": true,
  4598. "_isAbsVerticalCenter": true,
  4599. "_originalWidth": 0,
  4600. "_originalHeight": 0,
  4601. "_id": "65qVjr+sBFiZK2/uFlzTKw"
  4602. },
  4603. {
  4604. "__type__": "cc.PrefabInfo",
  4605. "root": {
  4606. "__id__": 1
  4607. },
  4608. "asset": {
  4609. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  4610. },
  4611. "fileId": "e1KOKxeqVIEZb1bqDj4FHU",
  4612. "sync": false
  4613. },
  4614. {
  4615. "__type__": "cc.PrefabInfo",
  4616. "root": {
  4617. "__id__": 1
  4618. },
  4619. "asset": {
  4620. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  4621. },
  4622. "fileId": "b8cGQOKhpLPbWdfmclXx6w",
  4623. "sync": false
  4624. },
  4625. {
  4626. "__type__": "cc.Node",
  4627. "_name": "workNode",
  4628. "_objFlags": 0,
  4629. "_parent": {
  4630. "__id__": 110
  4631. },
  4632. "_children": [
  4633. {
  4634. "__id__": 136
  4635. },
  4636. {
  4637. "__id__": 139
  4638. },
  4639. {
  4640. "__id__": 143
  4641. }
  4642. ],
  4643. "_active": true,
  4644. "_level": 5,
  4645. "_components": [],
  4646. "_prefab": {
  4647. "__id__": 147
  4648. },
  4649. "_opacity": 255,
  4650. "_color": {
  4651. "__type__": "cc.Color",
  4652. "r": 255,
  4653. "g": 255,
  4654. "b": 255,
  4655. "a": 255
  4656. },
  4657. "_contentSize": {
  4658. "__type__": "cc.Size",
  4659. "width": 200,
  4660. "height": 40
  4661. },
  4662. "_anchorPoint": {
  4663. "__type__": "cc.Vec2",
  4664. "x": 0.5,
  4665. "y": 0.5
  4666. },
  4667. "_position": {
  4668. "__type__": "cc.Vec3",
  4669. "x": 0,
  4670. "y": -128,
  4671. "z": 0
  4672. },
  4673. "_scale": {
  4674. "__type__": "cc.Vec3",
  4675. "x": 1,
  4676. "y": 1,
  4677. "z": 1
  4678. },
  4679. "_rotationX": 0,
  4680. "_rotationY": 0,
  4681. "_quat": {
  4682. "__type__": "cc.Quat",
  4683. "x": 0,
  4684. "y": 0,
  4685. "z": 0,
  4686. "w": 1
  4687. },
  4688. "_skewX": 0,
  4689. "_skewY": 0,
  4690. "_zIndex": 0,
  4691. "groupIndex": 0,
  4692. "_id": ""
  4693. },
  4694. {
  4695. "__type__": "cc.Node",
  4696. "_name": "star_handbook_count",
  4697. "_objFlags": 0,
  4698. "_parent": {
  4699. "__id__": 135
  4700. },
  4701. "_children": [],
  4702. "_active": true,
  4703. "_level": 6,
  4704. "_components": [
  4705. {
  4706. "__id__": 137
  4707. }
  4708. ],
  4709. "_prefab": {
  4710. "__id__": 138
  4711. },
  4712. "_opacity": 230,
  4713. "_color": {
  4714. "__type__": "cc.Color",
  4715. "r": 255,
  4716. "g": 255,
  4717. "b": 255,
  4718. "a": 255
  4719. },
  4720. "_contentSize": {
  4721. "__type__": "cc.Size",
  4722. "width": 200,
  4723. "height": 40
  4724. },
  4725. "_anchorPoint": {
  4726. "__type__": "cc.Vec2",
  4727. "x": 0.5,
  4728. "y": 0.5
  4729. },
  4730. "_position": {
  4731. "__type__": "cc.Vec3",
  4732. "x": 0,
  4733. "y": 0,
  4734. "z": 0
  4735. },
  4736. "_scale": {
  4737. "__type__": "cc.Vec3",
  4738. "x": 1,
  4739. "y": 1,
  4740. "z": 1
  4741. },
  4742. "_rotationX": 0,
  4743. "_rotationY": 0,
  4744. "_quat": {
  4745. "__type__": "cc.Quat",
  4746. "x": 0,
  4747. "y": 0,
  4748. "z": 0,
  4749. "w": 1
  4750. },
  4751. "_skewX": 0,
  4752. "_skewY": 0,
  4753. "_zIndex": 0,
  4754. "groupIndex": 0,
  4755. "_id": ""
  4756. },
  4757. {
  4758. "__type__": "cc.Sprite",
  4759. "_name": "",
  4760. "_objFlags": 0,
  4761. "node": {
  4762. "__id__": 136
  4763. },
  4764. "_enabled": true,
  4765. "_srcBlendFactor": 770,
  4766. "_dstBlendFactor": 771,
  4767. "_spriteFrame": {
  4768. "__uuid__": "4d5a2585-b910-4ed3-928f-55442619bdcf"
  4769. },
  4770. "_type": 0,
  4771. "_sizeMode": 1,
  4772. "_fillType": 0,
  4773. "_fillCenter": {
  4774. "__type__": "cc.Vec2",
  4775. "x": 0,
  4776. "y": 0
  4777. },
  4778. "_fillStart": 0,
  4779. "_fillRange": 0,
  4780. "_isTrimmedMode": true,
  4781. "_state": 0,
  4782. "_atlas": null,
  4783. "_id": "bdQibzYIdG3abNFaz7y/Or"
  4784. },
  4785. {
  4786. "__type__": "cc.PrefabInfo",
  4787. "root": {
  4788. "__id__": 1
  4789. },
  4790. "asset": {
  4791. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  4792. },
  4793. "fileId": "f5QE5KIL1M774nKinieoql",
  4794. "sync": false
  4795. },
  4796. {
  4797. "__type__": "cc.Node",
  4798. "_name": "label",
  4799. "_objFlags": 0,
  4800. "_parent": {
  4801. "__id__": 135
  4802. },
  4803. "_children": [],
  4804. "_active": true,
  4805. "_level": 6,
  4806. "_components": [
  4807. {
  4808. "__id__": 140
  4809. },
  4810. {
  4811. "__id__": 141
  4812. }
  4813. ],
  4814. "_prefab": {
  4815. "__id__": 142
  4816. },
  4817. "_opacity": 255,
  4818. "_color": {
  4819. "__type__": "cc.Color",
  4820. "r": 229,
  4821. "g": 199,
  4822. "b": 154,
  4823. "a": 255
  4824. },
  4825. "_contentSize": {
  4826. "__type__": "cc.Size",
  4827. "width": 60,
  4828. "height": 20
  4829. },
  4830. "_anchorPoint": {
  4831. "__type__": "cc.Vec2",
  4832. "x": 0,
  4833. "y": 0.5
  4834. },
  4835. "_position": {
  4836. "__type__": "cc.Vec3",
  4837. "x": -90,
  4838. "y": 0,
  4839. "z": 0
  4840. },
  4841. "_scale": {
  4842. "__type__": "cc.Vec3",
  4843. "x": 1,
  4844. "y": 1,
  4845. "z": 1
  4846. },
  4847. "_rotationX": 0,
  4848. "_rotationY": 0,
  4849. "_quat": {
  4850. "__type__": "cc.Quat",
  4851. "x": 0,
  4852. "y": 0,
  4853. "z": 0,
  4854. "w": 1
  4855. },
  4856. "_skewX": 0,
  4857. "_skewY": 0,
  4858. "_zIndex": 0,
  4859. "groupIndex": 0,
  4860. "_id": ""
  4861. },
  4862. {
  4863. "__type__": "cc.Label",
  4864. "_name": "",
  4865. "_objFlags": 0,
  4866. "node": {
  4867. "__id__": 139
  4868. },
  4869. "_enabled": true,
  4870. "_srcBlendFactor": 1,
  4871. "_dstBlendFactor": 771,
  4872. "_useOriginalSize": false,
  4873. "_string": "休息中",
  4874. "_N$string": "休息中",
  4875. "_fontSize": 20,
  4876. "_lineHeight": 20,
  4877. "_enableWrapText": true,
  4878. "_N$file": null,
  4879. "_isSystemFontUsed": true,
  4880. "_spacingX": 0,
  4881. "_N$horizontalAlign": 1,
  4882. "_N$verticalAlign": 1,
  4883. "_N$fontFamily": "Arial",
  4884. "_N$overflow": 0,
  4885. "_id": "53apWJ6wFK4IkcvV2q5HHo"
  4886. },
  4887. {
  4888. "__type__": "cc.Widget",
  4889. "_name": "",
  4890. "_objFlags": 0,
  4891. "node": {
  4892. "__id__": 139
  4893. },
  4894. "_enabled": true,
  4895. "alignMode": 1,
  4896. "_target": null,
  4897. "_alignFlags": 10,
  4898. "_left": 10,
  4899. "_right": 0,
  4900. "_top": 0,
  4901. "_bottom": 0,
  4902. "_verticalCenter": 0,
  4903. "_horizontalCenter": 0,
  4904. "_isAbsLeft": true,
  4905. "_isAbsRight": true,
  4906. "_isAbsTop": true,
  4907. "_isAbsBottom": true,
  4908. "_isAbsHorizontalCenter": true,
  4909. "_isAbsVerticalCenter": true,
  4910. "_originalWidth": 0,
  4911. "_originalHeight": 0,
  4912. "_id": "1a1HlgsL1DRaRnSRm9yXr9"
  4913. },
  4914. {
  4915. "__type__": "cc.PrefabInfo",
  4916. "root": {
  4917. "__id__": 1
  4918. },
  4919. "asset": {
  4920. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  4921. },
  4922. "fileId": "1dZk+S3ltIWpej0NqShThS",
  4923. "sync": false
  4924. },
  4925. {
  4926. "__type__": "cc.Node",
  4927. "_name": "label",
  4928. "_objFlags": 0,
  4929. "_parent": {
  4930. "__id__": 135
  4931. },
  4932. "_children": [],
  4933. "_active": true,
  4934. "_level": 6,
  4935. "_components": [
  4936. {
  4937. "__id__": 144
  4938. },
  4939. {
  4940. "__id__": 145
  4941. }
  4942. ],
  4943. "_prefab": {
  4944. "__id__": 146
  4945. },
  4946. "_opacity": 255,
  4947. "_color": {
  4948. "__type__": "cc.Color",
  4949. "r": 162,
  4950. "g": 146,
  4951. "b": 122,
  4952. "a": 255
  4953. },
  4954. "_contentSize": {
  4955. "__type__": "cc.Size",
  4956. "width": 34.24,
  4957. "height": 22
  4958. },
  4959. "_anchorPoint": {
  4960. "__type__": "cc.Vec2",
  4961. "x": 1,
  4962. "y": 0.5
  4963. },
  4964. "_position": {
  4965. "__type__": "cc.Vec3",
  4966. "x": 90,
  4967. "y": 0,
  4968. "z": 0
  4969. },
  4970. "_scale": {
  4971. "__type__": "cc.Vec3",
  4972. "x": 1,
  4973. "y": 1,
  4974. "z": 1
  4975. },
  4976. "_rotationX": 0,
  4977. "_rotationY": 0,
  4978. "_quat": {
  4979. "__type__": "cc.Quat",
  4980. "x": 0,
  4981. "y": 0,
  4982. "z": 0,
  4983. "w": 1
  4984. },
  4985. "_skewX": 0,
  4986. "_skewY": 0,
  4987. "_zIndex": 0,
  4988. "groupIndex": 0,
  4989. "_id": ""
  4990. },
  4991. {
  4992. "__type__": "cc.Label",
  4993. "_name": "",
  4994. "_objFlags": 0,
  4995. "node": {
  4996. "__id__": 143
  4997. },
  4998. "_enabled": true,
  4999. "_srcBlendFactor": 1,
  5000. "_dstBlendFactor": 771,
  5001. "_useOriginalSize": false,
  5002. "_string": "0人",
  5003. "_N$string": "0人",
  5004. "_fontSize": 22,
  5005. "_lineHeight": 22,
  5006. "_enableWrapText": true,
  5007. "_N$file": null,
  5008. "_isSystemFontUsed": true,
  5009. "_spacingX": 0,
  5010. "_N$horizontalAlign": 1,
  5011. "_N$verticalAlign": 1,
  5012. "_N$fontFamily": "Arial",
  5013. "_N$overflow": 0,
  5014. "_id": "afca+9tFZDeI3k6FhRiXxo"
  5015. },
  5016. {
  5017. "__type__": "cc.Widget",
  5018. "_name": "",
  5019. "_objFlags": 0,
  5020. "node": {
  5021. "__id__": 143
  5022. },
  5023. "_enabled": true,
  5024. "alignMode": 1,
  5025. "_target": null,
  5026. "_alignFlags": 34,
  5027. "_left": 0,
  5028. "_right": 10,
  5029. "_top": 0,
  5030. "_bottom": 0,
  5031. "_verticalCenter": 0,
  5032. "_horizontalCenter": 0,
  5033. "_isAbsLeft": true,
  5034. "_isAbsRight": true,
  5035. "_isAbsTop": true,
  5036. "_isAbsBottom": true,
  5037. "_isAbsHorizontalCenter": true,
  5038. "_isAbsVerticalCenter": true,
  5039. "_originalWidth": 0,
  5040. "_originalHeight": 0,
  5041. "_id": "26PtHjHwtI8YT230KDEl1k"
  5042. },
  5043. {
  5044. "__type__": "cc.PrefabInfo",
  5045. "root": {
  5046. "__id__": 1
  5047. },
  5048. "asset": {
  5049. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  5050. },
  5051. "fileId": "degu+hOuxLAaKqAgo75IUb",
  5052. "sync": false
  5053. },
  5054. {
  5055. "__type__": "cc.PrefabInfo",
  5056. "root": {
  5057. "__id__": 1
  5058. },
  5059. "asset": {
  5060. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  5061. },
  5062. "fileId": "f0HjipBgxP7rqE7XFVNnSj",
  5063. "sync": false
  5064. },
  5065. {
  5066. "__type__": "cc.Layout",
  5067. "_name": "",
  5068. "_objFlags": 0,
  5069. "node": {
  5070. "__id__": 110
  5071. },
  5072. "_enabled": true,
  5073. "_layoutSize": {
  5074. "__type__": "cc.Size",
  5075. "width": 200,
  5076. "height": 148
  5077. },
  5078. "_resize": 1,
  5079. "_N$layoutType": 2,
  5080. "_N$padding": 0,
  5081. "_N$cellSize": {
  5082. "__type__": "cc.Size",
  5083. "width": 40,
  5084. "height": 40
  5085. },
  5086. "_N$startAxis": 0,
  5087. "_N$paddingLeft": 0,
  5088. "_N$paddingRight": 0,
  5089. "_N$paddingTop": 0,
  5090. "_N$paddingBottom": 0,
  5091. "_N$spacingX": 0,
  5092. "_N$spacingY": 14,
  5093. "_N$verticalDirection": 1,
  5094. "_N$horizontalDirection": 0,
  5095. "_id": "5dFjGgeWFOOYNkQ/6uALpX"
  5096. },
  5097. {
  5098. "__type__": "cc.PrefabInfo",
  5099. "root": {
  5100. "__id__": 1
  5101. },
  5102. "asset": {
  5103. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  5104. },
  5105. "fileId": "a2GP67ouRLm6EIuOM1AxbO",
  5106. "sync": false
  5107. },
  5108. {
  5109. "__type__": "cc.Node",
  5110. "_name": "dispatchButton",
  5111. "_objFlags": 0,
  5112. "_parent": {
  5113. "__id__": 97
  5114. },
  5115. "_children": [],
  5116. "_active": true,
  5117. "_level": 4,
  5118. "_components": [
  5119. {
  5120. "__id__": 151
  5121. },
  5122. {
  5123. "__id__": 152
  5124. },
  5125. {
  5126. "__id__": 154
  5127. }
  5128. ],
  5129. "_prefab": {
  5130. "__id__": 155
  5131. },
  5132. "_opacity": 255,
  5133. "_color": {
  5134. "__type__": "cc.Color",
  5135. "r": 255,
  5136. "g": 255,
  5137. "b": 255,
  5138. "a": 255
  5139. },
  5140. "_contentSize": {
  5141. "__type__": "cc.Size",
  5142. "width": 80,
  5143. "height": 80
  5144. },
  5145. "_anchorPoint": {
  5146. "__type__": "cc.Vec2",
  5147. "x": 0.5,
  5148. "y": 0.5
  5149. },
  5150. "_position": {
  5151. "__type__": "cc.Vec3",
  5152. "x": -165,
  5153. "y": -260,
  5154. "z": 0
  5155. },
  5156. "_scale": {
  5157. "__type__": "cc.Vec3",
  5158. "x": 1,
  5159. "y": 1,
  5160. "z": 1
  5161. },
  5162. "_rotationX": 0,
  5163. "_rotationY": 0,
  5164. "_quat": {
  5165. "__type__": "cc.Quat",
  5166. "x": 0,
  5167. "y": 0,
  5168. "z": 0,
  5169. "w": 1
  5170. },
  5171. "_skewX": 0,
  5172. "_skewY": 0,
  5173. "_zIndex": 0,
  5174. "groupIndex": 0,
  5175. "_id": ""
  5176. },
  5177. {
  5178. "__type__": "cc.Sprite",
  5179. "_name": "",
  5180. "_objFlags": 0,
  5181. "node": {
  5182. "__id__": 150
  5183. },
  5184. "_enabled": true,
  5185. "_srcBlendFactor": 770,
  5186. "_dstBlendFactor": 771,
  5187. "_spriteFrame": {
  5188. "__uuid__": "ac869f03-6754-4580-8e54-272382e2492f"
  5189. },
  5190. "_type": 1,
  5191. "_sizeMode": 0,
  5192. "_fillType": 0,
  5193. "_fillCenter": {
  5194. "__type__": "cc.Vec2",
  5195. "x": 0,
  5196. "y": 0
  5197. },
  5198. "_fillStart": 0,
  5199. "_fillRange": 0,
  5200. "_isTrimmedMode": true,
  5201. "_state": 0,
  5202. "_atlas": null,
  5203. "_id": "27NY2j9QxHZ4EXz7Is7Tsr"
  5204. },
  5205. {
  5206. "__type__": "cc.Button",
  5207. "_name": "",
  5208. "_objFlags": 0,
  5209. "node": {
  5210. "__id__": 150
  5211. },
  5212. "_enabled": true,
  5213. "transition": 1,
  5214. "pressedColor": {
  5215. "__type__": "cc.Color",
  5216. "r": 120,
  5217. "g": 120,
  5218. "b": 120,
  5219. "a": 255
  5220. },
  5221. "hoverColor": {
  5222. "__type__": "cc.Color",
  5223. "r": 255,
  5224. "g": 255,
  5225. "b": 255,
  5226. "a": 255
  5227. },
  5228. "duration": 0.1,
  5229. "zoomScale": 1.2,
  5230. "clickEvents": [
  5231. {
  5232. "__id__": 153
  5233. }
  5234. ],
  5235. "_N$interactable": true,
  5236. "_N$enableAutoGrayEffect": false,
  5237. "_N$normalColor": {
  5238. "__type__": "cc.Color",
  5239. "r": 255,
  5240. "g": 255,
  5241. "b": 255,
  5242. "a": 255
  5243. },
  5244. "_N$disabledColor": {
  5245. "__type__": "cc.Color",
  5246. "r": 255,
  5247. "g": 255,
  5248. "b": 255,
  5249. "a": 255
  5250. },
  5251. "_N$normalSprite": {
  5252. "__uuid__": "ac869f03-6754-4580-8e54-272382e2492f"
  5253. },
  5254. "_N$pressedSprite": {
  5255. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5256. },
  5257. "pressedSprite": {
  5258. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5259. },
  5260. "_N$hoverSprite": {
  5261. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5262. },
  5263. "hoverSprite": {
  5264. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5265. },
  5266. "_N$disabledSprite": {
  5267. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5268. },
  5269. "_N$target": {
  5270. "__id__": 150
  5271. },
  5272. "_id": "ccdQHANRhFoLhqPsZb4rfx"
  5273. },
  5274. {
  5275. "__type__": "cc.ClickEvent",
  5276. "target": {
  5277. "__id__": 92
  5278. },
  5279. "component": "StarHandbookDesc",
  5280. "handler": "dispatchToRoom",
  5281. "customEventData": ""
  5282. },
  5283. {
  5284. "__type__": "cc.Widget",
  5285. "_name": "",
  5286. "_objFlags": 0,
  5287. "node": {
  5288. "__id__": 150
  5289. },
  5290. "_enabled": true,
  5291. "alignMode": 1,
  5292. "_target": null,
  5293. "_alignFlags": 8,
  5294. "_left": 30,
  5295. "_right": 0,
  5296. "_top": 0,
  5297. "_bottom": 0,
  5298. "_verticalCenter": 0,
  5299. "_horizontalCenter": 0,
  5300. "_isAbsLeft": true,
  5301. "_isAbsRight": true,
  5302. "_isAbsTop": true,
  5303. "_isAbsBottom": true,
  5304. "_isAbsHorizontalCenter": true,
  5305. "_isAbsVerticalCenter": true,
  5306. "_originalWidth": 0,
  5307. "_originalHeight": 0,
  5308. "_id": "9d1hXNYixOTq5jbgDIKLin"
  5309. },
  5310. {
  5311. "__type__": "cc.PrefabInfo",
  5312. "root": {
  5313. "__id__": 1
  5314. },
  5315. "asset": {
  5316. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  5317. },
  5318. "fileId": "fcBOMtoTBKBZFt5BDd3+GD",
  5319. "sync": false
  5320. },
  5321. {
  5322. "__type__": "cc.Node",
  5323. "_name": "recallButton",
  5324. "_objFlags": 0,
  5325. "_parent": {
  5326. "__id__": 97
  5327. },
  5328. "_children": [],
  5329. "_active": true,
  5330. "_level": 4,
  5331. "_components": [
  5332. {
  5333. "__id__": 157
  5334. },
  5335. {
  5336. "__id__": 158
  5337. },
  5338. {
  5339. "__id__": 160
  5340. }
  5341. ],
  5342. "_prefab": {
  5343. "__id__": 161
  5344. },
  5345. "_opacity": 255,
  5346. "_color": {
  5347. "__type__": "cc.Color",
  5348. "r": 255,
  5349. "g": 255,
  5350. "b": 255,
  5351. "a": 255
  5352. },
  5353. "_contentSize": {
  5354. "__type__": "cc.Size",
  5355. "width": 80,
  5356. "height": 80
  5357. },
  5358. "_anchorPoint": {
  5359. "__type__": "cc.Vec2",
  5360. "x": 0.5,
  5361. "y": 0.5
  5362. },
  5363. "_position": {
  5364. "__type__": "cc.Vec3",
  5365. "x": 165,
  5366. "y": -260,
  5367. "z": 0
  5368. },
  5369. "_scale": {
  5370. "__type__": "cc.Vec3",
  5371. "x": 1,
  5372. "y": 1,
  5373. "z": 1
  5374. },
  5375. "_rotationX": 0,
  5376. "_rotationY": 0,
  5377. "_quat": {
  5378. "__type__": "cc.Quat",
  5379. "x": 0,
  5380. "y": 0,
  5381. "z": 0,
  5382. "w": 1
  5383. },
  5384. "_skewX": 0,
  5385. "_skewY": 0,
  5386. "_zIndex": 0,
  5387. "groupIndex": 0,
  5388. "_id": ""
  5389. },
  5390. {
  5391. "__type__": "cc.Sprite",
  5392. "_name": "",
  5393. "_objFlags": 0,
  5394. "node": {
  5395. "__id__": 156
  5396. },
  5397. "_enabled": true,
  5398. "_srcBlendFactor": 770,
  5399. "_dstBlendFactor": 771,
  5400. "_spriteFrame": {
  5401. "__uuid__": "19eb199d-8e5d-49ce-b234-d44f1b3539c6"
  5402. },
  5403. "_type": 1,
  5404. "_sizeMode": 0,
  5405. "_fillType": 0,
  5406. "_fillCenter": {
  5407. "__type__": "cc.Vec2",
  5408. "x": 0,
  5409. "y": 0
  5410. },
  5411. "_fillStart": 0,
  5412. "_fillRange": 0,
  5413. "_isTrimmedMode": true,
  5414. "_state": 0,
  5415. "_atlas": null,
  5416. "_id": "e1onOHNNVAl4P7bNyjKt9A"
  5417. },
  5418. {
  5419. "__type__": "cc.Button",
  5420. "_name": "",
  5421. "_objFlags": 0,
  5422. "node": {
  5423. "__id__": 156
  5424. },
  5425. "_enabled": true,
  5426. "transition": 1,
  5427. "pressedColor": {
  5428. "__type__": "cc.Color",
  5429. "r": 120,
  5430. "g": 120,
  5431. "b": 120,
  5432. "a": 255
  5433. },
  5434. "hoverColor": {
  5435. "__type__": "cc.Color",
  5436. "r": 255,
  5437. "g": 255,
  5438. "b": 255,
  5439. "a": 255
  5440. },
  5441. "duration": 0.1,
  5442. "zoomScale": 1.2,
  5443. "clickEvents": [
  5444. {
  5445. "__id__": 159
  5446. }
  5447. ],
  5448. "_N$interactable": true,
  5449. "_N$enableAutoGrayEffect": false,
  5450. "_N$normalColor": {
  5451. "__type__": "cc.Color",
  5452. "r": 255,
  5453. "g": 255,
  5454. "b": 255,
  5455. "a": 255
  5456. },
  5457. "_N$disabledColor": {
  5458. "__type__": "cc.Color",
  5459. "r": 255,
  5460. "g": 255,
  5461. "b": 255,
  5462. "a": 255
  5463. },
  5464. "_N$normalSprite": {
  5465. "__uuid__": "ac869f03-6754-4580-8e54-272382e2492f"
  5466. },
  5467. "_N$pressedSprite": {
  5468. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5469. },
  5470. "pressedSprite": {
  5471. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5472. },
  5473. "_N$hoverSprite": {
  5474. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5475. },
  5476. "hoverSprite": {
  5477. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5478. },
  5479. "_N$disabledSprite": {
  5480. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5481. },
  5482. "_N$target": {
  5483. "__id__": 156
  5484. },
  5485. "_id": "70WL9T6GpGdILQeLJJeaZF"
  5486. },
  5487. {
  5488. "__type__": "cc.ClickEvent",
  5489. "target": {
  5490. "__id__": 92
  5491. },
  5492. "component": "StarHandbookDesc",
  5493. "handler": "recallFromRoom",
  5494. "customEventData": ""
  5495. },
  5496. {
  5497. "__type__": "cc.Widget",
  5498. "_name": "",
  5499. "_objFlags": 0,
  5500. "node": {
  5501. "__id__": 156
  5502. },
  5503. "_enabled": true,
  5504. "alignMode": 1,
  5505. "_target": null,
  5506. "_alignFlags": 32,
  5507. "_left": 30,
  5508. "_right": 30,
  5509. "_top": 0,
  5510. "_bottom": 0,
  5511. "_verticalCenter": 0,
  5512. "_horizontalCenter": 0,
  5513. "_isAbsLeft": true,
  5514. "_isAbsRight": true,
  5515. "_isAbsTop": true,
  5516. "_isAbsBottom": true,
  5517. "_isAbsHorizontalCenter": true,
  5518. "_isAbsVerticalCenter": true,
  5519. "_originalWidth": 0,
  5520. "_originalHeight": 0,
  5521. "_id": "7dDR7cWLpOs5ZOeV1TL+Ej"
  5522. },
  5523. {
  5524. "__type__": "cc.PrefabInfo",
  5525. "root": {
  5526. "__id__": 1
  5527. },
  5528. "asset": {
  5529. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  5530. },
  5531. "fileId": "b21sNRA3dG857N7M85tQ4Y",
  5532. "sync": false
  5533. },
  5534. {
  5535. "__type__": "cc.Sprite",
  5536. "_name": "",
  5537. "_objFlags": 0,
  5538. "node": {
  5539. "__id__": 97
  5540. },
  5541. "_enabled": true,
  5542. "_srcBlendFactor": 770,
  5543. "_dstBlendFactor": 771,
  5544. "_spriteFrame": {
  5545. "__uuid__": "47ce8a87-06e6-4fa9-b7f8-bf15f9c21c54"
  5546. },
  5547. "_type": 1,
  5548. "_sizeMode": 0,
  5549. "_fillType": 0,
  5550. "_fillCenter": {
  5551. "__type__": "cc.Vec2",
  5552. "x": 0,
  5553. "y": 0
  5554. },
  5555. "_fillStart": 0,
  5556. "_fillRange": 0,
  5557. "_isTrimmedMode": true,
  5558. "_state": 0,
  5559. "_atlas": null,
  5560. "_id": "f5W1nBVqFNc5b72OBPDNFp"
  5561. },
  5562. {
  5563. "__type__": "cc.PrefabInfo",
  5564. "root": {
  5565. "__id__": 1
  5566. },
  5567. "asset": {
  5568. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  5569. },
  5570. "fileId": "25xrwhevBOOqD9et3EW37i",
  5571. "sync": false
  5572. },
  5573. {
  5574. "__type__": "cc.Node",
  5575. "_name": "closeButton",
  5576. "_objFlags": 0,
  5577. "_parent": {
  5578. "__id__": 92
  5579. },
  5580. "_children": [],
  5581. "_active": true,
  5582. "_level": 3,
  5583. "_components": [
  5584. {
  5585. "__id__": 165
  5586. },
  5587. {
  5588. "__id__": 166
  5589. }
  5590. ],
  5591. "_prefab": {
  5592. "__id__": 168
  5593. },
  5594. "_opacity": 255,
  5595. "_color": {
  5596. "__type__": "cc.Color",
  5597. "r": 255,
  5598. "g": 255,
  5599. "b": 255,
  5600. "a": 255
  5601. },
  5602. "_contentSize": {
  5603. "__type__": "cc.Size",
  5604. "width": 70,
  5605. "height": 72
  5606. },
  5607. "_anchorPoint": {
  5608. "__type__": "cc.Vec2",
  5609. "x": 0.5,
  5610. "y": 0.5
  5611. },
  5612. "_position": {
  5613. "__type__": "cc.Vec3",
  5614. "x": 215,
  5615. "y": 325,
  5616. "z": 0
  5617. },
  5618. "_scale": {
  5619. "__type__": "cc.Vec3",
  5620. "x": 1,
  5621. "y": 1,
  5622. "z": 1
  5623. },
  5624. "_rotationX": 0,
  5625. "_rotationY": 0,
  5626. "_quat": {
  5627. "__type__": "cc.Quat",
  5628. "x": 0,
  5629. "y": 0,
  5630. "z": 0,
  5631. "w": 1
  5632. },
  5633. "_skewX": 0,
  5634. "_skewY": 0,
  5635. "_zIndex": 0,
  5636. "groupIndex": 0,
  5637. "_id": ""
  5638. },
  5639. {
  5640. "__type__": "cc.Sprite",
  5641. "_name": "",
  5642. "_objFlags": 0,
  5643. "node": {
  5644. "__id__": 164
  5645. },
  5646. "_enabled": true,
  5647. "_srcBlendFactor": 770,
  5648. "_dstBlendFactor": 771,
  5649. "_spriteFrame": {
  5650. "__uuid__": "5e4122b9-5634-44c1-af70-c2aae5fab4eb"
  5651. },
  5652. "_type": 1,
  5653. "_sizeMode": 0,
  5654. "_fillType": 0,
  5655. "_fillCenter": {
  5656. "__type__": "cc.Vec2",
  5657. "x": 0,
  5658. "y": 0
  5659. },
  5660. "_fillStart": 0,
  5661. "_fillRange": 0,
  5662. "_isTrimmedMode": true,
  5663. "_state": 0,
  5664. "_atlas": null,
  5665. "_id": "93PGvGyNVM+rUFpmU6P/VN"
  5666. },
  5667. {
  5668. "__type__": "cc.Button",
  5669. "_name": "",
  5670. "_objFlags": 0,
  5671. "node": {
  5672. "__id__": 164
  5673. },
  5674. "_enabled": true,
  5675. "transition": 1,
  5676. "pressedColor": {
  5677. "__type__": "cc.Color",
  5678. "r": 120,
  5679. "g": 120,
  5680. "b": 120,
  5681. "a": 255
  5682. },
  5683. "hoverColor": {
  5684. "__type__": "cc.Color",
  5685. "r": 255,
  5686. "g": 255,
  5687. "b": 255,
  5688. "a": 255
  5689. },
  5690. "duration": 0.1,
  5691. "zoomScale": 1.2,
  5692. "clickEvents": [
  5693. {
  5694. "__id__": 167
  5695. }
  5696. ],
  5697. "_N$interactable": true,
  5698. "_N$enableAutoGrayEffect": false,
  5699. "_N$normalColor": {
  5700. "__type__": "cc.Color",
  5701. "r": 255,
  5702. "g": 255,
  5703. "b": 255,
  5704. "a": 255
  5705. },
  5706. "_N$disabledColor": {
  5707. "__type__": "cc.Color",
  5708. "r": 255,
  5709. "g": 255,
  5710. "b": 255,
  5711. "a": 255
  5712. },
  5713. "_N$normalSprite": {
  5714. "__uuid__": "5e4122b9-5634-44c1-af70-c2aae5fab4eb"
  5715. },
  5716. "_N$pressedSprite": {
  5717. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5718. },
  5719. "pressedSprite": {
  5720. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5721. },
  5722. "_N$hoverSprite": {
  5723. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5724. },
  5725. "hoverSprite": {
  5726. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5727. },
  5728. "_N$disabledSprite": {
  5729. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5730. },
  5731. "_N$target": {
  5732. "__id__": 164
  5733. },
  5734. "_id": "6aOxzAgDdNZLEDW1Walv30"
  5735. },
  5736. {
  5737. "__type__": "cc.ClickEvent",
  5738. "target": {
  5739. "__id__": 1
  5740. },
  5741. "component": "StarHandbook",
  5742. "handler": "closeDescView",
  5743. "customEventData": ""
  5744. },
  5745. {
  5746. "__type__": "cc.PrefabInfo",
  5747. "root": {
  5748. "__id__": 1
  5749. },
  5750. "asset": {
  5751. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  5752. },
  5753. "fileId": "bclyaTSlpFgYyqlbROS4xI",
  5754. "sync": false
  5755. },
  5756. {
  5757. "__type__": "abf85yHN1lK+qzZKG3NBSAU",
  5758. "_name": "",
  5759. "_objFlags": 0,
  5760. "node": {
  5761. "__id__": 92
  5762. },
  5763. "_enabled": true,
  5764. "nameLabel": {
  5765. "__id__": 99
  5766. },
  5767. "conditionLabel": {
  5768. "__id__": 103
  5769. },
  5770. "figure": {
  5771. "__id__": 107
  5772. },
  5773. "defaultFigureSpriteFrame": {
  5774. "__uuid__": "50063f91-45c1-4733-b710-241dbb595c4a"
  5775. },
  5776. "countLabel": {
  5777. "__id__": 117
  5778. },
  5779. "roomCountLabel": {
  5780. "__id__": 131
  5781. },
  5782. "restCountLabel": {
  5783. "__id__": 144
  5784. },
  5785. "_id": "6ahV7q0HtJB671DpYrX/20"
  5786. },
  5787. {
  5788. "__type__": "cc.PrefabInfo",
  5789. "root": {
  5790. "__id__": 1
  5791. },
  5792. "asset": {
  5793. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  5794. },
  5795. "fileId": "94E/Bp9wtPqbCYSLrLRW7X",
  5796. "sync": false
  5797. },
  5798. {
  5799. "__type__": "0fb2fd8UctIx6JYhQj4WClP",
  5800. "_name": "",
  5801. "_objFlags": 0,
  5802. "node": {
  5803. "__id__": 1
  5804. },
  5805. "_enabled": true,
  5806. "content": {
  5807. "__id__": 6
  5808. },
  5809. "starItemPrefab": {
  5810. "__uuid__": "ea5ecae0-4c01-4efa-8708-ceb0998f2014"
  5811. },
  5812. "starLayout": {
  5813. "__id__": 18
  5814. },
  5815. "progressBar": {
  5816. "__id__": 13
  5817. },
  5818. "countLabel": {
  5819. "__id__": 26
  5820. },
  5821. "percentRichText": {
  5822. "__id__": 35
  5823. },
  5824. "descNode": {
  5825. "__id__": 92
  5826. },
  5827. "discountRichText": {
  5828. "__id__": 54
  5829. },
  5830. "discount50Label": {
  5831. "__id__": 58
  5832. },
  5833. "discount30Label": {
  5834. "__id__": 66
  5835. },
  5836. "_id": "f5C1HjRu9C7p7x82C1glLn"
  5837. },
  5838. {
  5839. "__type__": "cc.PrefabInfo",
  5840. "root": {
  5841. "__id__": 1
  5842. },
  5843. "asset": {
  5844. "__uuid__": "be4a071b-af36-4756-ab38-faeb6fc96848"
  5845. },
  5846. "fileId": "0ex1/FzxdCYr2NBQUO9Wq5",
  5847. "sync": false
  5848. }
  5849. ]