taskPrefab7.prefab 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "taskPrefab3",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 5
  25. },
  26. {
  27. "__id__": 8
  28. },
  29. {
  30. "__id__": 47
  31. },
  32. {
  33. "__id__": 51
  34. },
  35. {
  36. "__id__": 61
  37. }
  38. ],
  39. "_active": true,
  40. "_level": 1,
  41. "_components": [],
  42. "_prefab": {
  43. "__id__": 64
  44. },
  45. "_opacity": 255,
  46. "_color": {
  47. "__type__": "cc.Color",
  48. "r": 255,
  49. "g": 255,
  50. "b": 255,
  51. "a": 255
  52. },
  53. "_contentSize": {
  54. "__type__": "cc.Size",
  55. "width": 150,
  56. "height": 100
  57. },
  58. "_anchorPoint": {
  59. "__type__": "cc.Vec2",
  60. "x": 0.5,
  61. "y": 0.5
  62. },
  63. "_position": {
  64. "__type__": "cc.Vec3",
  65. "x": 0,
  66. "y": 0,
  67. "z": 0
  68. },
  69. "_scale": {
  70. "__type__": "cc.Vec3",
  71. "x": 1,
  72. "y": 1,
  73. "z": 1
  74. },
  75. "_quat": {
  76. "__type__": "cc.Quat",
  77. "x": 0,
  78. "y": 0,
  79. "z": 0,
  80. "w": 1
  81. },
  82. "_skewX": 0,
  83. "_skewY": 0,
  84. "_zIndex": 0,
  85. "_is3DNode": false,
  86. "groupIndex": 0,
  87. "_rotationX": 0,
  88. "_rotationY": 0,
  89. "_id": ""
  90. },
  91. {
  92. "__type__": "cc.Node",
  93. "_name": "New Node",
  94. "_objFlags": 0,
  95. "_parent": {
  96. "__id__": 1
  97. },
  98. "_children": [],
  99. "_active": true,
  100. "_level": 2,
  101. "_components": [
  102. {
  103. "__id__": 3
  104. }
  105. ],
  106. "_prefab": {
  107. "__id__": 4
  108. },
  109. "_opacity": 255,
  110. "_color": {
  111. "__type__": "cc.Color",
  112. "r": 255,
  113. "g": 255,
  114. "b": 255,
  115. "a": 255
  116. },
  117. "_contentSize": {
  118. "__type__": "cc.Size",
  119. "width": 1200,
  120. "height": 1200
  121. },
  122. "_anchorPoint": {
  123. "__type__": "cc.Vec2",
  124. "x": 0.5,
  125. "y": 0.5
  126. },
  127. "_position": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_scale": {
  134. "__type__": "cc.Vec3",
  135. "x": 1,
  136. "y": 1,
  137. "z": 1
  138. },
  139. "_quat": {
  140. "__type__": "cc.Quat",
  141. "x": 0,
  142. "y": 0,
  143. "z": 0,
  144. "w": 1
  145. },
  146. "_skewX": 0,
  147. "_skewY": 0,
  148. "_zIndex": 0,
  149. "_is3DNode": false,
  150. "groupIndex": 0,
  151. "_id": ""
  152. },
  153. {
  154. "__type__": "cc.BlockInputEvents",
  155. "_name": "",
  156. "_objFlags": 0,
  157. "node": {
  158. "__id__": 2
  159. },
  160. "_enabled": true,
  161. "_id": ""
  162. },
  163. {
  164. "__type__": "cc.PrefabInfo",
  165. "root": {
  166. "__id__": 1
  167. },
  168. "asset": {
  169. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  170. },
  171. "fileId": "716x/gRJVMg41O7PNUUUvz",
  172. "sync": false
  173. },
  174. {
  175. "__type__": "cc.Node",
  176. "_name": "bgnn",
  177. "_objFlags": 0,
  178. "_parent": {
  179. "__id__": 1
  180. },
  181. "_children": [],
  182. "_active": true,
  183. "_level": 2,
  184. "_components": [
  185. {
  186. "__id__": 6
  187. }
  188. ],
  189. "_prefab": {
  190. "__id__": 7
  191. },
  192. "_opacity": 147,
  193. "_color": {
  194. "__type__": "cc.Color",
  195. "r": 0,
  196. "g": 0,
  197. "b": 0,
  198. "a": 255
  199. },
  200. "_contentSize": {
  201. "__type__": "cc.Size",
  202. "width": 1200,
  203. "height": 1800
  204. },
  205. "_anchorPoint": {
  206. "__type__": "cc.Vec2",
  207. "x": 0.5,
  208. "y": 0.5
  209. },
  210. "_position": {
  211. "__type__": "cc.Vec3",
  212. "x": 0,
  213. "y": 0,
  214. "z": 0
  215. },
  216. "_scale": {
  217. "__type__": "cc.Vec3",
  218. "x": 1,
  219. "y": 1,
  220. "z": 1
  221. },
  222. "_quat": {
  223. "__type__": "cc.Quat",
  224. "x": 0,
  225. "y": 0,
  226. "z": 0,
  227. "w": 1
  228. },
  229. "_skewX": 0,
  230. "_skewY": 0,
  231. "_zIndex": 0,
  232. "_is3DNode": false,
  233. "groupIndex": 0,
  234. "_rotationX": 0,
  235. "_rotationY": 0,
  236. "_id": ""
  237. },
  238. {
  239. "__type__": "cc.Sprite",
  240. "_name": "",
  241. "_objFlags": 0,
  242. "node": {
  243. "__id__": 5
  244. },
  245. "_enabled": true,
  246. "_srcBlendFactor": 770,
  247. "_dstBlendFactor": 771,
  248. "_spriteFrame": {
  249. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  250. },
  251. "_type": 0,
  252. "_sizeMode": 0,
  253. "_fillType": 0,
  254. "_fillCenter": {
  255. "__type__": "cc.Vec2",
  256. "x": 0,
  257. "y": 0
  258. },
  259. "_fillStart": 0,
  260. "_fillRange": 0,
  261. "_isTrimmedMode": true,
  262. "_state": 0,
  263. "_atlas": null,
  264. "_id": ""
  265. },
  266. {
  267. "__type__": "cc.PrefabInfo",
  268. "root": {
  269. "__id__": 1
  270. },
  271. "asset": {
  272. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  273. },
  274. "fileId": "41Upov3CBBHrf54t71LV8T",
  275. "sync": false
  276. },
  277. {
  278. "__type__": "cc.Node",
  279. "_name": "bg",
  280. "_objFlags": 0,
  281. "_parent": {
  282. "__id__": 1
  283. },
  284. "_children": [
  285. {
  286. "__id__": 9
  287. },
  288. {
  289. "__id__": 27
  290. }
  291. ],
  292. "_active": true,
  293. "_level": 2,
  294. "_components": [
  295. {
  296. "__id__": 45
  297. }
  298. ],
  299. "_prefab": {
  300. "__id__": 46
  301. },
  302. "_opacity": 255,
  303. "_color": {
  304. "__type__": "cc.Color",
  305. "r": 255,
  306. "g": 255,
  307. "b": 255,
  308. "a": 255
  309. },
  310. "_contentSize": {
  311. "__type__": "cc.Size",
  312. "width": 463,
  313. "height": 376
  314. },
  315. "_anchorPoint": {
  316. "__type__": "cc.Vec2",
  317. "x": 0.5,
  318. "y": 0.5
  319. },
  320. "_position": {
  321. "__type__": "cc.Vec3",
  322. "x": 83,
  323. "y": 206,
  324. "z": 0
  325. },
  326. "_scale": {
  327. "__type__": "cc.Vec3",
  328. "x": 1,
  329. "y": 1,
  330. "z": 1
  331. },
  332. "_quat": {
  333. "__type__": "cc.Quat",
  334. "x": 0,
  335. "y": 0,
  336. "z": 0,
  337. "w": 1
  338. },
  339. "_skewX": 0,
  340. "_skewY": 0,
  341. "_zIndex": 0,
  342. "_is3DNode": false,
  343. "groupIndex": 0,
  344. "_rotationX": 0,
  345. "_rotationY": 0,
  346. "_id": ""
  347. },
  348. {
  349. "__type__": "cc.Node",
  350. "_name": "New Label",
  351. "_objFlags": 0,
  352. "_parent": {
  353. "__id__": 8
  354. },
  355. "_children": [
  356. {
  357. "__id__": 10
  358. },
  359. {
  360. "__id__": 13
  361. },
  362. {
  363. "__id__": 17
  364. },
  365. {
  366. "__id__": 21
  367. }
  368. ],
  369. "_active": false,
  370. "_level": 3,
  371. "_components": [
  372. {
  373. "__id__": 25
  374. }
  375. ],
  376. "_prefab": {
  377. "__id__": 26
  378. },
  379. "_opacity": 255,
  380. "_color": {
  381. "__type__": "cc.Color",
  382. "r": 0,
  383. "g": 0,
  384. "b": 0,
  385. "a": 255
  386. },
  387. "_contentSize": {
  388. "__type__": "cc.Size",
  389. "width": 335.57,
  390. "height": 80
  391. },
  392. "_anchorPoint": {
  393. "__type__": "cc.Vec2",
  394. "x": 0.5,
  395. "y": 0.5
  396. },
  397. "_position": {
  398. "__type__": "cc.Vec3",
  399. "x": 8.9,
  400. "y": 70,
  401. "z": 0
  402. },
  403. "_scale": {
  404. "__type__": "cc.Vec3",
  405. "x": 1,
  406. "y": 1,
  407. "z": 1
  408. },
  409. "_quat": {
  410. "__type__": "cc.Quat",
  411. "x": 0,
  412. "y": 0,
  413. "z": 0,
  414. "w": 1
  415. },
  416. "_skewX": 0,
  417. "_skewY": 0,
  418. "_zIndex": 0,
  419. "_is3DNode": false,
  420. "groupIndex": 0,
  421. "_rotationX": 0,
  422. "_rotationY": 0,
  423. "_id": ""
  424. },
  425. {
  426. "__type__": "cc.Node",
  427. "_name": "New Label",
  428. "_objFlags": 0,
  429. "_parent": {
  430. "__id__": 9
  431. },
  432. "_children": [],
  433. "_active": true,
  434. "_level": 4,
  435. "_components": [
  436. {
  437. "__id__": 11
  438. }
  439. ],
  440. "_prefab": {
  441. "__id__": 12
  442. },
  443. "_opacity": 255,
  444. "_color": {
  445. "__type__": "cc.Color",
  446. "r": 255,
  447. "g": 0,
  448. "b": 0,
  449. "a": 255
  450. },
  451. "_contentSize": {
  452. "__type__": "cc.Size",
  453. "width": 40,
  454. "height": 20
  455. },
  456. "_anchorPoint": {
  457. "__type__": "cc.Vec2",
  458. "x": 0.5,
  459. "y": 0.5
  460. },
  461. "_position": {
  462. "__type__": "cc.Vec3",
  463. "x": 6,
  464. "y": -10,
  465. "z": 0
  466. },
  467. "_scale": {
  468. "__type__": "cc.Vec3",
  469. "x": 1,
  470. "y": 1,
  471. "z": 1
  472. },
  473. "_quat": {
  474. "__type__": "cc.Quat",
  475. "x": 0,
  476. "y": 0,
  477. "z": 0,
  478. "w": 1
  479. },
  480. "_skewX": 0,
  481. "_skewY": 0,
  482. "_zIndex": 0,
  483. "_is3DNode": false,
  484. "groupIndex": 0,
  485. "_rotationX": 0,
  486. "_rotationY": 0,
  487. "_id": ""
  488. },
  489. {
  490. "__type__": "cc.Label",
  491. "_name": "",
  492. "_objFlags": 0,
  493. "node": {
  494. "__id__": 10
  495. },
  496. "_enabled": true,
  497. "_srcBlendFactor": 1,
  498. "_dstBlendFactor": 771,
  499. "_useOriginalSize": false,
  500. "_string": "首富",
  501. "_N$string": "首富",
  502. "_fontSize": 20,
  503. "_lineHeight": 20,
  504. "_enableWrapText": true,
  505. "_N$file": null,
  506. "_isSystemFontUsed": true,
  507. "_spacingX": 0,
  508. "_N$horizontalAlign": 0,
  509. "_N$verticalAlign": 0,
  510. "_N$fontFamily": "Arial",
  511. "_N$overflow": 0,
  512. "_id": ""
  513. },
  514. {
  515. "__type__": "cc.PrefabInfo",
  516. "root": {
  517. "__id__": 1
  518. },
  519. "asset": {
  520. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  521. },
  522. "fileId": "66FhFw1JFIJISlmxqxqWVF",
  523. "sync": false
  524. },
  525. {
  526. "__type__": "cc.Node",
  527. "_name": "New Label",
  528. "_objFlags": 0,
  529. "_parent": {
  530. "__id__": 9
  531. },
  532. "_children": [],
  533. "_active": false,
  534. "_level": 4,
  535. "_components": [
  536. {
  537. "__id__": 14
  538. },
  539. {
  540. "__id__": 15
  541. }
  542. ],
  543. "_prefab": {
  544. "__id__": 16
  545. },
  546. "_opacity": 255,
  547. "_color": {
  548. "__type__": "cc.Color",
  549. "r": 255,
  550. "g": 0,
  551. "b": 0,
  552. "a": 255
  553. },
  554. "_contentSize": {
  555. "__type__": "cc.Size",
  556. "width": 22.25,
  557. "height": 20
  558. },
  559. "_anchorPoint": {
  560. "__type__": "cc.Vec2",
  561. "x": 0.5,
  562. "y": 0.5
  563. },
  564. "_position": {
  565. "__type__": "cc.Vec3",
  566. "x": 56,
  567. "y": 0,
  568. "z": 0
  569. },
  570. "_scale": {
  571. "__type__": "cc.Vec3",
  572. "x": 1,
  573. "y": 1,
  574. "z": 1
  575. },
  576. "_quat": {
  577. "__type__": "cc.Quat",
  578. "x": 0,
  579. "y": 0,
  580. "z": 0,
  581. "w": 1
  582. },
  583. "_skewX": 0,
  584. "_skewY": 0,
  585. "_zIndex": 0,
  586. "_is3DNode": false,
  587. "groupIndex": 0,
  588. "_rotationX": 0,
  589. "_rotationY": 0,
  590. "_id": ""
  591. },
  592. {
  593. "__type__": "cc.Label",
  594. "_name": "",
  595. "_objFlags": 0,
  596. "node": {
  597. "__id__": 13
  598. },
  599. "_enabled": true,
  600. "_srcBlendFactor": 1,
  601. "_dstBlendFactor": 771,
  602. "_useOriginalSize": false,
  603. "_string": "15",
  604. "_N$string": "15",
  605. "_fontSize": 20,
  606. "_lineHeight": 20,
  607. "_enableWrapText": true,
  608. "_N$file": null,
  609. "_isSystemFontUsed": true,
  610. "_spacingX": 0,
  611. "_N$horizontalAlign": 0,
  612. "_N$verticalAlign": 0,
  613. "_N$fontFamily": "Arial",
  614. "_N$overflow": 0,
  615. "_id": ""
  616. },
  617. {
  618. "__type__": "cc.Animation",
  619. "_name": "",
  620. "_objFlags": 0,
  621. "node": {
  622. "__id__": 13
  623. },
  624. "_enabled": true,
  625. "_defaultClip": {
  626. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  627. },
  628. "_clips": [
  629. {
  630. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  631. }
  632. ],
  633. "playOnLoad": true,
  634. "_id": ""
  635. },
  636. {
  637. "__type__": "cc.PrefabInfo",
  638. "root": {
  639. "__id__": 1
  640. },
  641. "asset": {
  642. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  643. },
  644. "fileId": "d1fiHgV5pMDrfEqnItlhSp",
  645. "sync": false
  646. },
  647. {
  648. "__type__": "cc.Node",
  649. "_name": "New Label",
  650. "_objFlags": 0,
  651. "_parent": {
  652. "__id__": 9
  653. },
  654. "_children": [],
  655. "_active": false,
  656. "_level": 4,
  657. "_components": [
  658. {
  659. "__id__": 18
  660. },
  661. {
  662. "__id__": 19
  663. }
  664. ],
  665. "_prefab": {
  666. "__id__": 20
  667. },
  668. "_opacity": 255,
  669. "_color": {
  670. "__type__": "cc.Color",
  671. "r": 255,
  672. "g": 0,
  673. "b": 0,
  674. "a": 255
  675. },
  676. "_contentSize": {
  677. "__type__": "cc.Size",
  678. "width": 40,
  679. "height": 20
  680. },
  681. "_anchorPoint": {
  682. "__type__": "cc.Vec2",
  683. "x": 0.5,
  684. "y": 0.5
  685. },
  686. "_position": {
  687. "__type__": "cc.Vec3",
  688. "x": -47.1,
  689. "y": -20.5,
  690. "z": 0
  691. },
  692. "_scale": {
  693. "__type__": "cc.Vec3",
  694. "x": 1,
  695. "y": 1,
  696. "z": 1
  697. },
  698. "_quat": {
  699. "__type__": "cc.Quat",
  700. "x": 0,
  701. "y": 0,
  702. "z": 0,
  703. "w": 1
  704. },
  705. "_skewX": 0,
  706. "_skewY": 0,
  707. "_zIndex": 0,
  708. "_is3DNode": false,
  709. "groupIndex": 0,
  710. "_rotationX": 0,
  711. "_rotationY": 0,
  712. "_id": ""
  713. },
  714. {
  715. "__type__": "cc.Label",
  716. "_name": "",
  717. "_objFlags": 0,
  718. "node": {
  719. "__id__": 17
  720. },
  721. "_enabled": true,
  722. "_srcBlendFactor": 1,
  723. "_dstBlendFactor": 771,
  724. "_useOriginalSize": false,
  725. "_string": "人才",
  726. "_N$string": "人才",
  727. "_fontSize": 20,
  728. "_lineHeight": 20,
  729. "_enableWrapText": true,
  730. "_N$file": null,
  731. "_isSystemFontUsed": true,
  732. "_spacingX": 0,
  733. "_N$horizontalAlign": 0,
  734. "_N$verticalAlign": 0,
  735. "_N$fontFamily": "Arial",
  736. "_N$overflow": 0,
  737. "_id": ""
  738. },
  739. {
  740. "__type__": "cc.Animation",
  741. "_name": "",
  742. "_objFlags": 0,
  743. "node": {
  744. "__id__": 17
  745. },
  746. "_enabled": true,
  747. "_defaultClip": {
  748. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  749. },
  750. "_clips": [
  751. {
  752. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  753. }
  754. ],
  755. "playOnLoad": true,
  756. "_id": ""
  757. },
  758. {
  759. "__type__": "cc.PrefabInfo",
  760. "root": {
  761. "__id__": 1
  762. },
  763. "asset": {
  764. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  765. },
  766. "fileId": "30TFEh9ENEtaSfP4X3oVUd",
  767. "sync": false
  768. },
  769. {
  770. "__type__": "cc.Node",
  771. "_name": "New Label",
  772. "_objFlags": 0,
  773. "_parent": {
  774. "__id__": 9
  775. },
  776. "_children": [],
  777. "_active": false,
  778. "_level": 4,
  779. "_components": [
  780. {
  781. "__id__": 22
  782. },
  783. {
  784. "__id__": 23
  785. }
  786. ],
  787. "_prefab": {
  788. "__id__": 24
  789. },
  790. "_opacity": 255,
  791. "_color": {
  792. "__type__": "cc.Color",
  793. "r": 255,
  794. "g": 0,
  795. "b": 0,
  796. "a": 255
  797. },
  798. "_contentSize": {
  799. "__type__": "cc.Size",
  800. "width": 40,
  801. "height": 20
  802. },
  803. "_anchorPoint": {
  804. "__type__": "cc.Vec2",
  805. "x": 0.5,
  806. "y": 0.5
  807. },
  808. "_position": {
  809. "__type__": "cc.Vec3",
  810. "x": -62.5,
  811. "y": 21,
  812. "z": 0
  813. },
  814. "_scale": {
  815. "__type__": "cc.Vec3",
  816. "x": 1,
  817. "y": 1,
  818. "z": 1
  819. },
  820. "_quat": {
  821. "__type__": "cc.Quat",
  822. "x": 0,
  823. "y": 0,
  824. "z": 0,
  825. "w": 1
  826. },
  827. "_skewX": 0,
  828. "_skewY": 0,
  829. "_zIndex": 0,
  830. "_is3DNode": false,
  831. "groupIndex": 0,
  832. "_rotationX": 0,
  833. "_rotationY": 0,
  834. "_id": ""
  835. },
  836. {
  837. "__type__": "cc.Label",
  838. "_name": "",
  839. "_objFlags": 0,
  840. "node": {
  841. "__id__": 21
  842. },
  843. "_enabled": true,
  844. "_srcBlendFactor": 1,
  845. "_dstBlendFactor": 771,
  846. "_useOriginalSize": false,
  847. "_string": "人才",
  848. "_N$string": "人才",
  849. "_fontSize": 20,
  850. "_lineHeight": 20,
  851. "_enableWrapText": true,
  852. "_N$file": null,
  853. "_isSystemFontUsed": true,
  854. "_spacingX": 0,
  855. "_N$horizontalAlign": 0,
  856. "_N$verticalAlign": 0,
  857. "_N$fontFamily": "Arial",
  858. "_N$overflow": 0,
  859. "_id": ""
  860. },
  861. {
  862. "__type__": "cc.Animation",
  863. "_name": "",
  864. "_objFlags": 0,
  865. "node": {
  866. "__id__": 21
  867. },
  868. "_enabled": true,
  869. "_defaultClip": {
  870. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  871. },
  872. "_clips": [
  873. {
  874. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  875. }
  876. ],
  877. "playOnLoad": true,
  878. "_id": ""
  879. },
  880. {
  881. "__type__": "cc.PrefabInfo",
  882. "root": {
  883. "__id__": 1
  884. },
  885. "asset": {
  886. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  887. },
  888. "fileId": "3a+VKIMcBB6pwhcHFxUS0L",
  889. "sync": false
  890. },
  891. {
  892. "__type__": "cc.Label",
  893. "_name": "",
  894. "_objFlags": 0,
  895. "node": {
  896. "__id__": 9
  897. },
  898. "_enabled": true,
  899. "_srcBlendFactor": 1,
  900. "_dstBlendFactor": 771,
  901. "_useOriginalSize": false,
  902. "_string": " 资金不足!?没关系,\n 游戏每天都有大量丰厚的奖励,\n 现在请点击 获取第\n 一笔创业资金吧。",
  903. "_N$string": " 资金不足!?没关系,\n 游戏每天都有大量丰厚的奖励,\n 现在请点击 获取第\n 一笔创业资金吧。",
  904. "_fontSize": 20,
  905. "_lineHeight": 20,
  906. "_enableWrapText": true,
  907. "_N$file": null,
  908. "_isSystemFontUsed": true,
  909. "_spacingX": 0,
  910. "_N$horizontalAlign": 0,
  911. "_N$verticalAlign": 0,
  912. "_N$fontFamily": "Arial",
  913. "_N$overflow": 0,
  914. "_id": ""
  915. },
  916. {
  917. "__type__": "cc.PrefabInfo",
  918. "root": {
  919. "__id__": 1
  920. },
  921. "asset": {
  922. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  923. },
  924. "fileId": "3dN5K+j39BUKty7MWkXNqP",
  925. "sync": false
  926. },
  927. {
  928. "__type__": "cc.Node",
  929. "_name": "richtext",
  930. "_objFlags": 0,
  931. "_parent": {
  932. "__id__": 8
  933. },
  934. "_children": [
  935. {
  936. "__id__": 28
  937. },
  938. {
  939. "__id__": 31
  940. },
  941. {
  942. "__id__": 34
  943. },
  944. {
  945. "__id__": 37
  946. },
  947. {
  948. "__id__": 40
  949. }
  950. ],
  951. "_active": true,
  952. "_level": 3,
  953. "_components": [
  954. {
  955. "__id__": 43
  956. }
  957. ],
  958. "_prefab": {
  959. "__id__": 44
  960. },
  961. "_opacity": 255,
  962. "_color": {
  963. "__type__": "cc.Color",
  964. "r": 255,
  965. "g": 255,
  966. "b": 255,
  967. "a": 255
  968. },
  969. "_contentSize": {
  970. "__type__": "cc.Size",
  971. "width": 360,
  972. "height": 75
  973. },
  974. "_anchorPoint": {
  975. "__type__": "cc.Vec2",
  976. "x": 0.5,
  977. "y": 0.5
  978. },
  979. "_position": {
  980. "__type__": "cc.Vec3",
  981. "x": 0,
  982. "y": 66,
  983. "z": 0
  984. },
  985. "_scale": {
  986. "__type__": "cc.Vec3",
  987. "x": 1,
  988. "y": 1,
  989. "z": 1
  990. },
  991. "_quat": {
  992. "__type__": "cc.Quat",
  993. "x": 0,
  994. "y": 0,
  995. "z": 0,
  996. "w": 1
  997. },
  998. "_skewX": 0,
  999. "_skewY": 0,
  1000. "_zIndex": 0,
  1001. "_is3DNode": false,
  1002. "groupIndex": 0,
  1003. "_rotationX": 0,
  1004. "_rotationY": 0,
  1005. "_id": ""
  1006. },
  1007. {
  1008. "__type__": "cc.PrivateNode",
  1009. "_name": "RICHTEXT_CHILD",
  1010. "_objFlags": 0,
  1011. "_parent": {
  1012. "__id__": 27
  1013. },
  1014. "_children": [],
  1015. "_active": true,
  1016. "_level": 4,
  1017. "_components": [
  1018. {
  1019. "__id__": 29
  1020. }
  1021. ],
  1022. "_prefab": {
  1023. "__id__": 30
  1024. },
  1025. "_opacity": 255,
  1026. "_color": {
  1027. "__type__": "cc.Color",
  1028. "r": 0,
  1029. "g": 0,
  1030. "b": 0,
  1031. "a": 255
  1032. },
  1033. "_contentSize": {
  1034. "__type__": "cc.Size",
  1035. "width": 146.68,
  1036. "height": 25
  1037. },
  1038. "_anchorPoint": {
  1039. "__type__": "cc.Vec2",
  1040. "x": 0,
  1041. "y": 0
  1042. },
  1043. "_position": {
  1044. "__type__": "cc.Vec3",
  1045. "x": -180,
  1046. "y": 12.5,
  1047. "z": 0
  1048. },
  1049. "_scale": {
  1050. "__type__": "cc.Vec3",
  1051. "x": 1,
  1052. "y": 1,
  1053. "z": 1
  1054. },
  1055. "_quat": {
  1056. "__type__": "cc.Quat",
  1057. "x": 0,
  1058. "y": 0,
  1059. "z": 0,
  1060. "w": 1
  1061. },
  1062. "_skewX": 0,
  1063. "_skewY": 0,
  1064. "_zIndex": -32768,
  1065. "_is3DNode": false,
  1066. "groupIndex": 0,
  1067. "_id": ""
  1068. },
  1069. {
  1070. "__type__": "cc.Label",
  1071. "_name": "",
  1072. "_objFlags": 0,
  1073. "node": {
  1074. "__id__": 28
  1075. },
  1076. "_enabled": true,
  1077. "_srcBlendFactor": 1,
  1078. "_dstBlendFactor": 771,
  1079. "_useOriginalSize": true,
  1080. "_string": " 每天点击",
  1081. "_N$string": " 每天点击",
  1082. "_fontSize": 20,
  1083. "_lineHeight": 25,
  1084. "_enableWrapText": true,
  1085. "_N$file": null,
  1086. "_isSystemFontUsed": true,
  1087. "_spacingX": 0,
  1088. "_N$horizontalAlign": 0,
  1089. "_N$verticalAlign": 1,
  1090. "_N$fontFamily": "Arial",
  1091. "_N$overflow": 0,
  1092. "_id": ""
  1093. },
  1094. {
  1095. "__type__": "cc.PrefabInfo",
  1096. "root": {
  1097. "__id__": 1
  1098. },
  1099. "asset": {
  1100. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  1101. },
  1102. "fileId": "d6fXFGuT9CcZGskjqYFkUQ",
  1103. "sync": false
  1104. },
  1105. {
  1106. "__type__": "cc.PrivateNode",
  1107. "_name": "RICHTEXT_CHILD",
  1108. "_objFlags": 0,
  1109. "_parent": {
  1110. "__id__": 27
  1111. },
  1112. "_children": [],
  1113. "_active": true,
  1114. "_level": 4,
  1115. "_components": [
  1116. {
  1117. "__id__": 32
  1118. }
  1119. ],
  1120. "_prefab": {
  1121. "__id__": 33
  1122. },
  1123. "_opacity": 255,
  1124. "_color": {
  1125. "__type__": "cc.Color",
  1126. "r": 255,
  1127. "g": 0,
  1128. "b": 0,
  1129. "a": 255
  1130. },
  1131. "_contentSize": {
  1132. "__type__": "cc.Size",
  1133. "width": 40,
  1134. "height": 25
  1135. },
  1136. "_anchorPoint": {
  1137. "__type__": "cc.Vec2",
  1138. "x": 0,
  1139. "y": 0
  1140. },
  1141. "_position": {
  1142. "__type__": "cc.Vec3",
  1143. "x": -33.31999999999999,
  1144. "y": 12.5,
  1145. "z": 0
  1146. },
  1147. "_scale": {
  1148. "__type__": "cc.Vec3",
  1149. "x": 1,
  1150. "y": 1,
  1151. "z": 1
  1152. },
  1153. "_quat": {
  1154. "__type__": "cc.Quat",
  1155. "x": 0,
  1156. "y": 0,
  1157. "z": 0,
  1158. "w": 1
  1159. },
  1160. "_skewX": 0,
  1161. "_skewY": 0,
  1162. "_zIndex": -32768,
  1163. "_is3DNode": false,
  1164. "groupIndex": 0,
  1165. "_id": ""
  1166. },
  1167. {
  1168. "__type__": "cc.Label",
  1169. "_name": "",
  1170. "_objFlags": 0,
  1171. "node": {
  1172. "__id__": 31
  1173. },
  1174. "_enabled": true,
  1175. "_srcBlendFactor": 1,
  1176. "_dstBlendFactor": 771,
  1177. "_useOriginalSize": true,
  1178. "_string": "签到",
  1179. "_N$string": "签到",
  1180. "_fontSize": 20,
  1181. "_lineHeight": 25,
  1182. "_enableWrapText": true,
  1183. "_N$file": null,
  1184. "_isSystemFontUsed": true,
  1185. "_spacingX": 0,
  1186. "_N$horizontalAlign": 0,
  1187. "_N$verticalAlign": 1,
  1188. "_N$fontFamily": "Arial",
  1189. "_N$overflow": 0,
  1190. "_id": ""
  1191. },
  1192. {
  1193. "__type__": "cc.PrefabInfo",
  1194. "root": {
  1195. "__id__": 1
  1196. },
  1197. "asset": {
  1198. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  1199. },
  1200. "fileId": "2a+T7ZFuFL87/Nz5JPrc4Q",
  1201. "sync": false
  1202. },
  1203. {
  1204. "__type__": "cc.PrivateNode",
  1205. "_name": "RICHTEXT_CHILD",
  1206. "_objFlags": 0,
  1207. "_parent": {
  1208. "__id__": 27
  1209. },
  1210. "_children": [],
  1211. "_active": true,
  1212. "_level": 4,
  1213. "_components": [
  1214. {
  1215. "__id__": 35
  1216. }
  1217. ],
  1218. "_prefab": {
  1219. "__id__": 36
  1220. },
  1221. "_opacity": 255,
  1222. "_color": {
  1223. "__type__": "cc.Color",
  1224. "r": 0,
  1225. "g": 0,
  1226. "b": 0,
  1227. "a": 255
  1228. },
  1229. "_contentSize": {
  1230. "__type__": "cc.Size",
  1231. "width": 80,
  1232. "height": 25
  1233. },
  1234. "_anchorPoint": {
  1235. "__type__": "cc.Vec2",
  1236. "x": 0,
  1237. "y": 0
  1238. },
  1239. "_position": {
  1240. "__type__": "cc.Vec3",
  1241. "x": 6.680000000000007,
  1242. "y": 12.5,
  1243. "z": 0
  1244. },
  1245. "_scale": {
  1246. "__type__": "cc.Vec3",
  1247. "x": 1,
  1248. "y": 1,
  1249. "z": 1
  1250. },
  1251. "_quat": {
  1252. "__type__": "cc.Quat",
  1253. "x": 0,
  1254. "y": 0,
  1255. "z": 0,
  1256. "w": 1
  1257. },
  1258. "_skewX": 0,
  1259. "_skewY": 0,
  1260. "_zIndex": -32768,
  1261. "_is3DNode": false,
  1262. "groupIndex": 0,
  1263. "_id": ""
  1264. },
  1265. {
  1266. "__type__": "cc.Label",
  1267. "_name": "",
  1268. "_objFlags": 0,
  1269. "node": {
  1270. "__id__": 34
  1271. },
  1272. "_enabled": true,
  1273. "_srcBlendFactor": 1,
  1274. "_dstBlendFactor": 771,
  1275. "_useOriginalSize": true,
  1276. "_string": ",都可以",
  1277. "_N$string": ",都可以",
  1278. "_fontSize": 20,
  1279. "_lineHeight": 25,
  1280. "_enableWrapText": true,
  1281. "_N$file": null,
  1282. "_isSystemFontUsed": true,
  1283. "_spacingX": 0,
  1284. "_N$horizontalAlign": 0,
  1285. "_N$verticalAlign": 1,
  1286. "_N$fontFamily": "Arial",
  1287. "_N$overflow": 0,
  1288. "_id": ""
  1289. },
  1290. {
  1291. "__type__": "cc.PrefabInfo",
  1292. "root": {
  1293. "__id__": 1
  1294. },
  1295. "asset": {
  1296. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  1297. },
  1298. "fileId": "9eX+8i76dNIL6Wj80FOfOT",
  1299. "sync": false
  1300. },
  1301. {
  1302. "__type__": "cc.PrivateNode",
  1303. "_name": "RICHTEXT_CHILD",
  1304. "_objFlags": 0,
  1305. "_parent": {
  1306. "__id__": 27
  1307. },
  1308. "_children": [],
  1309. "_active": true,
  1310. "_level": 4,
  1311. "_components": [
  1312. {
  1313. "__id__": 38
  1314. }
  1315. ],
  1316. "_prefab": {
  1317. "__id__": 39
  1318. },
  1319. "_opacity": 255,
  1320. "_color": {
  1321. "__type__": "cc.Color",
  1322. "r": 0,
  1323. "g": 0,
  1324. "b": 0,
  1325. "a": 255
  1326. },
  1327. "_contentSize": {
  1328. "__type__": "cc.Size",
  1329. "width": 360,
  1330. "height": 25
  1331. },
  1332. "_anchorPoint": {
  1333. "__type__": "cc.Vec2",
  1334. "x": 0,
  1335. "y": 0
  1336. },
  1337. "_position": {
  1338. "__type__": "cc.Vec3",
  1339. "x": -180,
  1340. "y": -12.5,
  1341. "z": 0
  1342. },
  1343. "_scale": {
  1344. "__type__": "cc.Vec3",
  1345. "x": 1,
  1346. "y": 1,
  1347. "z": 1
  1348. },
  1349. "_quat": {
  1350. "__type__": "cc.Quat",
  1351. "x": 0,
  1352. "y": 0,
  1353. "z": 0,
  1354. "w": 1
  1355. },
  1356. "_skewX": 0,
  1357. "_skewY": 0,
  1358. "_zIndex": -32768,
  1359. "_is3DNode": false,
  1360. "groupIndex": 0,
  1361. "_id": ""
  1362. },
  1363. {
  1364. "__type__": "cc.Label",
  1365. "_name": "",
  1366. "_objFlags": 0,
  1367. "node": {
  1368. "__id__": 37
  1369. },
  1370. "_enabled": true,
  1371. "_srcBlendFactor": 1,
  1372. "_dstBlendFactor": 771,
  1373. "_useOriginalSize": true,
  1374. "_string": "收获一笔不小的财富。签到的次数越多,",
  1375. "_N$string": "收获一笔不小的财富。签到的次数越多,",
  1376. "_fontSize": 20,
  1377. "_lineHeight": 25,
  1378. "_enableWrapText": true,
  1379. "_N$file": null,
  1380. "_isSystemFontUsed": true,
  1381. "_spacingX": 0,
  1382. "_N$horizontalAlign": 0,
  1383. "_N$verticalAlign": 1,
  1384. "_N$fontFamily": "Arial",
  1385. "_N$overflow": 0,
  1386. "_id": ""
  1387. },
  1388. {
  1389. "__type__": "cc.PrefabInfo",
  1390. "root": {
  1391. "__id__": 1
  1392. },
  1393. "asset": {
  1394. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  1395. },
  1396. "fileId": "7fG2QeR/5Nq6u30KgZpbHn",
  1397. "sync": false
  1398. },
  1399. {
  1400. "__type__": "cc.PrivateNode",
  1401. "_name": "RICHTEXT_CHILD",
  1402. "_objFlags": 0,
  1403. "_parent": {
  1404. "__id__": 27
  1405. },
  1406. "_children": [],
  1407. "_active": true,
  1408. "_level": 4,
  1409. "_components": [
  1410. {
  1411. "__id__": 41
  1412. }
  1413. ],
  1414. "_prefab": {
  1415. "__id__": 42
  1416. },
  1417. "_opacity": 255,
  1418. "_color": {
  1419. "__type__": "cc.Color",
  1420. "r": 0,
  1421. "g": 0,
  1422. "b": 0,
  1423. "a": 255
  1424. },
  1425. "_contentSize": {
  1426. "__type__": "cc.Size",
  1427. "width": 191.68,
  1428. "height": 25
  1429. },
  1430. "_anchorPoint": {
  1431. "__type__": "cc.Vec2",
  1432. "x": 0,
  1433. "y": 0
  1434. },
  1435. "_position": {
  1436. "__type__": "cc.Vec3",
  1437. "x": -180,
  1438. "y": -37.5,
  1439. "z": 0
  1440. },
  1441. "_scale": {
  1442. "__type__": "cc.Vec3",
  1443. "x": 1,
  1444. "y": 1,
  1445. "z": 1
  1446. },
  1447. "_quat": {
  1448. "__type__": "cc.Quat",
  1449. "x": 0,
  1450. "y": 0,
  1451. "z": 0,
  1452. "w": 1
  1453. },
  1454. "_skewX": 0,
  1455. "_skewY": 0,
  1456. "_zIndex": -32768,
  1457. "_is3DNode": false,
  1458. "groupIndex": 0,
  1459. "_id": ""
  1460. },
  1461. {
  1462. "__type__": "cc.Label",
  1463. "_name": "",
  1464. "_objFlags": 0,
  1465. "node": {
  1466. "__id__": 40
  1467. },
  1468. "_enabled": true,
  1469. "_srcBlendFactor": 1,
  1470. "_dstBlendFactor": 771,
  1471. "_useOriginalSize": true,
  1472. "_string": "可获得的财富就越多~",
  1473. "_N$string": "可获得的财富就越多~",
  1474. "_fontSize": 20,
  1475. "_lineHeight": 25,
  1476. "_enableWrapText": true,
  1477. "_N$file": null,
  1478. "_isSystemFontUsed": true,
  1479. "_spacingX": 0,
  1480. "_N$horizontalAlign": 0,
  1481. "_N$verticalAlign": 1,
  1482. "_N$fontFamily": "Arial",
  1483. "_N$overflow": 0,
  1484. "_id": ""
  1485. },
  1486. {
  1487. "__type__": "cc.PrefabInfo",
  1488. "root": {
  1489. "__id__": 1
  1490. },
  1491. "asset": {
  1492. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  1493. },
  1494. "fileId": "9417o4CJdHbKGfbhpTRAcl",
  1495. "sync": false
  1496. },
  1497. {
  1498. "__type__": "cc.RichText",
  1499. "_name": "",
  1500. "_objFlags": 0,
  1501. "node": {
  1502. "__id__": 27
  1503. },
  1504. "_enabled": true,
  1505. "_N$string": "<color=#000000> 每天点击</c><color=#FF0000>签到</c><color=#000000>,都可以\n收获一笔不小的财富。签到的次数越多,\n可获得的财富就越多~</c>",
  1506. "_N$horizontalAlign": 0,
  1507. "_N$fontSize": 20,
  1508. "_N$font": null,
  1509. "_N$maxWidth": 0,
  1510. "_N$lineHeight": 25,
  1511. "_N$imageAtlas": null,
  1512. "_N$handleTouchEvent": true,
  1513. "_id": ""
  1514. },
  1515. {
  1516. "__type__": "cc.PrefabInfo",
  1517. "root": {
  1518. "__id__": 1
  1519. },
  1520. "asset": {
  1521. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  1522. },
  1523. "fileId": "df/Fn1E8FGoLsxvDX1qvFN",
  1524. "sync": false
  1525. },
  1526. {
  1527. "__type__": "cc.Sprite",
  1528. "_name": "",
  1529. "_objFlags": 0,
  1530. "node": {
  1531. "__id__": 8
  1532. },
  1533. "_enabled": true,
  1534. "_srcBlendFactor": 770,
  1535. "_dstBlendFactor": 771,
  1536. "_spriteFrame": {
  1537. "__uuid__": "7336ac05-5e39-44bc-92ff-d6e95545844a"
  1538. },
  1539. "_type": 0,
  1540. "_sizeMode": 0,
  1541. "_fillType": 0,
  1542. "_fillCenter": {
  1543. "__type__": "cc.Vec2",
  1544. "x": 0,
  1545. "y": 0
  1546. },
  1547. "_fillStart": 0,
  1548. "_fillRange": 0,
  1549. "_isTrimmedMode": true,
  1550. "_state": 0,
  1551. "_atlas": null,
  1552. "_id": ""
  1553. },
  1554. {
  1555. "__type__": "cc.PrefabInfo",
  1556. "root": {
  1557. "__id__": 1
  1558. },
  1559. "asset": {
  1560. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  1561. },
  1562. "fileId": "501io/wxdC47go2RnMFVED",
  1563. "sync": false
  1564. },
  1565. {
  1566. "__type__": "cc.Node",
  1567. "_name": "SureBtn",
  1568. "_objFlags": 0,
  1569. "_parent": {
  1570. "__id__": 1
  1571. },
  1572. "_children": [],
  1573. "_active": true,
  1574. "_level": 2,
  1575. "_components": [
  1576. {
  1577. "__id__": 48
  1578. },
  1579. {
  1580. "__id__": 49
  1581. }
  1582. ],
  1583. "_prefab": {
  1584. "__id__": 50
  1585. },
  1586. "_opacity": 255,
  1587. "_color": {
  1588. "__type__": "cc.Color",
  1589. "r": 255,
  1590. "g": 255,
  1591. "b": 255,
  1592. "a": 255
  1593. },
  1594. "_contentSize": {
  1595. "__type__": "cc.Size",
  1596. "width": 82,
  1597. "height": 37
  1598. },
  1599. "_anchorPoint": {
  1600. "__type__": "cc.Vec2",
  1601. "x": 0.5,
  1602. "y": 0.5
  1603. },
  1604. "_position": {
  1605. "__type__": "cc.Vec3",
  1606. "x": 0,
  1607. "y": -270,
  1608. "z": 0
  1609. },
  1610. "_scale": {
  1611. "__type__": "cc.Vec3",
  1612. "x": 2,
  1613. "y": 2,
  1614. "z": 2
  1615. },
  1616. "_quat": {
  1617. "__type__": "cc.Quat",
  1618. "x": 0,
  1619. "y": 0,
  1620. "z": 0,
  1621. "w": 1
  1622. },
  1623. "_skewX": 0,
  1624. "_skewY": 0,
  1625. "_zIndex": 0,
  1626. "_is3DNode": false,
  1627. "groupIndex": 0,
  1628. "_id": ""
  1629. },
  1630. {
  1631. "__type__": "cc.Sprite",
  1632. "_name": "",
  1633. "_objFlags": 0,
  1634. "node": {
  1635. "__id__": 47
  1636. },
  1637. "_enabled": true,
  1638. "_srcBlendFactor": 770,
  1639. "_dstBlendFactor": 771,
  1640. "_spriteFrame": {
  1641. "__uuid__": "db8cfc1e-cabb-4762-a0d5-728f49694fe2"
  1642. },
  1643. "_type": 0,
  1644. "_sizeMode": 0,
  1645. "_fillType": 0,
  1646. "_fillCenter": {
  1647. "__type__": "cc.Vec2",
  1648. "x": 0,
  1649. "y": 0
  1650. },
  1651. "_fillStart": 0,
  1652. "_fillRange": 0,
  1653. "_isTrimmedMode": true,
  1654. "_state": 0,
  1655. "_atlas": null,
  1656. "_id": ""
  1657. },
  1658. {
  1659. "__type__": "cc.Button",
  1660. "_name": "",
  1661. "_objFlags": 0,
  1662. "node": {
  1663. "__id__": 47
  1664. },
  1665. "_enabled": true,
  1666. "duration": 0.1,
  1667. "zoomScale": 1.2,
  1668. "clickEvents": [],
  1669. "_N$interactable": true,
  1670. "_N$enableAutoGrayEffect": false,
  1671. "_N$transition": 3,
  1672. "transition": 3,
  1673. "_N$normalColor": {
  1674. "__type__": "cc.Color",
  1675. "r": 214,
  1676. "g": 214,
  1677. "b": 214,
  1678. "a": 255
  1679. },
  1680. "_N$pressedColor": {
  1681. "__type__": "cc.Color",
  1682. "r": 211,
  1683. "g": 211,
  1684. "b": 211,
  1685. "a": 255
  1686. },
  1687. "pressedColor": {
  1688. "__type__": "cc.Color",
  1689. "r": 211,
  1690. "g": 211,
  1691. "b": 211,
  1692. "a": 255
  1693. },
  1694. "_N$hoverColor": {
  1695. "__type__": "cc.Color",
  1696. "r": 255,
  1697. "g": 255,
  1698. "b": 255,
  1699. "a": 255
  1700. },
  1701. "hoverColor": {
  1702. "__type__": "cc.Color",
  1703. "r": 255,
  1704. "g": 255,
  1705. "b": 255,
  1706. "a": 255
  1707. },
  1708. "_N$disabledColor": {
  1709. "__type__": "cc.Color",
  1710. "r": 124,
  1711. "g": 124,
  1712. "b": 124,
  1713. "a": 255
  1714. },
  1715. "_N$normalSprite": null,
  1716. "_N$pressedSprite": null,
  1717. "pressedSprite": null,
  1718. "_N$hoverSprite": null,
  1719. "hoverSprite": null,
  1720. "_N$disabledSprite": null,
  1721. "_N$target": null,
  1722. "_id": ""
  1723. },
  1724. {
  1725. "__type__": "cc.PrefabInfo",
  1726. "root": {
  1727. "__id__": 1
  1728. },
  1729. "asset": {
  1730. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  1731. },
  1732. "fileId": "02pzR1D6tC/boeifQzPL70",
  1733. "sync": false
  1734. },
  1735. {
  1736. "__type__": "cc.Node",
  1737. "_name": "info",
  1738. "_objFlags": 0,
  1739. "_parent": {
  1740. "__id__": 1
  1741. },
  1742. "_children": [
  1743. {
  1744. "__id__": 52
  1745. },
  1746. {
  1747. "__id__": 55
  1748. }
  1749. ],
  1750. "_active": false,
  1751. "_level": 2,
  1752. "_components": [
  1753. {
  1754. "__id__": 59
  1755. }
  1756. ],
  1757. "_prefab": {
  1758. "__id__": 60
  1759. },
  1760. "_opacity": 255,
  1761. "_color": {
  1762. "__type__": "cc.Color",
  1763. "r": 255,
  1764. "g": 255,
  1765. "b": 255,
  1766. "a": 255
  1767. },
  1768. "_contentSize": {
  1769. "__type__": "cc.Size",
  1770. "width": 82,
  1771. "height": 37
  1772. },
  1773. "_anchorPoint": {
  1774. "__type__": "cc.Vec2",
  1775. "x": 0.5,
  1776. "y": 0.5
  1777. },
  1778. "_position": {
  1779. "__type__": "cc.Vec3",
  1780. "x": 0,
  1781. "y": -270,
  1782. "z": 0
  1783. },
  1784. "_scale": {
  1785. "__type__": "cc.Vec3",
  1786. "x": 2,
  1787. "y": 2,
  1788. "z": 1
  1789. },
  1790. "_quat": {
  1791. "__type__": "cc.Quat",
  1792. "x": 0,
  1793. "y": 0,
  1794. "z": 0,
  1795. "w": 1
  1796. },
  1797. "_skewX": 0,
  1798. "_skewY": 0,
  1799. "_zIndex": 0,
  1800. "_is3DNode": false,
  1801. "groupIndex": 0,
  1802. "_id": ""
  1803. },
  1804. {
  1805. "__type__": "cc.Node",
  1806. "_name": "New Label",
  1807. "_objFlags": 0,
  1808. "_parent": {
  1809. "__id__": 51
  1810. },
  1811. "_children": [],
  1812. "_active": true,
  1813. "_level": 3,
  1814. "_components": [
  1815. {
  1816. "__id__": 53
  1817. }
  1818. ],
  1819. "_prefab": {
  1820. "__id__": 54
  1821. },
  1822. "_opacity": 255,
  1823. "_color": {
  1824. "__type__": "cc.Color",
  1825. "r": 0,
  1826. "g": 0,
  1827. "b": 0,
  1828. "a": 255
  1829. },
  1830. "_contentSize": {
  1831. "__type__": "cc.Size",
  1832. "width": 60,
  1833. "height": 20
  1834. },
  1835. "_anchorPoint": {
  1836. "__type__": "cc.Vec2",
  1837. "x": 0.5,
  1838. "y": 0.5
  1839. },
  1840. "_position": {
  1841. "__type__": "cc.Vec3",
  1842. "x": -1,
  1843. "y": -2,
  1844. "z": 0
  1845. },
  1846. "_scale": {
  1847. "__type__": "cc.Vec3",
  1848. "x": 1,
  1849. "y": 1,
  1850. "z": 1
  1851. },
  1852. "_quat": {
  1853. "__type__": "cc.Quat",
  1854. "x": 0,
  1855. "y": 0,
  1856. "z": 0,
  1857. "w": 1
  1858. },
  1859. "_skewX": 0,
  1860. "_skewY": 0,
  1861. "_zIndex": 0,
  1862. "_is3DNode": false,
  1863. "groupIndex": 0,
  1864. "_rotationX": 0,
  1865. "_rotationY": 0,
  1866. "_id": ""
  1867. },
  1868. {
  1869. "__type__": "cc.Label",
  1870. "_name": "",
  1871. "_objFlags": 0,
  1872. "node": {
  1873. "__id__": 52
  1874. },
  1875. "_enabled": true,
  1876. "_srcBlendFactor": 1,
  1877. "_dstBlendFactor": 771,
  1878. "_useOriginalSize": false,
  1879. "_string": "下一步",
  1880. "_N$string": "下一步",
  1881. "_fontSize": 20,
  1882. "_lineHeight": 20,
  1883. "_enableWrapText": true,
  1884. "_N$file": null,
  1885. "_isSystemFontUsed": true,
  1886. "_spacingX": 0,
  1887. "_N$horizontalAlign": 1,
  1888. "_N$verticalAlign": 1,
  1889. "_N$fontFamily": "Arial",
  1890. "_N$overflow": 0,
  1891. "_id": ""
  1892. },
  1893. {
  1894. "__type__": "cc.PrefabInfo",
  1895. "root": {
  1896. "__id__": 1
  1897. },
  1898. "asset": {
  1899. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  1900. },
  1901. "fileId": "79V0XPVrhNlbFpfJ25CKOY",
  1902. "sync": false
  1903. },
  1904. {
  1905. "__type__": "cc.Node",
  1906. "_name": "SmallArrow",
  1907. "_objFlags": 0,
  1908. "_parent": {
  1909. "__id__": 51
  1910. },
  1911. "_children": [],
  1912. "_active": false,
  1913. "_level": 3,
  1914. "_components": [
  1915. {
  1916. "__id__": 56
  1917. },
  1918. {
  1919. "__id__": 57
  1920. }
  1921. ],
  1922. "_prefab": {
  1923. "__id__": 58
  1924. },
  1925. "_opacity": 255,
  1926. "_color": {
  1927. "__type__": "cc.Color",
  1928. "r": 255,
  1929. "g": 255,
  1930. "b": 255,
  1931. "a": 255
  1932. },
  1933. "_contentSize": {
  1934. "__type__": "cc.Size",
  1935. "width": 50,
  1936. "height": 30
  1937. },
  1938. "_anchorPoint": {
  1939. "__type__": "cc.Vec2",
  1940. "x": 0.5,
  1941. "y": 0.5
  1942. },
  1943. "_position": {
  1944. "__type__": "cc.Vec3",
  1945. "x": 143,
  1946. "y": -74,
  1947. "z": 0
  1948. },
  1949. "_scale": {
  1950. "__type__": "cc.Vec3",
  1951. "x": 1,
  1952. "y": 1,
  1953. "z": 1
  1954. },
  1955. "_quat": {
  1956. "__type__": "cc.Quat",
  1957. "x": 0,
  1958. "y": 0,
  1959. "z": 0,
  1960. "w": 1
  1961. },
  1962. "_skewX": 0,
  1963. "_skewY": 0,
  1964. "_zIndex": 0,
  1965. "_is3DNode": false,
  1966. "groupIndex": 0,
  1967. "_id": ""
  1968. },
  1969. {
  1970. "__type__": "cc.Sprite",
  1971. "_name": "",
  1972. "_objFlags": 0,
  1973. "node": {
  1974. "__id__": 55
  1975. },
  1976. "_enabled": true,
  1977. "_srcBlendFactor": 770,
  1978. "_dstBlendFactor": 771,
  1979. "_spriteFrame": {
  1980. "__uuid__": "38f17776-98ef-4429-8190-483d106c3b97"
  1981. },
  1982. "_type": 0,
  1983. "_sizeMode": 1,
  1984. "_fillType": 0,
  1985. "_fillCenter": {
  1986. "__type__": "cc.Vec2",
  1987. "x": 0,
  1988. "y": 0
  1989. },
  1990. "_fillStart": 0,
  1991. "_fillRange": 0,
  1992. "_isTrimmedMode": true,
  1993. "_state": 0,
  1994. "_atlas": null,
  1995. "_id": ""
  1996. },
  1997. {
  1998. "__type__": "cc.Animation",
  1999. "_name": "",
  2000. "_objFlags": 0,
  2001. "node": {
  2002. "__id__": 55
  2003. },
  2004. "_enabled": true,
  2005. "_defaultClip": {
  2006. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  2007. },
  2008. "_clips": [
  2009. {
  2010. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  2011. }
  2012. ],
  2013. "playOnLoad": true,
  2014. "_id": ""
  2015. },
  2016. {
  2017. "__type__": "cc.PrefabInfo",
  2018. "root": {
  2019. "__id__": 1
  2020. },
  2021. "asset": {
  2022. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  2023. },
  2024. "fileId": "e82VTNZItIOqz1xLHrldf9",
  2025. "sync": false
  2026. },
  2027. {
  2028. "__type__": "cc.Sprite",
  2029. "_name": "",
  2030. "_objFlags": 0,
  2031. "node": {
  2032. "__id__": 51
  2033. },
  2034. "_enabled": true,
  2035. "_srcBlendFactor": 770,
  2036. "_dstBlendFactor": 771,
  2037. "_spriteFrame": {
  2038. "__uuid__": "05325bf4-449c-44ee-8dd3-36e3dddc0e3f"
  2039. },
  2040. "_type": 0,
  2041. "_sizeMode": 1,
  2042. "_fillType": 0,
  2043. "_fillCenter": {
  2044. "__type__": "cc.Vec2",
  2045. "x": 0,
  2046. "y": 0
  2047. },
  2048. "_fillStart": 0,
  2049. "_fillRange": 0,
  2050. "_isTrimmedMode": true,
  2051. "_state": 0,
  2052. "_atlas": null,
  2053. "_id": ""
  2054. },
  2055. {
  2056. "__type__": "cc.PrefabInfo",
  2057. "root": {
  2058. "__id__": 1
  2059. },
  2060. "asset": {
  2061. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  2062. },
  2063. "fileId": "28WX5P3AJNgri4wEeyWMJY",
  2064. "sync": false
  2065. },
  2066. {
  2067. "__type__": "cc.Node",
  2068. "_name": "richman",
  2069. "_objFlags": 0,
  2070. "_parent": {
  2071. "__id__": 1
  2072. },
  2073. "_children": [],
  2074. "_active": true,
  2075. "_level": 2,
  2076. "_components": [
  2077. {
  2078. "__id__": 62
  2079. }
  2080. ],
  2081. "_prefab": {
  2082. "__id__": 63
  2083. },
  2084. "_opacity": 255,
  2085. "_color": {
  2086. "__type__": "cc.Color",
  2087. "r": 255,
  2088. "g": 255,
  2089. "b": 255,
  2090. "a": 255
  2091. },
  2092. "_contentSize": {
  2093. "__type__": "cc.Size",
  2094. "width": 216,
  2095. "height": 664
  2096. },
  2097. "_anchorPoint": {
  2098. "__type__": "cc.Vec2",
  2099. "x": 0.5,
  2100. "y": 0.5
  2101. },
  2102. "_position": {
  2103. "__type__": "cc.Vec3",
  2104. "x": -166,
  2105. "y": -12,
  2106. "z": 0
  2107. },
  2108. "_scale": {
  2109. "__type__": "cc.Vec3",
  2110. "x": 0.7,
  2111. "y": 0.7,
  2112. "z": 1
  2113. },
  2114. "_quat": {
  2115. "__type__": "cc.Quat",
  2116. "x": 0,
  2117. "y": 0,
  2118. "z": 0,
  2119. "w": 1
  2120. },
  2121. "_skewX": 0,
  2122. "_skewY": 0,
  2123. "_zIndex": 0,
  2124. "_is3DNode": false,
  2125. "groupIndex": 0,
  2126. "_id": ""
  2127. },
  2128. {
  2129. "__type__": "cc.Sprite",
  2130. "_name": "",
  2131. "_objFlags": 0,
  2132. "node": {
  2133. "__id__": 61
  2134. },
  2135. "_enabled": true,
  2136. "_srcBlendFactor": 770,
  2137. "_dstBlendFactor": 771,
  2138. "_spriteFrame": {
  2139. "__uuid__": "e9807e16-730d-451e-a06b-f9ce32aa4919"
  2140. },
  2141. "_type": 0,
  2142. "_sizeMode": 1,
  2143. "_fillType": 0,
  2144. "_fillCenter": {
  2145. "__type__": "cc.Vec2",
  2146. "x": 0,
  2147. "y": 0
  2148. },
  2149. "_fillStart": 0,
  2150. "_fillRange": 0,
  2151. "_isTrimmedMode": true,
  2152. "_state": 0,
  2153. "_atlas": null,
  2154. "_id": ""
  2155. },
  2156. {
  2157. "__type__": "cc.PrefabInfo",
  2158. "root": {
  2159. "__id__": 1
  2160. },
  2161. "asset": {
  2162. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  2163. },
  2164. "fileId": "f0JFpOvnZJtaRkyPFcgdpJ",
  2165. "sync": false
  2166. },
  2167. {
  2168. "__type__": "cc.PrefabInfo",
  2169. "root": {
  2170. "__id__": 1
  2171. },
  2172. "asset": {
  2173. "__uuid__": "46268110-6f54-4082-b033-4e6e5bcb7a2a"
  2174. },
  2175. "fileId": "95NHeUxnJOoZea8hBtGYHe",
  2176. "sync": false
  2177. }
  2178. ]