reward.prefab 81 KB

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