EmailUI.prefab 92 KB

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