rewardLuck.prefab 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635
  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__": 121
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 128
  31. },
  32. {
  33. "__id__": 129
  34. },
  35. {
  36. "__id__": 130
  37. },
  38. {
  39. "__id__": 131
  40. }
  41. ],
  42. "_prefab": {
  43. "__id__": 132
  44. },
  45. "_opacity": 255,
  46. "_color": {
  47. "__type__": "cc.Color",
  48. "r": 255,
  49. "g": 255,
  50. "b": 255,
  51. "a": 255
  52. },
  53. "_contentSize": {
  54. "__type__": "cc.Size",
  55. "width": 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__": 102
  108. }
  109. ],
  110. "_active": true,
  111. "_components": [
  112. {
  113. "__id__": 119
  114. }
  115. ],
  116. "_prefab": {
  117. "__id__": 120
  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__": 77
  1367. },
  1368. {
  1369. "__id__": 84
  1370. }
  1371. ],
  1372. "_active": true,
  1373. "_components": [
  1374. {
  1375. "__id__": 100
  1376. }
  1377. ],
  1378. "_prefab": {
  1379. "__id__": 101
  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. {
  2514. "__id__": 75
  2515. }
  2516. ],
  2517. "_prefab": {
  2518. "__id__": 76
  2519. },
  2520. "_opacity": 255,
  2521. "_color": {
  2522. "__type__": "cc.Color",
  2523. "r": 255,
  2524. "g": 255,
  2525. "b": 255,
  2526. "a": 255
  2527. },
  2528. "_contentSize": {
  2529. "__type__": "cc.Size",
  2530. "width": 551,
  2531. "height": 814
  2532. },
  2533. "_anchorPoint": {
  2534. "__type__": "cc.Vec2",
  2535. "x": 0.5,
  2536. "y": 0.5
  2537. },
  2538. "_trs": {
  2539. "__type__": "TypedArray",
  2540. "ctor": "Float64Array",
  2541. "array": [
  2542. 0,
  2543. 101,
  2544. 0,
  2545. 0,
  2546. 0,
  2547. 0,
  2548. 1,
  2549. 1,
  2550. 1,
  2551. 1
  2552. ]
  2553. },
  2554. "_eulerAngles": {
  2555. "__type__": "cc.Vec3",
  2556. "x": 0,
  2557. "y": 0,
  2558. "z": 0
  2559. },
  2560. "_skewX": 0,
  2561. "_skewY": 0,
  2562. "_is3DNode": false,
  2563. "_groupIndex": 0,
  2564. "groupIndex": 0,
  2565. "_id": ""
  2566. },
  2567. {
  2568. "__type__": "cc.Node",
  2569. "_name": "熊猫动画",
  2570. "_objFlags": 0,
  2571. "_parent": {
  2572. "__id__": 68
  2573. },
  2574. "_children": [],
  2575. "_active": true,
  2576. "_components": [
  2577. {
  2578. "__id__": 70
  2579. }
  2580. ],
  2581. "_prefab": {
  2582. "__id__": 71
  2583. },
  2584. "_opacity": 255,
  2585. "_color": {
  2586. "__type__": "cc.Color",
  2587. "r": 255,
  2588. "g": 255,
  2589. "b": 255,
  2590. "a": 255
  2591. },
  2592. "_contentSize": {
  2593. "__type__": "cc.Size",
  2594. "width": 485.48,
  2595. "height": 443.28
  2596. },
  2597. "_anchorPoint": {
  2598. "__type__": "cc.Vec2",
  2599. "x": 0.5,
  2600. "y": 0.5
  2601. },
  2602. "_trs": {
  2603. "__type__": "TypedArray",
  2604. "ctor": "Float64Array",
  2605. "array": [
  2606. 0,
  2607. 220,
  2608. 0,
  2609. 0,
  2610. 0,
  2611. 0,
  2612. 1,
  2613. 1,
  2614. 1,
  2615. 1
  2616. ]
  2617. },
  2618. "_eulerAngles": {
  2619. "__type__": "cc.Vec3",
  2620. "x": 0,
  2621. "y": 0,
  2622. "z": 0
  2623. },
  2624. "_skewX": 0,
  2625. "_skewY": 0,
  2626. "_is3DNode": false,
  2627. "_groupIndex": 0,
  2628. "groupIndex": 0,
  2629. "_id": ""
  2630. },
  2631. {
  2632. "__type__": "sp.Skeleton",
  2633. "_name": "",
  2634. "_objFlags": 0,
  2635. "node": {
  2636. "__id__": 69
  2637. },
  2638. "_enabled": true,
  2639. "_materials": [
  2640. {
  2641. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  2642. }
  2643. ],
  2644. "paused": false,
  2645. "defaultSkin": "default",
  2646. "defaultAnimation": "hongbao",
  2647. "_preCacheMode": 0,
  2648. "_cacheMode": 0,
  2649. "loop": true,
  2650. "premultipliedAlpha": true,
  2651. "timeScale": 1,
  2652. "_accTime": 0,
  2653. "_playCount": 0,
  2654. "_frameCache": null,
  2655. "_curFrame": null,
  2656. "_skeletonCache": null,
  2657. "_animationName": "hongbao",
  2658. "_animationQueue": [],
  2659. "_headAniInfo": null,
  2660. "_playTimes": 0,
  2661. "_isAniComplete": true,
  2662. "_N$skeletonData": {
  2663. "__uuid__": "8f090d5d-cfa1-40d6-bcce-014cc1aa881e"
  2664. },
  2665. "_N$_defaultCacheMode": 0,
  2666. "_N$debugSlots": false,
  2667. "_N$debugBones": false,
  2668. "_N$debugMesh": false,
  2669. "_N$useTint": false,
  2670. "_N$enableBatch": false,
  2671. "_id": ""
  2672. },
  2673. {
  2674. "__type__": "cc.PrefabInfo",
  2675. "root": {
  2676. "__id__": 1
  2677. },
  2678. "asset": {
  2679. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2680. },
  2681. "fileId": "69lluWNxZO15gVBxl2dW1Q",
  2682. "sync": false
  2683. },
  2684. {
  2685. "__type__": "cc.Node",
  2686. "_name": "幸运盖子",
  2687. "_objFlags": 0,
  2688. "_parent": {
  2689. "__id__": 68
  2690. },
  2691. "_children": [],
  2692. "_active": true,
  2693. "_components": [
  2694. {
  2695. "__id__": 73
  2696. }
  2697. ],
  2698. "_prefab": {
  2699. "__id__": 74
  2700. },
  2701. "_opacity": 255,
  2702. "_color": {
  2703. "__type__": "cc.Color",
  2704. "r": 255,
  2705. "g": 255,
  2706. "b": 255,
  2707. "a": 255
  2708. },
  2709. "_contentSize": {
  2710. "__type__": "cc.Size",
  2711. "width": 551,
  2712. "height": 765
  2713. },
  2714. "_anchorPoint": {
  2715. "__type__": "cc.Vec2",
  2716. "x": 0.5,
  2717. "y": 0.5
  2718. },
  2719. "_trs": {
  2720. "__type__": "TypedArray",
  2721. "ctor": "Float64Array",
  2722. "array": [
  2723. 0,
  2724. -26,
  2725. 0,
  2726. 0,
  2727. 0,
  2728. 0,
  2729. 1,
  2730. 1,
  2731. 1,
  2732. 1
  2733. ]
  2734. },
  2735. "_eulerAngles": {
  2736. "__type__": "cc.Vec3",
  2737. "x": 0,
  2738. "y": 0,
  2739. "z": 0
  2740. },
  2741. "_skewX": 0,
  2742. "_skewY": 0,
  2743. "_is3DNode": false,
  2744. "_groupIndex": 0,
  2745. "groupIndex": 0,
  2746. "_id": ""
  2747. },
  2748. {
  2749. "__type__": "cc.Sprite",
  2750. "_name": "",
  2751. "_objFlags": 0,
  2752. "node": {
  2753. "__id__": 72
  2754. },
  2755. "_enabled": true,
  2756. "_materials": [
  2757. {
  2758. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2759. }
  2760. ],
  2761. "_srcBlendFactor": 770,
  2762. "_dstBlendFactor": 771,
  2763. "_spriteFrame": {
  2764. "__uuid__": "565ece1e-8fa1-4afa-a106-8d0309447708"
  2765. },
  2766. "_type": 0,
  2767. "_sizeMode": 1,
  2768. "_fillType": 0,
  2769. "_fillCenter": {
  2770. "__type__": "cc.Vec2",
  2771. "x": 0,
  2772. "y": 0
  2773. },
  2774. "_fillStart": 0,
  2775. "_fillRange": 0,
  2776. "_isTrimmedMode": true,
  2777. "_atlas": null,
  2778. "_id": ""
  2779. },
  2780. {
  2781. "__type__": "cc.PrefabInfo",
  2782. "root": {
  2783. "__id__": 1
  2784. },
  2785. "asset": {
  2786. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2787. },
  2788. "fileId": "927C8r+l1At7dtmnIqikfg",
  2789. "sync": false
  2790. },
  2791. {
  2792. "__type__": "cc.BlockInputEvents",
  2793. "_name": "",
  2794. "_objFlags": 0,
  2795. "node": {
  2796. "__id__": 68
  2797. },
  2798. "_enabled": true,
  2799. "_id": ""
  2800. },
  2801. {
  2802. "__type__": "cc.PrefabInfo",
  2803. "root": {
  2804. "__id__": 1
  2805. },
  2806. "asset": {
  2807. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2808. },
  2809. "fileId": "17n5+miwFJZZvqu6vW2ucy",
  2810. "sync": false
  2811. },
  2812. {
  2813. "__type__": "cc.Node",
  2814. "_name": "按钮_广告",
  2815. "_objFlags": 0,
  2816. "_parent": {
  2817. "__id__": 36
  2818. },
  2819. "_children": [
  2820. {
  2821. "__id__": 78
  2822. }
  2823. ],
  2824. "_active": true,
  2825. "_components": [
  2826. {
  2827. "__id__": 81
  2828. }
  2829. ],
  2830. "_prefab": {
  2831. "__id__": 83
  2832. },
  2833. "_opacity": 255,
  2834. "_color": {
  2835. "__type__": "cc.Color",
  2836. "r": 255,
  2837. "g": 255,
  2838. "b": 255,
  2839. "a": 255
  2840. },
  2841. "_contentSize": {
  2842. "__type__": "cc.Size",
  2843. "width": 195,
  2844. "height": 204
  2845. },
  2846. "_anchorPoint": {
  2847. "__type__": "cc.Vec2",
  2848. "x": 0.5,
  2849. "y": 0.5
  2850. },
  2851. "_trs": {
  2852. "__type__": "TypedArray",
  2853. "ctor": "Float64Array",
  2854. "array": [
  2855. 0,
  2856. -61.982,
  2857. 0,
  2858. 0,
  2859. 0,
  2860. 0,
  2861. 1,
  2862. 1,
  2863. 1,
  2864. 0
  2865. ]
  2866. },
  2867. "_eulerAngles": {
  2868. "__type__": "cc.Vec3",
  2869. "x": 0,
  2870. "y": 0,
  2871. "z": 0
  2872. },
  2873. "_skewX": 0,
  2874. "_skewY": 0,
  2875. "_is3DNode": false,
  2876. "_groupIndex": 0,
  2877. "groupIndex": 0,
  2878. "_id": ""
  2879. },
  2880. {
  2881. "__type__": "cc.Node",
  2882. "_name": "动画",
  2883. "_objFlags": 0,
  2884. "_parent": {
  2885. "__id__": 77
  2886. },
  2887. "_children": [],
  2888. "_active": true,
  2889. "_components": [
  2890. {
  2891. "__id__": 79
  2892. }
  2893. ],
  2894. "_prefab": {
  2895. "__id__": 80
  2896. },
  2897. "_opacity": 255,
  2898. "_color": {
  2899. "__type__": "cc.Color",
  2900. "r": 255,
  2901. "g": 255,
  2902. "b": 255,
  2903. "a": 255
  2904. },
  2905. "_contentSize": {
  2906. "__type__": "cc.Size",
  2907. "width": 195,
  2908. "height": 204
  2909. },
  2910. "_anchorPoint": {
  2911. "__type__": "cc.Vec2",
  2912. "x": 0.5,
  2913. "y": 0.5
  2914. },
  2915. "_trs": {
  2916. "__type__": "TypedArray",
  2917. "ctor": "Float64Array",
  2918. "array": [
  2919. 0,
  2920. 0,
  2921. 0,
  2922. 0,
  2923. 0,
  2924. 0,
  2925. 1,
  2926. 1,
  2927. 1,
  2928. 1
  2929. ]
  2930. },
  2931. "_eulerAngles": {
  2932. "__type__": "cc.Vec3",
  2933. "x": 0,
  2934. "y": 0,
  2935. "z": 0
  2936. },
  2937. "_skewX": 0,
  2938. "_skewY": 0,
  2939. "_is3DNode": false,
  2940. "_groupIndex": 0,
  2941. "groupIndex": 0,
  2942. "_id": ""
  2943. },
  2944. {
  2945. "__type__": "sp.Skeleton",
  2946. "_name": "",
  2947. "_objFlags": 0,
  2948. "node": {
  2949. "__id__": 78
  2950. },
  2951. "_enabled": true,
  2952. "_materials": [
  2953. {
  2954. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  2955. }
  2956. ],
  2957. "paused": false,
  2958. "defaultSkin": "default",
  2959. "defaultAnimation": "animation",
  2960. "_preCacheMode": 0,
  2961. "_cacheMode": 0,
  2962. "loop": true,
  2963. "premultipliedAlpha": true,
  2964. "timeScale": 1,
  2965. "_accTime": 0,
  2966. "_playCount": 0,
  2967. "_frameCache": null,
  2968. "_curFrame": null,
  2969. "_skeletonCache": null,
  2970. "_animationName": "animation",
  2971. "_animationQueue": [],
  2972. "_headAniInfo": null,
  2973. "_playTimes": 0,
  2974. "_isAniComplete": true,
  2975. "_N$skeletonData": {
  2976. "__uuid__": "d7adad34-ed08-4539-bd75-ff56d401edee"
  2977. },
  2978. "_N$_defaultCacheMode": 0,
  2979. "_N$debugSlots": false,
  2980. "_N$debugBones": false,
  2981. "_N$debugMesh": false,
  2982. "_N$useTint": false,
  2983. "_N$enableBatch": false,
  2984. "_id": ""
  2985. },
  2986. {
  2987. "__type__": "cc.PrefabInfo",
  2988. "root": {
  2989. "__id__": 1
  2990. },
  2991. "asset": {
  2992. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  2993. },
  2994. "fileId": "eaeZjmGRhNyKy79oP95dA2",
  2995. "sync": false
  2996. },
  2997. {
  2998. "__type__": "cc.Button",
  2999. "_name": "",
  3000. "_objFlags": 0,
  3001. "node": {
  3002. "__id__": 77
  3003. },
  3004. "_enabled": true,
  3005. "_normalMaterial": null,
  3006. "_grayMaterial": null,
  3007. "duration": 0.1,
  3008. "zoomScale": 1.2,
  3009. "clickEvents": [
  3010. {
  3011. "__id__": 82
  3012. }
  3013. ],
  3014. "_N$interactable": true,
  3015. "_N$enableAutoGrayEffect": false,
  3016. "_N$transition": 3,
  3017. "transition": 3,
  3018. "_N$normalColor": {
  3019. "__type__": "cc.Color",
  3020. "r": 255,
  3021. "g": 255,
  3022. "b": 255,
  3023. "a": 255
  3024. },
  3025. "_N$pressedColor": {
  3026. "__type__": "cc.Color",
  3027. "r": 211,
  3028. "g": 211,
  3029. "b": 211,
  3030. "a": 255
  3031. },
  3032. "pressedColor": {
  3033. "__type__": "cc.Color",
  3034. "r": 211,
  3035. "g": 211,
  3036. "b": 211,
  3037. "a": 255
  3038. },
  3039. "_N$hoverColor": {
  3040. "__type__": "cc.Color",
  3041. "r": 255,
  3042. "g": 255,
  3043. "b": 255,
  3044. "a": 255
  3045. },
  3046. "hoverColor": {
  3047. "__type__": "cc.Color",
  3048. "r": 255,
  3049. "g": 255,
  3050. "b": 255,
  3051. "a": 255
  3052. },
  3053. "_N$disabledColor": {
  3054. "__type__": "cc.Color",
  3055. "r": 124,
  3056. "g": 124,
  3057. "b": 124,
  3058. "a": 255
  3059. },
  3060. "_N$normalSprite": null,
  3061. "_N$pressedSprite": null,
  3062. "pressedSprite": null,
  3063. "_N$hoverSprite": null,
  3064. "hoverSprite": null,
  3065. "_N$disabledSprite": null,
  3066. "_N$target": null,
  3067. "_id": ""
  3068. },
  3069. {
  3070. "__type__": "cc.ClickEvent",
  3071. "target": {
  3072. "__id__": 1
  3073. },
  3074. "component": "",
  3075. "_componentId": "43f3akkA71HA76UhTj/R19X",
  3076. "handler": "clickWatchVideo",
  3077. "customEventData": ""
  3078. },
  3079. {
  3080. "__type__": "cc.PrefabInfo",
  3081. "root": {
  3082. "__id__": 1
  3083. },
  3084. "asset": {
  3085. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3086. },
  3087. "fileId": "09D0GUfXNBj5CmYUZ6zY2p",
  3088. "sync": false
  3089. },
  3090. {
  3091. "__type__": "cc.Node",
  3092. "_name": "通关红包封面",
  3093. "_objFlags": 0,
  3094. "_parent": {
  3095. "__id__": 36
  3096. },
  3097. "_children": [
  3098. {
  3099. "__id__": 85
  3100. },
  3101. {
  3102. "__id__": 88
  3103. },
  3104. {
  3105. "__id__": 91
  3106. },
  3107. {
  3108. "__id__": 95
  3109. }
  3110. ],
  3111. "_active": false,
  3112. "_components": [],
  3113. "_prefab": {
  3114. "__id__": 99
  3115. },
  3116. "_opacity": 0,
  3117. "_color": {
  3118. "__type__": "cc.Color",
  3119. "r": 255,
  3120. "g": 255,
  3121. "b": 255,
  3122. "a": 255
  3123. },
  3124. "_contentSize": {
  3125. "__type__": "cc.Size",
  3126. "width": 551,
  3127. "height": 765
  3128. },
  3129. "_anchorPoint": {
  3130. "__type__": "cc.Vec2",
  3131. "x": 0.5,
  3132. "y": 0.5
  3133. },
  3134. "_trs": {
  3135. "__type__": "TypedArray",
  3136. "ctor": "Float64Array",
  3137. "array": [
  3138. 0,
  3139. 101,
  3140. 0,
  3141. 0,
  3142. 0,
  3143. 0,
  3144. 1,
  3145. 1,
  3146. 1,
  3147. 1
  3148. ]
  3149. },
  3150. "_eulerAngles": {
  3151. "__type__": "cc.Vec3",
  3152. "x": 0,
  3153. "y": 0,
  3154. "z": 0
  3155. },
  3156. "_skewX": 0,
  3157. "_skewY": 0,
  3158. "_is3DNode": false,
  3159. "_groupIndex": 0,
  3160. "groupIndex": 0,
  3161. "_id": ""
  3162. },
  3163. {
  3164. "__type__": "cc.Node",
  3165. "_name": "熊猫动画",
  3166. "_objFlags": 0,
  3167. "_parent": {
  3168. "__id__": 84
  3169. },
  3170. "_children": [],
  3171. "_active": true,
  3172. "_components": [
  3173. {
  3174. "__id__": 86
  3175. }
  3176. ],
  3177. "_prefab": {
  3178. "__id__": 87
  3179. },
  3180. "_opacity": 255,
  3181. "_color": {
  3182. "__type__": "cc.Color",
  3183. "r": 255,
  3184. "g": 255,
  3185. "b": 255,
  3186. "a": 255
  3187. },
  3188. "_contentSize": {
  3189. "__type__": "cc.Size",
  3190. "width": 485.48,
  3191. "height": 443.28
  3192. },
  3193. "_anchorPoint": {
  3194. "__type__": "cc.Vec2",
  3195. "x": 0.5,
  3196. "y": 0.5
  3197. },
  3198. "_trs": {
  3199. "__type__": "TypedArray",
  3200. "ctor": "Float64Array",
  3201. "array": [
  3202. 0,
  3203. 220,
  3204. 0,
  3205. 0,
  3206. 0,
  3207. 0,
  3208. 1,
  3209. 1,
  3210. 1,
  3211. 1
  3212. ]
  3213. },
  3214. "_eulerAngles": {
  3215. "__type__": "cc.Vec3",
  3216. "x": 0,
  3217. "y": 0,
  3218. "z": 0
  3219. },
  3220. "_skewX": 0,
  3221. "_skewY": 0,
  3222. "_is3DNode": false,
  3223. "_groupIndex": 0,
  3224. "groupIndex": 0,
  3225. "_id": ""
  3226. },
  3227. {
  3228. "__type__": "sp.Skeleton",
  3229. "_name": "",
  3230. "_objFlags": 0,
  3231. "node": {
  3232. "__id__": 85
  3233. },
  3234. "_enabled": true,
  3235. "_materials": [
  3236. {
  3237. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  3238. }
  3239. ],
  3240. "paused": false,
  3241. "defaultSkin": "default",
  3242. "defaultAnimation": "hongbao",
  3243. "_preCacheMode": 0,
  3244. "_cacheMode": 0,
  3245. "loop": true,
  3246. "premultipliedAlpha": true,
  3247. "timeScale": 1,
  3248. "_accTime": 0,
  3249. "_playCount": 0,
  3250. "_frameCache": null,
  3251. "_curFrame": null,
  3252. "_skeletonCache": null,
  3253. "_animationName": "hongbao",
  3254. "_animationQueue": [],
  3255. "_headAniInfo": null,
  3256. "_playTimes": 0,
  3257. "_isAniComplete": true,
  3258. "_N$skeletonData": {
  3259. "__uuid__": "8f090d5d-cfa1-40d6-bcce-014cc1aa881e"
  3260. },
  3261. "_N$_defaultCacheMode": 0,
  3262. "_N$debugSlots": false,
  3263. "_N$debugBones": false,
  3264. "_N$debugMesh": false,
  3265. "_N$useTint": false,
  3266. "_N$enableBatch": false,
  3267. "_id": ""
  3268. },
  3269. {
  3270. "__type__": "cc.PrefabInfo",
  3271. "root": {
  3272. "__id__": 1
  3273. },
  3274. "asset": {
  3275. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3276. },
  3277. "fileId": "55eZ8hdXlDk40Pqjf4keJe",
  3278. "sync": false
  3279. },
  3280. {
  3281. "__type__": "cc.Node",
  3282. "_name": "通关盖子",
  3283. "_objFlags": 0,
  3284. "_parent": {
  3285. "__id__": 84
  3286. },
  3287. "_children": [],
  3288. "_active": true,
  3289. "_components": [
  3290. {
  3291. "__id__": 89
  3292. }
  3293. ],
  3294. "_prefab": {
  3295. "__id__": 90
  3296. },
  3297. "_opacity": 255,
  3298. "_color": {
  3299. "__type__": "cc.Color",
  3300. "r": 255,
  3301. "g": 255,
  3302. "b": 255,
  3303. "a": 255
  3304. },
  3305. "_contentSize": {
  3306. "__type__": "cc.Size",
  3307. "width": 551,
  3308. "height": 765
  3309. },
  3310. "_anchorPoint": {
  3311. "__type__": "cc.Vec2",
  3312. "x": 0.5,
  3313. "y": 0.5
  3314. },
  3315. "_trs": {
  3316. "__type__": "TypedArray",
  3317. "ctor": "Float64Array",
  3318. "array": [
  3319. 0,
  3320. -26,
  3321. 0,
  3322. 0,
  3323. 0,
  3324. 0,
  3325. 1,
  3326. 1,
  3327. 1,
  3328. 1
  3329. ]
  3330. },
  3331. "_eulerAngles": {
  3332. "__type__": "cc.Vec3",
  3333. "x": 0,
  3334. "y": 0,
  3335. "z": 0
  3336. },
  3337. "_skewX": 0,
  3338. "_skewY": 0,
  3339. "_is3DNode": false,
  3340. "_groupIndex": 0,
  3341. "groupIndex": 0,
  3342. "_id": ""
  3343. },
  3344. {
  3345. "__type__": "cc.Sprite",
  3346. "_name": "",
  3347. "_objFlags": 0,
  3348. "node": {
  3349. "__id__": 88
  3350. },
  3351. "_enabled": true,
  3352. "_materials": [
  3353. {
  3354. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3355. }
  3356. ],
  3357. "_srcBlendFactor": 770,
  3358. "_dstBlendFactor": 771,
  3359. "_spriteFrame": {
  3360. "__uuid__": "565ece1e-8fa1-4afa-a106-8d0309447708"
  3361. },
  3362. "_type": 0,
  3363. "_sizeMode": 1,
  3364. "_fillType": 0,
  3365. "_fillCenter": {
  3366. "__type__": "cc.Vec2",
  3367. "x": 0,
  3368. "y": 0
  3369. },
  3370. "_fillStart": 0,
  3371. "_fillRange": 0,
  3372. "_isTrimmedMode": true,
  3373. "_atlas": null,
  3374. "_id": ""
  3375. },
  3376. {
  3377. "__type__": "cc.PrefabInfo",
  3378. "root": {
  3379. "__id__": 1
  3380. },
  3381. "asset": {
  3382. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3383. },
  3384. "fileId": "57vH2f6RtP3IoZy5wjPyNG",
  3385. "sync": false
  3386. },
  3387. {
  3388. "__type__": "cc.Node",
  3389. "_name": "按钮_下一关",
  3390. "_objFlags": 0,
  3391. "_parent": {
  3392. "__id__": 84
  3393. },
  3394. "_children": [],
  3395. "_active": true,
  3396. "_components": [
  3397. {
  3398. "__id__": 92
  3399. },
  3400. {
  3401. "__id__": 93
  3402. }
  3403. ],
  3404. "_prefab": {
  3405. "__id__": 94
  3406. },
  3407. "_opacity": 255,
  3408. "_color": {
  3409. "__type__": "cc.Color",
  3410. "r": 255,
  3411. "g": 255,
  3412. "b": 255,
  3413. "a": 255
  3414. },
  3415. "_contentSize": {
  3416. "__type__": "cc.Size",
  3417. "width": 139,
  3418. "height": 139
  3419. },
  3420. "_anchorPoint": {
  3421. "__type__": "cc.Vec2",
  3422. "x": 0.5,
  3423. "y": 0.5
  3424. },
  3425. "_trs": {
  3426. "__type__": "TypedArray",
  3427. "ctor": "Float64Array",
  3428. "array": [
  3429. -120,
  3430. -655,
  3431. 0,
  3432. 0,
  3433. 0,
  3434. 0,
  3435. 1,
  3436. 1,
  3437. 1,
  3438. 0
  3439. ]
  3440. },
  3441. "_eulerAngles": {
  3442. "__type__": "cc.Vec3",
  3443. "x": 0,
  3444. "y": 0,
  3445. "z": 0
  3446. },
  3447. "_skewX": 0,
  3448. "_skewY": 0,
  3449. "_is3DNode": false,
  3450. "_groupIndex": 0,
  3451. "groupIndex": 0,
  3452. "_id": ""
  3453. },
  3454. {
  3455. "__type__": "cc.Sprite",
  3456. "_name": "",
  3457. "_objFlags": 0,
  3458. "node": {
  3459. "__id__": 91
  3460. },
  3461. "_enabled": true,
  3462. "_materials": [
  3463. {
  3464. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3465. }
  3466. ],
  3467. "_srcBlendFactor": 770,
  3468. "_dstBlendFactor": 771,
  3469. "_spriteFrame": {
  3470. "__uuid__": "dbcb922e-3d02-43be-8c4d-fe822a3335ce"
  3471. },
  3472. "_type": 0,
  3473. "_sizeMode": 1,
  3474. "_fillType": 0,
  3475. "_fillCenter": {
  3476. "__type__": "cc.Vec2",
  3477. "x": 0,
  3478. "y": 0
  3479. },
  3480. "_fillStart": 0,
  3481. "_fillRange": 0,
  3482. "_isTrimmedMode": true,
  3483. "_atlas": null,
  3484. "_id": ""
  3485. },
  3486. {
  3487. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  3488. "_name": "",
  3489. "_objFlags": 0,
  3490. "node": {
  3491. "__id__": 91
  3492. },
  3493. "_enabled": true,
  3494. "node_panel": {
  3495. "__id__": 1
  3496. },
  3497. "transition_type": 3,
  3498. "onComplete": [],
  3499. "_id": ""
  3500. },
  3501. {
  3502. "__type__": "cc.PrefabInfo",
  3503. "root": {
  3504. "__id__": 1
  3505. },
  3506. "asset": {
  3507. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3508. },
  3509. "fileId": "f54Q33lNBMprj9F9rUkJFG",
  3510. "sync": false
  3511. },
  3512. {
  3513. "__type__": "cc.Node",
  3514. "_name": "按钮_返回主页",
  3515. "_objFlags": 0,
  3516. "_parent": {
  3517. "__id__": 84
  3518. },
  3519. "_children": [],
  3520. "_active": true,
  3521. "_components": [
  3522. {
  3523. "__id__": 96
  3524. },
  3525. {
  3526. "__id__": 97
  3527. }
  3528. ],
  3529. "_prefab": {
  3530. "__id__": 98
  3531. },
  3532. "_opacity": 255,
  3533. "_color": {
  3534. "__type__": "cc.Color",
  3535. "r": 255,
  3536. "g": 255,
  3537. "b": 255,
  3538. "a": 255
  3539. },
  3540. "_contentSize": {
  3541. "__type__": "cc.Size",
  3542. "width": 139,
  3543. "height": 139
  3544. },
  3545. "_anchorPoint": {
  3546. "__type__": "cc.Vec2",
  3547. "x": 0.5,
  3548. "y": 0.5
  3549. },
  3550. "_trs": {
  3551. "__type__": "TypedArray",
  3552. "ctor": "Float64Array",
  3553. "array": [
  3554. 120,
  3555. -655,
  3556. 0,
  3557. 0,
  3558. 0,
  3559. 0,
  3560. 1,
  3561. 1,
  3562. 1,
  3563. 1
  3564. ]
  3565. },
  3566. "_eulerAngles": {
  3567. "__type__": "cc.Vec3",
  3568. "x": 0,
  3569. "y": 0,
  3570. "z": 0
  3571. },
  3572. "_skewX": 0,
  3573. "_skewY": 0,
  3574. "_is3DNode": false,
  3575. "_groupIndex": 0,
  3576. "groupIndex": 0,
  3577. "_id": ""
  3578. },
  3579. {
  3580. "__type__": "cc.Sprite",
  3581. "_name": "",
  3582. "_objFlags": 0,
  3583. "node": {
  3584. "__id__": 95
  3585. },
  3586. "_enabled": true,
  3587. "_materials": [
  3588. {
  3589. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3590. }
  3591. ],
  3592. "_srcBlendFactor": 770,
  3593. "_dstBlendFactor": 771,
  3594. "_spriteFrame": {
  3595. "__uuid__": "5fab1a03-9f09-4158-82d0-38a20efa9d5c"
  3596. },
  3597. "_type": 0,
  3598. "_sizeMode": 1,
  3599. "_fillType": 0,
  3600. "_fillCenter": {
  3601. "__type__": "cc.Vec2",
  3602. "x": 0,
  3603. "y": 0
  3604. },
  3605. "_fillStart": 0,
  3606. "_fillRange": 0,
  3607. "_isTrimmedMode": true,
  3608. "_atlas": null,
  3609. "_id": ""
  3610. },
  3611. {
  3612. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  3613. "_name": "",
  3614. "_objFlags": 0,
  3615. "node": {
  3616. "__id__": 95
  3617. },
  3618. "_enabled": true,
  3619. "node_panel": {
  3620. "__id__": 1
  3621. },
  3622. "transition_type": 3,
  3623. "onComplete": [],
  3624. "_id": ""
  3625. },
  3626. {
  3627. "__type__": "cc.PrefabInfo",
  3628. "root": {
  3629. "__id__": 1
  3630. },
  3631. "asset": {
  3632. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3633. },
  3634. "fileId": "52ulp2qF9Pppp1FEyoJISY",
  3635. "sync": false
  3636. },
  3637. {
  3638. "__type__": "cc.PrefabInfo",
  3639. "root": {
  3640. "__id__": 1
  3641. },
  3642. "asset": {
  3643. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3644. },
  3645. "fileId": "4cxOiC7uNDl4HRMDtQqjYG",
  3646. "sync": false
  3647. },
  3648. {
  3649. "__type__": "cc.Animation",
  3650. "_name": "",
  3651. "_objFlags": 0,
  3652. "node": {
  3653. "__id__": 36
  3654. },
  3655. "_enabled": true,
  3656. "_defaultClip": {
  3657. "__uuid__": "b3fe8a24-9df4-45cd-a6b9-9eae78842bb1"
  3658. },
  3659. "_clips": [
  3660. {
  3661. "__uuid__": "b3fe8a24-9df4-45cd-a6b9-9eae78842bb1"
  3662. }
  3663. ],
  3664. "playOnLoad": false,
  3665. "_id": ""
  3666. },
  3667. {
  3668. "__type__": "cc.PrefabInfo",
  3669. "root": {
  3670. "__id__": 1
  3671. },
  3672. "asset": {
  3673. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3674. },
  3675. "fileId": "f2boYfhXZK86k+1Zw5AYUz",
  3676. "sync": false
  3677. },
  3678. {
  3679. "__type__": "cc.Node",
  3680. "_name": "星星节点",
  3681. "_objFlags": 0,
  3682. "_parent": {
  3683. "__id__": 2
  3684. },
  3685. "_children": [
  3686. {
  3687. "__id__": 103
  3688. },
  3689. {
  3690. "__id__": 106
  3691. },
  3692. {
  3693. "__id__": 109
  3694. },
  3695. {
  3696. "__id__": 112
  3697. },
  3698. {
  3699. "__id__": 115
  3700. }
  3701. ],
  3702. "_active": true,
  3703. "_components": [],
  3704. "_prefab": {
  3705. "__id__": 118
  3706. },
  3707. "_opacity": 255,
  3708. "_color": {
  3709. "__type__": "cc.Color",
  3710. "r": 255,
  3711. "g": 255,
  3712. "b": 255,
  3713. "a": 255
  3714. },
  3715. "_contentSize": {
  3716. "__type__": "cc.Size",
  3717. "width": 0,
  3718. "height": 0
  3719. },
  3720. "_anchorPoint": {
  3721. "__type__": "cc.Vec2",
  3722. "x": 0.5,
  3723. "y": 0.5
  3724. },
  3725. "_trs": {
  3726. "__type__": "TypedArray",
  3727. "ctor": "Float64Array",
  3728. "array": [
  3729. 0,
  3730. 0,
  3731. 0,
  3732. 0,
  3733. 0,
  3734. 0,
  3735. 1,
  3736. 1,
  3737. 1,
  3738. 1
  3739. ]
  3740. },
  3741. "_eulerAngles": {
  3742. "__type__": "cc.Vec3",
  3743. "x": 0,
  3744. "y": 0,
  3745. "z": 0
  3746. },
  3747. "_skewX": 0,
  3748. "_skewY": 0,
  3749. "_is3DNode": false,
  3750. "_groupIndex": 0,
  3751. "groupIndex": 0,
  3752. "_id": ""
  3753. },
  3754. {
  3755. "__type__": "cc.Node",
  3756. "_name": "星星",
  3757. "_objFlags": 0,
  3758. "_parent": {
  3759. "__id__": 102
  3760. },
  3761. "_children": [],
  3762. "_active": true,
  3763. "_components": [
  3764. {
  3765. "__id__": 104
  3766. }
  3767. ],
  3768. "_prefab": {
  3769. "__id__": 105
  3770. },
  3771. "_opacity": 255,
  3772. "_color": {
  3773. "__type__": "cc.Color",
  3774. "r": 255,
  3775. "g": 255,
  3776. "b": 255,
  3777. "a": 255
  3778. },
  3779. "_contentSize": {
  3780. "__type__": "cc.Size",
  3781. "width": 43,
  3782. "height": 48
  3783. },
  3784. "_anchorPoint": {
  3785. "__type__": "cc.Vec2",
  3786. "x": 0.5,
  3787. "y": 0.5
  3788. },
  3789. "_trs": {
  3790. "__type__": "TypedArray",
  3791. "ctor": "Float64Array",
  3792. "array": [
  3793. 64.75,
  3794. -272.488,
  3795. 0,
  3796. 0,
  3797. 0,
  3798. 0,
  3799. 1,
  3800. 1,
  3801. 1,
  3802. 1
  3803. ]
  3804. },
  3805. "_eulerAngles": {
  3806. "__type__": "cc.Vec3",
  3807. "x": 0,
  3808. "y": 0,
  3809. "z": 0
  3810. },
  3811. "_skewX": 0,
  3812. "_skewY": 0,
  3813. "_is3DNode": false,
  3814. "_groupIndex": 0,
  3815. "groupIndex": 0,
  3816. "_id": ""
  3817. },
  3818. {
  3819. "__type__": "cc.Sprite",
  3820. "_name": "",
  3821. "_objFlags": 0,
  3822. "node": {
  3823. "__id__": 103
  3824. },
  3825. "_enabled": true,
  3826. "_materials": [
  3827. {
  3828. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3829. }
  3830. ],
  3831. "_srcBlendFactor": 770,
  3832. "_dstBlendFactor": 771,
  3833. "_spriteFrame": {
  3834. "__uuid__": "56109b10-f8d0-4b07-8e06-d13bfd9875c1"
  3835. },
  3836. "_type": 0,
  3837. "_sizeMode": 1,
  3838. "_fillType": 0,
  3839. "_fillCenter": {
  3840. "__type__": "cc.Vec2",
  3841. "x": 0,
  3842. "y": 0
  3843. },
  3844. "_fillStart": 0,
  3845. "_fillRange": 0,
  3846. "_isTrimmedMode": true,
  3847. "_atlas": null,
  3848. "_id": ""
  3849. },
  3850. {
  3851. "__type__": "cc.PrefabInfo",
  3852. "root": {
  3853. "__id__": 1
  3854. },
  3855. "asset": {
  3856. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3857. },
  3858. "fileId": "0dU7zK2Y1CMayKKmtOLoQG",
  3859. "sync": false
  3860. },
  3861. {
  3862. "__type__": "cc.Node",
  3863. "_name": "星星",
  3864. "_objFlags": 0,
  3865. "_parent": {
  3866. "__id__": 102
  3867. },
  3868. "_children": [],
  3869. "_active": true,
  3870. "_components": [
  3871. {
  3872. "__id__": 107
  3873. }
  3874. ],
  3875. "_prefab": {
  3876. "__id__": 108
  3877. },
  3878. "_opacity": 255,
  3879. "_color": {
  3880. "__type__": "cc.Color",
  3881. "r": 255,
  3882. "g": 255,
  3883. "b": 255,
  3884. "a": 255
  3885. },
  3886. "_contentSize": {
  3887. "__type__": "cc.Size",
  3888. "width": 43,
  3889. "height": 48
  3890. },
  3891. "_anchorPoint": {
  3892. "__type__": "cc.Vec2",
  3893. "x": 0.5,
  3894. "y": 0.5
  3895. },
  3896. "_trs": {
  3897. "__type__": "TypedArray",
  3898. "ctor": "Float64Array",
  3899. "array": [
  3900. 249.556,
  3901. -126.801,
  3902. 0,
  3903. 0,
  3904. 0,
  3905. 0,
  3906. 1,
  3907. 1,
  3908. 1,
  3909. 1
  3910. ]
  3911. },
  3912. "_eulerAngles": {
  3913. "__type__": "cc.Vec3",
  3914. "x": 0,
  3915. "y": 0,
  3916. "z": 0
  3917. },
  3918. "_skewX": 0,
  3919. "_skewY": 0,
  3920. "_is3DNode": false,
  3921. "_groupIndex": 0,
  3922. "groupIndex": 0,
  3923. "_id": ""
  3924. },
  3925. {
  3926. "__type__": "cc.Sprite",
  3927. "_name": "",
  3928. "_objFlags": 0,
  3929. "node": {
  3930. "__id__": 106
  3931. },
  3932. "_enabled": true,
  3933. "_materials": [
  3934. {
  3935. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3936. }
  3937. ],
  3938. "_srcBlendFactor": 770,
  3939. "_dstBlendFactor": 771,
  3940. "_spriteFrame": {
  3941. "__uuid__": "56109b10-f8d0-4b07-8e06-d13bfd9875c1"
  3942. },
  3943. "_type": 0,
  3944. "_sizeMode": 1,
  3945. "_fillType": 0,
  3946. "_fillCenter": {
  3947. "__type__": "cc.Vec2",
  3948. "x": 0,
  3949. "y": 0
  3950. },
  3951. "_fillStart": 0,
  3952. "_fillRange": 0,
  3953. "_isTrimmedMode": true,
  3954. "_atlas": null,
  3955. "_id": ""
  3956. },
  3957. {
  3958. "__type__": "cc.PrefabInfo",
  3959. "root": {
  3960. "__id__": 1
  3961. },
  3962. "asset": {
  3963. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  3964. },
  3965. "fileId": "f6S+sagClCaIM+L/VBzG+u",
  3966. "sync": false
  3967. },
  3968. {
  3969. "__type__": "cc.Node",
  3970. "_name": "星星",
  3971. "_objFlags": 0,
  3972. "_parent": {
  3973. "__id__": 102
  3974. },
  3975. "_children": [],
  3976. "_active": true,
  3977. "_components": [
  3978. {
  3979. "__id__": 110
  3980. }
  3981. ],
  3982. "_prefab": {
  3983. "__id__": 111
  3984. },
  3985. "_opacity": 255,
  3986. "_color": {
  3987. "__type__": "cc.Color",
  3988. "r": 255,
  3989. "g": 255,
  3990. "b": 255,
  3991. "a": 255
  3992. },
  3993. "_contentSize": {
  3994. "__type__": "cc.Size",
  3995. "width": 43,
  3996. "height": 48
  3997. },
  3998. "_anchorPoint": {
  3999. "__type__": "cc.Vec2",
  4000. "x": 0.5,
  4001. "y": 0.5
  4002. },
  4003. "_trs": {
  4004. "__type__": "TypedArray",
  4005. "ctor": "Float64Array",
  4006. "array": [
  4007. 98.473,
  4008. 133.547,
  4009. 0,
  4010. 0,
  4011. 0,
  4012. 0,
  4013. 1,
  4014. 1,
  4015. 1,
  4016. 1
  4017. ]
  4018. },
  4019. "_eulerAngles": {
  4020. "__type__": "cc.Vec3",
  4021. "x": 0,
  4022. "y": 0,
  4023. "z": 0
  4024. },
  4025. "_skewX": 0,
  4026. "_skewY": 0,
  4027. "_is3DNode": false,
  4028. "_groupIndex": 0,
  4029. "groupIndex": 0,
  4030. "_id": ""
  4031. },
  4032. {
  4033. "__type__": "cc.Sprite",
  4034. "_name": "",
  4035. "_objFlags": 0,
  4036. "node": {
  4037. "__id__": 109
  4038. },
  4039. "_enabled": true,
  4040. "_materials": [
  4041. {
  4042. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4043. }
  4044. ],
  4045. "_srcBlendFactor": 770,
  4046. "_dstBlendFactor": 771,
  4047. "_spriteFrame": {
  4048. "__uuid__": "56109b10-f8d0-4b07-8e06-d13bfd9875c1"
  4049. },
  4050. "_type": 0,
  4051. "_sizeMode": 1,
  4052. "_fillType": 0,
  4053. "_fillCenter": {
  4054. "__type__": "cc.Vec2",
  4055. "x": 0,
  4056. "y": 0
  4057. },
  4058. "_fillStart": 0,
  4059. "_fillRange": 0,
  4060. "_isTrimmedMode": true,
  4061. "_atlas": null,
  4062. "_id": ""
  4063. },
  4064. {
  4065. "__type__": "cc.PrefabInfo",
  4066. "root": {
  4067. "__id__": 1
  4068. },
  4069. "asset": {
  4070. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4071. },
  4072. "fileId": "daHbaTgLNDHqbRQtu1ZgHY",
  4073. "sync": false
  4074. },
  4075. {
  4076. "__type__": "cc.Node",
  4077. "_name": "星星",
  4078. "_objFlags": 0,
  4079. "_parent": {
  4080. "__id__": 102
  4081. },
  4082. "_children": [],
  4083. "_active": true,
  4084. "_components": [
  4085. {
  4086. "__id__": 113
  4087. }
  4088. ],
  4089. "_prefab": {
  4090. "__id__": 114
  4091. },
  4092. "_opacity": 255,
  4093. "_color": {
  4094. "__type__": "cc.Color",
  4095. "r": 255,
  4096. "g": 255,
  4097. "b": 255,
  4098. "a": 255
  4099. },
  4100. "_contentSize": {
  4101. "__type__": "cc.Size",
  4102. "width": 43,
  4103. "height": 48
  4104. },
  4105. "_anchorPoint": {
  4106. "__type__": "cc.Vec2",
  4107. "x": 0.5,
  4108. "y": 0.5
  4109. },
  4110. "_trs": {
  4111. "__type__": "TypedArray",
  4112. "ctor": "Float64Array",
  4113. "array": [
  4114. 51.26,
  4115. 161.875,
  4116. 0,
  4117. 0,
  4118. 0,
  4119. 0,
  4120. 1,
  4121. 1,
  4122. 1,
  4123. 1
  4124. ]
  4125. },
  4126. "_eulerAngles": {
  4127. "__type__": "cc.Vec3",
  4128. "x": 0,
  4129. "y": 0,
  4130. "z": 0
  4131. },
  4132. "_skewX": 0,
  4133. "_skewY": 0,
  4134. "_is3DNode": false,
  4135. "_groupIndex": 0,
  4136. "groupIndex": 0,
  4137. "_id": ""
  4138. },
  4139. {
  4140. "__type__": "cc.Sprite",
  4141. "_name": "",
  4142. "_objFlags": 0,
  4143. "node": {
  4144. "__id__": 112
  4145. },
  4146. "_enabled": true,
  4147. "_materials": [
  4148. {
  4149. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4150. }
  4151. ],
  4152. "_srcBlendFactor": 770,
  4153. "_dstBlendFactor": 771,
  4154. "_spriteFrame": {
  4155. "__uuid__": "56109b10-f8d0-4b07-8e06-d13bfd9875c1"
  4156. },
  4157. "_type": 0,
  4158. "_sizeMode": 1,
  4159. "_fillType": 0,
  4160. "_fillCenter": {
  4161. "__type__": "cc.Vec2",
  4162. "x": 0,
  4163. "y": 0
  4164. },
  4165. "_fillStart": 0,
  4166. "_fillRange": 0,
  4167. "_isTrimmedMode": true,
  4168. "_atlas": null,
  4169. "_id": ""
  4170. },
  4171. {
  4172. "__type__": "cc.PrefabInfo",
  4173. "root": {
  4174. "__id__": 1
  4175. },
  4176. "asset": {
  4177. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4178. },
  4179. "fileId": "3fUKw0ED1GtaamEnhPfTAO",
  4180. "sync": false
  4181. },
  4182. {
  4183. "__type__": "cc.Node",
  4184. "_name": "星星",
  4185. "_objFlags": 0,
  4186. "_parent": {
  4187. "__id__": 102
  4188. },
  4189. "_children": [],
  4190. "_active": true,
  4191. "_components": [
  4192. {
  4193. "__id__": 116
  4194. }
  4195. ],
  4196. "_prefab": {
  4197. "__id__": 117
  4198. },
  4199. "_opacity": 255,
  4200. "_color": {
  4201. "__type__": "cc.Color",
  4202. "r": 255,
  4203. "g": 255,
  4204. "b": 255,
  4205. "a": 255
  4206. },
  4207. "_contentSize": {
  4208. "__type__": "cc.Size",
  4209. "width": 43,
  4210. "height": 48
  4211. },
  4212. "_anchorPoint": {
  4213. "__type__": "cc.Vec2",
  4214. "x": 0.5,
  4215. "y": 0.5
  4216. },
  4217. "_trs": {
  4218. "__type__": "TypedArray",
  4219. "ctor": "Float64Array",
  4220. "array": [
  4221. -133.546,
  4222. 91.73,
  4223. 0,
  4224. 0,
  4225. 0,
  4226. 0,
  4227. 1,
  4228. 1,
  4229. 1,
  4230. 1
  4231. ]
  4232. },
  4233. "_eulerAngles": {
  4234. "__type__": "cc.Vec3",
  4235. "x": 0,
  4236. "y": 0,
  4237. "z": 0
  4238. },
  4239. "_skewX": 0,
  4240. "_skewY": 0,
  4241. "_is3DNode": false,
  4242. "_groupIndex": 0,
  4243. "groupIndex": 0,
  4244. "_id": ""
  4245. },
  4246. {
  4247. "__type__": "cc.Sprite",
  4248. "_name": "",
  4249. "_objFlags": 0,
  4250. "node": {
  4251. "__id__": 115
  4252. },
  4253. "_enabled": true,
  4254. "_materials": [
  4255. {
  4256. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4257. }
  4258. ],
  4259. "_srcBlendFactor": 770,
  4260. "_dstBlendFactor": 771,
  4261. "_spriteFrame": {
  4262. "__uuid__": "56109b10-f8d0-4b07-8e06-d13bfd9875c1"
  4263. },
  4264. "_type": 0,
  4265. "_sizeMode": 1,
  4266. "_fillType": 0,
  4267. "_fillCenter": {
  4268. "__type__": "cc.Vec2",
  4269. "x": 0,
  4270. "y": 0
  4271. },
  4272. "_fillStart": 0,
  4273. "_fillRange": 0,
  4274. "_isTrimmedMode": true,
  4275. "_atlas": null,
  4276. "_id": ""
  4277. },
  4278. {
  4279. "__type__": "cc.PrefabInfo",
  4280. "root": {
  4281. "__id__": 1
  4282. },
  4283. "asset": {
  4284. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4285. },
  4286. "fileId": "ffsavq0wVEhKdSMk6qBq8+",
  4287. "sync": false
  4288. },
  4289. {
  4290. "__type__": "cc.PrefabInfo",
  4291. "root": {
  4292. "__id__": 1
  4293. },
  4294. "asset": {
  4295. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4296. },
  4297. "fileId": "61jX4y/5xCz5RKgfbutOCT",
  4298. "sync": false
  4299. },
  4300. {
  4301. "__type__": "cc.Widget",
  4302. "_name": "",
  4303. "_objFlags": 0,
  4304. "node": {
  4305. "__id__": 2
  4306. },
  4307. "_enabled": true,
  4308. "alignMode": 1,
  4309. "_target": null,
  4310. "_alignFlags": 45,
  4311. "_left": 0,
  4312. "_right": 0,
  4313. "_top": 0,
  4314. "_bottom": 0,
  4315. "_verticalCenter": 0,
  4316. "_horizontalCenter": 0,
  4317. "_isAbsLeft": true,
  4318. "_isAbsRight": true,
  4319. "_isAbsTop": true,
  4320. "_isAbsBottom": true,
  4321. "_isAbsHorizontalCenter": true,
  4322. "_isAbsVerticalCenter": true,
  4323. "_originalWidth": 0,
  4324. "_originalHeight": 0,
  4325. "_id": ""
  4326. },
  4327. {
  4328. "__type__": "cc.PrefabInfo",
  4329. "root": {
  4330. "__id__": 1
  4331. },
  4332. "asset": {
  4333. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4334. },
  4335. "fileId": "94yiGj0RFACpXt5xGEvfHf",
  4336. "sync": false
  4337. },
  4338. {
  4339. "__type__": "cc.Node",
  4340. "_name": "btn_close",
  4341. "_objFlags": 0,
  4342. "_parent": {
  4343. "__id__": 1
  4344. },
  4345. "_children": [],
  4346. "_active": true,
  4347. "_components": [
  4348. {
  4349. "__id__": 122
  4350. },
  4351. {
  4352. "__id__": 123
  4353. },
  4354. {
  4355. "__id__": 126
  4356. }
  4357. ],
  4358. "_prefab": {
  4359. "__id__": 127
  4360. },
  4361. "_opacity": 255,
  4362. "_color": {
  4363. "__type__": "cc.Color",
  4364. "r": 255,
  4365. "g": 255,
  4366. "b": 255,
  4367. "a": 255
  4368. },
  4369. "_contentSize": {
  4370. "__type__": "cc.Size",
  4371. "width": 88,
  4372. "height": 88
  4373. },
  4374. "_anchorPoint": {
  4375. "__type__": "cc.Vec2",
  4376. "x": 0.5,
  4377. "y": 0.5
  4378. },
  4379. "_trs": {
  4380. "__type__": "TypedArray",
  4381. "ctor": "Float64Array",
  4382. "array": [
  4383. 272.441,
  4384. 491.749,
  4385. 0,
  4386. 0,
  4387. 0,
  4388. 0,
  4389. 1,
  4390. 1,
  4391. 1,
  4392. 1
  4393. ]
  4394. },
  4395. "_eulerAngles": {
  4396. "__type__": "cc.Vec3",
  4397. "x": 0,
  4398. "y": 0,
  4399. "z": 0
  4400. },
  4401. "_skewX": 0,
  4402. "_skewY": 0,
  4403. "_is3DNode": false,
  4404. "_groupIndex": 0,
  4405. "groupIndex": 0,
  4406. "_id": ""
  4407. },
  4408. {
  4409. "__type__": "cc.Sprite",
  4410. "_name": "",
  4411. "_objFlags": 0,
  4412. "node": {
  4413. "__id__": 121
  4414. },
  4415. "_enabled": true,
  4416. "_materials": [
  4417. {
  4418. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4419. }
  4420. ],
  4421. "_srcBlendFactor": 770,
  4422. "_dstBlendFactor": 771,
  4423. "_spriteFrame": {
  4424. "__uuid__": "6e00eea0-2e49-4c98-b664-a63c8660f4bb"
  4425. },
  4426. "_type": 0,
  4427. "_sizeMode": 1,
  4428. "_fillType": 0,
  4429. "_fillCenter": {
  4430. "__type__": "cc.Vec2",
  4431. "x": 0,
  4432. "y": 0
  4433. },
  4434. "_fillStart": 0,
  4435. "_fillRange": 0,
  4436. "_isTrimmedMode": true,
  4437. "_atlas": null,
  4438. "_id": ""
  4439. },
  4440. {
  4441. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  4442. "_name": "",
  4443. "_objFlags": 0,
  4444. "node": {
  4445. "__id__": 121
  4446. },
  4447. "_enabled": true,
  4448. "node_panel": {
  4449. "__id__": 1
  4450. },
  4451. "transition_type": 3,
  4452. "onComplete": [
  4453. {
  4454. "__id__": 124
  4455. },
  4456. {
  4457. "__id__": 125
  4458. }
  4459. ],
  4460. "_id": ""
  4461. },
  4462. {
  4463. "__type__": "cc.ClickEvent",
  4464. "target": {
  4465. "__id__": 1
  4466. },
  4467. "component": "",
  4468. "_componentId": "43f3akkA71HA76UhTj/R19X",
  4469. "handler": "onClickClose",
  4470. "customEventData": ""
  4471. },
  4472. {
  4473. "__type__": "cc.ClickEvent",
  4474. "target": {
  4475. "__id__": 1
  4476. },
  4477. "component": "",
  4478. "_componentId": "43f3akkA71HA76UhTj/R19X",
  4479. "handler": "clickGetReward",
  4480. "customEventData": ""
  4481. },
  4482. {
  4483. "__type__": "cc.Animation",
  4484. "_name": "",
  4485. "_objFlags": 0,
  4486. "node": {
  4487. "__id__": 121
  4488. },
  4489. "_enabled": true,
  4490. "_defaultClip": {
  4491. "__uuid__": "ad45b0ef-9064-4616-b541-b8d386b87f3a"
  4492. },
  4493. "_clips": [
  4494. {
  4495. "__uuid__": "ad45b0ef-9064-4616-b541-b8d386b87f3a"
  4496. }
  4497. ],
  4498. "playOnLoad": true,
  4499. "_id": ""
  4500. },
  4501. {
  4502. "__type__": "cc.PrefabInfo",
  4503. "root": {
  4504. "__id__": 1
  4505. },
  4506. "asset": {
  4507. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4508. },
  4509. "fileId": "721k4zYfBHKpZUi6Pjen1t",
  4510. "sync": false
  4511. },
  4512. {
  4513. "__type__": "cc.Widget",
  4514. "_name": "",
  4515. "_objFlags": 0,
  4516. "node": {
  4517. "__id__": 1
  4518. },
  4519. "_enabled": true,
  4520. "alignMode": 1,
  4521. "_target": null,
  4522. "_alignFlags": 45,
  4523. "_left": 0,
  4524. "_right": 0,
  4525. "_top": 0,
  4526. "_bottom": 0,
  4527. "_verticalCenter": 0,
  4528. "_horizontalCenter": 0,
  4529. "_isAbsLeft": true,
  4530. "_isAbsRight": true,
  4531. "_isAbsTop": true,
  4532. "_isAbsBottom": true,
  4533. "_isAbsHorizontalCenter": true,
  4534. "_isAbsVerticalCenter": true,
  4535. "_originalWidth": 0,
  4536. "_originalHeight": 0,
  4537. "_id": ""
  4538. },
  4539. {
  4540. "__type__": "43f3akkA71HA76UhTj/R19X",
  4541. "_name": "",
  4542. "_objFlags": 0,
  4543. "node": {
  4544. "__id__": 1
  4545. },
  4546. "_enabled": true,
  4547. "lid_type": 1,
  4548. "node_luck": {
  4549. "__id__": 68
  4550. },
  4551. "node_mission": {
  4552. "__id__": 84
  4553. },
  4554. "anim_open_redbag": {
  4555. "__id__": 100
  4556. },
  4557. "btn_watch_video": {
  4558. "__id__": 81
  4559. },
  4560. "node_coin": {
  4561. "__id__": 48
  4562. },
  4563. "lbl_reward_value": {
  4564. "__id__": 45
  4565. },
  4566. "hb_star": {
  4567. "__id__": 65
  4568. },
  4569. "btn_close": {
  4570. "__id__": 121
  4571. },
  4572. "spr_cash_out": {
  4573. "__id__": 21
  4574. },
  4575. "lbl_cash_out": {
  4576. "__id__": 24
  4577. },
  4578. "lbl_cash": {
  4579. "__id__": 31
  4580. },
  4581. "node_cash": {
  4582. "__id__": 13
  4583. },
  4584. "_id": ""
  4585. },
  4586. {
  4587. "__type__": "58495/rJOBNGoxELFSp8G2a",
  4588. "_name": "",
  4589. "_objFlags": 0,
  4590. "node": {
  4591. "__id__": 1
  4592. },
  4593. "_enabled": true,
  4594. "color": {
  4595. "__type__": "cc.Color",
  4596. "r": 0,
  4597. "g": 0,
  4598. "b": 0,
  4599. "a": 230
  4600. },
  4601. "design_block_node": {
  4602. "__id__": 72
  4603. },
  4604. "bClickClose": false,
  4605. "onComplete": [],
  4606. "_id": ""
  4607. },
  4608. {
  4609. "__type__": "ac053zwqaRD6IJmTlQWmefZ",
  4610. "_name": "",
  4611. "_objFlags": 0,
  4612. "node": {
  4613. "__id__": 1
  4614. },
  4615. "_enabled": true,
  4616. "effect_par": {
  4617. "__id__": 2
  4618. },
  4619. "open_effect": 1,
  4620. "close_effect": 1,
  4621. "close_toPoint": "",
  4622. "_id": ""
  4623. },
  4624. {
  4625. "__type__": "cc.PrefabInfo",
  4626. "root": {
  4627. "__id__": 1
  4628. },
  4629. "asset": {
  4630. "__uuid__": "eb3877a0-0566-4cd8-bb4e-fe5969e6f0e2"
  4631. },
  4632. "fileId": "",
  4633. "sync": false
  4634. }
  4635. ]