rewardLuck.prefab 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620
  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__": 120
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 127
  31. },
  32. {
  33. "__id__": 128
  34. },
  35. {
  36. "__id__": 129
  37. },
  38. {
  39. "__id__": 130
  40. }
  41. ],
  42. "_prefab": {
  43. "__id__": 131
  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__": 101
  108. }
  109. ],
  110. "_active": true,
  111. "_components": [
  112. {
  113. "__id__": 118
  114. }
  115. ],
  116. "_prefab": {
  117. "__id__": 119
  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__": 52
  1355. },
  1356. {
  1357. "__id__": 55
  1358. },
  1359. {
  1360. "__id__": 65
  1361. },
  1362. {
  1363. "__id__": 68
  1364. },
  1365. {
  1366. "__id__": 76
  1367. },
  1368. {
  1369. "__id__": 83
  1370. }
  1371. ],
  1372. "_active": true,
  1373. "_components": [
  1374. {
  1375. "__id__": 99
  1376. }
  1377. ],
  1378. "_prefab": {
  1379. "__id__": 100
  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. "__id__": 47
  1551. }
  1552. ],
  1553. "_active": true,
  1554. "_components": [
  1555. {
  1556. "__id__": 50
  1557. }
  1558. ],
  1559. "_prefab": {
  1560. "__id__": 51
  1561. },
  1562. "_opacity": 255,
  1563. "_color": {
  1564. "__type__": "cc.Color",
  1565. "r": 255,
  1566. "g": 255,
  1567. "b": 255,
  1568. "a": 255
  1569. },
  1570. "_contentSize": {
  1571. "__type__": "cc.Size",
  1572. "width": 520,
  1573. "height": 500
  1574. },
  1575. "_anchorPoint": {
  1576. "__type__": "cc.Vec2",
  1577. "x": 0.5,
  1578. "y": 1
  1579. },
  1580. "_trs": {
  1581. "__type__": "TypedArray",
  1582. "ctor": "Float64Array",
  1583. "array": [
  1584. 0,
  1585. 200,
  1586. 0,
  1587. 0,
  1588. 0,
  1589. 0,
  1590. 1,
  1591. 1,
  1592. 1,
  1593. 1
  1594. ]
  1595. },
  1596. "_eulerAngles": {
  1597. "__type__": "cc.Vec3",
  1598. "x": 0,
  1599. "y": 0,
  1600. "z": 0
  1601. },
  1602. "_skewX": 0,
  1603. "_skewY": 0,
  1604. "_is3DNode": false,
  1605. "_groupIndex": 0,
  1606. "groupIndex": 0,
  1607. "_id": ""
  1608. },
  1609. {
  1610. "__type__": "cc.Node",
  1611. "_name": "标题",
  1612. "_objFlags": 0,
  1613. "_parent": {
  1614. "__id__": 40
  1615. },
  1616. "_children": [],
  1617. "_active": true,
  1618. "_components": [
  1619. {
  1620. "__id__": 42
  1621. }
  1622. ],
  1623. "_prefab": {
  1624. "__id__": 43
  1625. },
  1626. "_opacity": 255,
  1627. "_color": {
  1628. "__type__": "cc.Color",
  1629. "r": 255,
  1630. "g": 255,
  1631. "b": 255,
  1632. "a": 255
  1633. },
  1634. "_contentSize": {
  1635. "__type__": "cc.Size",
  1636. "width": 436,
  1637. "height": 63
  1638. },
  1639. "_anchorPoint": {
  1640. "__type__": "cc.Vec2",
  1641. "x": 0.5,
  1642. "y": 0.5
  1643. },
  1644. "_trs": {
  1645. "__type__": "TypedArray",
  1646. "ctor": "Float64Array",
  1647. "array": [
  1648. 0,
  1649. -65.196,
  1650. 0,
  1651. 0,
  1652. 0,
  1653. 0,
  1654. 1,
  1655. 1,
  1656. 1,
  1657. 1
  1658. ]
  1659. },
  1660. "_eulerAngles": {
  1661. "__type__": "cc.Vec3",
  1662. "x": 0,
  1663. "y": 0,
  1664. "z": 0
  1665. },
  1666. "_skewX": 0,
  1667. "_skewY": 0,
  1668. "_is3DNode": false,
  1669. "_groupIndex": 0,
  1670. "groupIndex": 0,
  1671. "_id": ""
  1672. },
  1673. {
  1674. "__type__": "cc.Sprite",
  1675. "_name": "",
  1676. "_objFlags": 0,
  1677. "node": {
  1678. "__id__": 41
  1679. },
  1680. "_enabled": true,
  1681. "_materials": [
  1682. {
  1683. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1684. }
  1685. ],
  1686. "_srcBlendFactor": 770,
  1687. "_dstBlendFactor": 771,
  1688. "_spriteFrame": {
  1689. "__uuid__": "a4f307d0-643c-4fc0-bc4e-c13e1de10851"
  1690. },
  1691. "_type": 0,
  1692. "_sizeMode": 1,
  1693. "_fillType": 0,
  1694. "_fillCenter": {
  1695. "__type__": "cc.Vec2",
  1696. "x": 0,
  1697. "y": 0
  1698. },
  1699. "_fillStart": 0,
  1700. "_fillRange": 0,
  1701. "_isTrimmedMode": true,
  1702. "_atlas": null,
  1703. "_id": ""
  1704. },
  1705. {
  1706. "__type__": "cc.PrefabInfo",
  1707. "root": {
  1708. "__id__": 1
  1709. },
  1710. "asset": {
  1711. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  1712. },
  1713. "fileId": "41yoS7VSdF264sssBJczQ3",
  1714. "sync": false
  1715. },
  1716. {
  1717. "__type__": "cc.Node",
  1718. "_name": "奖励数量",
  1719. "_objFlags": 0,
  1720. "_parent": {
  1721. "__id__": 40
  1722. },
  1723. "_children": [],
  1724. "_active": true,
  1725. "_components": [
  1726. {
  1727. "__id__": 45
  1728. }
  1729. ],
  1730. "_prefab": {
  1731. "__id__": 46
  1732. },
  1733. "_opacity": 255,
  1734. "_color": {
  1735. "__type__": "cc.Color",
  1736. "r": 247,
  1737. "g": 60,
  1738. "b": 66,
  1739. "a": 255
  1740. },
  1741. "_contentSize": {
  1742. "__type__": "cc.Size",
  1743. "width": 167.58,
  1744. "height": 126
  1745. },
  1746. "_anchorPoint": {
  1747. "__type__": "cc.Vec2",
  1748. "x": 0.5,
  1749. "y": 0.5
  1750. },
  1751. "_trs": {
  1752. "__type__": "TypedArray",
  1753. "ctor": "Float64Array",
  1754. "array": [
  1755. 54.019,
  1756. -219.981,
  1757. 0,
  1758. 0,
  1759. 0,
  1760. 0,
  1761. 1,
  1762. 1,
  1763. 1,
  1764. 1
  1765. ]
  1766. },
  1767. "_eulerAngles": {
  1768. "__type__": "cc.Vec3",
  1769. "x": 0,
  1770. "y": 0,
  1771. "z": 0
  1772. },
  1773. "_skewX": 0,
  1774. "_skewY": 0,
  1775. "_is3DNode": false,
  1776. "_groupIndex": 0,
  1777. "groupIndex": 0,
  1778. "_id": ""
  1779. },
  1780. {
  1781. "__type__": "cc.Label",
  1782. "_name": "",
  1783. "_objFlags": 0,
  1784. "node": {
  1785. "__id__": 44
  1786. },
  1787. "_enabled": true,
  1788. "_materials": [
  1789. {
  1790. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1791. }
  1792. ],
  1793. "_srcBlendFactor": 770,
  1794. "_dstBlendFactor": 771,
  1795. "_string": "457",
  1796. "_N$string": "457",
  1797. "_fontSize": 100,
  1798. "_lineHeight": 100,
  1799. "_enableWrapText": true,
  1800. "_N$file": {
  1801. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  1802. },
  1803. "_isSystemFontUsed": false,
  1804. "_spacingX": 0,
  1805. "_batchAsBitmap": false,
  1806. "_styleFlags": 0,
  1807. "_underlineHeight": 0,
  1808. "_N$horizontalAlign": 1,
  1809. "_N$verticalAlign": 1,
  1810. "_N$fontFamily": "Arial",
  1811. "_N$overflow": 0,
  1812. "_N$cacheMode": 0,
  1813. "_id": ""
  1814. },
  1815. {
  1816. "__type__": "cc.PrefabInfo",
  1817. "root": {
  1818. "__id__": 1
  1819. },
  1820. "asset": {
  1821. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  1822. },
  1823. "fileId": "ed0GzIp6ZNBY4I08Ixc+UJ",
  1824. "sync": false
  1825. },
  1826. {
  1827. "__type__": "cc.Node",
  1828. "_name": "货币图标",
  1829. "_objFlags": 0,
  1830. "_parent": {
  1831. "__id__": 40
  1832. },
  1833. "_children": [],
  1834. "_active": true,
  1835. "_components": [
  1836. {
  1837. "__id__": 48
  1838. }
  1839. ],
  1840. "_prefab": {
  1841. "__id__": 49
  1842. },
  1843. "_opacity": 255,
  1844. "_color": {
  1845. "__type__": "cc.Color",
  1846. "r": 255,
  1847. "g": 255,
  1848. "b": 255,
  1849. "a": 255
  1850. },
  1851. "_contentSize": {
  1852. "__type__": "cc.Size",
  1853. "width": 100,
  1854. "height": 105
  1855. },
  1856. "_anchorPoint": {
  1857. "__type__": "cc.Vec2",
  1858. "x": 0.5,
  1859. "y": 0.5
  1860. },
  1861. "_trs": {
  1862. "__type__": "TypedArray",
  1863. "ctor": "Float64Array",
  1864. "array": [
  1865. -99.107,
  1866. -223.568,
  1867. 0,
  1868. 0,
  1869. 0,
  1870. 0,
  1871. 1,
  1872. 1,
  1873. 1,
  1874. 1
  1875. ]
  1876. },
  1877. "_eulerAngles": {
  1878. "__type__": "cc.Vec3",
  1879. "x": 0,
  1880. "y": 0,
  1881. "z": 0
  1882. },
  1883. "_skewX": 0,
  1884. "_skewY": 0,
  1885. "_is3DNode": false,
  1886. "_groupIndex": 0,
  1887. "groupIndex": 0,
  1888. "_id": ""
  1889. },
  1890. {
  1891. "__type__": "cc.Sprite",
  1892. "_name": "",
  1893. "_objFlags": 0,
  1894. "node": {
  1895. "__id__": 47
  1896. },
  1897. "_enabled": true,
  1898. "_materials": [
  1899. {
  1900. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1901. }
  1902. ],
  1903. "_srcBlendFactor": 770,
  1904. "_dstBlendFactor": 771,
  1905. "_spriteFrame": {
  1906. "__uuid__": "b3bbf9d3-f253-45a1-b28f-9856bc2929d2"
  1907. },
  1908. "_type": 0,
  1909. "_sizeMode": 1,
  1910. "_fillType": 0,
  1911. "_fillCenter": {
  1912. "__type__": "cc.Vec2",
  1913. "x": 0,
  1914. "y": 0
  1915. },
  1916. "_fillStart": 0,
  1917. "_fillRange": 0,
  1918. "_isTrimmedMode": true,
  1919. "_atlas": null,
  1920. "_id": ""
  1921. },
  1922. {
  1923. "__type__": "cc.PrefabInfo",
  1924. "root": {
  1925. "__id__": 1
  1926. },
  1927. "asset": {
  1928. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  1929. },
  1930. "fileId": "1d/wLslUhP5rX5W5A14lbO",
  1931. "sync": false
  1932. },
  1933. {
  1934. "__type__": "cc.Sprite",
  1935. "_name": "",
  1936. "_objFlags": 0,
  1937. "node": {
  1938. "__id__": 40
  1939. },
  1940. "_enabled": true,
  1941. "_materials": [
  1942. {
  1943. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1944. }
  1945. ],
  1946. "_srcBlendFactor": 770,
  1947. "_dstBlendFactor": 771,
  1948. "_spriteFrame": {
  1949. "__uuid__": "03048271-cbdd-459b-9676-00b3c53febb8"
  1950. },
  1951. "_type": 0,
  1952. "_sizeMode": 0,
  1953. "_fillType": 0,
  1954. "_fillCenter": {
  1955. "__type__": "cc.Vec2",
  1956. "x": 0,
  1957. "y": 0
  1958. },
  1959. "_fillStart": 0,
  1960. "_fillRange": 0,
  1961. "_isTrimmedMode": true,
  1962. "_atlas": null,
  1963. "_id": ""
  1964. },
  1965. {
  1966. "__type__": "cc.PrefabInfo",
  1967. "root": {
  1968. "__id__": 1
  1969. },
  1970. "asset": {
  1971. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  1972. },
  1973. "fileId": "a3Faq/r4lPuaTGTA6Cp4P/",
  1974. "sync": false
  1975. },
  1976. {
  1977. "__type__": "cc.Node",
  1978. "_name": "底部盖子",
  1979. "_objFlags": 0,
  1980. "_parent": {
  1981. "__id__": 36
  1982. },
  1983. "_children": [],
  1984. "_active": true,
  1985. "_components": [
  1986. {
  1987. "__id__": 53
  1988. }
  1989. ],
  1990. "_prefab": {
  1991. "__id__": 54
  1992. },
  1993. "_opacity": 255,
  1994. "_color": {
  1995. "__type__": "cc.Color",
  1996. "r": 255,
  1997. "g": 255,
  1998. "b": 255,
  1999. "a": 255
  2000. },
  2001. "_contentSize": {
  2002. "__type__": "cc.Size",
  2003. "width": 551,
  2004. "height": 456
  2005. },
  2006. "_anchorPoint": {
  2007. "__type__": "cc.Vec2",
  2008. "x": 0.5,
  2009. "y": 0.5
  2010. },
  2011. "_trs": {
  2012. "__type__": "TypedArray",
  2013. "ctor": "Float64Array",
  2014. "array": [
  2015. 0,
  2016. -80.275,
  2017. 0,
  2018. 0,
  2019. 0,
  2020. 0,
  2021. 1,
  2022. 1,
  2023. 1,
  2024. 1
  2025. ]
  2026. },
  2027. "_eulerAngles": {
  2028. "__type__": "cc.Vec3",
  2029. "x": 0,
  2030. "y": 0,
  2031. "z": 0
  2032. },
  2033. "_skewX": 0,
  2034. "_skewY": 0,
  2035. "_is3DNode": false,
  2036. "_groupIndex": 0,
  2037. "groupIndex": 0,
  2038. "_id": ""
  2039. },
  2040. {
  2041. "__type__": "cc.Sprite",
  2042. "_name": "",
  2043. "_objFlags": 0,
  2044. "node": {
  2045. "__id__": 52
  2046. },
  2047. "_enabled": true,
  2048. "_materials": [
  2049. {
  2050. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2051. }
  2052. ],
  2053. "_srcBlendFactor": 770,
  2054. "_dstBlendFactor": 771,
  2055. "_spriteFrame": {
  2056. "__uuid__": "3482f7aa-26ce-4b43-80ca-41e7cfce2895"
  2057. },
  2058. "_type": 0,
  2059. "_sizeMode": 1,
  2060. "_fillType": 0,
  2061. "_fillCenter": {
  2062. "__type__": "cc.Vec2",
  2063. "x": 0,
  2064. "y": 0
  2065. },
  2066. "_fillStart": 0,
  2067. "_fillRange": 0,
  2068. "_isTrimmedMode": true,
  2069. "_atlas": null,
  2070. "_id": ""
  2071. },
  2072. {
  2073. "__type__": "cc.PrefabInfo",
  2074. "root": {
  2075. "__id__": 1
  2076. },
  2077. "asset": {
  2078. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2079. },
  2080. "fileId": "44iK7LD2hMX5HJ9isk7cRw",
  2081. "sync": false
  2082. },
  2083. {
  2084. "__type__": "cc.Node",
  2085. "_name": "领取按钮",
  2086. "_objFlags": 0,
  2087. "_parent": {
  2088. "__id__": 36
  2089. },
  2090. "_children": [
  2091. {
  2092. "__id__": 56
  2093. }
  2094. ],
  2095. "_active": true,
  2096. "_components": [
  2097. {
  2098. "__id__": 60
  2099. },
  2100. {
  2101. "__id__": 61
  2102. },
  2103. {
  2104. "__id__": 63
  2105. }
  2106. ],
  2107. "_prefab": {
  2108. "__id__": 64
  2109. },
  2110. "_opacity": 255,
  2111. "_color": {
  2112. "__type__": "cc.Color",
  2113. "r": 255,
  2114. "g": 255,
  2115. "b": 255,
  2116. "a": 255
  2117. },
  2118. "_contentSize": {
  2119. "__type__": "cc.Size",
  2120. "width": 328,
  2121. "height": 137
  2122. },
  2123. "_anchorPoint": {
  2124. "__type__": "cc.Vec2",
  2125. "x": 0.5,
  2126. "y": 0.5
  2127. },
  2128. "_trs": {
  2129. "__type__": "TypedArray",
  2130. "ctor": "Float64Array",
  2131. "array": [
  2132. 0,
  2133. -125.644,
  2134. 0,
  2135. 0,
  2136. 0,
  2137. 0,
  2138. 1,
  2139. 1,
  2140. 1,
  2141. 0
  2142. ]
  2143. },
  2144. "_eulerAngles": {
  2145. "__type__": "cc.Vec3",
  2146. "x": 0,
  2147. "y": 0,
  2148. "z": 0
  2149. },
  2150. "_skewX": 0,
  2151. "_skewY": 0,
  2152. "_is3DNode": false,
  2153. "_groupIndex": 0,
  2154. "groupIndex": 0,
  2155. "_id": ""
  2156. },
  2157. {
  2158. "__type__": "cc.Node",
  2159. "_name": "描述",
  2160. "_objFlags": 0,
  2161. "_parent": {
  2162. "__id__": 55
  2163. },
  2164. "_children": [],
  2165. "_active": true,
  2166. "_components": [
  2167. {
  2168. "__id__": 57
  2169. },
  2170. {
  2171. "__id__": 58
  2172. }
  2173. ],
  2174. "_prefab": {
  2175. "__id__": 59
  2176. },
  2177. "_opacity": 255,
  2178. "_color": {
  2179. "__type__": "cc.Color",
  2180. "r": 255,
  2181. "g": 255,
  2182. "b": 255,
  2183. "a": 255
  2184. },
  2185. "_contentSize": {
  2186. "__type__": "cc.Size",
  2187. "width": 164,
  2188. "height": 54.4
  2189. },
  2190. "_anchorPoint": {
  2191. "__type__": "cc.Vec2",
  2192. "x": 0.5,
  2193. "y": 0.5
  2194. },
  2195. "_trs": {
  2196. "__type__": "TypedArray",
  2197. "ctor": "Float64Array",
  2198. "array": [
  2199. 0,
  2200. 10,
  2201. 0,
  2202. 0,
  2203. 0,
  2204. 0,
  2205. 1,
  2206. 1,
  2207. 1,
  2208. 1
  2209. ]
  2210. },
  2211. "_eulerAngles": {
  2212. "__type__": "cc.Vec3",
  2213. "x": 0,
  2214. "y": 0,
  2215. "z": 0
  2216. },
  2217. "_skewX": 0,
  2218. "_skewY": 0,
  2219. "_is3DNode": false,
  2220. "_groupIndex": 0,
  2221. "groupIndex": 0,
  2222. "_id": ""
  2223. },
  2224. {
  2225. "__type__": "cc.Label",
  2226. "_name": "",
  2227. "_objFlags": 0,
  2228. "node": {
  2229. "__id__": 56
  2230. },
  2231. "_enabled": true,
  2232. "_materials": [
  2233. {
  2234. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2235. }
  2236. ],
  2237. "_srcBlendFactor": 770,
  2238. "_dstBlendFactor": 771,
  2239. "_string": "领取奖励",
  2240. "_N$string": "领取奖励",
  2241. "_fontSize": 40,
  2242. "_lineHeight": 40,
  2243. "_enableWrapText": true,
  2244. "_N$file": {
  2245. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  2246. },
  2247. "_isSystemFontUsed": false,
  2248. "_spacingX": 0,
  2249. "_batchAsBitmap": false,
  2250. "_styleFlags": 0,
  2251. "_underlineHeight": 0,
  2252. "_N$horizontalAlign": 1,
  2253. "_N$verticalAlign": 1,
  2254. "_N$fontFamily": "Arial",
  2255. "_N$overflow": 0,
  2256. "_N$cacheMode": 0,
  2257. "_id": ""
  2258. },
  2259. {
  2260. "__type__": "cc.LabelOutline",
  2261. "_name": "",
  2262. "_objFlags": 0,
  2263. "node": {
  2264. "__id__": 56
  2265. },
  2266. "_enabled": true,
  2267. "_color": {
  2268. "__type__": "cc.Color",
  2269. "r": 13,
  2270. "g": 107,
  2271. "b": 0,
  2272. "a": 255
  2273. },
  2274. "_width": 2,
  2275. "_id": ""
  2276. },
  2277. {
  2278. "__type__": "cc.PrefabInfo",
  2279. "root": {
  2280. "__id__": 1
  2281. },
  2282. "asset": {
  2283. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2284. },
  2285. "fileId": "54i0KMcUlK+oYS53z5tGop",
  2286. "sync": false
  2287. },
  2288. {
  2289. "__type__": "cc.Sprite",
  2290. "_name": "",
  2291. "_objFlags": 0,
  2292. "node": {
  2293. "__id__": 55
  2294. },
  2295. "_enabled": true,
  2296. "_materials": [
  2297. {
  2298. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2299. }
  2300. ],
  2301. "_srcBlendFactor": 770,
  2302. "_dstBlendFactor": 771,
  2303. "_spriteFrame": {
  2304. "__uuid__": "cb3cd092-c92d-4a3a-8805-93621d1c1a9b"
  2305. },
  2306. "_type": 0,
  2307. "_sizeMode": 1,
  2308. "_fillType": 0,
  2309. "_fillCenter": {
  2310. "__type__": "cc.Vec2",
  2311. "x": 0,
  2312. "y": 0
  2313. },
  2314. "_fillStart": 0,
  2315. "_fillRange": 0,
  2316. "_isTrimmedMode": true,
  2317. "_atlas": null,
  2318. "_id": ""
  2319. },
  2320. {
  2321. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  2322. "_name": "",
  2323. "_objFlags": 0,
  2324. "node": {
  2325. "__id__": 55
  2326. },
  2327. "_enabled": true,
  2328. "node_panel": {
  2329. "__id__": 1
  2330. },
  2331. "transition_type": 0,
  2332. "onComplete": [
  2333. {
  2334. "__id__": 62
  2335. }
  2336. ],
  2337. "_id": ""
  2338. },
  2339. {
  2340. "__type__": "cc.ClickEvent",
  2341. "target": {
  2342. "__id__": 1
  2343. },
  2344. "component": "",
  2345. "_componentId": "43f3akkA71HA76UhTj/R19X",
  2346. "handler": "clickGetReward",
  2347. "customEventData": ""
  2348. },
  2349. {
  2350. "__type__": "cc.Animation",
  2351. "_name": "",
  2352. "_objFlags": 0,
  2353. "node": {
  2354. "__id__": 55
  2355. },
  2356. "_enabled": true,
  2357. "_defaultClip": {
  2358. "__uuid__": "1c7cfdae-7b6c-46a5-9085-2fa8aa684ac7"
  2359. },
  2360. "_clips": [
  2361. {
  2362. "__uuid__": "1c7cfdae-7b6c-46a5-9085-2fa8aa684ac7"
  2363. }
  2364. ],
  2365. "playOnLoad": true,
  2366. "_id": ""
  2367. },
  2368. {
  2369. "__type__": "cc.PrefabInfo",
  2370. "root": {
  2371. "__id__": 1
  2372. },
  2373. "asset": {
  2374. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2375. },
  2376. "fileId": "43+VdXi3lBoLwV9OGbqzlJ",
  2377. "sync": false
  2378. },
  2379. {
  2380. "__type__": "cc.Node",
  2381. "_name": "hb_star",
  2382. "_objFlags": 0,
  2383. "_parent": {
  2384. "__id__": 36
  2385. },
  2386. "_children": [],
  2387. "_active": true,
  2388. "_components": [
  2389. {
  2390. "__id__": 66
  2391. }
  2392. ],
  2393. "_prefab": {
  2394. "__id__": 67
  2395. },
  2396. "_opacity": 255,
  2397. "_color": {
  2398. "__type__": "cc.Color",
  2399. "r": 255,
  2400. "g": 255,
  2401. "b": 255,
  2402. "a": 255
  2403. },
  2404. "_contentSize": {
  2405. "__type__": "cc.Size",
  2406. "width": 527.04,
  2407. "height": 450.45
  2408. },
  2409. "_anchorPoint": {
  2410. "__type__": "cc.Vec2",
  2411. "x": 0.5,
  2412. "y": 0.5
  2413. },
  2414. "_trs": {
  2415. "__type__": "TypedArray",
  2416. "ctor": "Float64Array",
  2417. "array": [
  2418. 0,
  2419. 0,
  2420. 0,
  2421. 0,
  2422. 0,
  2423. 0,
  2424. 1,
  2425. 1,
  2426. 1,
  2427. 1
  2428. ]
  2429. },
  2430. "_eulerAngles": {
  2431. "__type__": "cc.Vec3",
  2432. "x": 0,
  2433. "y": 0,
  2434. "z": 0
  2435. },
  2436. "_skewX": 0,
  2437. "_skewY": 0,
  2438. "_is3DNode": false,
  2439. "_groupIndex": 0,
  2440. "groupIndex": 0,
  2441. "_id": ""
  2442. },
  2443. {
  2444. "__type__": "sp.Skeleton",
  2445. "_name": "",
  2446. "_objFlags": 0,
  2447. "node": {
  2448. "__id__": 65
  2449. },
  2450. "_enabled": true,
  2451. "_materials": [
  2452. {
  2453. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  2454. }
  2455. ],
  2456. "paused": false,
  2457. "defaultSkin": "default",
  2458. "defaultAnimation": "animation",
  2459. "_preCacheMode": 0,
  2460. "_cacheMode": 0,
  2461. "loop": false,
  2462. "premultipliedAlpha": true,
  2463. "timeScale": 1,
  2464. "_accTime": 0,
  2465. "_playCount": 0,
  2466. "_frameCache": null,
  2467. "_curFrame": null,
  2468. "_skeletonCache": null,
  2469. "_animationName": "animation",
  2470. "_animationQueue": [],
  2471. "_headAniInfo": null,
  2472. "_playTimes": 1,
  2473. "_isAniComplete": true,
  2474. "_N$skeletonData": {
  2475. "__uuid__": "4ff19fc9-047e-44b1-aac9-98904d537eb9"
  2476. },
  2477. "_N$_defaultCacheMode": 0,
  2478. "_N$debugSlots": false,
  2479. "_N$debugBones": false,
  2480. "_N$debugMesh": false,
  2481. "_N$useTint": false,
  2482. "_N$enableBatch": false,
  2483. "_id": ""
  2484. },
  2485. {
  2486. "__type__": "cc.PrefabInfo",
  2487. "root": {
  2488. "__id__": 1
  2489. },
  2490. "asset": {
  2491. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2492. },
  2493. "fileId": "c6aRTtlwNPzIXwh3KOjCt7",
  2494. "sync": false
  2495. },
  2496. {
  2497. "__type__": "cc.Node",
  2498. "_name": "幸运红包封面",
  2499. "_objFlags": 0,
  2500. "_parent": {
  2501. "__id__": 36
  2502. },
  2503. "_children": [
  2504. {
  2505. "__id__": 69
  2506. },
  2507. {
  2508. "__id__": 72
  2509. }
  2510. ],
  2511. "_active": true,
  2512. "_components": [],
  2513. "_prefab": {
  2514. "__id__": 75
  2515. },
  2516. "_opacity": 255,
  2517. "_color": {
  2518. "__type__": "cc.Color",
  2519. "r": 255,
  2520. "g": 255,
  2521. "b": 255,
  2522. "a": 255
  2523. },
  2524. "_contentSize": {
  2525. "__type__": "cc.Size",
  2526. "width": 551,
  2527. "height": 814
  2528. },
  2529. "_anchorPoint": {
  2530. "__type__": "cc.Vec2",
  2531. "x": 0.5,
  2532. "y": 0.5
  2533. },
  2534. "_trs": {
  2535. "__type__": "TypedArray",
  2536. "ctor": "Float64Array",
  2537. "array": [
  2538. 0,
  2539. 101,
  2540. 0,
  2541. 0,
  2542. 0,
  2543. 0,
  2544. 1,
  2545. 1,
  2546. 1,
  2547. 1
  2548. ]
  2549. },
  2550. "_eulerAngles": {
  2551. "__type__": "cc.Vec3",
  2552. "x": 0,
  2553. "y": 0,
  2554. "z": 0
  2555. },
  2556. "_skewX": 0,
  2557. "_skewY": 0,
  2558. "_is3DNode": false,
  2559. "_groupIndex": 0,
  2560. "groupIndex": 0,
  2561. "_id": ""
  2562. },
  2563. {
  2564. "__type__": "cc.Node",
  2565. "_name": "熊猫动画",
  2566. "_objFlags": 0,
  2567. "_parent": {
  2568. "__id__": 68
  2569. },
  2570. "_children": [],
  2571. "_active": true,
  2572. "_components": [
  2573. {
  2574. "__id__": 70
  2575. }
  2576. ],
  2577. "_prefab": {
  2578. "__id__": 71
  2579. },
  2580. "_opacity": 255,
  2581. "_color": {
  2582. "__type__": "cc.Color",
  2583. "r": 255,
  2584. "g": 255,
  2585. "b": 255,
  2586. "a": 255
  2587. },
  2588. "_contentSize": {
  2589. "__type__": "cc.Size",
  2590. "width": 485.48,
  2591. "height": 443.28
  2592. },
  2593. "_anchorPoint": {
  2594. "__type__": "cc.Vec2",
  2595. "x": 0.5,
  2596. "y": 0.5
  2597. },
  2598. "_trs": {
  2599. "__type__": "TypedArray",
  2600. "ctor": "Float64Array",
  2601. "array": [
  2602. 0,
  2603. 220,
  2604. 0,
  2605. 0,
  2606. 0,
  2607. 0,
  2608. 1,
  2609. 1,
  2610. 1,
  2611. 1
  2612. ]
  2613. },
  2614. "_eulerAngles": {
  2615. "__type__": "cc.Vec3",
  2616. "x": 0,
  2617. "y": 0,
  2618. "z": 0
  2619. },
  2620. "_skewX": 0,
  2621. "_skewY": 0,
  2622. "_is3DNode": false,
  2623. "_groupIndex": 0,
  2624. "groupIndex": 0,
  2625. "_id": ""
  2626. },
  2627. {
  2628. "__type__": "sp.Skeleton",
  2629. "_name": "",
  2630. "_objFlags": 0,
  2631. "node": {
  2632. "__id__": 69
  2633. },
  2634. "_enabled": true,
  2635. "_materials": [
  2636. {
  2637. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  2638. }
  2639. ],
  2640. "paused": false,
  2641. "defaultSkin": "default",
  2642. "defaultAnimation": "hongbao",
  2643. "_preCacheMode": 0,
  2644. "_cacheMode": 0,
  2645. "loop": true,
  2646. "premultipliedAlpha": true,
  2647. "timeScale": 1,
  2648. "_accTime": 0,
  2649. "_playCount": 0,
  2650. "_frameCache": null,
  2651. "_curFrame": null,
  2652. "_skeletonCache": null,
  2653. "_animationName": "hongbao",
  2654. "_animationQueue": [],
  2655. "_headAniInfo": null,
  2656. "_playTimes": 0,
  2657. "_isAniComplete": true,
  2658. "_N$skeletonData": {
  2659. "__uuid__": "8f090d5d-cfa1-40d6-bcce-014cc1aa881e"
  2660. },
  2661. "_N$_defaultCacheMode": 0,
  2662. "_N$debugSlots": false,
  2663. "_N$debugBones": false,
  2664. "_N$debugMesh": false,
  2665. "_N$useTint": false,
  2666. "_N$enableBatch": false,
  2667. "_id": ""
  2668. },
  2669. {
  2670. "__type__": "cc.PrefabInfo",
  2671. "root": {
  2672. "__id__": 1
  2673. },
  2674. "asset": {
  2675. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2676. },
  2677. "fileId": "69lluWNxZO15gVBxl2dW1Q",
  2678. "sync": false
  2679. },
  2680. {
  2681. "__type__": "cc.Node",
  2682. "_name": "幸运盖子",
  2683. "_objFlags": 0,
  2684. "_parent": {
  2685. "__id__": 68
  2686. },
  2687. "_children": [],
  2688. "_active": true,
  2689. "_components": [
  2690. {
  2691. "__id__": 73
  2692. }
  2693. ],
  2694. "_prefab": {
  2695. "__id__": 74
  2696. },
  2697. "_opacity": 255,
  2698. "_color": {
  2699. "__type__": "cc.Color",
  2700. "r": 255,
  2701. "g": 255,
  2702. "b": 255,
  2703. "a": 255
  2704. },
  2705. "_contentSize": {
  2706. "__type__": "cc.Size",
  2707. "width": 551,
  2708. "height": 765
  2709. },
  2710. "_anchorPoint": {
  2711. "__type__": "cc.Vec2",
  2712. "x": 0.5,
  2713. "y": 0.5
  2714. },
  2715. "_trs": {
  2716. "__type__": "TypedArray",
  2717. "ctor": "Float64Array",
  2718. "array": [
  2719. 0,
  2720. -26,
  2721. 0,
  2722. 0,
  2723. 0,
  2724. 0,
  2725. 1,
  2726. 1,
  2727. 1,
  2728. 1
  2729. ]
  2730. },
  2731. "_eulerAngles": {
  2732. "__type__": "cc.Vec3",
  2733. "x": 0,
  2734. "y": 0,
  2735. "z": 0
  2736. },
  2737. "_skewX": 0,
  2738. "_skewY": 0,
  2739. "_is3DNode": false,
  2740. "_groupIndex": 0,
  2741. "groupIndex": 0,
  2742. "_id": ""
  2743. },
  2744. {
  2745. "__type__": "cc.Sprite",
  2746. "_name": "",
  2747. "_objFlags": 0,
  2748. "node": {
  2749. "__id__": 72
  2750. },
  2751. "_enabled": true,
  2752. "_materials": [
  2753. {
  2754. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2755. }
  2756. ],
  2757. "_srcBlendFactor": 770,
  2758. "_dstBlendFactor": 771,
  2759. "_spriteFrame": {
  2760. "__uuid__": "565ece1e-8fa1-4afa-a106-8d0309447708"
  2761. },
  2762. "_type": 0,
  2763. "_sizeMode": 1,
  2764. "_fillType": 0,
  2765. "_fillCenter": {
  2766. "__type__": "cc.Vec2",
  2767. "x": 0,
  2768. "y": 0
  2769. },
  2770. "_fillStart": 0,
  2771. "_fillRange": 0,
  2772. "_isTrimmedMode": true,
  2773. "_atlas": null,
  2774. "_id": ""
  2775. },
  2776. {
  2777. "__type__": "cc.PrefabInfo",
  2778. "root": {
  2779. "__id__": 1
  2780. },
  2781. "asset": {
  2782. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2783. },
  2784. "fileId": "927C8r+l1At7dtmnIqikfg",
  2785. "sync": false
  2786. },
  2787. {
  2788. "__type__": "cc.PrefabInfo",
  2789. "root": {
  2790. "__id__": 1
  2791. },
  2792. "asset": {
  2793. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2794. },
  2795. "fileId": "17n5+miwFJZZvqu6vW2ucy",
  2796. "sync": false
  2797. },
  2798. {
  2799. "__type__": "cc.Node",
  2800. "_name": "按钮_广告",
  2801. "_objFlags": 0,
  2802. "_parent": {
  2803. "__id__": 36
  2804. },
  2805. "_children": [
  2806. {
  2807. "__id__": 77
  2808. }
  2809. ],
  2810. "_active": true,
  2811. "_components": [
  2812. {
  2813. "__id__": 80
  2814. }
  2815. ],
  2816. "_prefab": {
  2817. "__id__": 82
  2818. },
  2819. "_opacity": 255,
  2820. "_color": {
  2821. "__type__": "cc.Color",
  2822. "r": 255,
  2823. "g": 255,
  2824. "b": 255,
  2825. "a": 255
  2826. },
  2827. "_contentSize": {
  2828. "__type__": "cc.Size",
  2829. "width": 195,
  2830. "height": 204
  2831. },
  2832. "_anchorPoint": {
  2833. "__type__": "cc.Vec2",
  2834. "x": 0.5,
  2835. "y": 0.5
  2836. },
  2837. "_trs": {
  2838. "__type__": "TypedArray",
  2839. "ctor": "Float64Array",
  2840. "array": [
  2841. 0,
  2842. -61.982,
  2843. 0,
  2844. 0,
  2845. 0,
  2846. 0,
  2847. 1,
  2848. 1,
  2849. 1,
  2850. 0
  2851. ]
  2852. },
  2853. "_eulerAngles": {
  2854. "__type__": "cc.Vec3",
  2855. "x": 0,
  2856. "y": 0,
  2857. "z": 0
  2858. },
  2859. "_skewX": 0,
  2860. "_skewY": 0,
  2861. "_is3DNode": false,
  2862. "_groupIndex": 0,
  2863. "groupIndex": 0,
  2864. "_id": ""
  2865. },
  2866. {
  2867. "__type__": "cc.Node",
  2868. "_name": "动画",
  2869. "_objFlags": 0,
  2870. "_parent": {
  2871. "__id__": 76
  2872. },
  2873. "_children": [],
  2874. "_active": true,
  2875. "_components": [
  2876. {
  2877. "__id__": 78
  2878. }
  2879. ],
  2880. "_prefab": {
  2881. "__id__": 79
  2882. },
  2883. "_opacity": 255,
  2884. "_color": {
  2885. "__type__": "cc.Color",
  2886. "r": 255,
  2887. "g": 255,
  2888. "b": 255,
  2889. "a": 255
  2890. },
  2891. "_contentSize": {
  2892. "__type__": "cc.Size",
  2893. "width": 195,
  2894. "height": 204
  2895. },
  2896. "_anchorPoint": {
  2897. "__type__": "cc.Vec2",
  2898. "x": 0.5,
  2899. "y": 0.5
  2900. },
  2901. "_trs": {
  2902. "__type__": "TypedArray",
  2903. "ctor": "Float64Array",
  2904. "array": [
  2905. 0,
  2906. 0,
  2907. 0,
  2908. 0,
  2909. 0,
  2910. 0,
  2911. 1,
  2912. 1,
  2913. 1,
  2914. 1
  2915. ]
  2916. },
  2917. "_eulerAngles": {
  2918. "__type__": "cc.Vec3",
  2919. "x": 0,
  2920. "y": 0,
  2921. "z": 0
  2922. },
  2923. "_skewX": 0,
  2924. "_skewY": 0,
  2925. "_is3DNode": false,
  2926. "_groupIndex": 0,
  2927. "groupIndex": 0,
  2928. "_id": ""
  2929. },
  2930. {
  2931. "__type__": "sp.Skeleton",
  2932. "_name": "",
  2933. "_objFlags": 0,
  2934. "node": {
  2935. "__id__": 77
  2936. },
  2937. "_enabled": true,
  2938. "_materials": [
  2939. {
  2940. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  2941. }
  2942. ],
  2943. "paused": false,
  2944. "defaultSkin": "default",
  2945. "defaultAnimation": "animation",
  2946. "_preCacheMode": 0,
  2947. "_cacheMode": 0,
  2948. "loop": true,
  2949. "premultipliedAlpha": true,
  2950. "timeScale": 1,
  2951. "_accTime": 0,
  2952. "_playCount": 0,
  2953. "_frameCache": null,
  2954. "_curFrame": null,
  2955. "_skeletonCache": null,
  2956. "_animationName": "animation",
  2957. "_animationQueue": [],
  2958. "_headAniInfo": null,
  2959. "_playTimes": 0,
  2960. "_isAniComplete": true,
  2961. "_N$skeletonData": {
  2962. "__uuid__": "d7adad34-ed08-4539-bd75-ff56d401edee"
  2963. },
  2964. "_N$_defaultCacheMode": 0,
  2965. "_N$debugSlots": false,
  2966. "_N$debugBones": false,
  2967. "_N$debugMesh": false,
  2968. "_N$useTint": false,
  2969. "_N$enableBatch": false,
  2970. "_id": ""
  2971. },
  2972. {
  2973. "__type__": "cc.PrefabInfo",
  2974. "root": {
  2975. "__id__": 1
  2976. },
  2977. "asset": {
  2978. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2979. },
  2980. "fileId": "eaeZjmGRhNyKy79oP95dA2",
  2981. "sync": false
  2982. },
  2983. {
  2984. "__type__": "cc.Button",
  2985. "_name": "",
  2986. "_objFlags": 0,
  2987. "node": {
  2988. "__id__": 76
  2989. },
  2990. "_enabled": true,
  2991. "_normalMaterial": null,
  2992. "_grayMaterial": null,
  2993. "duration": 0.1,
  2994. "zoomScale": 1.2,
  2995. "clickEvents": [
  2996. {
  2997. "__id__": 81
  2998. }
  2999. ],
  3000. "_N$interactable": true,
  3001. "_N$enableAutoGrayEffect": false,
  3002. "_N$transition": 3,
  3003. "transition": 3,
  3004. "_N$normalColor": {
  3005. "__type__": "cc.Color",
  3006. "r": 255,
  3007. "g": 255,
  3008. "b": 255,
  3009. "a": 255
  3010. },
  3011. "_N$pressedColor": {
  3012. "__type__": "cc.Color",
  3013. "r": 211,
  3014. "g": 211,
  3015. "b": 211,
  3016. "a": 255
  3017. },
  3018. "pressedColor": {
  3019. "__type__": "cc.Color",
  3020. "r": 211,
  3021. "g": 211,
  3022. "b": 211,
  3023. "a": 255
  3024. },
  3025. "_N$hoverColor": {
  3026. "__type__": "cc.Color",
  3027. "r": 255,
  3028. "g": 255,
  3029. "b": 255,
  3030. "a": 255
  3031. },
  3032. "hoverColor": {
  3033. "__type__": "cc.Color",
  3034. "r": 255,
  3035. "g": 255,
  3036. "b": 255,
  3037. "a": 255
  3038. },
  3039. "_N$disabledColor": {
  3040. "__type__": "cc.Color",
  3041. "r": 124,
  3042. "g": 124,
  3043. "b": 124,
  3044. "a": 255
  3045. },
  3046. "_N$normalSprite": null,
  3047. "_N$pressedSprite": null,
  3048. "pressedSprite": null,
  3049. "_N$hoverSprite": null,
  3050. "hoverSprite": null,
  3051. "_N$disabledSprite": null,
  3052. "_N$target": null,
  3053. "_id": ""
  3054. },
  3055. {
  3056. "__type__": "cc.ClickEvent",
  3057. "target": {
  3058. "__id__": 1
  3059. },
  3060. "component": "",
  3061. "_componentId": "43f3akkA71HA76UhTj/R19X",
  3062. "handler": "clickWatchVideo",
  3063. "customEventData": ""
  3064. },
  3065. {
  3066. "__type__": "cc.PrefabInfo",
  3067. "root": {
  3068. "__id__": 1
  3069. },
  3070. "asset": {
  3071. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3072. },
  3073. "fileId": "09D0GUfXNBj5CmYUZ6zY2p",
  3074. "sync": false
  3075. },
  3076. {
  3077. "__type__": "cc.Node",
  3078. "_name": "通关红包封面",
  3079. "_objFlags": 0,
  3080. "_parent": {
  3081. "__id__": 36
  3082. },
  3083. "_children": [
  3084. {
  3085. "__id__": 84
  3086. },
  3087. {
  3088. "__id__": 87
  3089. },
  3090. {
  3091. "__id__": 90
  3092. },
  3093. {
  3094. "__id__": 94
  3095. }
  3096. ],
  3097. "_active": false,
  3098. "_components": [],
  3099. "_prefab": {
  3100. "__id__": 98
  3101. },
  3102. "_opacity": 0,
  3103. "_color": {
  3104. "__type__": "cc.Color",
  3105. "r": 255,
  3106. "g": 255,
  3107. "b": 255,
  3108. "a": 255
  3109. },
  3110. "_contentSize": {
  3111. "__type__": "cc.Size",
  3112. "width": 551,
  3113. "height": 765
  3114. },
  3115. "_anchorPoint": {
  3116. "__type__": "cc.Vec2",
  3117. "x": 0.5,
  3118. "y": 0.5
  3119. },
  3120. "_trs": {
  3121. "__type__": "TypedArray",
  3122. "ctor": "Float64Array",
  3123. "array": [
  3124. 0,
  3125. 101,
  3126. 0,
  3127. 0,
  3128. 0,
  3129. 0,
  3130. 1,
  3131. 1,
  3132. 1,
  3133. 1
  3134. ]
  3135. },
  3136. "_eulerAngles": {
  3137. "__type__": "cc.Vec3",
  3138. "x": 0,
  3139. "y": 0,
  3140. "z": 0
  3141. },
  3142. "_skewX": 0,
  3143. "_skewY": 0,
  3144. "_is3DNode": false,
  3145. "_groupIndex": 0,
  3146. "groupIndex": 0,
  3147. "_id": ""
  3148. },
  3149. {
  3150. "__type__": "cc.Node",
  3151. "_name": "熊猫动画",
  3152. "_objFlags": 0,
  3153. "_parent": {
  3154. "__id__": 83
  3155. },
  3156. "_children": [],
  3157. "_active": true,
  3158. "_components": [
  3159. {
  3160. "__id__": 85
  3161. }
  3162. ],
  3163. "_prefab": {
  3164. "__id__": 86
  3165. },
  3166. "_opacity": 255,
  3167. "_color": {
  3168. "__type__": "cc.Color",
  3169. "r": 255,
  3170. "g": 255,
  3171. "b": 255,
  3172. "a": 255
  3173. },
  3174. "_contentSize": {
  3175. "__type__": "cc.Size",
  3176. "width": 485.48,
  3177. "height": 443.28
  3178. },
  3179. "_anchorPoint": {
  3180. "__type__": "cc.Vec2",
  3181. "x": 0.5,
  3182. "y": 0.5
  3183. },
  3184. "_trs": {
  3185. "__type__": "TypedArray",
  3186. "ctor": "Float64Array",
  3187. "array": [
  3188. 0,
  3189. 220,
  3190. 0,
  3191. 0,
  3192. 0,
  3193. 0,
  3194. 1,
  3195. 1,
  3196. 1,
  3197. 1
  3198. ]
  3199. },
  3200. "_eulerAngles": {
  3201. "__type__": "cc.Vec3",
  3202. "x": 0,
  3203. "y": 0,
  3204. "z": 0
  3205. },
  3206. "_skewX": 0,
  3207. "_skewY": 0,
  3208. "_is3DNode": false,
  3209. "_groupIndex": 0,
  3210. "groupIndex": 0,
  3211. "_id": ""
  3212. },
  3213. {
  3214. "__type__": "sp.Skeleton",
  3215. "_name": "",
  3216. "_objFlags": 0,
  3217. "node": {
  3218. "__id__": 84
  3219. },
  3220. "_enabled": true,
  3221. "_materials": [
  3222. {
  3223. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  3224. }
  3225. ],
  3226. "paused": false,
  3227. "defaultSkin": "default",
  3228. "defaultAnimation": "hongbao",
  3229. "_preCacheMode": 0,
  3230. "_cacheMode": 0,
  3231. "loop": true,
  3232. "premultipliedAlpha": true,
  3233. "timeScale": 1,
  3234. "_accTime": 0,
  3235. "_playCount": 0,
  3236. "_frameCache": null,
  3237. "_curFrame": null,
  3238. "_skeletonCache": null,
  3239. "_animationName": "hongbao",
  3240. "_animationQueue": [],
  3241. "_headAniInfo": null,
  3242. "_playTimes": 0,
  3243. "_isAniComplete": true,
  3244. "_N$skeletonData": {
  3245. "__uuid__": "8f090d5d-cfa1-40d6-bcce-014cc1aa881e"
  3246. },
  3247. "_N$_defaultCacheMode": 0,
  3248. "_N$debugSlots": false,
  3249. "_N$debugBones": false,
  3250. "_N$debugMesh": false,
  3251. "_N$useTint": false,
  3252. "_N$enableBatch": false,
  3253. "_id": ""
  3254. },
  3255. {
  3256. "__type__": "cc.PrefabInfo",
  3257. "root": {
  3258. "__id__": 1
  3259. },
  3260. "asset": {
  3261. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3262. },
  3263. "fileId": "55eZ8hdXlDk40Pqjf4keJe",
  3264. "sync": false
  3265. },
  3266. {
  3267. "__type__": "cc.Node",
  3268. "_name": "通关盖子",
  3269. "_objFlags": 0,
  3270. "_parent": {
  3271. "__id__": 83
  3272. },
  3273. "_children": [],
  3274. "_active": true,
  3275. "_components": [
  3276. {
  3277. "__id__": 88
  3278. }
  3279. ],
  3280. "_prefab": {
  3281. "__id__": 89
  3282. },
  3283. "_opacity": 255,
  3284. "_color": {
  3285. "__type__": "cc.Color",
  3286. "r": 255,
  3287. "g": 255,
  3288. "b": 255,
  3289. "a": 255
  3290. },
  3291. "_contentSize": {
  3292. "__type__": "cc.Size",
  3293. "width": 551,
  3294. "height": 765
  3295. },
  3296. "_anchorPoint": {
  3297. "__type__": "cc.Vec2",
  3298. "x": 0.5,
  3299. "y": 0.5
  3300. },
  3301. "_trs": {
  3302. "__type__": "TypedArray",
  3303. "ctor": "Float64Array",
  3304. "array": [
  3305. 0,
  3306. -26,
  3307. 0,
  3308. 0,
  3309. 0,
  3310. 0,
  3311. 1,
  3312. 1,
  3313. 1,
  3314. 1
  3315. ]
  3316. },
  3317. "_eulerAngles": {
  3318. "__type__": "cc.Vec3",
  3319. "x": 0,
  3320. "y": 0,
  3321. "z": 0
  3322. },
  3323. "_skewX": 0,
  3324. "_skewY": 0,
  3325. "_is3DNode": false,
  3326. "_groupIndex": 0,
  3327. "groupIndex": 0,
  3328. "_id": ""
  3329. },
  3330. {
  3331. "__type__": "cc.Sprite",
  3332. "_name": "",
  3333. "_objFlags": 0,
  3334. "node": {
  3335. "__id__": 87
  3336. },
  3337. "_enabled": true,
  3338. "_materials": [
  3339. {
  3340. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3341. }
  3342. ],
  3343. "_srcBlendFactor": 770,
  3344. "_dstBlendFactor": 771,
  3345. "_spriteFrame": {
  3346. "__uuid__": "565ece1e-8fa1-4afa-a106-8d0309447708"
  3347. },
  3348. "_type": 0,
  3349. "_sizeMode": 1,
  3350. "_fillType": 0,
  3351. "_fillCenter": {
  3352. "__type__": "cc.Vec2",
  3353. "x": 0,
  3354. "y": 0
  3355. },
  3356. "_fillStart": 0,
  3357. "_fillRange": 0,
  3358. "_isTrimmedMode": true,
  3359. "_atlas": null,
  3360. "_id": ""
  3361. },
  3362. {
  3363. "__type__": "cc.PrefabInfo",
  3364. "root": {
  3365. "__id__": 1
  3366. },
  3367. "asset": {
  3368. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3369. },
  3370. "fileId": "57vH2f6RtP3IoZy5wjPyNG",
  3371. "sync": false
  3372. },
  3373. {
  3374. "__type__": "cc.Node",
  3375. "_name": "按钮_下一关",
  3376. "_objFlags": 0,
  3377. "_parent": {
  3378. "__id__": 83
  3379. },
  3380. "_children": [],
  3381. "_active": true,
  3382. "_components": [
  3383. {
  3384. "__id__": 91
  3385. },
  3386. {
  3387. "__id__": 92
  3388. }
  3389. ],
  3390. "_prefab": {
  3391. "__id__": 93
  3392. },
  3393. "_opacity": 255,
  3394. "_color": {
  3395. "__type__": "cc.Color",
  3396. "r": 255,
  3397. "g": 255,
  3398. "b": 255,
  3399. "a": 255
  3400. },
  3401. "_contentSize": {
  3402. "__type__": "cc.Size",
  3403. "width": 139,
  3404. "height": 139
  3405. },
  3406. "_anchorPoint": {
  3407. "__type__": "cc.Vec2",
  3408. "x": 0.5,
  3409. "y": 0.5
  3410. },
  3411. "_trs": {
  3412. "__type__": "TypedArray",
  3413. "ctor": "Float64Array",
  3414. "array": [
  3415. -120,
  3416. -655,
  3417. 0,
  3418. 0,
  3419. 0,
  3420. 0,
  3421. 1,
  3422. 1,
  3423. 1,
  3424. 0
  3425. ]
  3426. },
  3427. "_eulerAngles": {
  3428. "__type__": "cc.Vec3",
  3429. "x": 0,
  3430. "y": 0,
  3431. "z": 0
  3432. },
  3433. "_skewX": 0,
  3434. "_skewY": 0,
  3435. "_is3DNode": false,
  3436. "_groupIndex": 0,
  3437. "groupIndex": 0,
  3438. "_id": ""
  3439. },
  3440. {
  3441. "__type__": "cc.Sprite",
  3442. "_name": "",
  3443. "_objFlags": 0,
  3444. "node": {
  3445. "__id__": 90
  3446. },
  3447. "_enabled": true,
  3448. "_materials": [
  3449. {
  3450. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3451. }
  3452. ],
  3453. "_srcBlendFactor": 770,
  3454. "_dstBlendFactor": 771,
  3455. "_spriteFrame": {
  3456. "__uuid__": "dbcb922e-3d02-43be-8c4d-fe822a3335ce"
  3457. },
  3458. "_type": 0,
  3459. "_sizeMode": 1,
  3460. "_fillType": 0,
  3461. "_fillCenter": {
  3462. "__type__": "cc.Vec2",
  3463. "x": 0,
  3464. "y": 0
  3465. },
  3466. "_fillStart": 0,
  3467. "_fillRange": 0,
  3468. "_isTrimmedMode": true,
  3469. "_atlas": null,
  3470. "_id": ""
  3471. },
  3472. {
  3473. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  3474. "_name": "",
  3475. "_objFlags": 0,
  3476. "node": {
  3477. "__id__": 90
  3478. },
  3479. "_enabled": true,
  3480. "node_panel": {
  3481. "__id__": 1
  3482. },
  3483. "transition_type": 3,
  3484. "onComplete": [],
  3485. "_id": ""
  3486. },
  3487. {
  3488. "__type__": "cc.PrefabInfo",
  3489. "root": {
  3490. "__id__": 1
  3491. },
  3492. "asset": {
  3493. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3494. },
  3495. "fileId": "f54Q33lNBMprj9F9rUkJFG",
  3496. "sync": false
  3497. },
  3498. {
  3499. "__type__": "cc.Node",
  3500. "_name": "按钮_返回主页",
  3501. "_objFlags": 0,
  3502. "_parent": {
  3503. "__id__": 83
  3504. },
  3505. "_children": [],
  3506. "_active": true,
  3507. "_components": [
  3508. {
  3509. "__id__": 95
  3510. },
  3511. {
  3512. "__id__": 96
  3513. }
  3514. ],
  3515. "_prefab": {
  3516. "__id__": 97
  3517. },
  3518. "_opacity": 255,
  3519. "_color": {
  3520. "__type__": "cc.Color",
  3521. "r": 255,
  3522. "g": 255,
  3523. "b": 255,
  3524. "a": 255
  3525. },
  3526. "_contentSize": {
  3527. "__type__": "cc.Size",
  3528. "width": 139,
  3529. "height": 139
  3530. },
  3531. "_anchorPoint": {
  3532. "__type__": "cc.Vec2",
  3533. "x": 0.5,
  3534. "y": 0.5
  3535. },
  3536. "_trs": {
  3537. "__type__": "TypedArray",
  3538. "ctor": "Float64Array",
  3539. "array": [
  3540. 120,
  3541. -655,
  3542. 0,
  3543. 0,
  3544. 0,
  3545. 0,
  3546. 1,
  3547. 1,
  3548. 1,
  3549. 1
  3550. ]
  3551. },
  3552. "_eulerAngles": {
  3553. "__type__": "cc.Vec3",
  3554. "x": 0,
  3555. "y": 0,
  3556. "z": 0
  3557. },
  3558. "_skewX": 0,
  3559. "_skewY": 0,
  3560. "_is3DNode": false,
  3561. "_groupIndex": 0,
  3562. "groupIndex": 0,
  3563. "_id": ""
  3564. },
  3565. {
  3566. "__type__": "cc.Sprite",
  3567. "_name": "",
  3568. "_objFlags": 0,
  3569. "node": {
  3570. "__id__": 94
  3571. },
  3572. "_enabled": true,
  3573. "_materials": [
  3574. {
  3575. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3576. }
  3577. ],
  3578. "_srcBlendFactor": 770,
  3579. "_dstBlendFactor": 771,
  3580. "_spriteFrame": {
  3581. "__uuid__": "5fab1a03-9f09-4158-82d0-38a20efa9d5c"
  3582. },
  3583. "_type": 0,
  3584. "_sizeMode": 1,
  3585. "_fillType": 0,
  3586. "_fillCenter": {
  3587. "__type__": "cc.Vec2",
  3588. "x": 0,
  3589. "y": 0
  3590. },
  3591. "_fillStart": 0,
  3592. "_fillRange": 0,
  3593. "_isTrimmedMode": true,
  3594. "_atlas": null,
  3595. "_id": ""
  3596. },
  3597. {
  3598. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  3599. "_name": "",
  3600. "_objFlags": 0,
  3601. "node": {
  3602. "__id__": 94
  3603. },
  3604. "_enabled": true,
  3605. "node_panel": {
  3606. "__id__": 1
  3607. },
  3608. "transition_type": 3,
  3609. "onComplete": [],
  3610. "_id": ""
  3611. },
  3612. {
  3613. "__type__": "cc.PrefabInfo",
  3614. "root": {
  3615. "__id__": 1
  3616. },
  3617. "asset": {
  3618. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3619. },
  3620. "fileId": "52ulp2qF9Pppp1FEyoJISY",
  3621. "sync": false
  3622. },
  3623. {
  3624. "__type__": "cc.PrefabInfo",
  3625. "root": {
  3626. "__id__": 1
  3627. },
  3628. "asset": {
  3629. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3630. },
  3631. "fileId": "4cxOiC7uNDl4HRMDtQqjYG",
  3632. "sync": false
  3633. },
  3634. {
  3635. "__type__": "cc.Animation",
  3636. "_name": "",
  3637. "_objFlags": 0,
  3638. "node": {
  3639. "__id__": 36
  3640. },
  3641. "_enabled": true,
  3642. "_defaultClip": {
  3643. "__uuid__": "b3fe8a24-9df4-45cd-a6b9-9eae78842bb1"
  3644. },
  3645. "_clips": [
  3646. {
  3647. "__uuid__": "b3fe8a24-9df4-45cd-a6b9-9eae78842bb1"
  3648. }
  3649. ],
  3650. "playOnLoad": false,
  3651. "_id": ""
  3652. },
  3653. {
  3654. "__type__": "cc.PrefabInfo",
  3655. "root": {
  3656. "__id__": 1
  3657. },
  3658. "asset": {
  3659. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3660. },
  3661. "fileId": "f2boYfhXZK86k+1Zw5AYUz",
  3662. "sync": false
  3663. },
  3664. {
  3665. "__type__": "cc.Node",
  3666. "_name": "星星节点",
  3667. "_objFlags": 0,
  3668. "_parent": {
  3669. "__id__": 2
  3670. },
  3671. "_children": [
  3672. {
  3673. "__id__": 102
  3674. },
  3675. {
  3676. "__id__": 105
  3677. },
  3678. {
  3679. "__id__": 108
  3680. },
  3681. {
  3682. "__id__": 111
  3683. },
  3684. {
  3685. "__id__": 114
  3686. }
  3687. ],
  3688. "_active": true,
  3689. "_components": [],
  3690. "_prefab": {
  3691. "__id__": 117
  3692. },
  3693. "_opacity": 255,
  3694. "_color": {
  3695. "__type__": "cc.Color",
  3696. "r": 255,
  3697. "g": 255,
  3698. "b": 255,
  3699. "a": 255
  3700. },
  3701. "_contentSize": {
  3702. "__type__": "cc.Size",
  3703. "width": 0,
  3704. "height": 0
  3705. },
  3706. "_anchorPoint": {
  3707. "__type__": "cc.Vec2",
  3708. "x": 0.5,
  3709. "y": 0.5
  3710. },
  3711. "_trs": {
  3712. "__type__": "TypedArray",
  3713. "ctor": "Float64Array",
  3714. "array": [
  3715. 0,
  3716. 0,
  3717. 0,
  3718. 0,
  3719. 0,
  3720. 0,
  3721. 1,
  3722. 1,
  3723. 1,
  3724. 1
  3725. ]
  3726. },
  3727. "_eulerAngles": {
  3728. "__type__": "cc.Vec3",
  3729. "x": 0,
  3730. "y": 0,
  3731. "z": 0
  3732. },
  3733. "_skewX": 0,
  3734. "_skewY": 0,
  3735. "_is3DNode": false,
  3736. "_groupIndex": 0,
  3737. "groupIndex": 0,
  3738. "_id": ""
  3739. },
  3740. {
  3741. "__type__": "cc.Node",
  3742. "_name": "星星",
  3743. "_objFlags": 0,
  3744. "_parent": {
  3745. "__id__": 101
  3746. },
  3747. "_children": [],
  3748. "_active": true,
  3749. "_components": [
  3750. {
  3751. "__id__": 103
  3752. }
  3753. ],
  3754. "_prefab": {
  3755. "__id__": 104
  3756. },
  3757. "_opacity": 255,
  3758. "_color": {
  3759. "__type__": "cc.Color",
  3760. "r": 255,
  3761. "g": 255,
  3762. "b": 255,
  3763. "a": 255
  3764. },
  3765. "_contentSize": {
  3766. "__type__": "cc.Size",
  3767. "width": 43,
  3768. "height": 48
  3769. },
  3770. "_anchorPoint": {
  3771. "__type__": "cc.Vec2",
  3772. "x": 0.5,
  3773. "y": 0.5
  3774. },
  3775. "_trs": {
  3776. "__type__": "TypedArray",
  3777. "ctor": "Float64Array",
  3778. "array": [
  3779. 64.75,
  3780. -272.488,
  3781. 0,
  3782. 0,
  3783. 0,
  3784. 0,
  3785. 1,
  3786. 1,
  3787. 1,
  3788. 1
  3789. ]
  3790. },
  3791. "_eulerAngles": {
  3792. "__type__": "cc.Vec3",
  3793. "x": 0,
  3794. "y": 0,
  3795. "z": 0
  3796. },
  3797. "_skewX": 0,
  3798. "_skewY": 0,
  3799. "_is3DNode": false,
  3800. "_groupIndex": 0,
  3801. "groupIndex": 0,
  3802. "_id": ""
  3803. },
  3804. {
  3805. "__type__": "cc.Sprite",
  3806. "_name": "",
  3807. "_objFlags": 0,
  3808. "node": {
  3809. "__id__": 102
  3810. },
  3811. "_enabled": true,
  3812. "_materials": [
  3813. {
  3814. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3815. }
  3816. ],
  3817. "_srcBlendFactor": 770,
  3818. "_dstBlendFactor": 771,
  3819. "_spriteFrame": {
  3820. "__uuid__": "56109b10-f8d0-4b07-8e06-d13bfd9875c1"
  3821. },
  3822. "_type": 0,
  3823. "_sizeMode": 1,
  3824. "_fillType": 0,
  3825. "_fillCenter": {
  3826. "__type__": "cc.Vec2",
  3827. "x": 0,
  3828. "y": 0
  3829. },
  3830. "_fillStart": 0,
  3831. "_fillRange": 0,
  3832. "_isTrimmedMode": true,
  3833. "_atlas": null,
  3834. "_id": ""
  3835. },
  3836. {
  3837. "__type__": "cc.PrefabInfo",
  3838. "root": {
  3839. "__id__": 1
  3840. },
  3841. "asset": {
  3842. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3843. },
  3844. "fileId": "0dU7zK2Y1CMayKKmtOLoQG",
  3845. "sync": false
  3846. },
  3847. {
  3848. "__type__": "cc.Node",
  3849. "_name": "星星",
  3850. "_objFlags": 0,
  3851. "_parent": {
  3852. "__id__": 101
  3853. },
  3854. "_children": [],
  3855. "_active": true,
  3856. "_components": [
  3857. {
  3858. "__id__": 106
  3859. }
  3860. ],
  3861. "_prefab": {
  3862. "__id__": 107
  3863. },
  3864. "_opacity": 255,
  3865. "_color": {
  3866. "__type__": "cc.Color",
  3867. "r": 255,
  3868. "g": 255,
  3869. "b": 255,
  3870. "a": 255
  3871. },
  3872. "_contentSize": {
  3873. "__type__": "cc.Size",
  3874. "width": 43,
  3875. "height": 48
  3876. },
  3877. "_anchorPoint": {
  3878. "__type__": "cc.Vec2",
  3879. "x": 0.5,
  3880. "y": 0.5
  3881. },
  3882. "_trs": {
  3883. "__type__": "TypedArray",
  3884. "ctor": "Float64Array",
  3885. "array": [
  3886. 249.556,
  3887. -126.801,
  3888. 0,
  3889. 0,
  3890. 0,
  3891. 0,
  3892. 1,
  3893. 1,
  3894. 1,
  3895. 1
  3896. ]
  3897. },
  3898. "_eulerAngles": {
  3899. "__type__": "cc.Vec3",
  3900. "x": 0,
  3901. "y": 0,
  3902. "z": 0
  3903. },
  3904. "_skewX": 0,
  3905. "_skewY": 0,
  3906. "_is3DNode": false,
  3907. "_groupIndex": 0,
  3908. "groupIndex": 0,
  3909. "_id": ""
  3910. },
  3911. {
  3912. "__type__": "cc.Sprite",
  3913. "_name": "",
  3914. "_objFlags": 0,
  3915. "node": {
  3916. "__id__": 105
  3917. },
  3918. "_enabled": true,
  3919. "_materials": [
  3920. {
  3921. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3922. }
  3923. ],
  3924. "_srcBlendFactor": 770,
  3925. "_dstBlendFactor": 771,
  3926. "_spriteFrame": {
  3927. "__uuid__": "56109b10-f8d0-4b07-8e06-d13bfd9875c1"
  3928. },
  3929. "_type": 0,
  3930. "_sizeMode": 1,
  3931. "_fillType": 0,
  3932. "_fillCenter": {
  3933. "__type__": "cc.Vec2",
  3934. "x": 0,
  3935. "y": 0
  3936. },
  3937. "_fillStart": 0,
  3938. "_fillRange": 0,
  3939. "_isTrimmedMode": true,
  3940. "_atlas": null,
  3941. "_id": ""
  3942. },
  3943. {
  3944. "__type__": "cc.PrefabInfo",
  3945. "root": {
  3946. "__id__": 1
  3947. },
  3948. "asset": {
  3949. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3950. },
  3951. "fileId": "f6S+sagClCaIM+L/VBzG+u",
  3952. "sync": false
  3953. },
  3954. {
  3955. "__type__": "cc.Node",
  3956. "_name": "星星",
  3957. "_objFlags": 0,
  3958. "_parent": {
  3959. "__id__": 101
  3960. },
  3961. "_children": [],
  3962. "_active": true,
  3963. "_components": [
  3964. {
  3965. "__id__": 109
  3966. }
  3967. ],
  3968. "_prefab": {
  3969. "__id__": 110
  3970. },
  3971. "_opacity": 255,
  3972. "_color": {
  3973. "__type__": "cc.Color",
  3974. "r": 255,
  3975. "g": 255,
  3976. "b": 255,
  3977. "a": 255
  3978. },
  3979. "_contentSize": {
  3980. "__type__": "cc.Size",
  3981. "width": 43,
  3982. "height": 48
  3983. },
  3984. "_anchorPoint": {
  3985. "__type__": "cc.Vec2",
  3986. "x": 0.5,
  3987. "y": 0.5
  3988. },
  3989. "_trs": {
  3990. "__type__": "TypedArray",
  3991. "ctor": "Float64Array",
  3992. "array": [
  3993. 98.473,
  3994. 133.547,
  3995. 0,
  3996. 0,
  3997. 0,
  3998. 0,
  3999. 1,
  4000. 1,
  4001. 1,
  4002. 1
  4003. ]
  4004. },
  4005. "_eulerAngles": {
  4006. "__type__": "cc.Vec3",
  4007. "x": 0,
  4008. "y": 0,
  4009. "z": 0
  4010. },
  4011. "_skewX": 0,
  4012. "_skewY": 0,
  4013. "_is3DNode": false,
  4014. "_groupIndex": 0,
  4015. "groupIndex": 0,
  4016. "_id": ""
  4017. },
  4018. {
  4019. "__type__": "cc.Sprite",
  4020. "_name": "",
  4021. "_objFlags": 0,
  4022. "node": {
  4023. "__id__": 108
  4024. },
  4025. "_enabled": true,
  4026. "_materials": [
  4027. {
  4028. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4029. }
  4030. ],
  4031. "_srcBlendFactor": 770,
  4032. "_dstBlendFactor": 771,
  4033. "_spriteFrame": {
  4034. "__uuid__": "56109b10-f8d0-4b07-8e06-d13bfd9875c1"
  4035. },
  4036. "_type": 0,
  4037. "_sizeMode": 1,
  4038. "_fillType": 0,
  4039. "_fillCenter": {
  4040. "__type__": "cc.Vec2",
  4041. "x": 0,
  4042. "y": 0
  4043. },
  4044. "_fillStart": 0,
  4045. "_fillRange": 0,
  4046. "_isTrimmedMode": true,
  4047. "_atlas": null,
  4048. "_id": ""
  4049. },
  4050. {
  4051. "__type__": "cc.PrefabInfo",
  4052. "root": {
  4053. "__id__": 1
  4054. },
  4055. "asset": {
  4056. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4057. },
  4058. "fileId": "daHbaTgLNDHqbRQtu1ZgHY",
  4059. "sync": false
  4060. },
  4061. {
  4062. "__type__": "cc.Node",
  4063. "_name": "星星",
  4064. "_objFlags": 0,
  4065. "_parent": {
  4066. "__id__": 101
  4067. },
  4068. "_children": [],
  4069. "_active": true,
  4070. "_components": [
  4071. {
  4072. "__id__": 112
  4073. }
  4074. ],
  4075. "_prefab": {
  4076. "__id__": 113
  4077. },
  4078. "_opacity": 255,
  4079. "_color": {
  4080. "__type__": "cc.Color",
  4081. "r": 255,
  4082. "g": 255,
  4083. "b": 255,
  4084. "a": 255
  4085. },
  4086. "_contentSize": {
  4087. "__type__": "cc.Size",
  4088. "width": 43,
  4089. "height": 48
  4090. },
  4091. "_anchorPoint": {
  4092. "__type__": "cc.Vec2",
  4093. "x": 0.5,
  4094. "y": 0.5
  4095. },
  4096. "_trs": {
  4097. "__type__": "TypedArray",
  4098. "ctor": "Float64Array",
  4099. "array": [
  4100. 51.26,
  4101. 161.875,
  4102. 0,
  4103. 0,
  4104. 0,
  4105. 0,
  4106. 1,
  4107. 1,
  4108. 1,
  4109. 1
  4110. ]
  4111. },
  4112. "_eulerAngles": {
  4113. "__type__": "cc.Vec3",
  4114. "x": 0,
  4115. "y": 0,
  4116. "z": 0
  4117. },
  4118. "_skewX": 0,
  4119. "_skewY": 0,
  4120. "_is3DNode": false,
  4121. "_groupIndex": 0,
  4122. "groupIndex": 0,
  4123. "_id": ""
  4124. },
  4125. {
  4126. "__type__": "cc.Sprite",
  4127. "_name": "",
  4128. "_objFlags": 0,
  4129. "node": {
  4130. "__id__": 111
  4131. },
  4132. "_enabled": true,
  4133. "_materials": [
  4134. {
  4135. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4136. }
  4137. ],
  4138. "_srcBlendFactor": 770,
  4139. "_dstBlendFactor": 771,
  4140. "_spriteFrame": {
  4141. "__uuid__": "56109b10-f8d0-4b07-8e06-d13bfd9875c1"
  4142. },
  4143. "_type": 0,
  4144. "_sizeMode": 1,
  4145. "_fillType": 0,
  4146. "_fillCenter": {
  4147. "__type__": "cc.Vec2",
  4148. "x": 0,
  4149. "y": 0
  4150. },
  4151. "_fillStart": 0,
  4152. "_fillRange": 0,
  4153. "_isTrimmedMode": true,
  4154. "_atlas": null,
  4155. "_id": ""
  4156. },
  4157. {
  4158. "__type__": "cc.PrefabInfo",
  4159. "root": {
  4160. "__id__": 1
  4161. },
  4162. "asset": {
  4163. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4164. },
  4165. "fileId": "3fUKw0ED1GtaamEnhPfTAO",
  4166. "sync": false
  4167. },
  4168. {
  4169. "__type__": "cc.Node",
  4170. "_name": "星星",
  4171. "_objFlags": 0,
  4172. "_parent": {
  4173. "__id__": 101
  4174. },
  4175. "_children": [],
  4176. "_active": true,
  4177. "_components": [
  4178. {
  4179. "__id__": 115
  4180. }
  4181. ],
  4182. "_prefab": {
  4183. "__id__": 116
  4184. },
  4185. "_opacity": 255,
  4186. "_color": {
  4187. "__type__": "cc.Color",
  4188. "r": 255,
  4189. "g": 255,
  4190. "b": 255,
  4191. "a": 255
  4192. },
  4193. "_contentSize": {
  4194. "__type__": "cc.Size",
  4195. "width": 43,
  4196. "height": 48
  4197. },
  4198. "_anchorPoint": {
  4199. "__type__": "cc.Vec2",
  4200. "x": 0.5,
  4201. "y": 0.5
  4202. },
  4203. "_trs": {
  4204. "__type__": "TypedArray",
  4205. "ctor": "Float64Array",
  4206. "array": [
  4207. -133.546,
  4208. 91.73,
  4209. 0,
  4210. 0,
  4211. 0,
  4212. 0,
  4213. 1,
  4214. 1,
  4215. 1,
  4216. 1
  4217. ]
  4218. },
  4219. "_eulerAngles": {
  4220. "__type__": "cc.Vec3",
  4221. "x": 0,
  4222. "y": 0,
  4223. "z": 0
  4224. },
  4225. "_skewX": 0,
  4226. "_skewY": 0,
  4227. "_is3DNode": false,
  4228. "_groupIndex": 0,
  4229. "groupIndex": 0,
  4230. "_id": ""
  4231. },
  4232. {
  4233. "__type__": "cc.Sprite",
  4234. "_name": "",
  4235. "_objFlags": 0,
  4236. "node": {
  4237. "__id__": 114
  4238. },
  4239. "_enabled": true,
  4240. "_materials": [
  4241. {
  4242. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4243. }
  4244. ],
  4245. "_srcBlendFactor": 770,
  4246. "_dstBlendFactor": 771,
  4247. "_spriteFrame": {
  4248. "__uuid__": "56109b10-f8d0-4b07-8e06-d13bfd9875c1"
  4249. },
  4250. "_type": 0,
  4251. "_sizeMode": 1,
  4252. "_fillType": 0,
  4253. "_fillCenter": {
  4254. "__type__": "cc.Vec2",
  4255. "x": 0,
  4256. "y": 0
  4257. },
  4258. "_fillStart": 0,
  4259. "_fillRange": 0,
  4260. "_isTrimmedMode": true,
  4261. "_atlas": null,
  4262. "_id": ""
  4263. },
  4264. {
  4265. "__type__": "cc.PrefabInfo",
  4266. "root": {
  4267. "__id__": 1
  4268. },
  4269. "asset": {
  4270. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4271. },
  4272. "fileId": "ffsavq0wVEhKdSMk6qBq8+",
  4273. "sync": false
  4274. },
  4275. {
  4276. "__type__": "cc.PrefabInfo",
  4277. "root": {
  4278. "__id__": 1
  4279. },
  4280. "asset": {
  4281. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4282. },
  4283. "fileId": "61jX4y/5xCz5RKgfbutOCT",
  4284. "sync": false
  4285. },
  4286. {
  4287. "__type__": "cc.Widget",
  4288. "_name": "",
  4289. "_objFlags": 0,
  4290. "node": {
  4291. "__id__": 2
  4292. },
  4293. "_enabled": true,
  4294. "alignMode": 1,
  4295. "_target": null,
  4296. "_alignFlags": 45,
  4297. "_left": 0,
  4298. "_right": 0,
  4299. "_top": 0,
  4300. "_bottom": 0,
  4301. "_verticalCenter": 0,
  4302. "_horizontalCenter": 0,
  4303. "_isAbsLeft": true,
  4304. "_isAbsRight": true,
  4305. "_isAbsTop": true,
  4306. "_isAbsBottom": true,
  4307. "_isAbsHorizontalCenter": true,
  4308. "_isAbsVerticalCenter": true,
  4309. "_originalWidth": 0,
  4310. "_originalHeight": 0,
  4311. "_id": ""
  4312. },
  4313. {
  4314. "__type__": "cc.PrefabInfo",
  4315. "root": {
  4316. "__id__": 1
  4317. },
  4318. "asset": {
  4319. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4320. },
  4321. "fileId": "94yiGj0RFACpXt5xGEvfHf",
  4322. "sync": false
  4323. },
  4324. {
  4325. "__type__": "cc.Node",
  4326. "_name": "btn_close",
  4327. "_objFlags": 0,
  4328. "_parent": {
  4329. "__id__": 1
  4330. },
  4331. "_children": [],
  4332. "_active": true,
  4333. "_components": [
  4334. {
  4335. "__id__": 121
  4336. },
  4337. {
  4338. "__id__": 122
  4339. },
  4340. {
  4341. "__id__": 125
  4342. }
  4343. ],
  4344. "_prefab": {
  4345. "__id__": 126
  4346. },
  4347. "_opacity": 255,
  4348. "_color": {
  4349. "__type__": "cc.Color",
  4350. "r": 255,
  4351. "g": 255,
  4352. "b": 255,
  4353. "a": 255
  4354. },
  4355. "_contentSize": {
  4356. "__type__": "cc.Size",
  4357. "width": 88,
  4358. "height": 88
  4359. },
  4360. "_anchorPoint": {
  4361. "__type__": "cc.Vec2",
  4362. "x": 0.5,
  4363. "y": 0.5
  4364. },
  4365. "_trs": {
  4366. "__type__": "TypedArray",
  4367. "ctor": "Float64Array",
  4368. "array": [
  4369. 272.441,
  4370. 491.749,
  4371. 0,
  4372. 0,
  4373. 0,
  4374. 0,
  4375. 1,
  4376. 1,
  4377. 1,
  4378. 1
  4379. ]
  4380. },
  4381. "_eulerAngles": {
  4382. "__type__": "cc.Vec3",
  4383. "x": 0,
  4384. "y": 0,
  4385. "z": 0
  4386. },
  4387. "_skewX": 0,
  4388. "_skewY": 0,
  4389. "_is3DNode": false,
  4390. "_groupIndex": 0,
  4391. "groupIndex": 0,
  4392. "_id": ""
  4393. },
  4394. {
  4395. "__type__": "cc.Sprite",
  4396. "_name": "",
  4397. "_objFlags": 0,
  4398. "node": {
  4399. "__id__": 120
  4400. },
  4401. "_enabled": true,
  4402. "_materials": [
  4403. {
  4404. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4405. }
  4406. ],
  4407. "_srcBlendFactor": 770,
  4408. "_dstBlendFactor": 771,
  4409. "_spriteFrame": {
  4410. "__uuid__": "6e00eea0-2e49-4c98-b664-a63c8660f4bb"
  4411. },
  4412. "_type": 0,
  4413. "_sizeMode": 1,
  4414. "_fillType": 0,
  4415. "_fillCenter": {
  4416. "__type__": "cc.Vec2",
  4417. "x": 0,
  4418. "y": 0
  4419. },
  4420. "_fillStart": 0,
  4421. "_fillRange": 0,
  4422. "_isTrimmedMode": true,
  4423. "_atlas": null,
  4424. "_id": ""
  4425. },
  4426. {
  4427. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  4428. "_name": "",
  4429. "_objFlags": 0,
  4430. "node": {
  4431. "__id__": 120
  4432. },
  4433. "_enabled": true,
  4434. "node_panel": {
  4435. "__id__": 1
  4436. },
  4437. "transition_type": 3,
  4438. "onComplete": [
  4439. {
  4440. "__id__": 123
  4441. },
  4442. {
  4443. "__id__": 124
  4444. }
  4445. ],
  4446. "_id": ""
  4447. },
  4448. {
  4449. "__type__": "cc.ClickEvent",
  4450. "target": {
  4451. "__id__": 1
  4452. },
  4453. "component": "",
  4454. "_componentId": "43f3akkA71HA76UhTj/R19X",
  4455. "handler": "onClickClose",
  4456. "customEventData": ""
  4457. },
  4458. {
  4459. "__type__": "cc.ClickEvent",
  4460. "target": {
  4461. "__id__": 1
  4462. },
  4463. "component": "",
  4464. "_componentId": "43f3akkA71HA76UhTj/R19X",
  4465. "handler": "clickGetReward",
  4466. "customEventData": ""
  4467. },
  4468. {
  4469. "__type__": "cc.Animation",
  4470. "_name": "",
  4471. "_objFlags": 0,
  4472. "node": {
  4473. "__id__": 120
  4474. },
  4475. "_enabled": true,
  4476. "_defaultClip": {
  4477. "__uuid__": "ad45b0ef-9064-4616-b541-b8d386b87f3a"
  4478. },
  4479. "_clips": [
  4480. {
  4481. "__uuid__": "ad45b0ef-9064-4616-b541-b8d386b87f3a"
  4482. }
  4483. ],
  4484. "playOnLoad": true,
  4485. "_id": ""
  4486. },
  4487. {
  4488. "__type__": "cc.PrefabInfo",
  4489. "root": {
  4490. "__id__": 1
  4491. },
  4492. "asset": {
  4493. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4494. },
  4495. "fileId": "721k4zYfBHKpZUi6Pjen1t",
  4496. "sync": false
  4497. },
  4498. {
  4499. "__type__": "cc.Widget",
  4500. "_name": "",
  4501. "_objFlags": 0,
  4502. "node": {
  4503. "__id__": 1
  4504. },
  4505. "_enabled": true,
  4506. "alignMode": 1,
  4507. "_target": null,
  4508. "_alignFlags": 45,
  4509. "_left": 0,
  4510. "_right": 0,
  4511. "_top": 0,
  4512. "_bottom": 0,
  4513. "_verticalCenter": 0,
  4514. "_horizontalCenter": 0,
  4515. "_isAbsLeft": true,
  4516. "_isAbsRight": true,
  4517. "_isAbsTop": true,
  4518. "_isAbsBottom": true,
  4519. "_isAbsHorizontalCenter": true,
  4520. "_isAbsVerticalCenter": true,
  4521. "_originalWidth": 0,
  4522. "_originalHeight": 0,
  4523. "_id": ""
  4524. },
  4525. {
  4526. "__type__": "43f3akkA71HA76UhTj/R19X",
  4527. "_name": "",
  4528. "_objFlags": 0,
  4529. "node": {
  4530. "__id__": 1
  4531. },
  4532. "_enabled": true,
  4533. "lid_type": 1,
  4534. "node_luck": {
  4535. "__id__": 68
  4536. },
  4537. "node_mission": {
  4538. "__id__": 83
  4539. },
  4540. "anim_open_redbag": {
  4541. "__id__": 99
  4542. },
  4543. "btn_watch_video": {
  4544. "__id__": 80
  4545. },
  4546. "node_coin": {
  4547. "__id__": 48
  4548. },
  4549. "lbl_reward_value": {
  4550. "__id__": 45
  4551. },
  4552. "hb_star": {
  4553. "__id__": 65
  4554. },
  4555. "btn_close": {
  4556. "__id__": 120
  4557. },
  4558. "spr_cash_out": {
  4559. "__id__": 21
  4560. },
  4561. "lbl_cash_out": {
  4562. "__id__": 24
  4563. },
  4564. "lbl_cash": {
  4565. "__id__": 31
  4566. },
  4567. "node_cash": {
  4568. "__id__": 13
  4569. },
  4570. "_id": ""
  4571. },
  4572. {
  4573. "__type__": "58495/rJOBNGoxELFSp8G2a",
  4574. "_name": "",
  4575. "_objFlags": 0,
  4576. "node": {
  4577. "__id__": 1
  4578. },
  4579. "_enabled": true,
  4580. "color": {
  4581. "__type__": "cc.Color",
  4582. "r": 0,
  4583. "g": 0,
  4584. "b": 0,
  4585. "a": 230
  4586. },
  4587. "design_block_node": {
  4588. "__id__": 72
  4589. },
  4590. "bClickClose": false,
  4591. "_id": ""
  4592. },
  4593. {
  4594. "__type__": "ac053zwqaRD6IJmTlQWmefZ",
  4595. "_name": "",
  4596. "_objFlags": 0,
  4597. "node": {
  4598. "__id__": 1
  4599. },
  4600. "_enabled": true,
  4601. "effect_par": {
  4602. "__id__": 2
  4603. },
  4604. "open_effect": 1,
  4605. "close_effect": 1,
  4606. "close_toPoint": "",
  4607. "_id": ""
  4608. },
  4609. {
  4610. "__type__": "cc.PrefabInfo",
  4611. "root": {
  4612. "__id__": 1
  4613. },
  4614. "asset": {
  4615. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4616. },
  4617. "fileId": "",
  4618. "sync": false
  4619. }
  4620. ]