EmailUI.prefab 92 KB

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