redBagTask.prefab 79 KB

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