artist_train.prefab 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  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. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "artist_train",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 6
  24. }
  25. ],
  26. "_tag": -1,
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 61
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 62
  35. },
  36. "_id": "",
  37. "_opacity": 255,
  38. "_color": {
  39. "__type__": "cc.Color",
  40. "r": 255,
  41. "g": 255,
  42. "b": 255,
  43. "a": 255
  44. },
  45. "_cascadeOpacityEnabled": true,
  46. "_anchorPoint": {
  47. "__type__": "cc.Vec2",
  48. "x": 0.5,
  49. "y": 0.5
  50. },
  51. "_contentSize": {
  52. "__type__": "cc.Size",
  53. "width": 750,
  54. "height": 1624
  55. },
  56. "_rotationX": 0,
  57. "_rotationY": 0,
  58. "_scaleX": 1,
  59. "_scaleY": 1,
  60. "_position": {
  61. "__type__": "cc.Vec2",
  62. "x": 0,
  63. "y": 0
  64. },
  65. "_skewX": 0,
  66. "_skewY": 0,
  67. "_localZOrder": 0,
  68. "_globalZOrder": 0,
  69. "_opacityModifyRGB": false,
  70. "groupIndex": 0
  71. },
  72. {
  73. "__type__": "cc.Node",
  74. "_name": "bg",
  75. "_objFlags": 0,
  76. "_parent": {
  77. "__id__": 1
  78. },
  79. "_children": [],
  80. "_tag": -1,
  81. "_active": true,
  82. "_components": [
  83. {
  84. "__id__": 3
  85. },
  86. {
  87. "__id__": 4
  88. }
  89. ],
  90. "_prefab": {
  91. "__id__": 5
  92. },
  93. "_id": "",
  94. "_opacity": 59.415000000000006,
  95. "_color": {
  96. "__type__": "cc.Color",
  97. "r": 0,
  98. "g": 0,
  99. "b": 0,
  100. "a": 255
  101. },
  102. "_cascadeOpacityEnabled": true,
  103. "_anchorPoint": {
  104. "__type__": "cc.Vec2",
  105. "x": 0.5,
  106. "y": 0.5
  107. },
  108. "_contentSize": {
  109. "__type__": "cc.Size",
  110. "width": 2000,
  111. "height": 2000
  112. },
  113. "_rotationX": 0,
  114. "_rotationY": 0,
  115. "_scaleX": 1,
  116. "_scaleY": 1,
  117. "_position": {
  118. "__type__": "cc.Vec2",
  119. "x": 0,
  120. "y": 0
  121. },
  122. "_skewX": 0,
  123. "_skewY": 0,
  124. "_localZOrder": 0,
  125. "_globalZOrder": 0,
  126. "_opacityModifyRGB": false,
  127. "groupIndex": 0
  128. },
  129. {
  130. "__type__": "cc.Sprite",
  131. "_name": "",
  132. "_objFlags": 0,
  133. "node": {
  134. "__id__": 2
  135. },
  136. "_enabled": true,
  137. "_spriteFrame": {
  138. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  139. },
  140. "_type": 1,
  141. "_sizeMode": 0,
  142. "_fillType": 0,
  143. "_fillCenter": {
  144. "__type__": "cc.Vec2",
  145. "x": 0,
  146. "y": 0
  147. },
  148. "_fillStart": 0,
  149. "_fillRange": 0,
  150. "_isTrimmedMode": true,
  151. "_srcBlendFactor": 770,
  152. "_dstBlendFactor": 771,
  153. "_atlas": null
  154. },
  155. {
  156. "__type__": "cc.BlockInputEvents",
  157. "_name": "",
  158. "_objFlags": 0,
  159. "node": {
  160. "__id__": 2
  161. },
  162. "_enabled": true
  163. },
  164. {
  165. "__type__": "cc.PrefabInfo",
  166. "root": {
  167. "__id__": 1
  168. },
  169. "asset": {
  170. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  171. },
  172. "fileId": "fbdDkaikdD65xB2hbp1mHE",
  173. "sync": false
  174. },
  175. {
  176. "__type__": "cc.Node",
  177. "_name": "content",
  178. "_objFlags": 0,
  179. "_parent": {
  180. "__id__": 1
  181. },
  182. "_children": [
  183. {
  184. "__id__": 7
  185. },
  186. {
  187. "__id__": 10
  188. },
  189. {
  190. "__id__": 13
  191. },
  192. {
  193. "__id__": 16
  194. },
  195. {
  196. "__id__": 25
  197. },
  198. {
  199. "__id__": 38
  200. },
  201. {
  202. "__id__": 49
  203. },
  204. {
  205. "__id__": 54
  206. }
  207. ],
  208. "_tag": -1,
  209. "_active": true,
  210. "_components": [
  211. {
  212. "__id__": 59
  213. }
  214. ],
  215. "_prefab": {
  216. "__id__": 60
  217. },
  218. "_id": "",
  219. "_opacity": 255,
  220. "_color": {
  221. "__type__": "cc.Color",
  222. "r": 255,
  223. "g": 255,
  224. "b": 255,
  225. "a": 255
  226. },
  227. "_cascadeOpacityEnabled": true,
  228. "_anchorPoint": {
  229. "__type__": "cc.Vec2",
  230. "x": 0.5,
  231. "y": 0.5
  232. },
  233. "_contentSize": {
  234. "__type__": "cc.Size",
  235. "width": 720,
  236. "height": 880
  237. },
  238. "_rotationX": 0,
  239. "_rotationY": 0,
  240. "_scaleX": 1,
  241. "_scaleY": 1,
  242. "_position": {
  243. "__type__": "cc.Vec2",
  244. "x": 0,
  245. "y": 0
  246. },
  247. "_skewX": 0,
  248. "_skewY": 0,
  249. "_localZOrder": 0,
  250. "_globalZOrder": 0,
  251. "_opacityModifyRGB": false,
  252. "groupIndex": 0
  253. },
  254. {
  255. "__type__": "cc.Node",
  256. "_name": "colour_bar_left",
  257. "_objFlags": 0,
  258. "_parent": {
  259. "__id__": 6
  260. },
  261. "_children": [],
  262. "_tag": -1,
  263. "_active": true,
  264. "_components": [
  265. {
  266. "__id__": 8
  267. }
  268. ],
  269. "_prefab": {
  270. "__id__": 9
  271. },
  272. "_id": "",
  273. "_opacity": 255,
  274. "_color": {
  275. "__type__": "cc.Color",
  276. "r": 255,
  277. "g": 255,
  278. "b": 255,
  279. "a": 255
  280. },
  281. "_cascadeOpacityEnabled": true,
  282. "_anchorPoint": {
  283. "__type__": "cc.Vec2",
  284. "x": 0.5,
  285. "y": 0.5
  286. },
  287. "_contentSize": {
  288. "__type__": "cc.Size",
  289. "width": 212,
  290. "height": 120
  291. },
  292. "_rotationX": 0,
  293. "_rotationY": 0,
  294. "_scaleX": 1,
  295. "_scaleY": 1,
  296. "_position": {
  297. "__type__": "cc.Vec2",
  298. "x": -89.80000000000001,
  299. "y": 433.1
  300. },
  301. "_skewX": 0,
  302. "_skewY": 0,
  303. "_localZOrder": 0,
  304. "_globalZOrder": 0,
  305. "_opacityModifyRGB": false,
  306. "groupIndex": 0
  307. },
  308. {
  309. "__type__": "cc.Sprite",
  310. "_name": "",
  311. "_objFlags": 0,
  312. "node": {
  313. "__id__": 7
  314. },
  315. "_enabled": true,
  316. "_spriteFrame": {
  317. "__uuid__": "bcf51e55-82c5-4d2a-be8a-81da8c24249d"
  318. },
  319. "_type": 0,
  320. "_sizeMode": 1,
  321. "_fillType": 0,
  322. "_fillCenter": {
  323. "__type__": "cc.Vec2",
  324. "x": 0,
  325. "y": 0
  326. },
  327. "_fillStart": 0,
  328. "_fillRange": 0,
  329. "_isTrimmedMode": true,
  330. "_srcBlendFactor": 770,
  331. "_dstBlendFactor": 771,
  332. "_atlas": null
  333. },
  334. {
  335. "__type__": "cc.PrefabInfo",
  336. "root": {
  337. "__id__": 1
  338. },
  339. "asset": {
  340. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  341. },
  342. "fileId": "03peTn2z9G/r6/Z2l32IoR",
  343. "sync": false
  344. },
  345. {
  346. "__type__": "cc.Node",
  347. "_name": "colour_bar_right",
  348. "_objFlags": 0,
  349. "_parent": {
  350. "__id__": 6
  351. },
  352. "_children": [],
  353. "_tag": -1,
  354. "_active": true,
  355. "_components": [
  356. {
  357. "__id__": 11
  358. }
  359. ],
  360. "_prefab": {
  361. "__id__": 12
  362. },
  363. "_id": "",
  364. "_opacity": 255,
  365. "_color": {
  366. "__type__": "cc.Color",
  367. "r": 255,
  368. "g": 255,
  369. "b": 255,
  370. "a": 255
  371. },
  372. "_cascadeOpacityEnabled": true,
  373. "_anchorPoint": {
  374. "__type__": "cc.Vec2",
  375. "x": 0.5,
  376. "y": 0.5
  377. },
  378. "_contentSize": {
  379. "__type__": "cc.Size",
  380. "width": 212,
  381. "height": 120
  382. },
  383. "_rotationX": 0,
  384. "_rotationY": 0,
  385. "_scaleX": -1,
  386. "_scaleY": 1,
  387. "_position": {
  388. "__type__": "cc.Vec2",
  389. "x": 122.1,
  390. "y": 433.1
  391. },
  392. "_skewX": 0,
  393. "_skewY": 0,
  394. "_localZOrder": 0,
  395. "_globalZOrder": 0,
  396. "_opacityModifyRGB": false,
  397. "groupIndex": 0
  398. },
  399. {
  400. "__type__": "cc.Sprite",
  401. "_name": "",
  402. "_objFlags": 0,
  403. "node": {
  404. "__id__": 10
  405. },
  406. "_enabled": true,
  407. "_spriteFrame": {
  408. "__uuid__": "bcf51e55-82c5-4d2a-be8a-81da8c24249d"
  409. },
  410. "_type": 0,
  411. "_sizeMode": 1,
  412. "_fillType": 0,
  413. "_fillCenter": {
  414. "__type__": "cc.Vec2",
  415. "x": 0,
  416. "y": 0
  417. },
  418. "_fillStart": 0,
  419. "_fillRange": 0,
  420. "_isTrimmedMode": true,
  421. "_srcBlendFactor": 770,
  422. "_dstBlendFactor": 771,
  423. "_atlas": null
  424. },
  425. {
  426. "__type__": "cc.PrefabInfo",
  427. "root": {
  428. "__id__": 1
  429. },
  430. "asset": {
  431. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  432. },
  433. "fileId": "268ffAl4FO9YA2MRDK2F95",
  434. "sync": false
  435. },
  436. {
  437. "__type__": "cc.Node",
  438. "_name": "title",
  439. "_objFlags": 0,
  440. "_parent": {
  441. "__id__": 6
  442. },
  443. "_children": [],
  444. "_tag": -1,
  445. "_active": true,
  446. "_components": [
  447. {
  448. "__id__": 14
  449. }
  450. ],
  451. "_prefab": {
  452. "__id__": 15
  453. },
  454. "_id": "",
  455. "_opacity": 255,
  456. "_color": {
  457. "__type__": "cc.Color",
  458. "r": 255,
  459. "g": 255,
  460. "b": 255,
  461. "a": 255
  462. },
  463. "_cascadeOpacityEnabled": true,
  464. "_anchorPoint": {
  465. "__type__": "cc.Vec2",
  466. "x": 0.5,
  467. "y": 0.5
  468. },
  469. "_contentSize": {
  470. "__type__": "cc.Size",
  471. "width": 84,
  472. "height": 50
  473. },
  474. "_rotationX": 0,
  475. "_rotationY": 0,
  476. "_scaleX": 1,
  477. "_scaleY": 1,
  478. "_position": {
  479. "__type__": "cc.Vec2",
  480. "x": 8,
  481. "y": 446
  482. },
  483. "_skewX": 0,
  484. "_skewY": 0,
  485. "_localZOrder": 0,
  486. "_globalZOrder": 0,
  487. "_opacityModifyRGB": false,
  488. "groupIndex": 0
  489. },
  490. {
  491. "__type__": "cc.RichText",
  492. "_name": "",
  493. "_objFlags": 0,
  494. "node": {
  495. "__id__": 13
  496. },
  497. "_enabled": true,
  498. "_N$string": "<b><outline color=#E1596C\n width=2>培养<outline/><b/>",
  499. "_N$horizontalAlign": 0,
  500. "_N$fontSize": 40,
  501. "_N$font": null,
  502. "_N$maxWidth": 0,
  503. "_N$lineHeight": 50,
  504. "_N$imageAtlas": null,
  505. "_N$handleTouchEvent": true
  506. },
  507. {
  508. "__type__": "cc.PrefabInfo",
  509. "root": {
  510. "__id__": 1
  511. },
  512. "asset": {
  513. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  514. },
  515. "fileId": "be+yP68A1H+rt5MNcdOxZq",
  516. "sync": false
  517. },
  518. {
  519. "__type__": "cc.Node",
  520. "_name": "closeButton",
  521. "_objFlags": 0,
  522. "_parent": {
  523. "__id__": 6
  524. },
  525. "_children": [
  526. {
  527. "__id__": 17
  528. }
  529. ],
  530. "_tag": -1,
  531. "_active": true,
  532. "_components": [
  533. {
  534. "__id__": 20
  535. },
  536. {
  537. "__id__": 21
  538. },
  539. {
  540. "__id__": 23
  541. }
  542. ],
  543. "_prefab": {
  544. "__id__": 24
  545. },
  546. "_id": "",
  547. "_opacity": 255,
  548. "_color": {
  549. "__type__": "cc.Color",
  550. "r": 255,
  551. "g": 255,
  552. "b": 255,
  553. "a": 255
  554. },
  555. "_cascadeOpacityEnabled": true,
  556. "_anchorPoint": {
  557. "__type__": "cc.Vec2",
  558. "x": 0.5,
  559. "y": 0.5
  560. },
  561. "_contentSize": {
  562. "__type__": "cc.Size",
  563. "width": 44,
  564. "height": 44
  565. },
  566. "_rotationX": 0,
  567. "_rotationY": 0,
  568. "_scaleX": 1,
  569. "_scaleY": 1,
  570. "_position": {
  571. "__type__": "cc.Vec2",
  572. "x": 304,
  573. "y": 384
  574. },
  575. "_skewX": 0,
  576. "_skewY": 0,
  577. "_localZOrder": 0,
  578. "_globalZOrder": 0,
  579. "_opacityModifyRGB": false,
  580. "groupIndex": 0
  581. },
  582. {
  583. "__type__": "cc.Node",
  584. "_name": "New Sprite",
  585. "_objFlags": 0,
  586. "_parent": {
  587. "__id__": 16
  588. },
  589. "_children": [],
  590. "_tag": -1,
  591. "_active": true,
  592. "_components": [
  593. {
  594. "__id__": 18
  595. }
  596. ],
  597. "_prefab": {
  598. "__id__": 19
  599. },
  600. "_id": "",
  601. "_opacity": 255,
  602. "_color": {
  603. "__type__": "cc.Color",
  604. "r": 255,
  605. "g": 255,
  606. "b": 255,
  607. "a": 255
  608. },
  609. "_cascadeOpacityEnabled": true,
  610. "_anchorPoint": {
  611. "__type__": "cc.Vec2",
  612. "x": 0.5,
  613. "y": 0.5
  614. },
  615. "_contentSize": {
  616. "__type__": "cc.Size",
  617. "width": 32,
  618. "height": 32
  619. },
  620. "_rotationX": 0,
  621. "_rotationY": 0,
  622. "_scaleX": 1,
  623. "_scaleY": 1,
  624. "_position": {
  625. "__type__": "cc.Vec2",
  626. "x": 0,
  627. "y": 0
  628. },
  629. "_skewX": 0,
  630. "_skewY": 0,
  631. "_localZOrder": 0,
  632. "_globalZOrder": 0,
  633. "_opacityModifyRGB": false,
  634. "groupIndex": 0
  635. },
  636. {
  637. "__type__": "cc.Sprite",
  638. "_name": "",
  639. "_objFlags": 0,
  640. "node": {
  641. "__id__": 17
  642. },
  643. "_enabled": true,
  644. "_spriteFrame": {
  645. "__uuid__": "c05599d0-d3dc-4124-b126-9e5a6c601822"
  646. },
  647. "_type": 0,
  648. "_sizeMode": 1,
  649. "_fillType": 0,
  650. "_fillCenter": {
  651. "__type__": "cc.Vec2",
  652. "x": 0,
  653. "y": 0
  654. },
  655. "_fillStart": 0,
  656. "_fillRange": 0,
  657. "_isTrimmedMode": true,
  658. "_srcBlendFactor": 770,
  659. "_dstBlendFactor": 771,
  660. "_atlas": null
  661. },
  662. {
  663. "__type__": "cc.PrefabInfo",
  664. "root": {
  665. "__id__": 1
  666. },
  667. "asset": {
  668. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  669. },
  670. "fileId": "ddjLGAGI5GxYG4uD27W25l",
  671. "sync": false
  672. },
  673. {
  674. "__type__": "cc.Sprite",
  675. "_name": "",
  676. "_objFlags": 0,
  677. "node": {
  678. "__id__": 16
  679. },
  680. "_enabled": true,
  681. "_spriteFrame": null,
  682. "_type": 1,
  683. "_sizeMode": 0,
  684. "_fillType": 0,
  685. "_fillCenter": {
  686. "__type__": "cc.Vec2",
  687. "x": 0,
  688. "y": 0
  689. },
  690. "_fillStart": 0,
  691. "_fillRange": 0,
  692. "_isTrimmedMode": true,
  693. "_srcBlendFactor": 770,
  694. "_dstBlendFactor": 771,
  695. "_atlas": null
  696. },
  697. {
  698. "__type__": "cc.Button",
  699. "_name": "",
  700. "_objFlags": 0,
  701. "node": {
  702. "__id__": 16
  703. },
  704. "_enabled": true,
  705. "transition": 1,
  706. "pressedColor": {
  707. "__type__": "cc.Color",
  708. "r": 120,
  709. "g": 120,
  710. "b": 120,
  711. "a": 255
  712. },
  713. "hoverColor": {
  714. "__type__": "cc.Color",
  715. "r": 255,
  716. "g": 255,
  717. "b": 255,
  718. "a": 255
  719. },
  720. "duration": 0.1,
  721. "zoomScale": 1.2,
  722. "clickEvents": [
  723. {
  724. "__id__": 22
  725. }
  726. ],
  727. "_N$interactable": true,
  728. "_N$enableAutoGrayEffect": false,
  729. "_N$normalColor": {
  730. "__type__": "cc.Color",
  731. "r": 255,
  732. "g": 255,
  733. "b": 255,
  734. "a": 255
  735. },
  736. "_N$disabledColor": {
  737. "__type__": "cc.Color",
  738. "r": 255,
  739. "g": 255,
  740. "b": 255,
  741. "a": 255
  742. },
  743. "_N$normalSprite": {
  744. "__uuid__": "c05599d0-d3dc-4124-b126-9e5a6c601822"
  745. },
  746. "_N$pressedSprite": {
  747. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  748. },
  749. "pressedSprite": {
  750. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  751. },
  752. "_N$hoverSprite": {
  753. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  754. },
  755. "hoverSprite": {
  756. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  757. },
  758. "_N$disabledSprite": null,
  759. "_N$target": {
  760. "__id__": 16
  761. }
  762. },
  763. {
  764. "__type__": "cc.ClickEvent",
  765. "target": {
  766. "__id__": 1
  767. },
  768. "component": "ArtistTrain",
  769. "handler": "close",
  770. "customEventData": ""
  771. },
  772. {
  773. "__type__": "cc.Widget",
  774. "_name": "",
  775. "_objFlags": 0,
  776. "node": {
  777. "__id__": 16
  778. },
  779. "_enabled": true,
  780. "alignMode": 0,
  781. "_target": null,
  782. "_alignFlags": 33,
  783. "_left": 0,
  784. "_right": 34,
  785. "_top": 34,
  786. "_bottom": 0,
  787. "_verticalCenter": 0,
  788. "_horizontalCenter": 0,
  789. "_isAbsLeft": true,
  790. "_isAbsRight": true,
  791. "_isAbsTop": true,
  792. "_isAbsBottom": true,
  793. "_isAbsHorizontalCenter": true,
  794. "_isAbsVerticalCenter": true,
  795. "_originalWidth": 0,
  796. "_originalHeight": 0
  797. },
  798. {
  799. "__type__": "cc.PrefabInfo",
  800. "root": {
  801. "__id__": 1
  802. },
  803. "asset": {
  804. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  805. },
  806. "fileId": "1dsfdIwapFmq5W5kaiRL1s",
  807. "sync": false
  808. },
  809. {
  810. "__type__": "cc.Node",
  811. "_name": "cost_diamond_btn",
  812. "_objFlags": 0,
  813. "_parent": {
  814. "__id__": 6
  815. },
  816. "_children": [
  817. {
  818. "__id__": 26
  819. },
  820. {
  821. "__id__": 29
  822. }
  823. ],
  824. "_tag": -1,
  825. "_active": true,
  826. "_components": [
  827. {
  828. "__id__": 33
  829. },
  830. {
  831. "__id__": 34
  832. },
  833. {
  834. "__id__": 36
  835. }
  836. ],
  837. "_prefab": {
  838. "__id__": 37
  839. },
  840. "_id": "",
  841. "_opacity": 255,
  842. "_color": {
  843. "__type__": "cc.Color",
  844. "r": 255,
  845. "g": 255,
  846. "b": 255,
  847. "a": 255
  848. },
  849. "_cascadeOpacityEnabled": true,
  850. "_anchorPoint": {
  851. "__type__": "cc.Vec2",
  852. "x": 0.5,
  853. "y": 0.5
  854. },
  855. "_contentSize": {
  856. "__type__": "cc.Size",
  857. "width": 176,
  858. "height": 67
  859. },
  860. "_rotationX": 0,
  861. "_rotationY": 0,
  862. "_scaleX": 1,
  863. "_scaleY": 1,
  864. "_position": {
  865. "__type__": "cc.Vec2",
  866. "x": 242,
  867. "y": -334
  868. },
  869. "_skewX": 0,
  870. "_skewY": 0,
  871. "_localZOrder": 0,
  872. "_globalZOrder": 0,
  873. "_opacityModifyRGB": false,
  874. "groupIndex": 0
  875. },
  876. {
  877. "__type__": "cc.Node",
  878. "_name": "diamond_icon",
  879. "_objFlags": 0,
  880. "_parent": {
  881. "__id__": 25
  882. },
  883. "_children": [],
  884. "_tag": -1,
  885. "_active": true,
  886. "_components": [
  887. {
  888. "__id__": 27
  889. }
  890. ],
  891. "_prefab": {
  892. "__id__": 28
  893. },
  894. "_id": "",
  895. "_opacity": 255,
  896. "_color": {
  897. "__type__": "cc.Color",
  898. "r": 255,
  899. "g": 255,
  900. "b": 255,
  901. "a": 255
  902. },
  903. "_cascadeOpacityEnabled": true,
  904. "_anchorPoint": {
  905. "__type__": "cc.Vec2",
  906. "x": 0.5,
  907. "y": 0.5
  908. },
  909. "_contentSize": {
  910. "__type__": "cc.Size",
  911. "width": 38,
  912. "height": 38
  913. },
  914. "_rotationX": 0,
  915. "_rotationY": 0,
  916. "_scaleX": 1,
  917. "_scaleY": 1,
  918. "_position": {
  919. "__type__": "cc.Vec2",
  920. "x": -49.1,
  921. "y": -0.6
  922. },
  923. "_skewX": 0,
  924. "_skewY": 0,
  925. "_localZOrder": 0,
  926. "_globalZOrder": 0,
  927. "_opacityModifyRGB": false,
  928. "groupIndex": 0
  929. },
  930. {
  931. "__type__": "cc.Sprite",
  932. "_name": "",
  933. "_objFlags": 0,
  934. "node": {
  935. "__id__": 26
  936. },
  937. "_enabled": true,
  938. "_spriteFrame": {
  939. "__uuid__": "61994658-c3a0-4e96-bd67-354ad241f388"
  940. },
  941. "_type": 0,
  942. "_sizeMode": 1,
  943. "_fillType": 0,
  944. "_fillCenter": {
  945. "__type__": "cc.Vec2",
  946. "x": 0,
  947. "y": 0
  948. },
  949. "_fillStart": 0,
  950. "_fillRange": 0,
  951. "_isTrimmedMode": true,
  952. "_srcBlendFactor": 770,
  953. "_dstBlendFactor": 771,
  954. "_atlas": null
  955. },
  956. {
  957. "__type__": "cc.PrefabInfo",
  958. "root": {
  959. "__id__": 1
  960. },
  961. "asset": {
  962. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  963. },
  964. "fileId": "d7zZSVL9dNw5cfvWvhD/5m",
  965. "sync": false
  966. },
  967. {
  968. "__type__": "cc.Node",
  969. "_name": "New Label",
  970. "_objFlags": 0,
  971. "_parent": {
  972. "__id__": 25
  973. },
  974. "_children": [],
  975. "_tag": -1,
  976. "_active": true,
  977. "_components": [
  978. {
  979. "__id__": 30
  980. },
  981. {
  982. "__id__": 31
  983. }
  984. ],
  985. "_prefab": {
  986. "__id__": 32
  987. },
  988. "_id": "",
  989. "_opacity": 255,
  990. "_color": {
  991. "__type__": "cc.Color",
  992. "r": 219,
  993. "g": 209,
  994. "b": 248,
  995. "a": 255
  996. },
  997. "_cascadeOpacityEnabled": true,
  998. "_anchorPoint": {
  999. "__type__": "cc.Vec2",
  1000. "x": 0.5,
  1001. "y": 0.5
  1002. },
  1003. "_contentSize": {
  1004. "__type__": "cc.Size",
  1005. "width": 79,
  1006. "height": 22
  1007. },
  1008. "_rotationX": 0,
  1009. "_rotationY": 0,
  1010. "_scaleX": 1,
  1011. "_scaleY": 1,
  1012. "_position": {
  1013. "__type__": "cc.Vec2",
  1014. "x": 17.1,
  1015. "y": 0
  1016. },
  1017. "_skewX": 0,
  1018. "_skewY": 0,
  1019. "_localZOrder": 0,
  1020. "_globalZOrder": 0,
  1021. "_opacityModifyRGB": false,
  1022. "groupIndex": 0
  1023. },
  1024. {
  1025. "__type__": "cc.Label",
  1026. "_name": "",
  1027. "_objFlags": 0,
  1028. "node": {
  1029. "__id__": 29
  1030. },
  1031. "_enabled": true,
  1032. "_useOriginalSize": false,
  1033. "_actualFontSize": 22,
  1034. "_fontSize": 22,
  1035. "_lineHeight": 22,
  1036. "_enableWrapText": true,
  1037. "_N$file": null,
  1038. "_isSystemFontUsed": true,
  1039. "_spacingX": 0,
  1040. "_N$string": "20 刷新",
  1041. "_N$horizontalAlign": 1,
  1042. "_N$verticalAlign": 1,
  1043. "_N$fontFamily": "Arial",
  1044. "_N$overflow": 0
  1045. },
  1046. {
  1047. "__type__": "cc.LabelOutline",
  1048. "_name": "",
  1049. "_objFlags": 0,
  1050. "node": {
  1051. "__id__": 29
  1052. },
  1053. "_enabled": true,
  1054. "_color": {
  1055. "__type__": "cc.Color",
  1056. "r": 59,
  1057. "g": 38,
  1058. "b": 120,
  1059. "a": 255
  1060. },
  1061. "_width": 2
  1062. },
  1063. {
  1064. "__type__": "cc.PrefabInfo",
  1065. "root": {
  1066. "__id__": 1
  1067. },
  1068. "asset": {
  1069. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  1070. },
  1071. "fileId": "d3ju1iF4dOLKXsdvz0QAFY",
  1072. "sync": false
  1073. },
  1074. {
  1075. "__type__": "cc.Sprite",
  1076. "_name": "",
  1077. "_objFlags": 0,
  1078. "node": {
  1079. "__id__": 25
  1080. },
  1081. "_enabled": true,
  1082. "_spriteFrame": {
  1083. "__uuid__": "b455d314-d966-42de-b785-e1b4ec36a089"
  1084. },
  1085. "_type": 1,
  1086. "_sizeMode": 0,
  1087. "_fillType": 0,
  1088. "_fillCenter": {
  1089. "__type__": "cc.Vec2",
  1090. "x": 0,
  1091. "y": 0
  1092. },
  1093. "_fillStart": 0,
  1094. "_fillRange": 0,
  1095. "_isTrimmedMode": true,
  1096. "_srcBlendFactor": 770,
  1097. "_dstBlendFactor": 771,
  1098. "_atlas": null
  1099. },
  1100. {
  1101. "__type__": "cc.Button",
  1102. "_name": "",
  1103. "_objFlags": 0,
  1104. "node": {
  1105. "__id__": 25
  1106. },
  1107. "_enabled": true,
  1108. "transition": 1,
  1109. "pressedColor": {
  1110. "__type__": "cc.Color",
  1111. "r": 120,
  1112. "g": 120,
  1113. "b": 120,
  1114. "a": 255
  1115. },
  1116. "hoverColor": {
  1117. "__type__": "cc.Color",
  1118. "r": 255,
  1119. "g": 255,
  1120. "b": 255,
  1121. "a": 255
  1122. },
  1123. "duration": 0.1,
  1124. "zoomScale": 1.2,
  1125. "clickEvents": [
  1126. {
  1127. "__id__": 35
  1128. }
  1129. ],
  1130. "_N$interactable": true,
  1131. "_N$enableAutoGrayEffect": false,
  1132. "_N$normalColor": {
  1133. "__type__": "cc.Color",
  1134. "r": 255,
  1135. "g": 255,
  1136. "b": 255,
  1137. "a": 255
  1138. },
  1139. "_N$disabledColor": {
  1140. "__type__": "cc.Color",
  1141. "r": 255,
  1142. "g": 255,
  1143. "b": 255,
  1144. "a": 255
  1145. },
  1146. "_N$normalSprite": {
  1147. "__uuid__": "b455d314-d966-42de-b785-e1b4ec36a089"
  1148. },
  1149. "_N$pressedSprite": {
  1150. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1151. },
  1152. "pressedSprite": {
  1153. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1154. },
  1155. "_N$hoverSprite": {
  1156. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1157. },
  1158. "hoverSprite": {
  1159. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1160. },
  1161. "_N$disabledSprite": null,
  1162. "_N$target": {
  1163. "__id__": 25
  1164. }
  1165. },
  1166. {
  1167. "__type__": "cc.ClickEvent",
  1168. "target": {
  1169. "__id__": 1
  1170. },
  1171. "component": "ArtistTrain",
  1172. "handler": "diamondRefresh",
  1173. "customEventData": ""
  1174. },
  1175. {
  1176. "__type__": "cc.Widget",
  1177. "_name": "",
  1178. "_objFlags": 0,
  1179. "node": {
  1180. "__id__": 25
  1181. },
  1182. "_enabled": true,
  1183. "alignMode": 0,
  1184. "_target": null,
  1185. "_alignFlags": 36,
  1186. "_left": 0,
  1187. "_right": 30,
  1188. "_top": 0,
  1189. "_bottom": 72.5,
  1190. "_verticalCenter": 0,
  1191. "_horizontalCenter": 0,
  1192. "_isAbsLeft": true,
  1193. "_isAbsRight": true,
  1194. "_isAbsTop": true,
  1195. "_isAbsBottom": true,
  1196. "_isAbsHorizontalCenter": true,
  1197. "_isAbsVerticalCenter": true,
  1198. "_originalWidth": 0,
  1199. "_originalHeight": 0
  1200. },
  1201. {
  1202. "__type__": "cc.PrefabInfo",
  1203. "root": {
  1204. "__id__": 1
  1205. },
  1206. "asset": {
  1207. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  1208. },
  1209. "fileId": "8eHbQWt1pAEKiH6BUtTyQ5",
  1210. "sync": false
  1211. },
  1212. {
  1213. "__type__": "cc.Node",
  1214. "_name": "list",
  1215. "_objFlags": 0,
  1216. "_parent": {
  1217. "__id__": 6
  1218. },
  1219. "_children": [
  1220. {
  1221. "__id__": 39
  1222. }
  1223. ],
  1224. "_tag": -1,
  1225. "_active": true,
  1226. "_components": [
  1227. {
  1228. "__id__": 46
  1229. },
  1230. {
  1231. "__id__": 47
  1232. }
  1233. ],
  1234. "_prefab": {
  1235. "__id__": 48
  1236. },
  1237. "_id": "",
  1238. "_opacity": 255,
  1239. "_color": {
  1240. "__type__": "cc.Color",
  1241. "r": 184,
  1242. "g": 184,
  1243. "b": 184,
  1244. "a": 255
  1245. },
  1246. "_cascadeOpacityEnabled": true,
  1247. "_anchorPoint": {
  1248. "__type__": "cc.Vec2",
  1249. "x": 0.5,
  1250. "y": 0.5
  1251. },
  1252. "_contentSize": {
  1253. "__type__": "cc.Size",
  1254. "width": 648,
  1255. "height": 645
  1256. },
  1257. "_rotationX": 0,
  1258. "_rotationY": 0,
  1259. "_scaleX": 1,
  1260. "_scaleY": 1,
  1261. "_position": {
  1262. "__type__": "cc.Vec2",
  1263. "x": 0,
  1264. "y": 32.5
  1265. },
  1266. "_skewX": 0,
  1267. "_skewY": 0,
  1268. "_localZOrder": 0,
  1269. "_globalZOrder": 0,
  1270. "_opacityModifyRGB": false,
  1271. "groupIndex": 0
  1272. },
  1273. {
  1274. "__type__": "cc.Node",
  1275. "_name": "view",
  1276. "_objFlags": 0,
  1277. "_parent": {
  1278. "__id__": 38
  1279. },
  1280. "_children": [
  1281. {
  1282. "__id__": 40
  1283. }
  1284. ],
  1285. "_tag": -1,
  1286. "_active": true,
  1287. "_components": [
  1288. {
  1289. "__id__": 43
  1290. },
  1291. {
  1292. "__id__": 44
  1293. }
  1294. ],
  1295. "_prefab": {
  1296. "__id__": 45
  1297. },
  1298. "_id": "",
  1299. "_opacity": 255,
  1300. "_color": {
  1301. "__type__": "cc.Color",
  1302. "r": 255,
  1303. "g": 255,
  1304. "b": 255,
  1305. "a": 255
  1306. },
  1307. "_cascadeOpacityEnabled": true,
  1308. "_anchorPoint": {
  1309. "__type__": "cc.Vec2",
  1310. "x": 0.5,
  1311. "y": 0.5
  1312. },
  1313. "_contentSize": {
  1314. "__type__": "cc.Size",
  1315. "width": 648,
  1316. "height": 645
  1317. },
  1318. "_rotationX": 0,
  1319. "_rotationY": 0,
  1320. "_scaleX": 1,
  1321. "_scaleY": 1,
  1322. "_position": {
  1323. "__type__": "cc.Vec2",
  1324. "x": 0,
  1325. "y": 0
  1326. },
  1327. "_skewX": 0,
  1328. "_skewY": 0,
  1329. "_localZOrder": 0,
  1330. "_globalZOrder": 0,
  1331. "_opacityModifyRGB": false,
  1332. "groupIndex": 0
  1333. },
  1334. {
  1335. "__type__": "cc.Node",
  1336. "_name": "content",
  1337. "_objFlags": 0,
  1338. "_parent": {
  1339. "__id__": 39
  1340. },
  1341. "_children": [],
  1342. "_tag": -1,
  1343. "_active": true,
  1344. "_components": [
  1345. {
  1346. "__id__": 41
  1347. }
  1348. ],
  1349. "_prefab": {
  1350. "__id__": 42
  1351. },
  1352. "_id": "",
  1353. "_opacity": 255,
  1354. "_color": {
  1355. "__type__": "cc.Color",
  1356. "r": 255,
  1357. "g": 255,
  1358. "b": 255,
  1359. "a": 255
  1360. },
  1361. "_cascadeOpacityEnabled": true,
  1362. "_anchorPoint": {
  1363. "__type__": "cc.Vec2",
  1364. "x": 0.5,
  1365. "y": 1
  1366. },
  1367. "_contentSize": {
  1368. "__type__": "cc.Size",
  1369. "width": 650,
  1370. "height": 60
  1371. },
  1372. "_rotationX": 0,
  1373. "_rotationY": 0,
  1374. "_scaleX": 1,
  1375. "_scaleY": 1,
  1376. "_position": {
  1377. "__type__": "cc.Vec2",
  1378. "x": 0,
  1379. "y": 339
  1380. },
  1381. "_skewX": 0,
  1382. "_skewY": 0,
  1383. "_localZOrder": 0,
  1384. "_globalZOrder": 0,
  1385. "_opacityModifyRGB": false,
  1386. "groupIndex": 0
  1387. },
  1388. {
  1389. "__type__": "cc.Layout",
  1390. "_name": "",
  1391. "_objFlags": 0,
  1392. "node": {
  1393. "__id__": 40
  1394. },
  1395. "_enabled": true,
  1396. "_layoutSize": {
  1397. "__type__": "cc.Size",
  1398. "width": 650,
  1399. "height": 60
  1400. },
  1401. "_resize": 1,
  1402. "_N$layoutType": 2,
  1403. "_N$padding": 0,
  1404. "_N$cellSize": {
  1405. "__type__": "cc.Size",
  1406. "width": 40,
  1407. "height": 40
  1408. },
  1409. "_N$startAxis": 0,
  1410. "_N$paddingLeft": 0,
  1411. "_N$paddingRight": 0,
  1412. "_N$paddingTop": 0,
  1413. "_N$paddingBottom": 0,
  1414. "_N$spacingX": 0,
  1415. "_N$spacingY": 30,
  1416. "_N$verticalDirection": 1,
  1417. "_N$horizontalDirection": 0
  1418. },
  1419. {
  1420. "__type__": "cc.PrefabInfo",
  1421. "root": {
  1422. "__id__": 1
  1423. },
  1424. "asset": {
  1425. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  1426. },
  1427. "fileId": "a0320qXbBGQLBqdVru4WfF",
  1428. "sync": false
  1429. },
  1430. {
  1431. "__type__": "cc.Mask",
  1432. "_name": "",
  1433. "_objFlags": 0,
  1434. "node": {
  1435. "__id__": 39
  1436. },
  1437. "_enabled": true,
  1438. "_type": 0,
  1439. "_segements": 64,
  1440. "_N$spriteFrame": null,
  1441. "_N$alphaThreshold": 1,
  1442. "_N$inverted": false
  1443. },
  1444. {
  1445. "__type__": "cc.Widget",
  1446. "_name": "",
  1447. "_objFlags": 0,
  1448. "node": {
  1449. "__id__": 39
  1450. },
  1451. "_enabled": true,
  1452. "alignMode": 0,
  1453. "_target": null,
  1454. "_alignFlags": 45,
  1455. "_left": 0,
  1456. "_right": 0,
  1457. "_top": 0,
  1458. "_bottom": 0,
  1459. "_verticalCenter": 0,
  1460. "_horizontalCenter": 0,
  1461. "_isAbsLeft": true,
  1462. "_isAbsRight": true,
  1463. "_isAbsTop": true,
  1464. "_isAbsBottom": true,
  1465. "_isAbsHorizontalCenter": true,
  1466. "_isAbsVerticalCenter": true,
  1467. "_originalWidth": 240,
  1468. "_originalHeight": 250
  1469. },
  1470. {
  1471. "__type__": "cc.PrefabInfo",
  1472. "root": {
  1473. "__id__": 1
  1474. },
  1475. "asset": {
  1476. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  1477. },
  1478. "fileId": "91kHss3xpNUaDkxW1nFwzS",
  1479. "sync": false
  1480. },
  1481. {
  1482. "__type__": "cc.ScrollView",
  1483. "_name": "",
  1484. "_objFlags": 0,
  1485. "node": {
  1486. "__id__": 38
  1487. },
  1488. "_enabled": true,
  1489. "content": {
  1490. "__id__": 40
  1491. },
  1492. "horizontal": false,
  1493. "vertical": true,
  1494. "inertia": true,
  1495. "brake": 0.75,
  1496. "elastic": true,
  1497. "bounceDuration": 0.23,
  1498. "scrollEvents": [],
  1499. "cancelInnerEvents": true,
  1500. "_N$horizontalScrollBar": null,
  1501. "_N$verticalScrollBar": null
  1502. },
  1503. {
  1504. "__type__": "cc.Widget",
  1505. "_name": "",
  1506. "_objFlags": 0,
  1507. "node": {
  1508. "__id__": 38
  1509. },
  1510. "_enabled": true,
  1511. "alignMode": 0,
  1512. "_target": null,
  1513. "_alignFlags": 45,
  1514. "_left": 36,
  1515. "_right": 36,
  1516. "_top": 85,
  1517. "_bottom": 150,
  1518. "_verticalCenter": 0,
  1519. "_horizontalCenter": 0,
  1520. "_isAbsLeft": true,
  1521. "_isAbsRight": true,
  1522. "_isAbsTop": true,
  1523. "_isAbsBottom": true,
  1524. "_isAbsHorizontalCenter": true,
  1525. "_isAbsVerticalCenter": true,
  1526. "_originalWidth": 240,
  1527. "_originalHeight": 250
  1528. },
  1529. {
  1530. "__type__": "cc.PrefabInfo",
  1531. "root": {
  1532. "__id__": 1
  1533. },
  1534. "asset": {
  1535. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  1536. },
  1537. "fileId": "6dE13g5z9Nf6SgnoxDhvQ6",
  1538. "sync": false
  1539. },
  1540. {
  1541. "__type__": "cc.Node",
  1542. "_name": "tipLabel",
  1543. "_objFlags": 0,
  1544. "_parent": {
  1545. "__id__": 6
  1546. },
  1547. "_children": [],
  1548. "_tag": -1,
  1549. "_active": true,
  1550. "_components": [
  1551. {
  1552. "__id__": 50
  1553. },
  1554. {
  1555. "__id__": 51
  1556. },
  1557. {
  1558. "__id__": 52
  1559. }
  1560. ],
  1561. "_prefab": {
  1562. "__id__": 53
  1563. },
  1564. "_id": "",
  1565. "_opacity": 255,
  1566. "_color": {
  1567. "__type__": "cc.Color",
  1568. "r": 79,
  1569. "g": 39,
  1570. "b": 17,
  1571. "a": 255
  1572. },
  1573. "_cascadeOpacityEnabled": true,
  1574. "_anchorPoint": {
  1575. "__type__": "cc.Vec2",
  1576. "x": 0.5,
  1577. "y": 0.5
  1578. },
  1579. "_contentSize": {
  1580. "__type__": "cc.Size",
  1581. "width": 58,
  1582. "height": 18
  1583. },
  1584. "_rotationX": 0,
  1585. "_rotationY": 0,
  1586. "_scaleX": 1,
  1587. "_scaleY": 1,
  1588. "_position": {
  1589. "__type__": "cc.Vec2",
  1590. "x": 286,
  1591. "y": -391
  1592. },
  1593. "_skewX": 0,
  1594. "_skewY": 0,
  1595. "_localZOrder": 0,
  1596. "_globalZOrder": 0,
  1597. "_opacityModifyRGB": false,
  1598. "groupIndex": 0
  1599. },
  1600. {
  1601. "__type__": "cc.Label",
  1602. "_name": "",
  1603. "_objFlags": 0,
  1604. "node": {
  1605. "__id__": 49
  1606. },
  1607. "_enabled": true,
  1608. "_useOriginalSize": false,
  1609. "_actualFontSize": 18,
  1610. "_fontSize": 18,
  1611. "_lineHeight": 18,
  1612. "_enableWrapText": true,
  1613. "_N$file": null,
  1614. "_isSystemFontUsed": true,
  1615. "_spacingX": 0,
  1616. "_N$string": "后刷新",
  1617. "_N$horizontalAlign": 1,
  1618. "_N$verticalAlign": 1,
  1619. "_N$fontFamily": "Arial",
  1620. "_N$overflow": 0
  1621. },
  1622. {
  1623. "__type__": "cc.LabelOutline",
  1624. "_name": "",
  1625. "_objFlags": 0,
  1626. "node": {
  1627. "__id__": 49
  1628. },
  1629. "_enabled": true,
  1630. "_color": {
  1631. "__type__": "cc.Color",
  1632. "r": 255,
  1633. "g": 255,
  1634. "b": 255,
  1635. "a": 255
  1636. },
  1637. "_width": 2
  1638. },
  1639. {
  1640. "__type__": "cc.Widget",
  1641. "_name": "",
  1642. "_objFlags": 0,
  1643. "node": {
  1644. "__id__": 49
  1645. },
  1646. "_enabled": true,
  1647. "alignMode": 0,
  1648. "_target": null,
  1649. "_alignFlags": 36,
  1650. "_left": 0,
  1651. "_right": 45,
  1652. "_top": 0,
  1653. "_bottom": 40,
  1654. "_verticalCenter": 0,
  1655. "_horizontalCenter": 0,
  1656. "_isAbsLeft": true,
  1657. "_isAbsRight": true,
  1658. "_isAbsTop": true,
  1659. "_isAbsBottom": true,
  1660. "_isAbsHorizontalCenter": true,
  1661. "_isAbsVerticalCenter": true,
  1662. "_originalWidth": 0,
  1663. "_originalHeight": 0
  1664. },
  1665. {
  1666. "__type__": "cc.PrefabInfo",
  1667. "root": {
  1668. "__id__": 1
  1669. },
  1670. "asset": {
  1671. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  1672. },
  1673. "fileId": "fbYNAx/Q9FsYjI20hwxd5Q",
  1674. "sync": false
  1675. },
  1676. {
  1677. "__type__": "cc.Node",
  1678. "_name": "countDownLabel",
  1679. "_objFlags": 0,
  1680. "_parent": {
  1681. "__id__": 6
  1682. },
  1683. "_children": [],
  1684. "_tag": -1,
  1685. "_active": true,
  1686. "_components": [
  1687. {
  1688. "__id__": 55
  1689. },
  1690. {
  1691. "__id__": 56
  1692. },
  1693. {
  1694. "__id__": 57
  1695. }
  1696. ],
  1697. "_prefab": {
  1698. "__id__": 58
  1699. },
  1700. "_id": "",
  1701. "_opacity": 255,
  1702. "_color": {
  1703. "__type__": "cc.Color",
  1704. "r": 238,
  1705. "g": 20,
  1706. "b": 20,
  1707. "a": 255
  1708. },
  1709. "_cascadeOpacityEnabled": true,
  1710. "_anchorPoint": {
  1711. "__type__": "cc.Vec2",
  1712. "x": 1,
  1713. "y": 0.5
  1714. },
  1715. "_contentSize": {
  1716. "__type__": "cc.Size",
  1717. "width": 74,
  1718. "height": 18
  1719. },
  1720. "_rotationX": 0,
  1721. "_rotationY": 0,
  1722. "_scaleX": 1,
  1723. "_scaleY": 1,
  1724. "_position": {
  1725. "__type__": "cc.Vec2",
  1726. "x": 255,
  1727. "y": -391
  1728. },
  1729. "_skewX": 0,
  1730. "_skewY": 0,
  1731. "_localZOrder": 0,
  1732. "_globalZOrder": 0,
  1733. "_opacityModifyRGB": false,
  1734. "groupIndex": 0
  1735. },
  1736. {
  1737. "__type__": "cc.Label",
  1738. "_name": "",
  1739. "_objFlags": 0,
  1740. "node": {
  1741. "__id__": 54
  1742. },
  1743. "_enabled": true,
  1744. "_useOriginalSize": false,
  1745. "_actualFontSize": 18,
  1746. "_fontSize": 18,
  1747. "_lineHeight": 18,
  1748. "_enableWrapText": true,
  1749. "_N$file": null,
  1750. "_isSystemFontUsed": true,
  1751. "_spacingX": 0,
  1752. "_N$string": "02:45:00",
  1753. "_N$horizontalAlign": 2,
  1754. "_N$verticalAlign": 1,
  1755. "_N$fontFamily": "Arial",
  1756. "_N$overflow": 0
  1757. },
  1758. {
  1759. "__type__": "cc.Widget",
  1760. "_name": "",
  1761. "_objFlags": 0,
  1762. "node": {
  1763. "__id__": 54
  1764. },
  1765. "_enabled": true,
  1766. "alignMode": 0,
  1767. "_target": null,
  1768. "_alignFlags": 36,
  1769. "_left": 0,
  1770. "_right": 105,
  1771. "_top": 0,
  1772. "_bottom": 40,
  1773. "_verticalCenter": 0,
  1774. "_horizontalCenter": 0,
  1775. "_isAbsLeft": true,
  1776. "_isAbsRight": true,
  1777. "_isAbsTop": true,
  1778. "_isAbsBottom": true,
  1779. "_isAbsHorizontalCenter": true,
  1780. "_isAbsVerticalCenter": true,
  1781. "_originalWidth": 0,
  1782. "_originalHeight": 0
  1783. },
  1784. {
  1785. "__type__": "cc.LabelOutline",
  1786. "_name": "",
  1787. "_objFlags": 0,
  1788. "node": {
  1789. "__id__": 54
  1790. },
  1791. "_enabled": true,
  1792. "_color": {
  1793. "__type__": "cc.Color",
  1794. "r": 255,
  1795. "g": 255,
  1796. "b": 255,
  1797. "a": 255
  1798. },
  1799. "_width": 2
  1800. },
  1801. {
  1802. "__type__": "cc.PrefabInfo",
  1803. "root": {
  1804. "__id__": 1
  1805. },
  1806. "asset": {
  1807. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  1808. },
  1809. "fileId": "dc444RUHxH94dfFKA/PPhD",
  1810. "sync": false
  1811. },
  1812. {
  1813. "__type__": "cc.Sprite",
  1814. "_name": "",
  1815. "_objFlags": 0,
  1816. "node": {
  1817. "__id__": 6
  1818. },
  1819. "_enabled": true,
  1820. "_spriteFrame": {
  1821. "__uuid__": "f77c177d-60ed-4171-a329-3aeeab60b13d"
  1822. },
  1823. "_type": 1,
  1824. "_sizeMode": 0,
  1825. "_fillType": 0,
  1826. "_fillCenter": {
  1827. "__type__": "cc.Vec2",
  1828. "x": 0,
  1829. "y": 0
  1830. },
  1831. "_fillStart": 0,
  1832. "_fillRange": 0,
  1833. "_isTrimmedMode": true,
  1834. "_srcBlendFactor": 770,
  1835. "_dstBlendFactor": 771,
  1836. "_atlas": null
  1837. },
  1838. {
  1839. "__type__": "cc.PrefabInfo",
  1840. "root": {
  1841. "__id__": 1
  1842. },
  1843. "asset": {
  1844. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  1845. },
  1846. "fileId": "f8fvVyjIRIhpxTavWGtZXv",
  1847. "sync": false
  1848. },
  1849. {
  1850. "__type__": "e9107zfOZFPw4vo9mJYM0I8",
  1851. "_name": "",
  1852. "_objFlags": 0,
  1853. "node": {
  1854. "__id__": 1
  1855. },
  1856. "_enabled": true,
  1857. "content": {
  1858. "__id__": 6
  1859. },
  1860. "scrollView": {
  1861. "__id__": 46
  1862. },
  1863. "countDownLabel": {
  1864. "__id__": 55
  1865. },
  1866. "refreshLabel": {
  1867. "__id__": 55
  1868. },
  1869. "tipLabel": {
  1870. "__id__": 50
  1871. },
  1872. "refreshBtn": {
  1873. "__id__": 34
  1874. }
  1875. },
  1876. {
  1877. "__type__": "cc.PrefabInfo",
  1878. "root": {
  1879. "__id__": 1
  1880. },
  1881. "asset": {
  1882. "__uuid__": "83d0d9d9-25c1-4945-96cb-f520245c923e"
  1883. },
  1884. "fileId": "42YOWb0TZDU7XsyG+iY7VU",
  1885. "sync": false
  1886. }
  1887. ]