redPacketWithdrawal.prefab 96 KB

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