MailDetail.prefab 93 KB

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