gradeReward.prefab 54 KB

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