redBagTask.prefab 70 KB

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