artist_train_item.prefab 50 KB

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