productReward.prefab 65 KB

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