BagMain.prefab 88 KB

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