GameUIView.prefab 94 KB

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