rewardMission.prefab 82 KB

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