redPacketWithdrawal.prefab 90 KB

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