rewardLuck.prefab 89 KB

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