DownLoadUI.prefab 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060
  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": "DownLoadUI",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 82
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 83
  35. },
  36. "_opacity": 255,
  37. "_color": {
  38. "__type__": "cc.Color",
  39. "r": 255,
  40. "g": 255,
  41. "b": 255,
  42. "a": 255
  43. },
  44. "_contentSize": {
  45. "__type__": "cc.Size",
  46. "width": 800,
  47. "height": 600
  48. },
  49. "_anchorPoint": {
  50. "__type__": "cc.Vec2",
  51. "x": 0.5,
  52. "y": 0.5
  53. },
  54. "_trs": {
  55. "__type__": "TypedArray",
  56. "ctor": "Float64Array",
  57. "array": [
  58. 0,
  59. 82.106,
  60. 0,
  61. 0,
  62. 0,
  63. 0,
  64. 1,
  65. 1,
  66. 1,
  67. 1
  68. ]
  69. },
  70. "_eulerAngles": {
  71. "__type__": "cc.Vec3",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0
  75. },
  76. "_skewX": 0,
  77. "_skewY": 0,
  78. "_is3DNode": false,
  79. "_groupIndex": 0,
  80. "groupIndex": 0,
  81. "_id": ""
  82. },
  83. {
  84. "__type__": "cc.Node",
  85. "_name": "New Sprite(Splash)",
  86. "_objFlags": 0,
  87. "_parent": {
  88. "__id__": 1
  89. },
  90. "_children": [],
  91. "_active": true,
  92. "_components": [
  93. {
  94. "__id__": 3
  95. },
  96. {
  97. "__id__": 4
  98. }
  99. ],
  100. "_prefab": {
  101. "__id__": 5
  102. },
  103. "_opacity": 180,
  104. "_color": {
  105. "__type__": "cc.Color",
  106. "r": 0,
  107. "g": 0,
  108. "b": 0,
  109. "a": 255
  110. },
  111. "_contentSize": {
  112. "__type__": "cc.Size",
  113. "width": 750,
  114. "height": 2000
  115. },
  116. "_anchorPoint": {
  117. "__type__": "cc.Vec2",
  118. "x": 0.5,
  119. "y": 0.5
  120. },
  121. "_trs": {
  122. "__type__": "TypedArray",
  123. "ctor": "Float64Array",
  124. "array": [
  125. 0,
  126. -82.106,
  127. 0,
  128. 0,
  129. 0,
  130. 0,
  131. 1,
  132. 1,
  133. 1,
  134. 1
  135. ]
  136. },
  137. "_eulerAngles": {
  138. "__type__": "cc.Vec3",
  139. "x": 0,
  140. "y": 0,
  141. "z": 0
  142. },
  143. "_skewX": 0,
  144. "_skewY": 0,
  145. "_is3DNode": false,
  146. "_groupIndex": 0,
  147. "groupIndex": 0,
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.Sprite",
  152. "_name": "New Sprite(Splash)<Sprite>",
  153. "_objFlags": 0,
  154. "node": {
  155. "__id__": 2
  156. },
  157. "_enabled": true,
  158. "_materials": [
  159. {
  160. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  161. }
  162. ],
  163. "_srcBlendFactor": 770,
  164. "_dstBlendFactor": 771,
  165. "_spriteFrame": {
  166. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  167. },
  168. "_type": 0,
  169. "_sizeMode": 0,
  170. "_fillType": 0,
  171. "_fillCenter": {
  172. "__type__": "cc.Vec2",
  173. "x": 0,
  174. "y": 0
  175. },
  176. "_fillStart": 0,
  177. "_fillRange": 0,
  178. "_isTrimmedMode": true,
  179. "_atlas": null,
  180. "_id": ""
  181. },
  182. {
  183. "__type__": "cc.BlockInputEvents",
  184. "_name": "",
  185. "_objFlags": 0,
  186. "node": {
  187. "__id__": 2
  188. },
  189. "_enabled": true,
  190. "_id": ""
  191. },
  192. {
  193. "__type__": "cc.PrefabInfo",
  194. "root": {
  195. "__id__": 1
  196. },
  197. "asset": {
  198. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  199. },
  200. "fileId": "49kQU+n/VH9ZTV2HnnQjK6",
  201. "sync": false
  202. },
  203. {
  204. "__type__": "cc.Node",
  205. "_name": "Par",
  206. "_objFlags": 0,
  207. "_parent": {
  208. "__id__": 1
  209. },
  210. "_children": [
  211. {
  212. "__id__": 7
  213. },
  214. {
  215. "__id__": 18
  216. },
  217. {
  218. "__id__": 38
  219. },
  220. {
  221. "__id__": 52
  222. },
  223. {
  224. "__id__": 61
  225. },
  226. {
  227. "__id__": 68
  228. }
  229. ],
  230. "_active": true,
  231. "_components": [
  232. {
  233. "__id__": 80
  234. }
  235. ],
  236. "_prefab": {
  237. "__id__": 81
  238. },
  239. "_opacity": 255,
  240. "_color": {
  241. "__type__": "cc.Color",
  242. "r": 255,
  243. "g": 255,
  244. "b": 255,
  245. "a": 255
  246. },
  247. "_contentSize": {
  248. "__type__": "cc.Size",
  249. "width": 0,
  250. "height": 0
  251. },
  252. "_anchorPoint": {
  253. "__type__": "cc.Vec2",
  254. "x": 0.5,
  255. "y": 0.5
  256. },
  257. "_trs": {
  258. "__type__": "TypedArray",
  259. "ctor": "Float64Array",
  260. "array": [
  261. 0,
  262. 0,
  263. 0,
  264. 0,
  265. 0,
  266. 0,
  267. 1,
  268. 1,
  269. 1,
  270. 1
  271. ]
  272. },
  273. "_eulerAngles": {
  274. "__type__": "cc.Vec3",
  275. "x": 0,
  276. "y": 0,
  277. "z": 0
  278. },
  279. "_skewX": 0,
  280. "_skewY": 0,
  281. "_is3DNode": false,
  282. "_groupIndex": 0,
  283. "groupIndex": 0,
  284. "_id": ""
  285. },
  286. {
  287. "__type__": "cc.Node",
  288. "_name": "bgs",
  289. "_objFlags": 0,
  290. "_parent": {
  291. "__id__": 6
  292. },
  293. "_children": [
  294. {
  295. "__id__": 8
  296. },
  297. {
  298. "__id__": 11
  299. },
  300. {
  301. "__id__": 14
  302. }
  303. ],
  304. "_active": true,
  305. "_components": [],
  306. "_prefab": {
  307. "__id__": 17
  308. },
  309. "_opacity": 255,
  310. "_color": {
  311. "__type__": "cc.Color",
  312. "r": 255,
  313. "g": 255,
  314. "b": 255,
  315. "a": 255
  316. },
  317. "_contentSize": {
  318. "__type__": "cc.Size",
  319. "width": 0,
  320. "height": 0
  321. },
  322. "_anchorPoint": {
  323. "__type__": "cc.Vec2",
  324. "x": 0.5,
  325. "y": 0.5
  326. },
  327. "_trs": {
  328. "__type__": "TypedArray",
  329. "ctor": "Float64Array",
  330. "array": [
  331. 0,
  332. 0,
  333. 0,
  334. 0,
  335. 0,
  336. 0,
  337. 1,
  338. 1,
  339. 1,
  340. 1
  341. ]
  342. },
  343. "_eulerAngles": {
  344. "__type__": "cc.Vec3",
  345. "x": 0,
  346. "y": 0,
  347. "z": 0
  348. },
  349. "_skewX": 0,
  350. "_skewY": 0,
  351. "_is3DNode": false,
  352. "_groupIndex": 0,
  353. "groupIndex": 0,
  354. "_id": ""
  355. },
  356. {
  357. "__type__": "cc.Node",
  358. "_name": "New Sprite(Splash)",
  359. "_objFlags": 0,
  360. "_parent": {
  361. "__id__": 7
  362. },
  363. "_children": [],
  364. "_active": true,
  365. "_components": [
  366. {
  367. "__id__": 9
  368. }
  369. ],
  370. "_prefab": {
  371. "__id__": 10
  372. },
  373. "_opacity": 255,
  374. "_color": {
  375. "__type__": "cc.Color",
  376. "r": 255,
  377. "g": 255,
  378. "b": 255,
  379. "a": 255
  380. },
  381. "_contentSize": {
  382. "__type__": "cc.Size",
  383. "width": 680,
  384. "height": 789
  385. },
  386. "_anchorPoint": {
  387. "__type__": "cc.Vec2",
  388. "x": 0.5,
  389. "y": 0.5
  390. },
  391. "_trs": {
  392. "__type__": "TypedArray",
  393. "ctor": "Float64Array",
  394. "array": [
  395. 0,
  396. -81,
  397. 0,
  398. 0,
  399. 0,
  400. 0,
  401. 1,
  402. 1,
  403. 1,
  404. 1
  405. ]
  406. },
  407. "_eulerAngles": {
  408. "__type__": "cc.Vec3",
  409. "x": 0,
  410. "y": 0,
  411. "z": 0
  412. },
  413. "_skewX": 0,
  414. "_skewY": 0,
  415. "_is3DNode": false,
  416. "_groupIndex": 0,
  417. "groupIndex": 0,
  418. "_id": ""
  419. },
  420. {
  421. "__type__": "cc.Sprite",
  422. "_name": "New Sprite(Splash)<Sprite>",
  423. "_objFlags": 0,
  424. "node": {
  425. "__id__": 8
  426. },
  427. "_enabled": true,
  428. "_materials": [
  429. {
  430. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  431. }
  432. ],
  433. "_srcBlendFactor": 770,
  434. "_dstBlendFactor": 771,
  435. "_spriteFrame": {
  436. "__uuid__": "2f8eff00-90aa-4aa5-9efd-100ebd77411f"
  437. },
  438. "_type": 1,
  439. "_sizeMode": 0,
  440. "_fillType": 0,
  441. "_fillCenter": {
  442. "__type__": "cc.Vec2",
  443. "x": 0,
  444. "y": 0
  445. },
  446. "_fillStart": 0,
  447. "_fillRange": 0,
  448. "_isTrimmedMode": true,
  449. "_atlas": null,
  450. "_id": ""
  451. },
  452. {
  453. "__type__": "cc.PrefabInfo",
  454. "root": {
  455. "__id__": 1
  456. },
  457. "asset": {
  458. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  459. },
  460. "fileId": "86E8gHZPpK4JM4qCHXJJbW",
  461. "sync": false
  462. },
  463. {
  464. "__type__": "cc.Node",
  465. "_name": "fuli_list_1",
  466. "_objFlags": 0,
  467. "_parent": {
  468. "__id__": 7
  469. },
  470. "_children": [],
  471. "_active": true,
  472. "_components": [
  473. {
  474. "__id__": 12
  475. }
  476. ],
  477. "_prefab": {
  478. "__id__": 13
  479. },
  480. "_opacity": 255,
  481. "_color": {
  482. "__type__": "cc.Color",
  483. "r": 255,
  484. "g": 255,
  485. "b": 255,
  486. "a": 255
  487. },
  488. "_contentSize": {
  489. "__type__": "cc.Size",
  490. "width": 660,
  491. "height": 525
  492. },
  493. "_anchorPoint": {
  494. "__type__": "cc.Vec2",
  495. "x": 0.5,
  496. "y": 0.5
  497. },
  498. "_trs": {
  499. "__type__": "TypedArray",
  500. "ctor": "Float64Array",
  501. "array": [
  502. 0,
  503. -11,
  504. 0,
  505. 0,
  506. 0,
  507. 0,
  508. 1,
  509. 1,
  510. 1,
  511. 1
  512. ]
  513. },
  514. "_eulerAngles": {
  515. "__type__": "cc.Vec3",
  516. "x": 0,
  517. "y": 0,
  518. "z": 0
  519. },
  520. "_skewX": 0,
  521. "_skewY": 0,
  522. "_is3DNode": false,
  523. "_groupIndex": 0,
  524. "groupIndex": 0,
  525. "_id": ""
  526. },
  527. {
  528. "__type__": "cc.Sprite",
  529. "_name": "fuli_list_1<Sprite>",
  530. "_objFlags": 0,
  531. "node": {
  532. "__id__": 11
  533. },
  534. "_enabled": true,
  535. "_materials": [
  536. {
  537. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  538. }
  539. ],
  540. "_srcBlendFactor": 770,
  541. "_dstBlendFactor": 771,
  542. "_spriteFrame": null,
  543. "_type": 0,
  544. "_sizeMode": 0,
  545. "_fillType": 0,
  546. "_fillCenter": {
  547. "__type__": "cc.Vec2",
  548. "x": 0,
  549. "y": 0
  550. },
  551. "_fillStart": 0,
  552. "_fillRange": 0,
  553. "_isTrimmedMode": true,
  554. "_atlas": null,
  555. "_id": ""
  556. },
  557. {
  558. "__type__": "cc.PrefabInfo",
  559. "root": {
  560. "__id__": 1
  561. },
  562. "asset": {
  563. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  564. },
  565. "fileId": "43J+U81WZA3qSpFpksch9O",
  566. "sync": false
  567. },
  568. {
  569. "__type__": "cc.Node",
  570. "_name": "tip",
  571. "_objFlags": 0,
  572. "_parent": {
  573. "__id__": 7
  574. },
  575. "_children": [],
  576. "_active": true,
  577. "_components": [
  578. {
  579. "__id__": 15
  580. }
  581. ],
  582. "_prefab": {
  583. "__id__": 16
  584. },
  585. "_opacity": 255,
  586. "_color": {
  587. "__type__": "cc.Color",
  588. "r": 255,
  589. "g": 255,
  590. "b": 255,
  591. "a": 255
  592. },
  593. "_contentSize": {
  594. "__type__": "cc.Size",
  595. "width": 103,
  596. "height": 45
  597. },
  598. "_anchorPoint": {
  599. "__type__": "cc.Vec2",
  600. "x": 0.5,
  601. "y": 0.5
  602. },
  603. "_trs": {
  604. "__type__": "TypedArray",
  605. "ctor": "Float64Array",
  606. "array": [
  607. 0,
  608. 235,
  609. 0,
  610. 0,
  611. 0,
  612. 0,
  613. 1,
  614. 1,
  615. 1,
  616. 1
  617. ]
  618. },
  619. "_eulerAngles": {
  620. "__type__": "cc.Vec3",
  621. "x": 0,
  622. "y": 0,
  623. "z": 0
  624. },
  625. "_skewX": 0,
  626. "_skewY": 0,
  627. "_is3DNode": false,
  628. "_groupIndex": 0,
  629. "groupIndex": 0,
  630. "_id": ""
  631. },
  632. {
  633. "__type__": "cc.Sprite",
  634. "_name": "tip<Sprite>",
  635. "_objFlags": 0,
  636. "node": {
  637. "__id__": 14
  638. },
  639. "_enabled": true,
  640. "_materials": [
  641. {
  642. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  643. }
  644. ],
  645. "_srcBlendFactor": 770,
  646. "_dstBlendFactor": 771,
  647. "_spriteFrame": {
  648. "__uuid__": "b27c89be-a66f-47d6-b4dd-b5dc945acd05"
  649. },
  650. "_type": 0,
  651. "_sizeMode": 1,
  652. "_fillType": 0,
  653. "_fillCenter": {
  654. "__type__": "cc.Vec2",
  655. "x": 0,
  656. "y": 0
  657. },
  658. "_fillStart": 0,
  659. "_fillRange": 0,
  660. "_isTrimmedMode": true,
  661. "_atlas": null,
  662. "_id": ""
  663. },
  664. {
  665. "__type__": "cc.PrefabInfo",
  666. "root": {
  667. "__id__": 1
  668. },
  669. "asset": {
  670. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  671. },
  672. "fileId": "84BkfYDxRBV7KXjXmQAr/a",
  673. "sync": false
  674. },
  675. {
  676. "__type__": "cc.PrefabInfo",
  677. "root": {
  678. "__id__": 1
  679. },
  680. "asset": {
  681. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  682. },
  683. "fileId": "d3uRhqQQ9DHYTJZ45dT23S",
  684. "sync": false
  685. },
  686. {
  687. "__type__": "cc.Node",
  688. "_name": "content",
  689. "_objFlags": 0,
  690. "_parent": {
  691. "__id__": 6
  692. },
  693. "_children": [
  694. {
  695. "__id__": 19
  696. },
  697. {
  698. "__id__": 22
  699. },
  700. {
  701. "__id__": 25
  702. },
  703. {
  704. "__id__": 28
  705. },
  706. {
  707. "__id__": 31
  708. },
  709. {
  710. "__id__": 34
  711. }
  712. ],
  713. "_active": true,
  714. "_components": [],
  715. "_prefab": {
  716. "__id__": 37
  717. },
  718. "_opacity": 255,
  719. "_color": {
  720. "__type__": "cc.Color",
  721. "r": 255,
  722. "g": 255,
  723. "b": 255,
  724. "a": 255
  725. },
  726. "_contentSize": {
  727. "__type__": "cc.Size",
  728. "width": 0,
  729. "height": 0
  730. },
  731. "_anchorPoint": {
  732. "__type__": "cc.Vec2",
  733. "x": 0.5,
  734. "y": 0.5
  735. },
  736. "_trs": {
  737. "__type__": "TypedArray",
  738. "ctor": "Float64Array",
  739. "array": [
  740. 0,
  741. -75.316,
  742. 0,
  743. 0,
  744. 0,
  745. 0,
  746. 1,
  747. 1,
  748. 1,
  749. 1
  750. ]
  751. },
  752. "_eulerAngles": {
  753. "__type__": "cc.Vec3",
  754. "x": 0,
  755. "y": 0,
  756. "z": 0
  757. },
  758. "_skewX": 0,
  759. "_skewY": 0,
  760. "_is3DNode": false,
  761. "_groupIndex": 0,
  762. "groupIndex": 0,
  763. "_id": ""
  764. },
  765. {
  766. "__type__": "cc.Node",
  767. "_name": "wrod_bg",
  768. "_objFlags": 0,
  769. "_parent": {
  770. "__id__": 18
  771. },
  772. "_children": [],
  773. "_active": true,
  774. "_components": [
  775. {
  776. "__id__": 20
  777. }
  778. ],
  779. "_prefab": {
  780. "__id__": 21
  781. },
  782. "_opacity": 255,
  783. "_color": {
  784. "__type__": "cc.Color",
  785. "r": 255,
  786. "g": 255,
  787. "b": 255,
  788. "a": 255
  789. },
  790. "_contentSize": {
  791. "__type__": "cc.Size",
  792. "width": 594,
  793. "height": 125
  794. },
  795. "_anchorPoint": {
  796. "__type__": "cc.Vec2",
  797. "x": 0.5,
  798. "y": 0.5
  799. },
  800. "_trs": {
  801. "__type__": "TypedArray",
  802. "ctor": "Float64Array",
  803. "array": [
  804. 0,
  805. 105,
  806. 0,
  807. 0,
  808. 0,
  809. 0,
  810. 1,
  811. 1,
  812. 1,
  813. 1
  814. ]
  815. },
  816. "_eulerAngles": {
  817. "__type__": "cc.Vec3",
  818. "x": 0,
  819. "y": 0,
  820. "z": 0
  821. },
  822. "_skewX": 0,
  823. "_skewY": 0,
  824. "_is3DNode": false,
  825. "_groupIndex": 0,
  826. "groupIndex": 0,
  827. "_id": ""
  828. },
  829. {
  830. "__type__": "cc.Sprite",
  831. "_name": "",
  832. "_objFlags": 0,
  833. "node": {
  834. "__id__": 19
  835. },
  836. "_enabled": true,
  837. "_materials": [
  838. {
  839. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  840. }
  841. ],
  842. "_srcBlendFactor": 770,
  843. "_dstBlendFactor": 771,
  844. "_spriteFrame": {
  845. "__uuid__": "53370c84-b4fb-43c4-a948-1058ac6c013f"
  846. },
  847. "_type": 0,
  848. "_sizeMode": 1,
  849. "_fillType": 0,
  850. "_fillCenter": {
  851. "__type__": "cc.Vec2",
  852. "x": 0,
  853. "y": 0
  854. },
  855. "_fillStart": 0,
  856. "_fillRange": 0,
  857. "_isTrimmedMode": true,
  858. "_atlas": null,
  859. "_id": ""
  860. },
  861. {
  862. "__type__": "cc.PrefabInfo",
  863. "root": {
  864. "__id__": 1
  865. },
  866. "asset": {
  867. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  868. },
  869. "fileId": "16IVQnT/pBpbVLKcelngT3",
  870. "sync": false
  871. },
  872. {
  873. "__type__": "cc.Node",
  874. "_name": "wrod_bg",
  875. "_objFlags": 0,
  876. "_parent": {
  877. "__id__": 18
  878. },
  879. "_children": [],
  880. "_active": true,
  881. "_components": [
  882. {
  883. "__id__": 23
  884. }
  885. ],
  886. "_prefab": {
  887. "__id__": 24
  888. },
  889. "_opacity": 255,
  890. "_color": {
  891. "__type__": "cc.Color",
  892. "r": 255,
  893. "g": 255,
  894. "b": 255,
  895. "a": 255
  896. },
  897. "_contentSize": {
  898. "__type__": "cc.Size",
  899. "width": 594,
  900. "height": 125
  901. },
  902. "_anchorPoint": {
  903. "__type__": "cc.Vec2",
  904. "x": 0.5,
  905. "y": 0.5
  906. },
  907. "_trs": {
  908. "__type__": "TypedArray",
  909. "ctor": "Float64Array",
  910. "array": [
  911. 0,
  912. -115,
  913. 0,
  914. 0,
  915. 0,
  916. 0,
  917. 1,
  918. 1,
  919. 1,
  920. 1
  921. ]
  922. },
  923. "_eulerAngles": {
  924. "__type__": "cc.Vec3",
  925. "x": 0,
  926. "y": 0,
  927. "z": 0
  928. },
  929. "_skewX": 0,
  930. "_skewY": 0,
  931. "_is3DNode": false,
  932. "_groupIndex": 0,
  933. "groupIndex": 0,
  934. "_id": ""
  935. },
  936. {
  937. "__type__": "cc.Sprite",
  938. "_name": "",
  939. "_objFlags": 0,
  940. "node": {
  941. "__id__": 22
  942. },
  943. "_enabled": true,
  944. "_materials": [
  945. {
  946. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  947. }
  948. ],
  949. "_srcBlendFactor": 770,
  950. "_dstBlendFactor": 771,
  951. "_spriteFrame": {
  952. "__uuid__": "53370c84-b4fb-43c4-a948-1058ac6c013f"
  953. },
  954. "_type": 0,
  955. "_sizeMode": 1,
  956. "_fillType": 0,
  957. "_fillCenter": {
  958. "__type__": "cc.Vec2",
  959. "x": 0,
  960. "y": 0
  961. },
  962. "_fillStart": 0,
  963. "_fillRange": 0,
  964. "_isTrimmedMode": true,
  965. "_atlas": null,
  966. "_id": ""
  967. },
  968. {
  969. "__type__": "cc.PrefabInfo",
  970. "root": {
  971. "__id__": 1
  972. },
  973. "asset": {
  974. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  975. },
  976. "fileId": "d9R4r1mCtLgpbD/VhUjZT2",
  977. "sync": false
  978. },
  979. {
  980. "__type__": "cc.Node",
  981. "_name": "labDes1",
  982. "_objFlags": 0,
  983. "_parent": {
  984. "__id__": 18
  985. },
  986. "_children": [],
  987. "_active": true,
  988. "_components": [
  989. {
  990. "__id__": 26
  991. }
  992. ],
  993. "_prefab": {
  994. "__id__": 27
  995. },
  996. "_opacity": 255,
  997. "_color": {
  998. "__type__": "cc.Color",
  999. "r": 0,
  1000. "g": 0,
  1001. "b": 0,
  1002. "a": 255
  1003. },
  1004. "_contentSize": {
  1005. "__type__": "cc.Size",
  1006. "width": 180,
  1007. "height": 50.4
  1008. },
  1009. "_anchorPoint": {
  1010. "__type__": "cc.Vec2",
  1011. "x": 0,
  1012. "y": 0.5
  1013. },
  1014. "_trs": {
  1015. "__type__": "TypedArray",
  1016. "ctor": "Float64Array",
  1017. "array": [
  1018. -294,
  1019. 206,
  1020. 0,
  1021. 0,
  1022. 0,
  1023. 0,
  1024. 1,
  1025. 1,
  1026. 1,
  1027. 1
  1028. ]
  1029. },
  1030. "_eulerAngles": {
  1031. "__type__": "cc.Vec3",
  1032. "x": 0,
  1033. "y": 0,
  1034. "z": 0
  1035. },
  1036. "_skewX": 0,
  1037. "_skewY": 0,
  1038. "_is3DNode": false,
  1039. "_groupIndex": 0,
  1040. "groupIndex": 0,
  1041. "_id": ""
  1042. },
  1043. {
  1044. "__type__": "cc.Label",
  1045. "_name": "labDes1<Label>",
  1046. "_objFlags": 0,
  1047. "node": {
  1048. "__id__": 25
  1049. },
  1050. "_enabled": true,
  1051. "_materials": [
  1052. {
  1053. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1054. }
  1055. ],
  1056. "_srcBlendFactor": 770,
  1057. "_dstBlendFactor": 771,
  1058. "_string": "功能更新:",
  1059. "_N$string": "功能更新:",
  1060. "_fontSize": 36,
  1061. "_lineHeight": 40,
  1062. "_enableWrapText": true,
  1063. "_N$file": null,
  1064. "_isSystemFontUsed": true,
  1065. "_spacingX": 0,
  1066. "_batchAsBitmap": false,
  1067. "_styleFlags": 1,
  1068. "_underlineHeight": 0,
  1069. "_N$horizontalAlign": 1,
  1070. "_N$verticalAlign": 1,
  1071. "_N$fontFamily": "Arial",
  1072. "_N$overflow": 0,
  1073. "_N$cacheMode": 0,
  1074. "_id": ""
  1075. },
  1076. {
  1077. "__type__": "cc.PrefabInfo",
  1078. "root": {
  1079. "__id__": 1
  1080. },
  1081. "asset": {
  1082. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  1083. },
  1084. "fileId": "7ecT+pn9xCpaDRHy9RXQOu",
  1085. "sync": false
  1086. },
  1087. {
  1088. "__type__": "cc.Node",
  1089. "_name": "labUpdate",
  1090. "_objFlags": 0,
  1091. "_parent": {
  1092. "__id__": 18
  1093. },
  1094. "_children": [],
  1095. "_active": true,
  1096. "_components": [
  1097. {
  1098. "__id__": 29
  1099. }
  1100. ],
  1101. "_prefab": {
  1102. "__id__": 30
  1103. },
  1104. "_opacity": 255,
  1105. "_color": {
  1106. "__type__": "cc.Color",
  1107. "r": 112,
  1108. "g": 77,
  1109. "b": 52,
  1110. "a": 255
  1111. },
  1112. "_contentSize": {
  1113. "__type__": "cc.Size",
  1114. "width": 570,
  1115. "height": 50.4
  1116. },
  1117. "_anchorPoint": {
  1118. "__type__": "cc.Vec2",
  1119. "x": 0,
  1120. "y": 1
  1121. },
  1122. "_trs": {
  1123. "__type__": "TypedArray",
  1124. "ctor": "Float64Array",
  1125. "array": [
  1126. -286.914,
  1127. 155,
  1128. 0,
  1129. 0,
  1130. 0,
  1131. 0,
  1132. 1,
  1133. 1,
  1134. 1,
  1135. 1
  1136. ]
  1137. },
  1138. "_eulerAngles": {
  1139. "__type__": "cc.Vec3",
  1140. "x": 0,
  1141. "y": 0,
  1142. "z": 0
  1143. },
  1144. "_skewX": 0,
  1145. "_skewY": 0,
  1146. "_is3DNode": false,
  1147. "_groupIndex": 0,
  1148. "groupIndex": 0,
  1149. "_id": ""
  1150. },
  1151. {
  1152. "__type__": "cc.Label",
  1153. "_name": "labUpdate<Label>",
  1154. "_objFlags": 0,
  1155. "node": {
  1156. "__id__": 28
  1157. },
  1158. "_enabled": true,
  1159. "_materials": [
  1160. {
  1161. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1162. }
  1163. ],
  1164. "_srcBlendFactor": 770,
  1165. "_dstBlendFactor": 771,
  1166. "_string": "sadasdassadsad",
  1167. "_N$string": "sadasdassadsad",
  1168. "_fontSize": 28,
  1169. "_lineHeight": 40,
  1170. "_enableWrapText": true,
  1171. "_N$file": null,
  1172. "_isSystemFontUsed": true,
  1173. "_spacingX": 0,
  1174. "_batchAsBitmap": false,
  1175. "_styleFlags": 0,
  1176. "_underlineHeight": 0,
  1177. "_N$horizontalAlign": 0,
  1178. "_N$verticalAlign": 1,
  1179. "_N$fontFamily": "Arial",
  1180. "_N$overflow": 3,
  1181. "_N$cacheMode": 0,
  1182. "_id": ""
  1183. },
  1184. {
  1185. "__type__": "cc.PrefabInfo",
  1186. "root": {
  1187. "__id__": 1
  1188. },
  1189. "asset": {
  1190. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  1191. },
  1192. "fileId": "5e7h1k+TFHiIA8ftibp9cE",
  1193. "sync": false
  1194. },
  1195. {
  1196. "__type__": "cc.Node",
  1197. "_name": "labDes2",
  1198. "_objFlags": 0,
  1199. "_parent": {
  1200. "__id__": 18
  1201. },
  1202. "_children": [],
  1203. "_active": true,
  1204. "_components": [
  1205. {
  1206. "__id__": 32
  1207. }
  1208. ],
  1209. "_prefab": {
  1210. "__id__": 33
  1211. },
  1212. "_opacity": 255,
  1213. "_color": {
  1214. "__type__": "cc.Color",
  1215. "r": 0,
  1216. "g": 0,
  1217. "b": 0,
  1218. "a": 255
  1219. },
  1220. "_contentSize": {
  1221. "__type__": "cc.Size",
  1222. "width": 173.97,
  1223. "height": 50.4
  1224. },
  1225. "_anchorPoint": {
  1226. "__type__": "cc.Vec2",
  1227. "x": 0,
  1228. "y": 0.5
  1229. },
  1230. "_trs": {
  1231. "__type__": "TypedArray",
  1232. "ctor": "Float64Array",
  1233. "array": [
  1234. -294,
  1235. -22,
  1236. 0,
  1237. 0,
  1238. 0,
  1239. 0,
  1240. 1,
  1241. 1,
  1242. 1,
  1243. 1
  1244. ]
  1245. },
  1246. "_eulerAngles": {
  1247. "__type__": "cc.Vec3",
  1248. "x": 0,
  1249. "y": 0,
  1250. "z": 0
  1251. },
  1252. "_skewX": 0,
  1253. "_skewY": 0,
  1254. "_is3DNode": false,
  1255. "_groupIndex": 0,
  1256. "groupIndex": 0,
  1257. "_id": ""
  1258. },
  1259. {
  1260. "__type__": "cc.Label",
  1261. "_name": "labDes2<Label>",
  1262. "_objFlags": 0,
  1263. "node": {
  1264. "__id__": 31
  1265. },
  1266. "_enabled": true,
  1267. "_materials": [
  1268. {
  1269. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1270. }
  1271. ],
  1272. "_srcBlendFactor": 770,
  1273. "_dstBlendFactor": 771,
  1274. "_string": "bug修复:",
  1275. "_N$string": "bug修复:",
  1276. "_fontSize": 36,
  1277. "_lineHeight": 40,
  1278. "_enableWrapText": true,
  1279. "_N$file": null,
  1280. "_isSystemFontUsed": true,
  1281. "_spacingX": 0,
  1282. "_batchAsBitmap": false,
  1283. "_styleFlags": 1,
  1284. "_underlineHeight": 0,
  1285. "_N$horizontalAlign": 1,
  1286. "_N$verticalAlign": 1,
  1287. "_N$fontFamily": "Arial",
  1288. "_N$overflow": 0,
  1289. "_N$cacheMode": 0,
  1290. "_id": ""
  1291. },
  1292. {
  1293. "__type__": "cc.PrefabInfo",
  1294. "root": {
  1295. "__id__": 1
  1296. },
  1297. "asset": {
  1298. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  1299. },
  1300. "fileId": "21NtFTnShJcJec1y2ImuwJ",
  1301. "sync": false
  1302. },
  1303. {
  1304. "__type__": "cc.Node",
  1305. "_name": "labFix",
  1306. "_objFlags": 0,
  1307. "_parent": {
  1308. "__id__": 18
  1309. },
  1310. "_children": [],
  1311. "_active": true,
  1312. "_components": [
  1313. {
  1314. "__id__": 35
  1315. }
  1316. ],
  1317. "_prefab": {
  1318. "__id__": 36
  1319. },
  1320. "_opacity": 255,
  1321. "_color": {
  1322. "__type__": "cc.Color",
  1323. "r": 112,
  1324. "g": 77,
  1325. "b": 52,
  1326. "a": 255
  1327. },
  1328. "_contentSize": {
  1329. "__type__": "cc.Size",
  1330. "width": 590,
  1331. "height": 50.4
  1332. },
  1333. "_anchorPoint": {
  1334. "__type__": "cc.Vec2",
  1335. "x": 0,
  1336. "y": 1
  1337. },
  1338. "_trs": {
  1339. "__type__": "TypedArray",
  1340. "ctor": "Float64Array",
  1341. "array": [
  1342. -294,
  1343. -52,
  1344. 0,
  1345. 0,
  1346. 0,
  1347. 0,
  1348. 1,
  1349. 1,
  1350. 1,
  1351. 1
  1352. ]
  1353. },
  1354. "_eulerAngles": {
  1355. "__type__": "cc.Vec3",
  1356. "x": 0,
  1357. "y": 0,
  1358. "z": 0
  1359. },
  1360. "_skewX": 0,
  1361. "_skewY": 0,
  1362. "_is3DNode": false,
  1363. "_groupIndex": 0,
  1364. "groupIndex": 0,
  1365. "_id": ""
  1366. },
  1367. {
  1368. "__type__": "cc.Label",
  1369. "_name": "labFix<Label>",
  1370. "_objFlags": 0,
  1371. "node": {
  1372. "__id__": 34
  1373. },
  1374. "_enabled": true,
  1375. "_materials": [
  1376. {
  1377. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1378. }
  1379. ],
  1380. "_srcBlendFactor": 770,
  1381. "_dstBlendFactor": 771,
  1382. "_string": "",
  1383. "_N$string": "",
  1384. "_fontSize": 28,
  1385. "_lineHeight": 40,
  1386. "_enableWrapText": true,
  1387. "_N$file": null,
  1388. "_isSystemFontUsed": true,
  1389. "_spacingX": 0,
  1390. "_batchAsBitmap": false,
  1391. "_styleFlags": 0,
  1392. "_underlineHeight": 0,
  1393. "_N$horizontalAlign": 0,
  1394. "_N$verticalAlign": 1,
  1395. "_N$fontFamily": "Arial",
  1396. "_N$overflow": 3,
  1397. "_N$cacheMode": 0,
  1398. "_id": ""
  1399. },
  1400. {
  1401. "__type__": "cc.PrefabInfo",
  1402. "root": {
  1403. "__id__": 1
  1404. },
  1405. "asset": {
  1406. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  1407. },
  1408. "fileId": "8ey6x6/YlHdp8ZL9Dmyfmj",
  1409. "sync": false
  1410. },
  1411. {
  1412. "__type__": "cc.PrefabInfo",
  1413. "root": {
  1414. "__id__": 1
  1415. },
  1416. "asset": {
  1417. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  1418. },
  1419. "fileId": "35jReDa9tB6KtrdfDPVGsm",
  1420. "sync": false
  1421. },
  1422. {
  1423. "__type__": "cc.Node",
  1424. "_name": "task_line_1",
  1425. "_objFlags": 0,
  1426. "_parent": {
  1427. "__id__": 6
  1428. },
  1429. "_children": [
  1430. {
  1431. "__id__": 39
  1432. },
  1433. {
  1434. "__id__": 42
  1435. },
  1436. {
  1437. "__id__": 46
  1438. }
  1439. ],
  1440. "_active": false,
  1441. "_components": [
  1442. {
  1443. "__id__": 50
  1444. }
  1445. ],
  1446. "_prefab": {
  1447. "__id__": 51
  1448. },
  1449. "_opacity": 255,
  1450. "_color": {
  1451. "__type__": "cc.Color",
  1452. "r": 255,
  1453. "g": 255,
  1454. "b": 255,
  1455. "a": 255
  1456. },
  1457. "_contentSize": {
  1458. "__type__": "cc.Size",
  1459. "width": 596,
  1460. "height": 54
  1461. },
  1462. "_anchorPoint": {
  1463. "__type__": "cc.Vec2",
  1464. "x": 0.5,
  1465. "y": 0.5
  1466. },
  1467. "_trs": {
  1468. "__type__": "TypedArray",
  1469. "ctor": "Float64Array",
  1470. "array": [
  1471. 0,
  1472. -400.913,
  1473. 0,
  1474. 0,
  1475. 0,
  1476. 0,
  1477. 1,
  1478. 1,
  1479. 1,
  1480. 1
  1481. ]
  1482. },
  1483. "_eulerAngles": {
  1484. "__type__": "cc.Vec3",
  1485. "x": 0,
  1486. "y": 0,
  1487. "z": 0
  1488. },
  1489. "_skewX": 0,
  1490. "_skewY": 0,
  1491. "_is3DNode": false,
  1492. "_groupIndex": 0,
  1493. "groupIndex": 0,
  1494. "_id": ""
  1495. },
  1496. {
  1497. "__type__": "cc.Node",
  1498. "_name": "task_line_2",
  1499. "_objFlags": 0,
  1500. "_parent": {
  1501. "__id__": 38
  1502. },
  1503. "_children": [],
  1504. "_active": true,
  1505. "_components": [
  1506. {
  1507. "__id__": 40
  1508. }
  1509. ],
  1510. "_prefab": {
  1511. "__id__": 41
  1512. },
  1513. "_opacity": 255,
  1514. "_color": {
  1515. "__type__": "cc.Color",
  1516. "r": 255,
  1517. "g": 255,
  1518. "b": 255,
  1519. "a": 255
  1520. },
  1521. "_contentSize": {
  1522. "__type__": "cc.Size",
  1523. "width": 575,
  1524. "height": 37
  1525. },
  1526. "_anchorPoint": {
  1527. "__type__": "cc.Vec2",
  1528. "x": 0.5,
  1529. "y": 0.5
  1530. },
  1531. "_trs": {
  1532. "__type__": "TypedArray",
  1533. "ctor": "Float64Array",
  1534. "array": [
  1535. 0,
  1536. 4,
  1537. 0,
  1538. 0,
  1539. 0,
  1540. 0,
  1541. 1,
  1542. 1,
  1543. 1,
  1544. 1
  1545. ]
  1546. },
  1547. "_eulerAngles": {
  1548. "__type__": "cc.Vec3",
  1549. "x": 0,
  1550. "y": 0,
  1551. "z": 0
  1552. },
  1553. "_skewX": 0,
  1554. "_skewY": 0,
  1555. "_is3DNode": false,
  1556. "_groupIndex": 0,
  1557. "groupIndex": 0,
  1558. "_id": ""
  1559. },
  1560. {
  1561. "__type__": "cc.Sprite",
  1562. "_name": "task_line_2<Sprite>",
  1563. "_objFlags": 0,
  1564. "node": {
  1565. "__id__": 39
  1566. },
  1567. "_enabled": true,
  1568. "_materials": [
  1569. {
  1570. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1571. }
  1572. ],
  1573. "_srcBlendFactor": 770,
  1574. "_dstBlendFactor": 771,
  1575. "_spriteFrame": null,
  1576. "_type": 3,
  1577. "_sizeMode": 1,
  1578. "_fillType": 0,
  1579. "_fillCenter": {
  1580. "__type__": "cc.Vec2",
  1581. "x": 0,
  1582. "y": 0
  1583. },
  1584. "_fillStart": 0,
  1585. "_fillRange": 0,
  1586. "_isTrimmedMode": true,
  1587. "_atlas": null,
  1588. "_id": ""
  1589. },
  1590. {
  1591. "__type__": "cc.PrefabInfo",
  1592. "root": {
  1593. "__id__": 1
  1594. },
  1595. "asset": {
  1596. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  1597. },
  1598. "fileId": "43E8KCV5ZKbZovFrV1PrzQ",
  1599. "sync": false
  1600. },
  1601. {
  1602. "__type__": "cc.Node",
  1603. "_name": "labPro",
  1604. "_objFlags": 0,
  1605. "_parent": {
  1606. "__id__": 38
  1607. },
  1608. "_children": [],
  1609. "_active": true,
  1610. "_components": [
  1611. {
  1612. "__id__": 43
  1613. },
  1614. {
  1615. "__id__": 44
  1616. }
  1617. ],
  1618. "_prefab": {
  1619. "__id__": 45
  1620. },
  1621. "_opacity": 255,
  1622. "_color": {
  1623. "__type__": "cc.Color",
  1624. "r": 255,
  1625. "g": 255,
  1626. "b": 255,
  1627. "a": 255
  1628. },
  1629. "_contentSize": {
  1630. "__type__": "cc.Size",
  1631. "width": 150,
  1632. "height": 40
  1633. },
  1634. "_anchorPoint": {
  1635. "__type__": "cc.Vec2",
  1636. "x": 0.5,
  1637. "y": 0.5
  1638. },
  1639. "_trs": {
  1640. "__type__": "TypedArray",
  1641. "ctor": "Float64Array",
  1642. "array": [
  1643. 0,
  1644. 4,
  1645. 0,
  1646. 0,
  1647. 0,
  1648. 0,
  1649. 1,
  1650. 1,
  1651. 1,
  1652. 1
  1653. ]
  1654. },
  1655. "_eulerAngles": {
  1656. "__type__": "cc.Vec3",
  1657. "x": 0,
  1658. "y": 0,
  1659. "z": 0
  1660. },
  1661. "_skewX": 0,
  1662. "_skewY": 0,
  1663. "_is3DNode": false,
  1664. "_groupIndex": 0,
  1665. "groupIndex": 0,
  1666. "_id": ""
  1667. },
  1668. {
  1669. "__type__": "cc.Label",
  1670. "_name": "labPro<Label>",
  1671. "_objFlags": 0,
  1672. "node": {
  1673. "__id__": 42
  1674. },
  1675. "_enabled": true,
  1676. "_materials": [
  1677. {
  1678. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1679. }
  1680. ],
  1681. "_srcBlendFactor": 770,
  1682. "_dstBlendFactor": 771,
  1683. "_string": "0%",
  1684. "_N$string": "0%",
  1685. "_fontSize": 36,
  1686. "_lineHeight": 36,
  1687. "_enableWrapText": true,
  1688. "_N$file": null,
  1689. "_isSystemFontUsed": true,
  1690. "_spacingX": 0,
  1691. "_batchAsBitmap": false,
  1692. "_styleFlags": 0,
  1693. "_underlineHeight": 0,
  1694. "_N$horizontalAlign": 1,
  1695. "_N$verticalAlign": 1,
  1696. "_N$fontFamily": "Arial",
  1697. "_N$overflow": 1,
  1698. "_N$cacheMode": 0,
  1699. "_id": ""
  1700. },
  1701. {
  1702. "__type__": "cc.LabelOutline",
  1703. "_name": "",
  1704. "_objFlags": 0,
  1705. "node": {
  1706. "__id__": 42
  1707. },
  1708. "_enabled": true,
  1709. "_color": {
  1710. "__type__": "cc.Color",
  1711. "r": 0,
  1712. "g": 99,
  1713. "b": 147,
  1714. "a": 255
  1715. },
  1716. "_width": 3,
  1717. "_id": ""
  1718. },
  1719. {
  1720. "__type__": "cc.PrefabInfo",
  1721. "root": {
  1722. "__id__": 1
  1723. },
  1724. "asset": {
  1725. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  1726. },
  1727. "fileId": "71gotpIFtBS68pfvd7XW7G",
  1728. "sync": false
  1729. },
  1730. {
  1731. "__type__": "cc.Node",
  1732. "_name": "info",
  1733. "_objFlags": 0,
  1734. "_parent": {
  1735. "__id__": 38
  1736. },
  1737. "_children": [],
  1738. "_active": true,
  1739. "_components": [
  1740. {
  1741. "__id__": 47
  1742. },
  1743. {
  1744. "__id__": 48
  1745. }
  1746. ],
  1747. "_prefab": {
  1748. "__id__": 49
  1749. },
  1750. "_opacity": 255,
  1751. "_color": {
  1752. "__type__": "cc.Color",
  1753. "r": 255,
  1754. "g": 255,
  1755. "b": 255,
  1756. "a": 255
  1757. },
  1758. "_contentSize": {
  1759. "__type__": "cc.Size",
  1760. "width": 157.34,
  1761. "height": 54.4
  1762. },
  1763. "_anchorPoint": {
  1764. "__type__": "cc.Vec2",
  1765. "x": 0.5,
  1766. "y": 0.5
  1767. },
  1768. "_trs": {
  1769. "__type__": "TypedArray",
  1770. "ctor": "Float64Array",
  1771. "array": [
  1772. 0.47,
  1773. 80.934,
  1774. 0,
  1775. 0,
  1776. 0,
  1777. 0,
  1778. 1,
  1779. 1,
  1780. 1,
  1781. 1
  1782. ]
  1783. },
  1784. "_eulerAngles": {
  1785. "__type__": "cc.Vec3",
  1786. "x": 0,
  1787. "y": 0,
  1788. "z": 0
  1789. },
  1790. "_skewX": 0,
  1791. "_skewY": 0,
  1792. "_is3DNode": false,
  1793. "_groupIndex": 0,
  1794. "groupIndex": 0,
  1795. "_id": ""
  1796. },
  1797. {
  1798. "__type__": "cc.Label",
  1799. "_name": "info<Label>",
  1800. "_objFlags": 0,
  1801. "node": {
  1802. "__id__": 46
  1803. },
  1804. "_enabled": true,
  1805. "_materials": [
  1806. {
  1807. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1808. }
  1809. ],
  1810. "_srcBlendFactor": 770,
  1811. "_dstBlendFactor": 771,
  1812. "_string": "更新中...",
  1813. "_N$string": "更新中...",
  1814. "_fontSize": 40,
  1815. "_lineHeight": 40,
  1816. "_enableWrapText": true,
  1817. "_N$file": null,
  1818. "_isSystemFontUsed": true,
  1819. "_spacingX": 0,
  1820. "_batchAsBitmap": false,
  1821. "_styleFlags": 0,
  1822. "_underlineHeight": 0,
  1823. "_N$horizontalAlign": 1,
  1824. "_N$verticalAlign": 1,
  1825. "_N$fontFamily": "Arial",
  1826. "_N$overflow": 0,
  1827. "_N$cacheMode": 0,
  1828. "_id": ""
  1829. },
  1830. {
  1831. "__type__": "cc.LabelOutline",
  1832. "_name": "",
  1833. "_objFlags": 0,
  1834. "node": {
  1835. "__id__": 46
  1836. },
  1837. "_enabled": true,
  1838. "_color": {
  1839. "__type__": "cc.Color",
  1840. "r": 50,
  1841. "g": 46,
  1842. "b": 39,
  1843. "a": 255
  1844. },
  1845. "_width": 2,
  1846. "_id": ""
  1847. },
  1848. {
  1849. "__type__": "cc.PrefabInfo",
  1850. "root": {
  1851. "__id__": 1
  1852. },
  1853. "asset": {
  1854. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  1855. },
  1856. "fileId": "d6IaGS535IWr4oZXqczrov",
  1857. "sync": false
  1858. },
  1859. {
  1860. "__type__": "cc.Sprite",
  1861. "_name": "task_line_1<Sprite>",
  1862. "_objFlags": 0,
  1863. "node": {
  1864. "__id__": 38
  1865. },
  1866. "_enabled": true,
  1867. "_materials": [
  1868. {
  1869. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1870. }
  1871. ],
  1872. "_srcBlendFactor": 770,
  1873. "_dstBlendFactor": 771,
  1874. "_spriteFrame": null,
  1875. "_type": 1,
  1876. "_sizeMode": 1,
  1877. "_fillType": 0,
  1878. "_fillCenter": {
  1879. "__type__": "cc.Vec2",
  1880. "x": 0,
  1881. "y": 0
  1882. },
  1883. "_fillStart": 0,
  1884. "_fillRange": 0,
  1885. "_isTrimmedMode": true,
  1886. "_atlas": null,
  1887. "_id": ""
  1888. },
  1889. {
  1890. "__type__": "cc.PrefabInfo",
  1891. "root": {
  1892. "__id__": 1
  1893. },
  1894. "asset": {
  1895. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  1896. },
  1897. "fileId": "9e5fYys3NIpbXJBrxDEnuG",
  1898. "sync": false
  1899. },
  1900. {
  1901. "__type__": "cc.Node",
  1902. "_name": "btnSure",
  1903. "_objFlags": 0,
  1904. "_parent": {
  1905. "__id__": 6
  1906. },
  1907. "_children": [
  1908. {
  1909. "__id__": 53
  1910. }
  1911. ],
  1912. "_active": true,
  1913. "_components": [
  1914. {
  1915. "__id__": 57
  1916. },
  1917. {
  1918. "__id__": 58
  1919. }
  1920. ],
  1921. "_prefab": {
  1922. "__id__": 60
  1923. },
  1924. "_opacity": 255,
  1925. "_color": {
  1926. "__type__": "cc.Color",
  1927. "r": 255,
  1928. "g": 255,
  1929. "b": 255,
  1930. "a": 255
  1931. },
  1932. "_contentSize": {
  1933. "__type__": "cc.Size",
  1934. "width": 377,
  1935. "height": 95
  1936. },
  1937. "_anchorPoint": {
  1938. "__type__": "cc.Vec2",
  1939. "x": 0.5,
  1940. "y": 0.5
  1941. },
  1942. "_trs": {
  1943. "__type__": "TypedArray",
  1944. "ctor": "Float64Array",
  1945. "array": [
  1946. 0,
  1947. -338.631,
  1948. 0,
  1949. 0,
  1950. 0,
  1951. 0,
  1952. 1,
  1953. 1,
  1954. 1,
  1955. 1
  1956. ]
  1957. },
  1958. "_eulerAngles": {
  1959. "__type__": "cc.Vec3",
  1960. "x": 0,
  1961. "y": 0,
  1962. "z": 0
  1963. },
  1964. "_skewX": 0,
  1965. "_skewY": 0,
  1966. "_is3DNode": false,
  1967. "_groupIndex": 0,
  1968. "groupIndex": 0,
  1969. "_id": ""
  1970. },
  1971. {
  1972. "__type__": "cc.Node",
  1973. "_name": "Label",
  1974. "_objFlags": 0,
  1975. "_parent": {
  1976. "__id__": 52
  1977. },
  1978. "_children": [],
  1979. "_active": true,
  1980. "_components": [
  1981. {
  1982. "__id__": 54
  1983. },
  1984. {
  1985. "__id__": 55
  1986. }
  1987. ],
  1988. "_prefab": {
  1989. "__id__": 56
  1990. },
  1991. "_opacity": 255,
  1992. "_color": {
  1993. "__type__": "cc.Color",
  1994. "r": 255,
  1995. "g": 255,
  1996. "b": 255,
  1997. "a": 255
  1998. },
  1999. "_contentSize": {
  2000. "__type__": "cc.Size",
  2001. "width": 206,
  2002. "height": 69
  2003. },
  2004. "_anchorPoint": {
  2005. "__type__": "cc.Vec2",
  2006. "x": 0.5,
  2007. "y": 0.5
  2008. },
  2009. "_trs": {
  2010. "__type__": "TypedArray",
  2011. "ctor": "Float64Array",
  2012. "array": [
  2013. 0,
  2014. 0,
  2015. 0,
  2016. 0,
  2017. 0,
  2018. 0,
  2019. 1,
  2020. 1,
  2021. 1,
  2022. 1
  2023. ]
  2024. },
  2025. "_eulerAngles": {
  2026. "__type__": "cc.Vec3",
  2027. "x": 0,
  2028. "y": 0,
  2029. "z": 0
  2030. },
  2031. "_skewX": 0,
  2032. "_skewY": 0,
  2033. "_is3DNode": false,
  2034. "_groupIndex": 0,
  2035. "groupIndex": 0,
  2036. "_id": ""
  2037. },
  2038. {
  2039. "__type__": "cc.Label",
  2040. "_name": "Label<Label>",
  2041. "_objFlags": 0,
  2042. "node": {
  2043. "__id__": 53
  2044. },
  2045. "_enabled": true,
  2046. "_materials": [
  2047. {
  2048. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2049. }
  2050. ],
  2051. "_srcBlendFactor": 770,
  2052. "_dstBlendFactor": 771,
  2053. "_string": "立即更新",
  2054. "_N$string": "立即更新",
  2055. "_fontSize": 50,
  2056. "_lineHeight": 50,
  2057. "_enableWrapText": false,
  2058. "_N$file": null,
  2059. "_isSystemFontUsed": true,
  2060. "_spacingX": 0,
  2061. "_batchAsBitmap": false,
  2062. "_styleFlags": 0,
  2063. "_underlineHeight": 0,
  2064. "_N$horizontalAlign": 1,
  2065. "_N$verticalAlign": 1,
  2066. "_N$fontFamily": "Arial",
  2067. "_N$overflow": 0,
  2068. "_N$cacheMode": 0,
  2069. "_id": ""
  2070. },
  2071. {
  2072. "__type__": "cc.LabelOutline",
  2073. "_name": "",
  2074. "_objFlags": 0,
  2075. "node": {
  2076. "__id__": 53
  2077. },
  2078. "_enabled": true,
  2079. "_color": {
  2080. "__type__": "cc.Color",
  2081. "r": 10,
  2082. "g": 129,
  2083. "b": 187,
  2084. "a": 255
  2085. },
  2086. "_width": 3,
  2087. "_id": ""
  2088. },
  2089. {
  2090. "__type__": "cc.PrefabInfo",
  2091. "root": {
  2092. "__id__": 1
  2093. },
  2094. "asset": {
  2095. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  2096. },
  2097. "fileId": "e3LfCDaHpHLb+1sjODVlBX",
  2098. "sync": false
  2099. },
  2100. {
  2101. "__type__": "cc.Sprite",
  2102. "_name": "btnSure<Sprite>",
  2103. "_objFlags": 0,
  2104. "node": {
  2105. "__id__": 52
  2106. },
  2107. "_enabled": true,
  2108. "_materials": [
  2109. {
  2110. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2111. }
  2112. ],
  2113. "_srcBlendFactor": 770,
  2114. "_dstBlendFactor": 771,
  2115. "_spriteFrame": {
  2116. "__uuid__": "a146193d-5429-43f1-9b2c-d2fda9944f2d"
  2117. },
  2118. "_type": 0,
  2119. "_sizeMode": 1,
  2120. "_fillType": 0,
  2121. "_fillCenter": {
  2122. "__type__": "cc.Vec2",
  2123. "x": 0,
  2124. "y": 0
  2125. },
  2126. "_fillStart": 0,
  2127. "_fillRange": 0,
  2128. "_isTrimmedMode": true,
  2129. "_atlas": null,
  2130. "_id": ""
  2131. },
  2132. {
  2133. "__type__": "cc.Button",
  2134. "_name": "",
  2135. "_objFlags": 0,
  2136. "node": {
  2137. "__id__": 52
  2138. },
  2139. "_enabled": true,
  2140. "_normalMaterial": null,
  2141. "_grayMaterial": null,
  2142. "duration": 0.1,
  2143. "zoomScale": 1.2,
  2144. "clickEvents": [
  2145. {
  2146. "__id__": 59
  2147. }
  2148. ],
  2149. "_N$interactable": true,
  2150. "_N$enableAutoGrayEffect": false,
  2151. "_N$transition": 0,
  2152. "transition": 0,
  2153. "_N$normalColor": {
  2154. "__type__": "cc.Color",
  2155. "r": 255,
  2156. "g": 255,
  2157. "b": 255,
  2158. "a": 255
  2159. },
  2160. "_N$pressedColor": {
  2161. "__type__": "cc.Color",
  2162. "r": 255,
  2163. "g": 255,
  2164. "b": 255,
  2165. "a": 255
  2166. },
  2167. "pressedColor": {
  2168. "__type__": "cc.Color",
  2169. "r": 255,
  2170. "g": 255,
  2171. "b": 255,
  2172. "a": 255
  2173. },
  2174. "_N$hoverColor": {
  2175. "__type__": "cc.Color",
  2176. "r": 255,
  2177. "g": 255,
  2178. "b": 255,
  2179. "a": 255
  2180. },
  2181. "hoverColor": {
  2182. "__type__": "cc.Color",
  2183. "r": 255,
  2184. "g": 255,
  2185. "b": 255,
  2186. "a": 255
  2187. },
  2188. "_N$disabledColor": {
  2189. "__type__": "cc.Color",
  2190. "r": 255,
  2191. "g": 255,
  2192. "b": 255,
  2193. "a": 255
  2194. },
  2195. "_N$normalSprite": null,
  2196. "_N$pressedSprite": {
  2197. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2198. },
  2199. "pressedSprite": {
  2200. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2201. },
  2202. "_N$hoverSprite": {
  2203. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2204. },
  2205. "hoverSprite": {
  2206. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2207. },
  2208. "_N$disabledSprite": {
  2209. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2210. },
  2211. "_N$target": {
  2212. "__id__": 52
  2213. },
  2214. "_id": ""
  2215. },
  2216. {
  2217. "__type__": "cc.ClickEvent",
  2218. "target": {
  2219. "__id__": 1
  2220. },
  2221. "component": "",
  2222. "_componentId": "a2e6eJMVO5PS4wd0GqLXUwg",
  2223. "handler": "clickDownLoad",
  2224. "customEventData": ""
  2225. },
  2226. {
  2227. "__type__": "cc.PrefabInfo",
  2228. "root": {
  2229. "__id__": 1
  2230. },
  2231. "asset": {
  2232. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  2233. },
  2234. "fileId": "74nLDGM7dJB6mt0H1NY5YL",
  2235. "sync": false
  2236. },
  2237. {
  2238. "__type__": "cc.Node",
  2239. "_name": "btnCancel",
  2240. "_objFlags": 0,
  2241. "_parent": {
  2242. "__id__": 6
  2243. },
  2244. "_children": [
  2245. {
  2246. "__id__": 62
  2247. }
  2248. ],
  2249. "_active": true,
  2250. "_components": [
  2251. {
  2252. "__id__": 65
  2253. }
  2254. ],
  2255. "_prefab": {
  2256. "__id__": 67
  2257. },
  2258. "_opacity": 255,
  2259. "_color": {
  2260. "__type__": "cc.Color",
  2261. "r": 255,
  2262. "g": 255,
  2263. "b": 255,
  2264. "a": 255
  2265. },
  2266. "_contentSize": {
  2267. "__type__": "cc.Size",
  2268. "width": 280,
  2269. "height": 80
  2270. },
  2271. "_anchorPoint": {
  2272. "__type__": "cc.Vec2",
  2273. "x": 0.5,
  2274. "y": 0.5
  2275. },
  2276. "_trs": {
  2277. "__type__": "TypedArray",
  2278. "ctor": "Float64Array",
  2279. "array": [
  2280. 0,
  2281. -528.632,
  2282. 0,
  2283. 0,
  2284. 0,
  2285. 0,
  2286. 1,
  2287. 1,
  2288. 1,
  2289. 1
  2290. ]
  2291. },
  2292. "_eulerAngles": {
  2293. "__type__": "cc.Vec3",
  2294. "x": 0,
  2295. "y": 0,
  2296. "z": 0
  2297. },
  2298. "_skewX": 0,
  2299. "_skewY": 0,
  2300. "_is3DNode": false,
  2301. "_groupIndex": 0,
  2302. "groupIndex": 0,
  2303. "_id": ""
  2304. },
  2305. {
  2306. "__type__": "cc.Node",
  2307. "_name": "Label",
  2308. "_objFlags": 0,
  2309. "_parent": {
  2310. "__id__": 61
  2311. },
  2312. "_children": [],
  2313. "_active": true,
  2314. "_components": [
  2315. {
  2316. "__id__": 63
  2317. }
  2318. ],
  2319. "_prefab": {
  2320. "__id__": 64
  2321. },
  2322. "_opacity": 255,
  2323. "_color": {
  2324. "__type__": "cc.Color",
  2325. "r": 255,
  2326. "g": 255,
  2327. "b": 255,
  2328. "a": 255
  2329. },
  2330. "_contentSize": {
  2331. "__type__": "cc.Size",
  2332. "width": 144,
  2333. "height": 45.36
  2334. },
  2335. "_anchorPoint": {
  2336. "__type__": "cc.Vec2",
  2337. "x": 0.5,
  2338. "y": 0.5
  2339. },
  2340. "_trs": {
  2341. "__type__": "TypedArray",
  2342. "ctor": "Float64Array",
  2343. "array": [
  2344. 0,
  2345. 6,
  2346. 0,
  2347. 0,
  2348. 0,
  2349. 0,
  2350. 1,
  2351. 1,
  2352. 1,
  2353. 1
  2354. ]
  2355. },
  2356. "_eulerAngles": {
  2357. "__type__": "cc.Vec3",
  2358. "x": 0,
  2359. "y": 0,
  2360. "z": 0
  2361. },
  2362. "_skewX": 0,
  2363. "_skewY": 0,
  2364. "_is3DNode": false,
  2365. "_groupIndex": 0,
  2366. "groupIndex": 0,
  2367. "_id": ""
  2368. },
  2369. {
  2370. "__type__": "cc.Label",
  2371. "_name": "Label<Label>",
  2372. "_objFlags": 0,
  2373. "node": {
  2374. "__id__": 62
  2375. },
  2376. "_enabled": true,
  2377. "_materials": [
  2378. {
  2379. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2380. }
  2381. ],
  2382. "_srcBlendFactor": 770,
  2383. "_dstBlendFactor": 771,
  2384. "_string": "下次再说",
  2385. "_N$string": "下次再说",
  2386. "_fontSize": 36,
  2387. "_lineHeight": 36,
  2388. "_enableWrapText": false,
  2389. "_N$file": null,
  2390. "_isSystemFontUsed": true,
  2391. "_spacingX": 0,
  2392. "_batchAsBitmap": false,
  2393. "_styleFlags": 4,
  2394. "_underlineHeight": 0,
  2395. "_N$horizontalAlign": 1,
  2396. "_N$verticalAlign": 1,
  2397. "_N$fontFamily": "Arial",
  2398. "_N$overflow": 0,
  2399. "_N$cacheMode": 0,
  2400. "_id": ""
  2401. },
  2402. {
  2403. "__type__": "cc.PrefabInfo",
  2404. "root": {
  2405. "__id__": 1
  2406. },
  2407. "asset": {
  2408. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  2409. },
  2410. "fileId": "8cGT2iefVH1qsdqtR/s8WA",
  2411. "sync": false
  2412. },
  2413. {
  2414. "__type__": "cc.Button",
  2415. "_name": "",
  2416. "_objFlags": 0,
  2417. "node": {
  2418. "__id__": 61
  2419. },
  2420. "_enabled": true,
  2421. "_normalMaterial": null,
  2422. "_grayMaterial": null,
  2423. "duration": 0.1,
  2424. "zoomScale": 1.2,
  2425. "clickEvents": [
  2426. {
  2427. "__id__": 66
  2428. }
  2429. ],
  2430. "_N$interactable": true,
  2431. "_N$enableAutoGrayEffect": false,
  2432. "_N$transition": 0,
  2433. "transition": 0,
  2434. "_N$normalColor": {
  2435. "__type__": "cc.Color",
  2436. "r": 255,
  2437. "g": 255,
  2438. "b": 255,
  2439. "a": 255
  2440. },
  2441. "_N$pressedColor": {
  2442. "__type__": "cc.Color",
  2443. "r": 255,
  2444. "g": 255,
  2445. "b": 255,
  2446. "a": 255
  2447. },
  2448. "pressedColor": {
  2449. "__type__": "cc.Color",
  2450. "r": 255,
  2451. "g": 255,
  2452. "b": 255,
  2453. "a": 255
  2454. },
  2455. "_N$hoverColor": {
  2456. "__type__": "cc.Color",
  2457. "r": 255,
  2458. "g": 255,
  2459. "b": 255,
  2460. "a": 255
  2461. },
  2462. "hoverColor": {
  2463. "__type__": "cc.Color",
  2464. "r": 255,
  2465. "g": 255,
  2466. "b": 255,
  2467. "a": 255
  2468. },
  2469. "_N$disabledColor": {
  2470. "__type__": "cc.Color",
  2471. "r": 255,
  2472. "g": 255,
  2473. "b": 255,
  2474. "a": 255
  2475. },
  2476. "_N$normalSprite": null,
  2477. "_N$pressedSprite": {
  2478. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2479. },
  2480. "pressedSprite": {
  2481. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2482. },
  2483. "_N$hoverSprite": {
  2484. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2485. },
  2486. "hoverSprite": {
  2487. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2488. },
  2489. "_N$disabledSprite": {
  2490. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2491. },
  2492. "_N$target": {
  2493. "__id__": 61
  2494. },
  2495. "_id": ""
  2496. },
  2497. {
  2498. "__type__": "cc.ClickEvent",
  2499. "target": {
  2500. "__id__": 1
  2501. },
  2502. "component": "",
  2503. "_componentId": "a2e6eJMVO5PS4wd0GqLXUwg",
  2504. "handler": "clickSkip",
  2505. "customEventData": ""
  2506. },
  2507. {
  2508. "__type__": "cc.PrefabInfo",
  2509. "root": {
  2510. "__id__": 1
  2511. },
  2512. "asset": {
  2513. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  2514. },
  2515. "fileId": "27nAhpxWlK47ExOgHYgjgW",
  2516. "sync": false
  2517. },
  2518. {
  2519. "__type__": "cc.Node",
  2520. "_name": "skipToggle",
  2521. "_objFlags": 512,
  2522. "_parent": {
  2523. "__id__": 6
  2524. },
  2525. "_children": [
  2526. {
  2527. "__id__": 69
  2528. },
  2529. {
  2530. "__id__": 72
  2531. },
  2532. {
  2533. "__id__": 75
  2534. }
  2535. ],
  2536. "_active": false,
  2537. "_components": [
  2538. {
  2539. "__id__": 78
  2540. }
  2541. ],
  2542. "_prefab": {
  2543. "__id__": 79
  2544. },
  2545. "_opacity": 255,
  2546. "_color": {
  2547. "__type__": "cc.Color",
  2548. "r": 255,
  2549. "g": 255,
  2550. "b": 255,
  2551. "a": 255
  2552. },
  2553. "_contentSize": {
  2554. "__type__": "cc.Size",
  2555. "width": 28,
  2556. "height": 28
  2557. },
  2558. "_anchorPoint": {
  2559. "__type__": "cc.Vec2",
  2560. "x": 0.5,
  2561. "y": 0.5
  2562. },
  2563. "_trs": {
  2564. "__type__": "TypedArray",
  2565. "ctor": "Float64Array",
  2566. "array": [
  2567. -84.158,
  2568. -440.633,
  2569. 0,
  2570. 0,
  2571. 0,
  2572. 0,
  2573. 1,
  2574. 1,
  2575. 1,
  2576. 1
  2577. ]
  2578. },
  2579. "_eulerAngles": {
  2580. "__type__": "cc.Vec3",
  2581. "x": 0,
  2582. "y": 0,
  2583. "z": 0
  2584. },
  2585. "_skewX": 0,
  2586. "_skewY": 0,
  2587. "_is3DNode": false,
  2588. "_groupIndex": 0,
  2589. "groupIndex": 0,
  2590. "_id": ""
  2591. },
  2592. {
  2593. "__type__": "cc.Node",
  2594. "_name": "Background",
  2595. "_objFlags": 512,
  2596. "_parent": {
  2597. "__id__": 68
  2598. },
  2599. "_children": [],
  2600. "_active": true,
  2601. "_components": [
  2602. {
  2603. "__id__": 70
  2604. }
  2605. ],
  2606. "_prefab": {
  2607. "__id__": 71
  2608. },
  2609. "_opacity": 255,
  2610. "_color": {
  2611. "__type__": "cc.Color",
  2612. "r": 255,
  2613. "g": 255,
  2614. "b": 255,
  2615. "a": 255
  2616. },
  2617. "_contentSize": {
  2618. "__type__": "cc.Size",
  2619. "width": 37,
  2620. "height": 37
  2621. },
  2622. "_anchorPoint": {
  2623. "__type__": "cc.Vec2",
  2624. "x": 0.5,
  2625. "y": 0.5
  2626. },
  2627. "_trs": {
  2628. "__type__": "TypedArray",
  2629. "ctor": "Float64Array",
  2630. "array": [
  2631. 0,
  2632. 0,
  2633. 0,
  2634. 0,
  2635. 0,
  2636. 0,
  2637. 1,
  2638. 1,
  2639. 1,
  2640. 0
  2641. ]
  2642. },
  2643. "_eulerAngles": {
  2644. "__type__": "cc.Vec3",
  2645. "x": 0,
  2646. "y": 0,
  2647. "z": 0
  2648. },
  2649. "_skewX": 0,
  2650. "_skewY": 0,
  2651. "_is3DNode": false,
  2652. "_groupIndex": 0,
  2653. "groupIndex": 0,
  2654. "_id": ""
  2655. },
  2656. {
  2657. "__type__": "cc.Sprite",
  2658. "_name": "Background<Sprite>",
  2659. "_objFlags": 0,
  2660. "node": {
  2661. "__id__": 69
  2662. },
  2663. "_enabled": true,
  2664. "_materials": [
  2665. {
  2666. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2667. }
  2668. ],
  2669. "_srcBlendFactor": 770,
  2670. "_dstBlendFactor": 771,
  2671. "_spriteFrame": null,
  2672. "_type": 0,
  2673. "_sizeMode": 1,
  2674. "_fillType": 0,
  2675. "_fillCenter": {
  2676. "__type__": "cc.Vec2",
  2677. "x": 0,
  2678. "y": 0
  2679. },
  2680. "_fillStart": 0,
  2681. "_fillRange": 0,
  2682. "_isTrimmedMode": true,
  2683. "_atlas": null,
  2684. "_id": ""
  2685. },
  2686. {
  2687. "__type__": "cc.PrefabInfo",
  2688. "root": {
  2689. "__id__": 1
  2690. },
  2691. "asset": {
  2692. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  2693. },
  2694. "fileId": "59G95Ki6FJ67D8lhT7s+sj",
  2695. "sync": false
  2696. },
  2697. {
  2698. "__type__": "cc.Node",
  2699. "_name": "checkmark",
  2700. "_objFlags": 512,
  2701. "_parent": {
  2702. "__id__": 68
  2703. },
  2704. "_children": [],
  2705. "_active": false,
  2706. "_components": [
  2707. {
  2708. "__id__": 73
  2709. }
  2710. ],
  2711. "_prefab": {
  2712. "__id__": 74
  2713. },
  2714. "_opacity": 255,
  2715. "_color": {
  2716. "__type__": "cc.Color",
  2717. "r": 255,
  2718. "g": 255,
  2719. "b": 255,
  2720. "a": 255
  2721. },
  2722. "_contentSize": {
  2723. "__type__": "cc.Size",
  2724. "width": 38,
  2725. "height": 37
  2726. },
  2727. "_anchorPoint": {
  2728. "__type__": "cc.Vec2",
  2729. "x": 0.5,
  2730. "y": 0.5
  2731. },
  2732. "_trs": {
  2733. "__type__": "TypedArray",
  2734. "ctor": "Float64Array",
  2735. "array": [
  2736. 0,
  2737. 0,
  2738. 0,
  2739. 0,
  2740. 0,
  2741. 0,
  2742. 1,
  2743. 1,
  2744. 1,
  2745. 1
  2746. ]
  2747. },
  2748. "_eulerAngles": {
  2749. "__type__": "cc.Vec3",
  2750. "x": 0,
  2751. "y": 0,
  2752. "z": 0
  2753. },
  2754. "_skewX": 0,
  2755. "_skewY": 0,
  2756. "_is3DNode": false,
  2757. "_groupIndex": 0,
  2758. "groupIndex": 0,
  2759. "_id": ""
  2760. },
  2761. {
  2762. "__type__": "cc.Sprite",
  2763. "_name": "checkmark<Sprite>",
  2764. "_objFlags": 0,
  2765. "node": {
  2766. "__id__": 72
  2767. },
  2768. "_enabled": true,
  2769. "_materials": [
  2770. {
  2771. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2772. }
  2773. ],
  2774. "_srcBlendFactor": 770,
  2775. "_dstBlendFactor": 771,
  2776. "_spriteFrame": null,
  2777. "_type": 0,
  2778. "_sizeMode": 2,
  2779. "_fillType": 0,
  2780. "_fillCenter": {
  2781. "__type__": "cc.Vec2",
  2782. "x": 0,
  2783. "y": 0
  2784. },
  2785. "_fillStart": 0,
  2786. "_fillRange": 0,
  2787. "_isTrimmedMode": false,
  2788. "_atlas": null,
  2789. "_id": ""
  2790. },
  2791. {
  2792. "__type__": "cc.PrefabInfo",
  2793. "root": {
  2794. "__id__": 1
  2795. },
  2796. "asset": {
  2797. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  2798. },
  2799. "fileId": "a905W1ipZDoLxPtVqcdjTc",
  2800. "sync": false
  2801. },
  2802. {
  2803. "__type__": "cc.Node",
  2804. "_name": "New Label",
  2805. "_objFlags": 0,
  2806. "_parent": {
  2807. "__id__": 68
  2808. },
  2809. "_children": [],
  2810. "_active": true,
  2811. "_components": [
  2812. {
  2813. "__id__": 76
  2814. }
  2815. ],
  2816. "_prefab": {
  2817. "__id__": 77
  2818. },
  2819. "_opacity": 255,
  2820. "_color": {
  2821. "__type__": "cc.Color",
  2822. "r": 112,
  2823. "g": 77,
  2824. "b": 52,
  2825. "a": 255
  2826. },
  2827. "_contentSize": {
  2828. "__type__": "cc.Size",
  2829. "width": 160,
  2830. "height": 50.4
  2831. },
  2832. "_anchorPoint": {
  2833. "__type__": "cc.Vec2",
  2834. "x": 0,
  2835. "y": 0.5
  2836. },
  2837. "_trs": {
  2838. "__type__": "TypedArray",
  2839. "ctor": "Float64Array",
  2840. "array": [
  2841. 30.842,
  2842. 0,
  2843. 0,
  2844. 0,
  2845. 0,
  2846. 0,
  2847. 1,
  2848. 1,
  2849. 1,
  2850. 1
  2851. ]
  2852. },
  2853. "_eulerAngles": {
  2854. "__type__": "cc.Vec3",
  2855. "x": 0,
  2856. "y": 0,
  2857. "z": 0
  2858. },
  2859. "_skewX": 0,
  2860. "_skewY": 0,
  2861. "_is3DNode": false,
  2862. "_groupIndex": 0,
  2863. "groupIndex": 0,
  2864. "_id": ""
  2865. },
  2866. {
  2867. "__type__": "cc.Label",
  2868. "_name": "New Label<Label>",
  2869. "_objFlags": 0,
  2870. "node": {
  2871. "__id__": 75
  2872. },
  2873. "_enabled": true,
  2874. "_materials": [
  2875. {
  2876. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2877. }
  2878. ],
  2879. "_srcBlendFactor": 770,
  2880. "_dstBlendFactor": 771,
  2881. "_string": "不再提醒",
  2882. "_N$string": "不再提醒",
  2883. "_fontSize": 40,
  2884. "_lineHeight": 40,
  2885. "_enableWrapText": true,
  2886. "_N$file": null,
  2887. "_isSystemFontUsed": true,
  2888. "_spacingX": 0,
  2889. "_batchAsBitmap": false,
  2890. "_styleFlags": 0,
  2891. "_underlineHeight": 0,
  2892. "_N$horizontalAlign": 1,
  2893. "_N$verticalAlign": 1,
  2894. "_N$fontFamily": "Arial",
  2895. "_N$overflow": 0,
  2896. "_N$cacheMode": 0,
  2897. "_id": ""
  2898. },
  2899. {
  2900. "__type__": "cc.PrefabInfo",
  2901. "root": {
  2902. "__id__": 1
  2903. },
  2904. "asset": {
  2905. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  2906. },
  2907. "fileId": "92gIMRwJ9NMKhHpYZOcodm",
  2908. "sync": false
  2909. },
  2910. {
  2911. "__type__": "cc.Toggle",
  2912. "_name": "",
  2913. "_objFlags": 0,
  2914. "node": {
  2915. "__id__": 68
  2916. },
  2917. "_enabled": true,
  2918. "_normalMaterial": null,
  2919. "_grayMaterial": null,
  2920. "duration": 0.1,
  2921. "zoomScale": 1.2,
  2922. "clickEvents": [],
  2923. "_N$interactable": true,
  2924. "_N$enableAutoGrayEffect": false,
  2925. "_N$transition": 3,
  2926. "transition": 3,
  2927. "_N$normalColor": {
  2928. "__type__": "cc.Color",
  2929. "r": 214,
  2930. "g": 214,
  2931. "b": 214,
  2932. "a": 255
  2933. },
  2934. "_N$pressedColor": {
  2935. "__type__": "cc.Color",
  2936. "r": 211,
  2937. "g": 211,
  2938. "b": 211,
  2939. "a": 255
  2940. },
  2941. "pressedColor": {
  2942. "__type__": "cc.Color",
  2943. "r": 211,
  2944. "g": 211,
  2945. "b": 211,
  2946. "a": 255
  2947. },
  2948. "_N$hoverColor": {
  2949. "__type__": "cc.Color",
  2950. "r": 255,
  2951. "g": 255,
  2952. "b": 255,
  2953. "a": 255
  2954. },
  2955. "hoverColor": {
  2956. "__type__": "cc.Color",
  2957. "r": 255,
  2958. "g": 255,
  2959. "b": 255,
  2960. "a": 255
  2961. },
  2962. "_N$disabledColor": {
  2963. "__type__": "cc.Color",
  2964. "r": 124,
  2965. "g": 124,
  2966. "b": 124,
  2967. "a": 255
  2968. },
  2969. "_N$normalSprite": null,
  2970. "_N$pressedSprite": null,
  2971. "pressedSprite": null,
  2972. "_N$hoverSprite": null,
  2973. "hoverSprite": null,
  2974. "_N$disabledSprite": null,
  2975. "_N$target": {
  2976. "__id__": 69
  2977. },
  2978. "_N$isChecked": false,
  2979. "toggleGroup": null,
  2980. "checkMark": {
  2981. "__id__": 73
  2982. },
  2983. "checkEvents": [],
  2984. "_id": ""
  2985. },
  2986. {
  2987. "__type__": "cc.PrefabInfo",
  2988. "root": {
  2989. "__id__": 1
  2990. },
  2991. "asset": {
  2992. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  2993. },
  2994. "fileId": "305zrJuCJClb2jUKHkHSbc",
  2995. "sync": false
  2996. },
  2997. {
  2998. "__type__": "c303cMObORMP73Of1/g1ZVg",
  2999. "_name": "",
  3000. "_objFlags": 0,
  3001. "node": {
  3002. "__id__": 6
  3003. },
  3004. "_enabled": true,
  3005. "_id": ""
  3006. },
  3007. {
  3008. "__type__": "cc.PrefabInfo",
  3009. "root": {
  3010. "__id__": 1
  3011. },
  3012. "asset": {
  3013. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  3014. },
  3015. "fileId": "26dYwQnoBLfakw3bKbV45T",
  3016. "sync": false
  3017. },
  3018. {
  3019. "__type__": "4cd23/2Uq9EU4w1e97Etnp0",
  3020. "_name": "",
  3021. "_objFlags": 0,
  3022. "node": {
  3023. "__id__": 1
  3024. },
  3025. "_enabled": true,
  3026. "skipToggle": {
  3027. "__id__": 78
  3028. },
  3029. "labUpdate": {
  3030. "__id__": 29
  3031. },
  3032. "labFix": {
  3033. "__id__": 35
  3034. },
  3035. "btnSure": {
  3036. "__id__": 52
  3037. },
  3038. "btnCancel": {
  3039. "__id__": 61
  3040. },
  3041. "fileProgress": {
  3042. "__id__": 40
  3043. },
  3044. "labPro": {
  3045. "__id__": 43
  3046. },
  3047. "_id": ""
  3048. },
  3049. {
  3050. "__type__": "cc.PrefabInfo",
  3051. "root": {
  3052. "__id__": 1
  3053. },
  3054. "asset": {
  3055. "__uuid__": "fd05a3e3-a1f8-41d3-a8aa-5d32136824d1"
  3056. },
  3057. "fileId": "",
  3058. "sync": false
  3059. }
  3060. ]