rewardMission.prefab 76 KB

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