change_job_succes.prefab 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466
  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": "change_job_succes",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 5
  24. }
  25. ],
  26. "_tag": -1,
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 80
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 81
  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": 0,
  54. "height": 0
  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. "_prefab": {
  88. "__id__": 4
  89. },
  90. "_id": "",
  91. "_opacity": 100,
  92. "_color": {
  93. "__type__": "cc.Color",
  94. "r": 0,
  95. "g": 0,
  96. "b": 0,
  97. "a": 255
  98. },
  99. "_cascadeOpacityEnabled": true,
  100. "_anchorPoint": {
  101. "__type__": "cc.Vec2",
  102. "x": 0.5,
  103. "y": 0.5
  104. },
  105. "_contentSize": {
  106. "__type__": "cc.Size",
  107. "width": 750,
  108. "height": 1700
  109. },
  110. "_rotationX": 0,
  111. "_rotationY": 0,
  112. "_scaleX": 1,
  113. "_scaleY": 1,
  114. "_position": {
  115. "__type__": "cc.Vec2",
  116. "x": 0,
  117. "y": 0
  118. },
  119. "_skewX": 0,
  120. "_skewY": 0,
  121. "_localZOrder": 0,
  122. "_globalZOrder": 0,
  123. "_opacityModifyRGB": false,
  124. "groupIndex": 0
  125. },
  126. {
  127. "__type__": "cc.Sprite",
  128. "_name": "",
  129. "_objFlags": 0,
  130. "node": {
  131. "__id__": 2
  132. },
  133. "_enabled": true,
  134. "_spriteFrame": {
  135. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  136. },
  137. "_type": 0,
  138. "_sizeMode": 0,
  139. "_fillType": 0,
  140. "_fillCenter": {
  141. "__type__": "cc.Vec2",
  142. "x": 0,
  143. "y": 0
  144. },
  145. "_fillStart": 0,
  146. "_fillRange": 0,
  147. "_isTrimmedMode": true,
  148. "_srcBlendFactor": 770,
  149. "_dstBlendFactor": 771,
  150. "_atlas": null
  151. },
  152. {
  153. "__type__": "cc.PrefabInfo",
  154. "root": {
  155. "__id__": 1
  156. },
  157. "asset": {
  158. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  159. },
  160. "fileId": "eaq2lc5ylNeZ33Zrzym/YD",
  161. "sync": false
  162. },
  163. {
  164. "__type__": "cc.Node",
  165. "_name": "content",
  166. "_objFlags": 0,
  167. "_parent": {
  168. "__id__": 1
  169. },
  170. "_children": [
  171. {
  172. "__id__": 6
  173. },
  174. {
  175. "__id__": 9
  176. },
  177. {
  178. "__id__": 20
  179. },
  180. {
  181. "__id__": 27
  182. },
  183. {
  184. "__id__": 50
  185. }
  186. ],
  187. "_tag": -1,
  188. "_active": true,
  189. "_components": [],
  190. "_prefab": {
  191. "__id__": 79
  192. },
  193. "_id": "",
  194. "_opacity": 255,
  195. "_color": {
  196. "__type__": "cc.Color",
  197. "r": 255,
  198. "g": 255,
  199. "b": 255,
  200. "a": 255
  201. },
  202. "_cascadeOpacityEnabled": true,
  203. "_anchorPoint": {
  204. "__type__": "cc.Vec2",
  205. "x": 0.5,
  206. "y": 0.5
  207. },
  208. "_contentSize": {
  209. "__type__": "cc.Size",
  210. "width": 0,
  211. "height": 0
  212. },
  213. "_rotationX": 0,
  214. "_rotationY": 0,
  215. "_scaleX": 1,
  216. "_scaleY": 1,
  217. "_position": {
  218. "__type__": "cc.Vec2",
  219. "x": 0,
  220. "y": 0
  221. },
  222. "_skewX": 0,
  223. "_skewY": 0,
  224. "_localZOrder": 0,
  225. "_globalZOrder": 0,
  226. "_opacityModifyRGB": false,
  227. "groupIndex": 0
  228. },
  229. {
  230. "__type__": "cc.Node",
  231. "_name": "alertBackground",
  232. "_objFlags": 0,
  233. "_parent": {
  234. "__id__": 5
  235. },
  236. "_children": [],
  237. "_tag": -1,
  238. "_active": true,
  239. "_components": [
  240. {
  241. "__id__": 7
  242. }
  243. ],
  244. "_prefab": {
  245. "__id__": 8
  246. },
  247. "_id": "",
  248. "_opacity": 255,
  249. "_color": {
  250. "__type__": "cc.Color",
  251. "r": 255,
  252. "g": 255,
  253. "b": 255,
  254. "a": 255
  255. },
  256. "_cascadeOpacityEnabled": true,
  257. "_anchorPoint": {
  258. "__type__": "cc.Vec2",
  259. "x": 0.5,
  260. "y": 0.5
  261. },
  262. "_contentSize": {
  263. "__type__": "cc.Size",
  264. "width": 550,
  265. "height": 450
  266. },
  267. "_rotationX": 0,
  268. "_rotationY": 0,
  269. "_scaleX": 1,
  270. "_scaleY": 1,
  271. "_position": {
  272. "__type__": "cc.Vec2",
  273. "x": 0,
  274. "y": 0
  275. },
  276. "_skewX": 0,
  277. "_skewY": 0,
  278. "_localZOrder": 0,
  279. "_globalZOrder": 0,
  280. "_opacityModifyRGB": false,
  281. "groupIndex": 0
  282. },
  283. {
  284. "__type__": "cc.Sprite",
  285. "_name": "",
  286. "_objFlags": 0,
  287. "node": {
  288. "__id__": 6
  289. },
  290. "_enabled": true,
  291. "_spriteFrame": {
  292. "__uuid__": "9cf6fdf0-a8fc-4068-a5d1-7ae6e16b950c"
  293. },
  294. "_type": 1,
  295. "_sizeMode": 0,
  296. "_fillType": 0,
  297. "_fillCenter": {
  298. "__type__": "cc.Vec2",
  299. "x": 0,
  300. "y": 0
  301. },
  302. "_fillStart": 0,
  303. "_fillRange": 0,
  304. "_isTrimmedMode": true,
  305. "_srcBlendFactor": 770,
  306. "_dstBlendFactor": 771,
  307. "_atlas": null
  308. },
  309. {
  310. "__type__": "cc.PrefabInfo",
  311. "root": {
  312. "__id__": 1
  313. },
  314. "asset": {
  315. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  316. },
  317. "fileId": "d33HtC/OdH6K7/59F2g7i7",
  318. "sync": false
  319. },
  320. {
  321. "__type__": "cc.Node",
  322. "_name": "title",
  323. "_objFlags": 0,
  324. "_parent": {
  325. "__id__": 5
  326. },
  327. "_children": [
  328. {
  329. "__id__": 10
  330. },
  331. {
  332. "__id__": 13
  333. },
  334. {
  335. "__id__": 16
  336. }
  337. ],
  338. "_tag": -1,
  339. "_active": true,
  340. "_components": [],
  341. "_prefab": {
  342. "__id__": 19
  343. },
  344. "_id": "",
  345. "_opacity": 255,
  346. "_color": {
  347. "__type__": "cc.Color",
  348. "r": 255,
  349. "g": 255,
  350. "b": 255,
  351. "a": 255
  352. },
  353. "_cascadeOpacityEnabled": true,
  354. "_anchorPoint": {
  355. "__type__": "cc.Vec2",
  356. "x": 0.5,
  357. "y": 0.5
  358. },
  359. "_contentSize": {
  360. "__type__": "cc.Size",
  361. "width": 0,
  362. "height": 0
  363. },
  364. "_rotationX": 0,
  365. "_rotationY": 0,
  366. "_scaleX": 1,
  367. "_scaleY": 1,
  368. "_position": {
  369. "__type__": "cc.Vec2",
  370. "x": 0,
  371. "y": 231
  372. },
  373. "_skewX": 0,
  374. "_skewY": 0,
  375. "_localZOrder": 0,
  376. "_globalZOrder": 0,
  377. "_opacityModifyRGB": false,
  378. "groupIndex": 0
  379. },
  380. {
  381. "__type__": "cc.Node",
  382. "_name": "colour_bar",
  383. "_objFlags": 0,
  384. "_parent": {
  385. "__id__": 9
  386. },
  387. "_children": [],
  388. "_tag": -1,
  389. "_active": true,
  390. "_components": [
  391. {
  392. "__id__": 11
  393. }
  394. ],
  395. "_prefab": {
  396. "__id__": 12
  397. },
  398. "_id": "",
  399. "_opacity": 255,
  400. "_color": {
  401. "__type__": "cc.Color",
  402. "r": 255,
  403. "g": 255,
  404. "b": 255,
  405. "a": 255
  406. },
  407. "_cascadeOpacityEnabled": true,
  408. "_anchorPoint": {
  409. "__type__": "cc.Vec2",
  410. "x": 0.5,
  411. "y": 0.5
  412. },
  413. "_contentSize": {
  414. "__type__": "cc.Size",
  415. "width": 212,
  416. "height": 120
  417. },
  418. "_rotationX": 0,
  419. "_rotationY": 0,
  420. "_scaleX": 1,
  421. "_scaleY": 1,
  422. "_position": {
  423. "__type__": "cc.Vec2",
  424. "x": -106,
  425. "y": 0
  426. },
  427. "_skewX": 0,
  428. "_skewY": 0,
  429. "_localZOrder": 0,
  430. "_globalZOrder": 0,
  431. "_opacityModifyRGB": false,
  432. "groupIndex": 0
  433. },
  434. {
  435. "__type__": "cc.Sprite",
  436. "_name": "",
  437. "_objFlags": 0,
  438. "node": {
  439. "__id__": 10
  440. },
  441. "_enabled": true,
  442. "_spriteFrame": {
  443. "__uuid__": "bcf51e55-82c5-4d2a-be8a-81da8c24249d"
  444. },
  445. "_type": 0,
  446. "_sizeMode": 1,
  447. "_fillType": 0,
  448. "_fillCenter": {
  449. "__type__": "cc.Vec2",
  450. "x": 0,
  451. "y": 0
  452. },
  453. "_fillStart": 0,
  454. "_fillRange": 0,
  455. "_isTrimmedMode": true,
  456. "_srcBlendFactor": 770,
  457. "_dstBlendFactor": 771,
  458. "_atlas": null
  459. },
  460. {
  461. "__type__": "cc.PrefabInfo",
  462. "root": {
  463. "__id__": 1
  464. },
  465. "asset": {
  466. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  467. },
  468. "fileId": "f9YjGXca9Izr2kX+Xw/KWO",
  469. "sync": false
  470. },
  471. {
  472. "__type__": "cc.Node",
  473. "_name": "colour_bar",
  474. "_objFlags": 0,
  475. "_parent": {
  476. "__id__": 9
  477. },
  478. "_children": [],
  479. "_tag": -1,
  480. "_active": true,
  481. "_components": [
  482. {
  483. "__id__": 14
  484. }
  485. ],
  486. "_prefab": {
  487. "__id__": 15
  488. },
  489. "_id": "",
  490. "_opacity": 255,
  491. "_color": {
  492. "__type__": "cc.Color",
  493. "r": 255,
  494. "g": 255,
  495. "b": 255,
  496. "a": 255
  497. },
  498. "_cascadeOpacityEnabled": true,
  499. "_anchorPoint": {
  500. "__type__": "cc.Vec2",
  501. "x": 0.5,
  502. "y": 0.5
  503. },
  504. "_contentSize": {
  505. "__type__": "cc.Size",
  506. "width": -212,
  507. "height": 120
  508. },
  509. "_rotationX": 0,
  510. "_rotationY": 0,
  511. "_scaleX": 1,
  512. "_scaleY": 1,
  513. "_position": {
  514. "__type__": "cc.Vec2",
  515. "x": 106,
  516. "y": 0
  517. },
  518. "_skewX": 0,
  519. "_skewY": 0,
  520. "_localZOrder": 0,
  521. "_globalZOrder": 0,
  522. "_opacityModifyRGB": false,
  523. "groupIndex": 0
  524. },
  525. {
  526. "__type__": "cc.Sprite",
  527. "_name": "",
  528. "_objFlags": 0,
  529. "node": {
  530. "__id__": 13
  531. },
  532. "_enabled": true,
  533. "_spriteFrame": {
  534. "__uuid__": "bcf51e55-82c5-4d2a-be8a-81da8c24249d"
  535. },
  536. "_type": 0,
  537. "_sizeMode": 0,
  538. "_fillType": 0,
  539. "_fillCenter": {
  540. "__type__": "cc.Vec2",
  541. "x": 0,
  542. "y": 0
  543. },
  544. "_fillStart": 0,
  545. "_fillRange": 0,
  546. "_isTrimmedMode": true,
  547. "_srcBlendFactor": 770,
  548. "_dstBlendFactor": 771,
  549. "_atlas": null
  550. },
  551. {
  552. "__type__": "cc.PrefabInfo",
  553. "root": {
  554. "__id__": 1
  555. },
  556. "asset": {
  557. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  558. },
  559. "fileId": "83/b2ZNfdH3YYq5at/z5pO",
  560. "sync": false
  561. },
  562. {
  563. "__type__": "cc.Node",
  564. "_name": "text",
  565. "_objFlags": 0,
  566. "_parent": {
  567. "__id__": 9
  568. },
  569. "_children": [],
  570. "_tag": -1,
  571. "_active": true,
  572. "_components": [
  573. {
  574. "__id__": 17
  575. }
  576. ],
  577. "_prefab": {
  578. "__id__": 18
  579. },
  580. "_id": "",
  581. "_opacity": 255,
  582. "_color": {
  583. "__type__": "cc.Color",
  584. "r": 255,
  585. "g": 255,
  586. "b": 255,
  587. "a": 255
  588. },
  589. "_cascadeOpacityEnabled": true,
  590. "_anchorPoint": {
  591. "__type__": "cc.Vec2",
  592. "x": 0.5,
  593. "y": 0.5
  594. },
  595. "_contentSize": {
  596. "__type__": "cc.Size",
  597. "width": 165,
  598. "height": 50
  599. },
  600. "_rotationX": 0,
  601. "_rotationY": 0,
  602. "_scaleX": 1,
  603. "_scaleY": 1,
  604. "_position": {
  605. "__type__": "cc.Vec2",
  606. "x": 0,
  607. "y": 14.7
  608. },
  609. "_skewX": 0,
  610. "_skewY": 0,
  611. "_localZOrder": 0,
  612. "_globalZOrder": 0,
  613. "_opacityModifyRGB": false,
  614. "groupIndex": 0
  615. },
  616. {
  617. "__type__": "cc.RichText",
  618. "_name": "",
  619. "_objFlags": 0,
  620. "node": {
  621. "__id__": 16
  622. },
  623. "_enabled": true,
  624. "_N$string": "<outline color=#d74844><b>转职成功</b></outline>",
  625. "_N$horizontalAlign": 0,
  626. "_N$fontSize": 40,
  627. "_N$font": null,
  628. "_N$maxWidth": 0,
  629. "_N$lineHeight": 50,
  630. "_N$imageAtlas": null,
  631. "_N$handleTouchEvent": true
  632. },
  633. {
  634. "__type__": "cc.PrefabInfo",
  635. "root": {
  636. "__id__": 1
  637. },
  638. "asset": {
  639. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  640. },
  641. "fileId": "0aECM7il1LKppkEM4ZHFal",
  642. "sync": false
  643. },
  644. {
  645. "__type__": "cc.PrefabInfo",
  646. "root": {
  647. "__id__": 1
  648. },
  649. "asset": {
  650. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  651. },
  652. "fileId": "e8Qf1nD9tFAa8sM2bmtvKm",
  653. "sync": false
  654. },
  655. {
  656. "__type__": "cc.Node",
  657. "_name": "confirm",
  658. "_objFlags": 0,
  659. "_parent": {
  660. "__id__": 5
  661. },
  662. "_children": [
  663. {
  664. "__id__": 21
  665. }
  666. ],
  667. "_tag": -1,
  668. "_active": true,
  669. "_components": [
  670. {
  671. "__id__": 24
  672. },
  673. {
  674. "__id__": 25
  675. }
  676. ],
  677. "_prefab": {
  678. "__id__": 26
  679. },
  680. "_id": "",
  681. "_opacity": 255,
  682. "_color": {
  683. "__type__": "cc.Color",
  684. "r": 255,
  685. "g": 255,
  686. "b": 255,
  687. "a": 255
  688. },
  689. "_cascadeOpacityEnabled": true,
  690. "_anchorPoint": {
  691. "__type__": "cc.Vec2",
  692. "x": 0.5,
  693. "y": 0.5
  694. },
  695. "_contentSize": {
  696. "__type__": "cc.Size",
  697. "width": 236,
  698. "height": 80
  699. },
  700. "_rotationX": 0,
  701. "_rotationY": 0,
  702. "_scaleX": 1,
  703. "_scaleY": 1,
  704. "_position": {
  705. "__type__": "cc.Vec2",
  706. "x": 0,
  707. "y": -140
  708. },
  709. "_skewX": 0,
  710. "_skewY": 0,
  711. "_localZOrder": 0,
  712. "_globalZOrder": 0,
  713. "_opacityModifyRGB": false,
  714. "groupIndex": 0
  715. },
  716. {
  717. "__type__": "cc.Node",
  718. "_name": "New RichText",
  719. "_objFlags": 0,
  720. "_parent": {
  721. "__id__": 20
  722. },
  723. "_children": [],
  724. "_tag": -1,
  725. "_active": true,
  726. "_components": [
  727. {
  728. "__id__": 22
  729. }
  730. ],
  731. "_prefab": {
  732. "__id__": 23
  733. },
  734. "_id": "",
  735. "_opacity": 255,
  736. "_color": {
  737. "__type__": "cc.Color",
  738. "r": 255,
  739. "g": 255,
  740. "b": 255,
  741. "a": 255
  742. },
  743. "_cascadeOpacityEnabled": true,
  744. "_anchorPoint": {
  745. "__type__": "cc.Vec2",
  746. "x": 0.5,
  747. "y": 0.5
  748. },
  749. "_contentSize": {
  750. "__type__": "cc.Size",
  751. "width": 63,
  752. "height": 40
  753. },
  754. "_rotationX": 0,
  755. "_rotationY": 0,
  756. "_scaleX": 1,
  757. "_scaleY": 1,
  758. "_position": {
  759. "__type__": "cc.Vec2",
  760. "x": 0,
  761. "y": 0
  762. },
  763. "_skewX": 0,
  764. "_skewY": 0,
  765. "_localZOrder": 0,
  766. "_globalZOrder": 0,
  767. "_opacityModifyRGB": false,
  768. "groupIndex": 0
  769. },
  770. {
  771. "__type__": "cc.RichText",
  772. "_name": "",
  773. "_objFlags": 0,
  774. "node": {
  775. "__id__": 21
  776. },
  777. "_enabled": true,
  778. "_N$string": "<outline color=#690802><b>确定</b></c>",
  779. "_N$horizontalAlign": 0,
  780. "_N$fontSize": 30,
  781. "_N$font": null,
  782. "_N$maxWidth": 0,
  783. "_N$lineHeight": 40,
  784. "_N$imageAtlas": null,
  785. "_N$handleTouchEvent": true
  786. },
  787. {
  788. "__type__": "cc.PrefabInfo",
  789. "root": {
  790. "__id__": 1
  791. },
  792. "asset": {
  793. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  794. },
  795. "fileId": "c33V9zyyBEuL2cvtu2VM5h",
  796. "sync": false
  797. },
  798. {
  799. "__type__": "cc.Sprite",
  800. "_name": "",
  801. "_objFlags": 0,
  802. "node": {
  803. "__id__": 20
  804. },
  805. "_enabled": true,
  806. "_spriteFrame": {
  807. "__uuid__": "a2a70c2c-f3a8-4abc-a113-6876b4f0a6f6"
  808. },
  809. "_type": 0,
  810. "_sizeMode": 1,
  811. "_fillType": 0,
  812. "_fillCenter": {
  813. "__type__": "cc.Vec2",
  814. "x": 0,
  815. "y": 0
  816. },
  817. "_fillStart": 0,
  818. "_fillRange": 0,
  819. "_isTrimmedMode": true,
  820. "_srcBlendFactor": 770,
  821. "_dstBlendFactor": 771,
  822. "_atlas": null
  823. },
  824. {
  825. "__type__": "9f4d2FyZDFEWaJD6/7b9oSz",
  826. "_name": "",
  827. "_objFlags": 0,
  828. "node": {
  829. "__id__": 20
  830. },
  831. "_enabled": true
  832. },
  833. {
  834. "__type__": "cc.PrefabInfo",
  835. "root": {
  836. "__id__": 1
  837. },
  838. "asset": {
  839. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  840. },
  841. "fileId": "80zKFsENFHNqGKHvrV8gaM",
  842. "sync": false
  843. },
  844. {
  845. "__type__": "cc.Node",
  846. "_name": "change_one",
  847. "_objFlags": 0,
  848. "_parent": {
  849. "__id__": 5
  850. },
  851. "_children": [
  852. {
  853. "__id__": 28
  854. },
  855. {
  856. "__id__": 31
  857. },
  858. {
  859. "__id__": 34
  860. },
  861. {
  862. "__id__": 37
  863. },
  864. {
  865. "__id__": 40
  866. },
  867. {
  868. "__id__": 43
  869. },
  870. {
  871. "__id__": 46
  872. }
  873. ],
  874. "_tag": -1,
  875. "_active": true,
  876. "_components": [],
  877. "_prefab": {
  878. "__id__": 49
  879. },
  880. "_id": "",
  881. "_opacity": 255,
  882. "_color": {
  883. "__type__": "cc.Color",
  884. "r": 0,
  885. "g": 0,
  886. "b": 0,
  887. "a": 255
  888. },
  889. "_cascadeOpacityEnabled": true,
  890. "_anchorPoint": {
  891. "__type__": "cc.Vec2",
  892. "x": 0.5,
  893. "y": 0.5
  894. },
  895. "_contentSize": {
  896. "__type__": "cc.Size",
  897. "width": 750,
  898. "height": 1700
  899. },
  900. "_rotationX": 0,
  901. "_rotationY": 0,
  902. "_scaleX": 1,
  903. "_scaleY": 1,
  904. "_position": {
  905. "__type__": "cc.Vec2",
  906. "x": 0,
  907. "y": -27
  908. },
  909. "_skewX": 0,
  910. "_skewY": 0,
  911. "_localZOrder": 0,
  912. "_globalZOrder": 0,
  913. "_opacityModifyRGB": false,
  914. "groupIndex": 0
  915. },
  916. {
  917. "__type__": "cc.Node",
  918. "_name": "train_cost_bg",
  919. "_objFlags": 0,
  920. "_parent": {
  921. "__id__": 27
  922. },
  923. "_children": [],
  924. "_tag": -1,
  925. "_active": true,
  926. "_components": [
  927. {
  928. "__id__": 29
  929. }
  930. ],
  931. "_prefab": {
  932. "__id__": 30
  933. },
  934. "_id": "",
  935. "_opacity": 255,
  936. "_color": {
  937. "__type__": "cc.Color",
  938. "r": 255,
  939. "g": 255,
  940. "b": 255,
  941. "a": 255
  942. },
  943. "_cascadeOpacityEnabled": true,
  944. "_anchorPoint": {
  945. "__type__": "cc.Vec2",
  946. "x": 0.5,
  947. "y": 0.5
  948. },
  949. "_contentSize": {
  950. "__type__": "cc.Size",
  951. "width": 450,
  952. "height": 65
  953. },
  954. "_rotationX": 0,
  955. "_rotationY": 0,
  956. "_scaleX": 1,
  957. "_scaleY": 1,
  958. "_position": {
  959. "__type__": "cc.Vec2",
  960. "x": 0,
  961. "y": 110
  962. },
  963. "_skewX": 0,
  964. "_skewY": 0,
  965. "_localZOrder": 0,
  966. "_globalZOrder": 0,
  967. "_opacityModifyRGB": false,
  968. "groupIndex": 0
  969. },
  970. {
  971. "__type__": "cc.Sprite",
  972. "_name": "",
  973. "_objFlags": 0,
  974. "node": {
  975. "__id__": 28
  976. },
  977. "_enabled": true,
  978. "_spriteFrame": {
  979. "__uuid__": "bce06ad4-8ab0-4ae9-85bf-18e995bae2b3"
  980. },
  981. "_type": 1,
  982. "_sizeMode": 0,
  983. "_fillType": 0,
  984. "_fillCenter": {
  985. "__type__": "cc.Vec2",
  986. "x": 0,
  987. "y": 0
  988. },
  989. "_fillStart": 0,
  990. "_fillRange": 0,
  991. "_isTrimmedMode": true,
  992. "_srcBlendFactor": 770,
  993. "_dstBlendFactor": 771,
  994. "_atlas": null
  995. },
  996. {
  997. "__type__": "cc.PrefabInfo",
  998. "root": {
  999. "__id__": 1
  1000. },
  1001. "asset": {
  1002. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1003. },
  1004. "fileId": "8f9497GaBPvZPdnsrLGwIP",
  1005. "sync": false
  1006. },
  1007. {
  1008. "__type__": "cc.Node",
  1009. "_name": "star_befor",
  1010. "_objFlags": 0,
  1011. "_parent": {
  1012. "__id__": 27
  1013. },
  1014. "_children": [],
  1015. "_tag": -1,
  1016. "_active": true,
  1017. "_components": [
  1018. {
  1019. "__id__": 32
  1020. }
  1021. ],
  1022. "_prefab": {
  1023. "__id__": 33
  1024. },
  1025. "_id": "",
  1026. "_opacity": 255,
  1027. "_color": {
  1028. "__type__": "cc.Color",
  1029. "r": 255,
  1030. "g": 255,
  1031. "b": 255,
  1032. "a": 255
  1033. },
  1034. "_cascadeOpacityEnabled": true,
  1035. "_anchorPoint": {
  1036. "__type__": "cc.Vec2",
  1037. "x": 0.5,
  1038. "y": 0.5
  1039. },
  1040. "_contentSize": {
  1041. "__type__": "cc.Size",
  1042. "width": 55,
  1043. "height": 51
  1044. },
  1045. "_rotationX": 0,
  1046. "_rotationY": 0,
  1047. "_scaleX": 1,
  1048. "_scaleY": 1,
  1049. "_position": {
  1050. "__type__": "cc.Vec2",
  1051. "x": -174,
  1052. "y": 110
  1053. },
  1054. "_skewX": 0,
  1055. "_skewY": 0,
  1056. "_localZOrder": 0,
  1057. "_globalZOrder": 0,
  1058. "_opacityModifyRGB": false,
  1059. "groupIndex": 0
  1060. },
  1061. {
  1062. "__type__": "cc.Sprite",
  1063. "_name": "",
  1064. "_objFlags": 0,
  1065. "node": {
  1066. "__id__": 31
  1067. },
  1068. "_enabled": true,
  1069. "_spriteFrame": {
  1070. "__uuid__": "bddf27cd-4a2e-4882-9101-8bda29e9fd59"
  1071. },
  1072. "_type": 0,
  1073. "_sizeMode": 1,
  1074. "_fillType": 0,
  1075. "_fillCenter": {
  1076. "__type__": "cc.Vec2",
  1077. "x": 0,
  1078. "y": 0
  1079. },
  1080. "_fillStart": 0,
  1081. "_fillRange": 0,
  1082. "_isTrimmedMode": true,
  1083. "_srcBlendFactor": 770,
  1084. "_dstBlendFactor": 771,
  1085. "_atlas": null
  1086. },
  1087. {
  1088. "__type__": "cc.PrefabInfo",
  1089. "root": {
  1090. "__id__": 1
  1091. },
  1092. "asset": {
  1093. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1094. },
  1095. "fileId": "35nKvor7pA7LfrH7CWJ6jK",
  1096. "sync": false
  1097. },
  1098. {
  1099. "__type__": "cc.Node",
  1100. "_name": "type_befor",
  1101. "_objFlags": 0,
  1102. "_parent": {
  1103. "__id__": 27
  1104. },
  1105. "_children": [],
  1106. "_tag": -1,
  1107. "_active": true,
  1108. "_components": [
  1109. {
  1110. "__id__": 35
  1111. }
  1112. ],
  1113. "_prefab": {
  1114. "__id__": 36
  1115. },
  1116. "_id": "",
  1117. "_opacity": 255,
  1118. "_color": {
  1119. "__type__": "cc.Color",
  1120. "r": 88,
  1121. "g": 74,
  1122. "b": 71,
  1123. "a": 255
  1124. },
  1125. "_cascadeOpacityEnabled": true,
  1126. "_anchorPoint": {
  1127. "__type__": "cc.Vec2",
  1128. "x": 0,
  1129. "y": 0.5
  1130. },
  1131. "_contentSize": {
  1132. "__type__": "cc.Size",
  1133. "width": 110,
  1134. "height": 40
  1135. },
  1136. "_rotationX": 0,
  1137. "_rotationY": 0,
  1138. "_scaleX": 1,
  1139. "_scaleY": 1,
  1140. "_position": {
  1141. "__type__": "cc.Vec2",
  1142. "x": -141,
  1143. "y": 110
  1144. },
  1145. "_skewX": 0,
  1146. "_skewY": 0,
  1147. "_localZOrder": 0,
  1148. "_globalZOrder": 0,
  1149. "_opacityModifyRGB": false,
  1150. "groupIndex": 0
  1151. },
  1152. {
  1153. "__type__": "cc.RichText",
  1154. "_name": "",
  1155. "_objFlags": 0,
  1156. "node": {
  1157. "__id__": 34
  1158. },
  1159. "_enabled": true,
  1160. "_N$string": "<outline color=#ffffff width=2><b>电竞选手</b></outline>",
  1161. "_N$horizontalAlign": 0,
  1162. "_N$fontSize": 26,
  1163. "_N$font": null,
  1164. "_N$maxWidth": 0,
  1165. "_N$lineHeight": 40,
  1166. "_N$imageAtlas": null,
  1167. "_N$handleTouchEvent": true
  1168. },
  1169. {
  1170. "__type__": "cc.PrefabInfo",
  1171. "root": {
  1172. "__id__": 1
  1173. },
  1174. "asset": {
  1175. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1176. },
  1177. "fileId": "ac5YZHzgdMwpJYXFqi4FYG",
  1178. "sync": false
  1179. },
  1180. {
  1181. "__type__": "cc.Node",
  1182. "_name": "star_after",
  1183. "_objFlags": 0,
  1184. "_parent": {
  1185. "__id__": 27
  1186. },
  1187. "_children": [],
  1188. "_tag": -1,
  1189. "_active": true,
  1190. "_components": [
  1191. {
  1192. "__id__": 38
  1193. }
  1194. ],
  1195. "_prefab": {
  1196. "__id__": 39
  1197. },
  1198. "_id": "",
  1199. "_opacity": 255,
  1200. "_color": {
  1201. "__type__": "cc.Color",
  1202. "r": 255,
  1203. "g": 255,
  1204. "b": 255,
  1205. "a": 255
  1206. },
  1207. "_cascadeOpacityEnabled": true,
  1208. "_anchorPoint": {
  1209. "__type__": "cc.Vec2",
  1210. "x": 0.5,
  1211. "y": 0.5
  1212. },
  1213. "_contentSize": {
  1214. "__type__": "cc.Size",
  1215. "width": 55,
  1216. "height": 51
  1217. },
  1218. "_rotationX": 0,
  1219. "_rotationY": 0,
  1220. "_scaleX": 1,
  1221. "_scaleY": 1,
  1222. "_position": {
  1223. "__type__": "cc.Vec2",
  1224. "x": 56,
  1225. "y": 110
  1226. },
  1227. "_skewX": 0,
  1228. "_skewY": 0,
  1229. "_localZOrder": 0,
  1230. "_globalZOrder": 0,
  1231. "_opacityModifyRGB": false,
  1232. "groupIndex": 0
  1233. },
  1234. {
  1235. "__type__": "cc.Sprite",
  1236. "_name": "",
  1237. "_objFlags": 0,
  1238. "node": {
  1239. "__id__": 37
  1240. },
  1241. "_enabled": true,
  1242. "_spriteFrame": {
  1243. "__uuid__": "bddf27cd-4a2e-4882-9101-8bda29e9fd59"
  1244. },
  1245. "_type": 0,
  1246. "_sizeMode": 1,
  1247. "_fillType": 0,
  1248. "_fillCenter": {
  1249. "__type__": "cc.Vec2",
  1250. "x": 0,
  1251. "y": 0
  1252. },
  1253. "_fillStart": 0,
  1254. "_fillRange": 0,
  1255. "_isTrimmedMode": true,
  1256. "_srcBlendFactor": 770,
  1257. "_dstBlendFactor": 771,
  1258. "_atlas": null
  1259. },
  1260. {
  1261. "__type__": "cc.PrefabInfo",
  1262. "root": {
  1263. "__id__": 1
  1264. },
  1265. "asset": {
  1266. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1267. },
  1268. "fileId": "63+Y0U9dtHson96YlwRAIW",
  1269. "sync": false
  1270. },
  1271. {
  1272. "__type__": "cc.Node",
  1273. "_name": "type_after",
  1274. "_objFlags": 0,
  1275. "_parent": {
  1276. "__id__": 27
  1277. },
  1278. "_children": [],
  1279. "_tag": -1,
  1280. "_active": true,
  1281. "_components": [
  1282. {
  1283. "__id__": 41
  1284. }
  1285. ],
  1286. "_prefab": {
  1287. "__id__": 42
  1288. },
  1289. "_id": "",
  1290. "_opacity": 255,
  1291. "_color": {
  1292. "__type__": "cc.Color",
  1293. "r": 239,
  1294. "g": 75,
  1295. "b": 0,
  1296. "a": 255
  1297. },
  1298. "_cascadeOpacityEnabled": true,
  1299. "_anchorPoint": {
  1300. "__type__": "cc.Vec2",
  1301. "x": 0,
  1302. "y": 0.5
  1303. },
  1304. "_contentSize": {
  1305. "__type__": "cc.Size",
  1306. "width": 57,
  1307. "height": 40
  1308. },
  1309. "_rotationX": 0,
  1310. "_rotationY": 0,
  1311. "_scaleX": 1,
  1312. "_scaleY": 1,
  1313. "_position": {
  1314. "__type__": "cc.Vec2",
  1315. "x": 88,
  1316. "y": 110
  1317. },
  1318. "_skewX": 0,
  1319. "_skewY": 0,
  1320. "_localZOrder": 0,
  1321. "_globalZOrder": 0,
  1322. "_opacityModifyRGB": false,
  1323. "groupIndex": 0
  1324. },
  1325. {
  1326. "__type__": "cc.RichText",
  1327. "_name": "",
  1328. "_objFlags": 0,
  1329. "node": {
  1330. "__id__": 40
  1331. },
  1332. "_enabled": true,
  1333. "_N$string": "<outline color=#ffffff width=2><b>歌手</b></outline>",
  1334. "_N$horizontalAlign": 0,
  1335. "_N$fontSize": 26,
  1336. "_N$font": null,
  1337. "_N$maxWidth": 0,
  1338. "_N$lineHeight": 40,
  1339. "_N$imageAtlas": null,
  1340. "_N$handleTouchEvent": true
  1341. },
  1342. {
  1343. "__type__": "cc.PrefabInfo",
  1344. "root": {
  1345. "__id__": 1
  1346. },
  1347. "asset": {
  1348. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1349. },
  1350. "fileId": "9b/kxif5lFpb6jm/aX9cJ1",
  1351. "sync": false
  1352. },
  1353. {
  1354. "__type__": "cc.Node",
  1355. "_name": "name_change",
  1356. "_objFlags": 0,
  1357. "_parent": {
  1358. "__id__": 27
  1359. },
  1360. "_children": [],
  1361. "_tag": -1,
  1362. "_active": true,
  1363. "_components": [
  1364. {
  1365. "__id__": 44
  1366. }
  1367. ],
  1368. "_prefab": {
  1369. "__id__": 45
  1370. },
  1371. "_id": "",
  1372. "_opacity": 255,
  1373. "_color": {
  1374. "__type__": "cc.Color",
  1375. "r": 74,
  1376. "g": 65,
  1377. "b": 58,
  1378. "a": 255
  1379. },
  1380. "_cascadeOpacityEnabled": true,
  1381. "_anchorPoint": {
  1382. "__type__": "cc.Vec2",
  1383. "x": 0.5,
  1384. "y": 0.5
  1385. },
  1386. "_contentSize": {
  1387. "__type__": "cc.Size",
  1388. "width": 90,
  1389. "height": 30
  1390. },
  1391. "_rotationX": 0,
  1392. "_rotationY": 0,
  1393. "_scaleX": 1,
  1394. "_scaleY": 1,
  1395. "_position": {
  1396. "__type__": "cc.Vec2",
  1397. "x": -172,
  1398. "y": 161
  1399. },
  1400. "_skewX": 0,
  1401. "_skewY": 0,
  1402. "_localZOrder": 0,
  1403. "_globalZOrder": 0,
  1404. "_opacityModifyRGB": false,
  1405. "groupIndex": 0
  1406. },
  1407. {
  1408. "__type__": "cc.RichText",
  1409. "_name": "",
  1410. "_objFlags": 0,
  1411. "node": {
  1412. "__id__": 43
  1413. },
  1414. "_enabled": true,
  1415. "_N$string": "<b>职业变更</b>",
  1416. "_N$horizontalAlign": 0,
  1417. "_N$fontSize": 22,
  1418. "_N$font": null,
  1419. "_N$maxWidth": 0,
  1420. "_N$lineHeight": 30,
  1421. "_N$imageAtlas": null,
  1422. "_N$handleTouchEvent": true
  1423. },
  1424. {
  1425. "__type__": "cc.PrefabInfo",
  1426. "root": {
  1427. "__id__": 1
  1428. },
  1429. "asset": {
  1430. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1431. },
  1432. "fileId": "78BK0rHoVMyLXFEe5PQbqa",
  1433. "sync": false
  1434. },
  1435. {
  1436. "__type__": "cc.Node",
  1437. "_name": "arrow",
  1438. "_objFlags": 0,
  1439. "_parent": {
  1440. "__id__": 27
  1441. },
  1442. "_children": [],
  1443. "_tag": -1,
  1444. "_active": true,
  1445. "_components": [
  1446. {
  1447. "__id__": 47
  1448. }
  1449. ],
  1450. "_prefab": {
  1451. "__id__": 48
  1452. },
  1453. "_id": "",
  1454. "_opacity": 255,
  1455. "_color": {
  1456. "__type__": "cc.Color",
  1457. "r": 255,
  1458. "g": 255,
  1459. "b": 255,
  1460. "a": 255
  1461. },
  1462. "_cascadeOpacityEnabled": true,
  1463. "_anchorPoint": {
  1464. "__type__": "cc.Vec2",
  1465. "x": 0.5,
  1466. "y": 0.5
  1467. },
  1468. "_contentSize": {
  1469. "__type__": "cc.Size",
  1470. "width": 22,
  1471. "height": 35
  1472. },
  1473. "_rotationX": 0,
  1474. "_rotationY": 0,
  1475. "_scaleX": 1,
  1476. "_scaleY": 1,
  1477. "_position": {
  1478. "__type__": "cc.Vec2",
  1479. "x": 0,
  1480. "y": 110
  1481. },
  1482. "_skewX": 0,
  1483. "_skewY": 0,
  1484. "_localZOrder": 0,
  1485. "_globalZOrder": 0,
  1486. "_opacityModifyRGB": false,
  1487. "groupIndex": 0
  1488. },
  1489. {
  1490. "__type__": "cc.Sprite",
  1491. "_name": "",
  1492. "_objFlags": 0,
  1493. "node": {
  1494. "__id__": 46
  1495. },
  1496. "_enabled": true,
  1497. "_spriteFrame": {
  1498. "__uuid__": "60a611f4-cb84-44ce-b2b1-cd743ed69b2f"
  1499. },
  1500. "_type": 0,
  1501. "_sizeMode": 0,
  1502. "_fillType": 0,
  1503. "_fillCenter": {
  1504. "__type__": "cc.Vec2",
  1505. "x": 0,
  1506. "y": 0
  1507. },
  1508. "_fillStart": 0,
  1509. "_fillRange": 0,
  1510. "_isTrimmedMode": true,
  1511. "_srcBlendFactor": 770,
  1512. "_dstBlendFactor": 771,
  1513. "_atlas": null
  1514. },
  1515. {
  1516. "__type__": "cc.PrefabInfo",
  1517. "root": {
  1518. "__id__": 1
  1519. },
  1520. "asset": {
  1521. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1522. },
  1523. "fileId": "0a+3Cc+WlPYZ0nC1g3nLHL",
  1524. "sync": false
  1525. },
  1526. {
  1527. "__type__": "cc.PrefabInfo",
  1528. "root": {
  1529. "__id__": 1
  1530. },
  1531. "asset": {
  1532. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1533. },
  1534. "fileId": "708trffdBDN78KmGgYrONC",
  1535. "sync": false
  1536. },
  1537. {
  1538. "__type__": "cc.Node",
  1539. "_name": "change_two",
  1540. "_objFlags": 0,
  1541. "_parent": {
  1542. "__id__": 5
  1543. },
  1544. "_children": [
  1545. {
  1546. "__id__": 51
  1547. },
  1548. {
  1549. "__id__": 54
  1550. },
  1551. {
  1552. "__id__": 57
  1553. },
  1554. {
  1555. "__id__": 63
  1556. },
  1557. {
  1558. "__id__": 66
  1559. },
  1560. {
  1561. "__id__": 69
  1562. },
  1563. {
  1564. "__id__": 75
  1565. }
  1566. ],
  1567. "_tag": -1,
  1568. "_active": true,
  1569. "_components": [],
  1570. "_prefab": {
  1571. "__id__": 78
  1572. },
  1573. "_id": "",
  1574. "_opacity": 255,
  1575. "_color": {
  1576. "__type__": "cc.Color",
  1577. "r": 255,
  1578. "g": 255,
  1579. "b": 255,
  1580. "a": 255
  1581. },
  1582. "_cascadeOpacityEnabled": true,
  1583. "_anchorPoint": {
  1584. "__type__": "cc.Vec2",
  1585. "x": 0.5,
  1586. "y": 0.5
  1587. },
  1588. "_contentSize": {
  1589. "__type__": "cc.Size",
  1590. "width": 0,
  1591. "height": 0
  1592. },
  1593. "_rotationX": 0,
  1594. "_rotationY": 0,
  1595. "_scaleX": 1,
  1596. "_scaleY": 1,
  1597. "_position": {
  1598. "__type__": "cc.Vec2",
  1599. "x": 0,
  1600. "y": -5
  1601. },
  1602. "_skewX": 0,
  1603. "_skewY": 0,
  1604. "_localZOrder": 0,
  1605. "_globalZOrder": 0,
  1606. "_opacityModifyRGB": false,
  1607. "groupIndex": 0
  1608. },
  1609. {
  1610. "__type__": "cc.Node",
  1611. "_name": "train_cost_bg",
  1612. "_objFlags": 0,
  1613. "_parent": {
  1614. "__id__": 50
  1615. },
  1616. "_children": [],
  1617. "_tag": -1,
  1618. "_active": true,
  1619. "_components": [
  1620. {
  1621. "__id__": 52
  1622. }
  1623. ],
  1624. "_prefab": {
  1625. "__id__": 53
  1626. },
  1627. "_id": "",
  1628. "_opacity": 255,
  1629. "_color": {
  1630. "__type__": "cc.Color",
  1631. "r": 255,
  1632. "g": 255,
  1633. "b": 255,
  1634. "a": 255
  1635. },
  1636. "_cascadeOpacityEnabled": true,
  1637. "_anchorPoint": {
  1638. "__type__": "cc.Vec2",
  1639. "x": 0.5,
  1640. "y": 0.5
  1641. },
  1642. "_contentSize": {
  1643. "__type__": "cc.Size",
  1644. "width": 450,
  1645. "height": 65
  1646. },
  1647. "_rotationX": 0,
  1648. "_rotationY": 0,
  1649. "_scaleX": 1,
  1650. "_scaleY": 1,
  1651. "_position": {
  1652. "__type__": "cc.Vec2",
  1653. "x": 0,
  1654. "y": -30
  1655. },
  1656. "_skewX": 0,
  1657. "_skewY": 0,
  1658. "_localZOrder": 0,
  1659. "_globalZOrder": 0,
  1660. "_opacityModifyRGB": false,
  1661. "groupIndex": 0
  1662. },
  1663. {
  1664. "__type__": "cc.Sprite",
  1665. "_name": "",
  1666. "_objFlags": 0,
  1667. "node": {
  1668. "__id__": 51
  1669. },
  1670. "_enabled": true,
  1671. "_spriteFrame": {
  1672. "__uuid__": "bce06ad4-8ab0-4ae9-85bf-18e995bae2b3"
  1673. },
  1674. "_type": 1,
  1675. "_sizeMode": 0,
  1676. "_fillType": 0,
  1677. "_fillCenter": {
  1678. "__type__": "cc.Vec2",
  1679. "x": 0,
  1680. "y": 0
  1681. },
  1682. "_fillStart": 0,
  1683. "_fillRange": 0,
  1684. "_isTrimmedMode": true,
  1685. "_srcBlendFactor": 770,
  1686. "_dstBlendFactor": 771,
  1687. "_atlas": null
  1688. },
  1689. {
  1690. "__type__": "cc.PrefabInfo",
  1691. "root": {
  1692. "__id__": 1
  1693. },
  1694. "asset": {
  1695. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1696. },
  1697. "fileId": "5dYfVEMWBEXLl3LKX0V3lv",
  1698. "sync": false
  1699. },
  1700. {
  1701. "__type__": "cc.Node",
  1702. "_name": "name_change",
  1703. "_objFlags": 0,
  1704. "_parent": {
  1705. "__id__": 50
  1706. },
  1707. "_children": [],
  1708. "_tag": -1,
  1709. "_active": true,
  1710. "_components": [
  1711. {
  1712. "__id__": 55
  1713. }
  1714. ],
  1715. "_prefab": {
  1716. "__id__": 56
  1717. },
  1718. "_id": "",
  1719. "_opacity": 255,
  1720. "_color": {
  1721. "__type__": "cc.Color",
  1722. "r": 74,
  1723. "g": 65,
  1724. "b": 58,
  1725. "a": 255
  1726. },
  1727. "_cascadeOpacityEnabled": true,
  1728. "_anchorPoint": {
  1729. "__type__": "cc.Vec2",
  1730. "x": 0.5,
  1731. "y": 0.5
  1732. },
  1733. "_contentSize": {
  1734. "__type__": "cc.Size",
  1735. "width": 90,
  1736. "height": 30
  1737. },
  1738. "_rotationX": 0,
  1739. "_rotationY": 0,
  1740. "_scaleX": 1,
  1741. "_scaleY": 1,
  1742. "_position": {
  1743. "__type__": "cc.Vec2",
  1744. "x": -172,
  1745. "y": 21
  1746. },
  1747. "_skewX": 0,
  1748. "_skewY": 0,
  1749. "_localZOrder": 0,
  1750. "_globalZOrder": 0,
  1751. "_opacityModifyRGB": false,
  1752. "groupIndex": 0
  1753. },
  1754. {
  1755. "__type__": "cc.RichText",
  1756. "_name": "",
  1757. "_objFlags": 0,
  1758. "node": {
  1759. "__id__": 54
  1760. },
  1761. "_enabled": true,
  1762. "_N$string": "<b>职业等级</b>",
  1763. "_N$horizontalAlign": 0,
  1764. "_N$fontSize": 22,
  1765. "_N$font": null,
  1766. "_N$maxWidth": 0,
  1767. "_N$lineHeight": 30,
  1768. "_N$imageAtlas": null,
  1769. "_N$handleTouchEvent": true
  1770. },
  1771. {
  1772. "__type__": "cc.PrefabInfo",
  1773. "root": {
  1774. "__id__": 1
  1775. },
  1776. "asset": {
  1777. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1778. },
  1779. "fileId": "bdJfO48ulJnbj0XGrpebze",
  1780. "sync": false
  1781. },
  1782. {
  1783. "__type__": "cc.Node",
  1784. "_name": "star_befor",
  1785. "_objFlags": 0,
  1786. "_parent": {
  1787. "__id__": 50
  1788. },
  1789. "_children": [
  1790. {
  1791. "__id__": 58
  1792. }
  1793. ],
  1794. "_tag": -1,
  1795. "_active": true,
  1796. "_components": [
  1797. {
  1798. "__id__": 61
  1799. }
  1800. ],
  1801. "_prefab": {
  1802. "__id__": 62
  1803. },
  1804. "_id": "",
  1805. "_opacity": 255,
  1806. "_color": {
  1807. "__type__": "cc.Color",
  1808. "r": 255,
  1809. "g": 255,
  1810. "b": 255,
  1811. "a": 255
  1812. },
  1813. "_cascadeOpacityEnabled": true,
  1814. "_anchorPoint": {
  1815. "__type__": "cc.Vec2",
  1816. "x": 0.5,
  1817. "y": 0.5
  1818. },
  1819. "_contentSize": {
  1820. "__type__": "cc.Size",
  1821. "width": 55,
  1822. "height": 51
  1823. },
  1824. "_rotationX": 0,
  1825. "_rotationY": 0,
  1826. "_scaleX": 1,
  1827. "_scaleY": 1,
  1828. "_position": {
  1829. "__type__": "cc.Vec2",
  1830. "x": -172,
  1831. "y": -30
  1832. },
  1833. "_skewX": 0,
  1834. "_skewY": 0,
  1835. "_localZOrder": 0,
  1836. "_globalZOrder": 0,
  1837. "_opacityModifyRGB": false,
  1838. "groupIndex": 0
  1839. },
  1840. {
  1841. "__type__": "cc.Node",
  1842. "_name": "level_befor",
  1843. "_objFlags": 0,
  1844. "_parent": {
  1845. "__id__": 57
  1846. },
  1847. "_children": [],
  1848. "_tag": -1,
  1849. "_active": true,
  1850. "_components": [
  1851. {
  1852. "__id__": 59
  1853. }
  1854. ],
  1855. "_prefab": {
  1856. "__id__": 60
  1857. },
  1858. "_id": "",
  1859. "_opacity": 255,
  1860. "_color": {
  1861. "__type__": "cc.Color",
  1862. "r": 255,
  1863. "g": 255,
  1864. "b": 255,
  1865. "a": 255
  1866. },
  1867. "_cascadeOpacityEnabled": true,
  1868. "_anchorPoint": {
  1869. "__type__": "cc.Vec2",
  1870. "x": 0.5,
  1871. "y": 0.5
  1872. },
  1873. "_contentSize": {
  1874. "__type__": "cc.Size",
  1875. "width": 17,
  1876. "height": 24
  1877. },
  1878. "_rotationX": 0,
  1879. "_rotationY": 0,
  1880. "_scaleX": 1,
  1881. "_scaleY": 1,
  1882. "_position": {
  1883. "__type__": "cc.Vec2",
  1884. "x": 0,
  1885. "y": -3
  1886. },
  1887. "_skewX": 0,
  1888. "_skewY": 0,
  1889. "_localZOrder": 0,
  1890. "_globalZOrder": 0,
  1891. "_opacityModifyRGB": false,
  1892. "groupIndex": 0
  1893. },
  1894. {
  1895. "__type__": "cc.RichText",
  1896. "_name": "",
  1897. "_objFlags": 0,
  1898. "node": {
  1899. "__id__": 58
  1900. },
  1901. "_enabled": true,
  1902. "_N$string": "<outline color=#584A47 width=2><b>7</b></outline>",
  1903. "_N$horizontalAlign": 0,
  1904. "_N$fontSize": 24,
  1905. "_N$font": null,
  1906. "_N$maxWidth": 0,
  1907. "_N$lineHeight": 24,
  1908. "_N$imageAtlas": null,
  1909. "_N$handleTouchEvent": true
  1910. },
  1911. {
  1912. "__type__": "cc.PrefabInfo",
  1913. "root": {
  1914. "__id__": 1
  1915. },
  1916. "asset": {
  1917. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1918. },
  1919. "fileId": "60/gpU4CZIN7GG1UMrF0qw",
  1920. "sync": false
  1921. },
  1922. {
  1923. "__type__": "cc.Sprite",
  1924. "_name": "",
  1925. "_objFlags": 0,
  1926. "node": {
  1927. "__id__": 57
  1928. },
  1929. "_enabled": true,
  1930. "_spriteFrame": {
  1931. "__uuid__": "bddf27cd-4a2e-4882-9101-8bda29e9fd59"
  1932. },
  1933. "_type": 0,
  1934. "_sizeMode": 1,
  1935. "_fillType": 0,
  1936. "_fillCenter": {
  1937. "__type__": "cc.Vec2",
  1938. "x": 0,
  1939. "y": 0
  1940. },
  1941. "_fillStart": 0,
  1942. "_fillRange": 0,
  1943. "_isTrimmedMode": true,
  1944. "_srcBlendFactor": 770,
  1945. "_dstBlendFactor": 771,
  1946. "_atlas": null
  1947. },
  1948. {
  1949. "__type__": "cc.PrefabInfo",
  1950. "root": {
  1951. "__id__": 1
  1952. },
  1953. "asset": {
  1954. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  1955. },
  1956. "fileId": "0eEZeJ1yVP65pHNyVf3Y6K",
  1957. "sync": false
  1958. },
  1959. {
  1960. "__type__": "cc.Node",
  1961. "_name": "name_befor",
  1962. "_objFlags": 0,
  1963. "_parent": {
  1964. "__id__": 50
  1965. },
  1966. "_children": [],
  1967. "_tag": -1,
  1968. "_active": true,
  1969. "_components": [
  1970. {
  1971. "__id__": 64
  1972. }
  1973. ],
  1974. "_prefab": {
  1975. "__id__": 65
  1976. },
  1977. "_id": "",
  1978. "_opacity": 255,
  1979. "_color": {
  1980. "__type__": "cc.Color",
  1981. "r": 88,
  1982. "g": 74,
  1983. "b": 71,
  1984. "a": 255
  1985. },
  1986. "_cascadeOpacityEnabled": true,
  1987. "_anchorPoint": {
  1988. "__type__": "cc.Vec2",
  1989. "x": 0,
  1990. "y": 0.5
  1991. },
  1992. "_contentSize": {
  1993. "__type__": "cc.Size",
  1994. "width": 110,
  1995. "height": 40
  1996. },
  1997. "_rotationX": 0,
  1998. "_rotationY": 0,
  1999. "_scaleX": 1,
  2000. "_scaleY": 1,
  2001. "_position": {
  2002. "__type__": "cc.Vec2",
  2003. "x": -139,
  2004. "y": -30
  2005. },
  2006. "_skewX": 0,
  2007. "_skewY": 0,
  2008. "_localZOrder": 0,
  2009. "_globalZOrder": 0,
  2010. "_opacityModifyRGB": false,
  2011. "groupIndex": 0
  2012. },
  2013. {
  2014. "__type__": "cc.RichText",
  2015. "_name": "",
  2016. "_objFlags": 0,
  2017. "node": {
  2018. "__id__": 63
  2019. },
  2020. "_enabled": true,
  2021. "_N$string": "<outline color=#ffffff width=2><b>特约演员</b></outline>",
  2022. "_N$horizontalAlign": 0,
  2023. "_N$fontSize": 26,
  2024. "_N$font": null,
  2025. "_N$maxWidth": 0,
  2026. "_N$lineHeight": 40,
  2027. "_N$imageAtlas": null,
  2028. "_N$handleTouchEvent": true
  2029. },
  2030. {
  2031. "__type__": "cc.PrefabInfo",
  2032. "root": {
  2033. "__id__": 1
  2034. },
  2035. "asset": {
  2036. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  2037. },
  2038. "fileId": "575AM0roFPmYDuwfrX5pM4",
  2039. "sync": false
  2040. },
  2041. {
  2042. "__type__": "cc.Node",
  2043. "_name": "arrow",
  2044. "_objFlags": 0,
  2045. "_parent": {
  2046. "__id__": 50
  2047. },
  2048. "_children": [],
  2049. "_tag": -1,
  2050. "_active": true,
  2051. "_components": [
  2052. {
  2053. "__id__": 67
  2054. }
  2055. ],
  2056. "_prefab": {
  2057. "__id__": 68
  2058. },
  2059. "_id": "",
  2060. "_opacity": 255,
  2061. "_color": {
  2062. "__type__": "cc.Color",
  2063. "r": 255,
  2064. "g": 255,
  2065. "b": 255,
  2066. "a": 255
  2067. },
  2068. "_cascadeOpacityEnabled": true,
  2069. "_anchorPoint": {
  2070. "__type__": "cc.Vec2",
  2071. "x": 0.5,
  2072. "y": 0.5
  2073. },
  2074. "_contentSize": {
  2075. "__type__": "cc.Size",
  2076. "width": 22,
  2077. "height": 35
  2078. },
  2079. "_rotationX": 0,
  2080. "_rotationY": 0,
  2081. "_scaleX": 1,
  2082. "_scaleY": 1,
  2083. "_position": {
  2084. "__type__": "cc.Vec2",
  2085. "x": 0,
  2086. "y": -30
  2087. },
  2088. "_skewX": 0,
  2089. "_skewY": 0,
  2090. "_localZOrder": 0,
  2091. "_globalZOrder": 0,
  2092. "_opacityModifyRGB": false,
  2093. "groupIndex": 0
  2094. },
  2095. {
  2096. "__type__": "cc.Sprite",
  2097. "_name": "",
  2098. "_objFlags": 0,
  2099. "node": {
  2100. "__id__": 66
  2101. },
  2102. "_enabled": true,
  2103. "_spriteFrame": {
  2104. "__uuid__": "60a611f4-cb84-44ce-b2b1-cd743ed69b2f"
  2105. },
  2106. "_type": 0,
  2107. "_sizeMode": 0,
  2108. "_fillType": 0,
  2109. "_fillCenter": {
  2110. "__type__": "cc.Vec2",
  2111. "x": 0,
  2112. "y": 0
  2113. },
  2114. "_fillStart": 0,
  2115. "_fillRange": 0,
  2116. "_isTrimmedMode": true,
  2117. "_srcBlendFactor": 770,
  2118. "_dstBlendFactor": 771,
  2119. "_atlas": null
  2120. },
  2121. {
  2122. "__type__": "cc.PrefabInfo",
  2123. "root": {
  2124. "__id__": 1
  2125. },
  2126. "asset": {
  2127. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  2128. },
  2129. "fileId": "b9SEy3ol1Fa6WlQPfPAjiI",
  2130. "sync": false
  2131. },
  2132. {
  2133. "__type__": "cc.Node",
  2134. "_name": "star_after",
  2135. "_objFlags": 0,
  2136. "_parent": {
  2137. "__id__": 50
  2138. },
  2139. "_children": [
  2140. {
  2141. "__id__": 70
  2142. }
  2143. ],
  2144. "_tag": -1,
  2145. "_active": true,
  2146. "_components": [
  2147. {
  2148. "__id__": 73
  2149. }
  2150. ],
  2151. "_prefab": {
  2152. "__id__": 74
  2153. },
  2154. "_id": "",
  2155. "_opacity": 255,
  2156. "_color": {
  2157. "__type__": "cc.Color",
  2158. "r": 255,
  2159. "g": 255,
  2160. "b": 255,
  2161. "a": 255
  2162. },
  2163. "_cascadeOpacityEnabled": true,
  2164. "_anchorPoint": {
  2165. "__type__": "cc.Vec2",
  2166. "x": 0.5,
  2167. "y": 0.5
  2168. },
  2169. "_contentSize": {
  2170. "__type__": "cc.Size",
  2171. "width": 55,
  2172. "height": 51
  2173. },
  2174. "_rotationX": 0,
  2175. "_rotationY": 0,
  2176. "_scaleX": 1,
  2177. "_scaleY": 1,
  2178. "_position": {
  2179. "__type__": "cc.Vec2",
  2180. "x": 56,
  2181. "y": -30
  2182. },
  2183. "_skewX": 0,
  2184. "_skewY": 0,
  2185. "_localZOrder": 0,
  2186. "_globalZOrder": 0,
  2187. "_opacityModifyRGB": false,
  2188. "groupIndex": 0
  2189. },
  2190. {
  2191. "__type__": "cc.Node",
  2192. "_name": "level_after",
  2193. "_objFlags": 0,
  2194. "_parent": {
  2195. "__id__": 69
  2196. },
  2197. "_children": [],
  2198. "_tag": -1,
  2199. "_active": true,
  2200. "_components": [
  2201. {
  2202. "__id__": 71
  2203. }
  2204. ],
  2205. "_prefab": {
  2206. "__id__": 72
  2207. },
  2208. "_id": "",
  2209. "_opacity": 255,
  2210. "_color": {
  2211. "__type__": "cc.Color",
  2212. "r": 255,
  2213. "g": 255,
  2214. "b": 255,
  2215. "a": 255
  2216. },
  2217. "_cascadeOpacityEnabled": true,
  2218. "_anchorPoint": {
  2219. "__type__": "cc.Vec2",
  2220. "x": 0.5,
  2221. "y": 0.5
  2222. },
  2223. "_contentSize": {
  2224. "__type__": "cc.Size",
  2225. "width": 17,
  2226. "height": 24
  2227. },
  2228. "_rotationX": 0,
  2229. "_rotationY": 0,
  2230. "_scaleX": 1,
  2231. "_scaleY": 1,
  2232. "_position": {
  2233. "__type__": "cc.Vec2",
  2234. "x": 0,
  2235. "y": -3
  2236. },
  2237. "_skewX": 0,
  2238. "_skewY": 0,
  2239. "_localZOrder": 0,
  2240. "_globalZOrder": 0,
  2241. "_opacityModifyRGB": false,
  2242. "groupIndex": 0
  2243. },
  2244. {
  2245. "__type__": "cc.RichText",
  2246. "_name": "",
  2247. "_objFlags": 0,
  2248. "node": {
  2249. "__id__": 70
  2250. },
  2251. "_enabled": true,
  2252. "_N$string": "<outline color=#584A47 width=2><b>7</b></outline>",
  2253. "_N$horizontalAlign": 0,
  2254. "_N$fontSize": 24,
  2255. "_N$font": null,
  2256. "_N$maxWidth": 0,
  2257. "_N$lineHeight": 24,
  2258. "_N$imageAtlas": null,
  2259. "_N$handleTouchEvent": true
  2260. },
  2261. {
  2262. "__type__": "cc.PrefabInfo",
  2263. "root": {
  2264. "__id__": 1
  2265. },
  2266. "asset": {
  2267. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  2268. },
  2269. "fileId": "c09qCxgkRJfI0DKI0j3B7O",
  2270. "sync": false
  2271. },
  2272. {
  2273. "__type__": "cc.Sprite",
  2274. "_name": "",
  2275. "_objFlags": 0,
  2276. "node": {
  2277. "__id__": 69
  2278. },
  2279. "_enabled": true,
  2280. "_spriteFrame": {
  2281. "__uuid__": "bddf27cd-4a2e-4882-9101-8bda29e9fd59"
  2282. },
  2283. "_type": 0,
  2284. "_sizeMode": 1,
  2285. "_fillType": 0,
  2286. "_fillCenter": {
  2287. "__type__": "cc.Vec2",
  2288. "x": 0,
  2289. "y": 0
  2290. },
  2291. "_fillStart": 0,
  2292. "_fillRange": 0,
  2293. "_isTrimmedMode": true,
  2294. "_srcBlendFactor": 770,
  2295. "_dstBlendFactor": 771,
  2296. "_atlas": null
  2297. },
  2298. {
  2299. "__type__": "cc.PrefabInfo",
  2300. "root": {
  2301. "__id__": 1
  2302. },
  2303. "asset": {
  2304. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  2305. },
  2306. "fileId": "1cnM5lb6RB4JM3/FTOKfPR",
  2307. "sync": false
  2308. },
  2309. {
  2310. "__type__": "cc.Node",
  2311. "_name": "name_after",
  2312. "_objFlags": 0,
  2313. "_parent": {
  2314. "__id__": 50
  2315. },
  2316. "_children": [],
  2317. "_tag": -1,
  2318. "_active": true,
  2319. "_components": [
  2320. {
  2321. "__id__": 76
  2322. }
  2323. ],
  2324. "_prefab": {
  2325. "__id__": 77
  2326. },
  2327. "_id": "",
  2328. "_opacity": 255,
  2329. "_color": {
  2330. "__type__": "cc.Color",
  2331. "r": 239,
  2332. "g": 75,
  2333. "b": 0,
  2334. "a": 255
  2335. },
  2336. "_cascadeOpacityEnabled": true,
  2337. "_anchorPoint": {
  2338. "__type__": "cc.Vec2",
  2339. "x": 0,
  2340. "y": 0.5
  2341. },
  2342. "_contentSize": {
  2343. "__type__": "cc.Size",
  2344. "width": 110,
  2345. "height": 40
  2346. },
  2347. "_rotationX": 0,
  2348. "_rotationY": 0,
  2349. "_scaleX": 1,
  2350. "_scaleY": 1,
  2351. "_position": {
  2352. "__type__": "cc.Vec2",
  2353. "x": 88,
  2354. "y": -30
  2355. },
  2356. "_skewX": 0,
  2357. "_skewY": 0,
  2358. "_localZOrder": 0,
  2359. "_globalZOrder": 0,
  2360. "_opacityModifyRGB": false,
  2361. "groupIndex": 0
  2362. },
  2363. {
  2364. "__type__": "cc.RichText",
  2365. "_name": "",
  2366. "_objFlags": 0,
  2367. "node": {
  2368. "__id__": 75
  2369. },
  2370. "_enabled": true,
  2371. "_N$string": "<outline color=#ffffff width=2><b>我是歌手</b></outline>",
  2372. "_N$horizontalAlign": 0,
  2373. "_N$fontSize": 26,
  2374. "_N$font": null,
  2375. "_N$maxWidth": 0,
  2376. "_N$lineHeight": 40,
  2377. "_N$imageAtlas": null,
  2378. "_N$handleTouchEvent": true
  2379. },
  2380. {
  2381. "__type__": "cc.PrefabInfo",
  2382. "root": {
  2383. "__id__": 1
  2384. },
  2385. "asset": {
  2386. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  2387. },
  2388. "fileId": "ddPr8CZR1KmJTvNKJtGyrJ",
  2389. "sync": false
  2390. },
  2391. {
  2392. "__type__": "cc.PrefabInfo",
  2393. "root": {
  2394. "__id__": 1
  2395. },
  2396. "asset": {
  2397. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  2398. },
  2399. "fileId": "afbI3BhSRILoqWgk/CKT1z",
  2400. "sync": false
  2401. },
  2402. {
  2403. "__type__": "cc.PrefabInfo",
  2404. "root": {
  2405. "__id__": 1
  2406. },
  2407. "asset": {
  2408. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  2409. },
  2410. "fileId": "f4iuhITcVLqoUhABKX1xII",
  2411. "sync": false
  2412. },
  2413. {
  2414. "__type__": "63f6aP8lSVFxZneB6wyj8vG",
  2415. "_name": "",
  2416. "_objFlags": 0,
  2417. "node": {
  2418. "__id__": 1
  2419. },
  2420. "_enabled": true,
  2421. "content": {
  2422. "__id__": 5
  2423. },
  2424. "typeBeforSprite": {
  2425. "__id__": 32
  2426. },
  2427. "typeBeforText": {
  2428. "__id__": 35
  2429. },
  2430. "typeAfterSprite": {
  2431. "__id__": 38
  2432. },
  2433. "typeAfterText": {
  2434. "__id__": 41
  2435. },
  2436. "levelNumBeforText": {
  2437. "__id__": 59
  2438. },
  2439. "levelNumAfterText": {
  2440. "__id__": 71
  2441. },
  2442. "levelNameBeforText": {
  2443. "__id__": 64
  2444. },
  2445. "levelNameAfterText": {
  2446. "__id__": 76
  2447. },
  2448. "confirmNode": {
  2449. "__id__": 20
  2450. },
  2451. "confirmText": {
  2452. "__id__": 21
  2453. }
  2454. },
  2455. {
  2456. "__type__": "cc.PrefabInfo",
  2457. "root": {
  2458. "__id__": 1
  2459. },
  2460. "asset": {
  2461. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  2462. },
  2463. "fileId": "755ApOqatBVaI7CihxUe1J",
  2464. "sync": false
  2465. }
  2466. ]