taskPrefabshowtask.prefab 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998
  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__": 42
  31. },
  32. {
  33. "__id__": 46
  34. },
  35. {
  36. "__id__": 56
  37. }
  38. ],
  39. "_active": true,
  40. "_level": 1,
  41. "_components": [],
  42. "_prefab": {
  43. "__id__": 59
  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__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  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__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  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__": 28
  290. }
  291. ],
  292. "_active": true,
  293. "_level": 2,
  294. "_components": [
  295. {
  296. "__id__": 40
  297. }
  298. ],
  299. "_prefab": {
  300. "__id__": 41
  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": 491,
  313. "height": 335
  314. },
  315. "_anchorPoint": {
  316. "__type__": "cc.Vec2",
  317. "x": 0.5,
  318. "y": 0.5
  319. },
  320. "_position": {
  321. "__type__": "cc.Vec3",
  322. "x": 120,
  323. "y": 227,
  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__": 14
  361. },
  362. {
  363. "__id__": 18
  364. },
  365. {
  366. "__id__": 22
  367. }
  368. ],
  369. "_active": false,
  370. "_level": 3,
  371. "_components": [
  372. {
  373. "__id__": 26
  374. }
  375. ],
  376. "_prefab": {
  377. "__id__": 27
  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": 235.57,
  390. "height": 20
  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": false,
  434. "_level": 4,
  435. "_components": [
  436. {
  437. "__id__": 11
  438. },
  439. {
  440. "__id__": 12
  441. }
  442. ],
  443. "_prefab": {
  444. "__id__": 13
  445. },
  446. "_opacity": 255,
  447. "_color": {
  448. "__type__": "cc.Color",
  449. "r": 255,
  450. "g": 0,
  451. "b": 0,
  452. "a": 255
  453. },
  454. "_contentSize": {
  455. "__type__": "cc.Size",
  456. "width": 40,
  457. "height": 20
  458. },
  459. "_anchorPoint": {
  460. "__type__": "cc.Vec2",
  461. "x": 0.5,
  462. "y": 0.5
  463. },
  464. "_position": {
  465. "__type__": "cc.Vec3",
  466. "x": 82.8,
  467. "y": 60.9,
  468. "z": 0
  469. },
  470. "_scale": {
  471. "__type__": "cc.Vec3",
  472. "x": 1,
  473. "y": 1,
  474. "z": 1
  475. },
  476. "_quat": {
  477. "__type__": "cc.Quat",
  478. "x": 0,
  479. "y": 0,
  480. "z": 0,
  481. "w": 1
  482. },
  483. "_skewX": 0,
  484. "_skewY": 0,
  485. "_zIndex": 0,
  486. "_is3DNode": false,
  487. "groupIndex": 0,
  488. "_rotationX": 0,
  489. "_rotationY": 0,
  490. "_id": ""
  491. },
  492. {
  493. "__type__": "cc.Label",
  494. "_name": "",
  495. "_objFlags": 0,
  496. "node": {
  497. "__id__": 10
  498. },
  499. "_enabled": true,
  500. "_srcBlendFactor": 1,
  501. "_dstBlendFactor": 771,
  502. "_useOriginalSize": false,
  503. "_string": "首富",
  504. "_N$string": "首富",
  505. "_fontSize": 20,
  506. "_lineHeight": 20,
  507. "_enableWrapText": true,
  508. "_N$file": null,
  509. "_isSystemFontUsed": true,
  510. "_spacingX": 0,
  511. "_N$horizontalAlign": 0,
  512. "_N$verticalAlign": 0,
  513. "_N$fontFamily": "Arial",
  514. "_N$overflow": 0,
  515. "_id": ""
  516. },
  517. {
  518. "__type__": "cc.Animation",
  519. "_name": "",
  520. "_objFlags": 0,
  521. "node": {
  522. "__id__": 10
  523. },
  524. "_enabled": true,
  525. "_defaultClip": {
  526. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  527. },
  528. "_clips": [
  529. {
  530. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  531. }
  532. ],
  533. "playOnLoad": true,
  534. "_id": ""
  535. },
  536. {
  537. "__type__": "cc.PrefabInfo",
  538. "root": {
  539. "__id__": 1
  540. },
  541. "asset": {
  542. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  543. },
  544. "fileId": "66FhFw1JFIJISlmxqxqWVF",
  545. "sync": false
  546. },
  547. {
  548. "__type__": "cc.Node",
  549. "_name": "New Label",
  550. "_objFlags": 0,
  551. "_parent": {
  552. "__id__": 9
  553. },
  554. "_children": [],
  555. "_active": true,
  556. "_level": 4,
  557. "_components": [
  558. {
  559. "__id__": 15
  560. },
  561. {
  562. "__id__": 16
  563. }
  564. ],
  565. "_prefab": {
  566. "__id__": 17
  567. },
  568. "_opacity": 255,
  569. "_color": {
  570. "__type__": "cc.Color",
  571. "r": 255,
  572. "g": 0,
  573. "b": 0,
  574. "a": 255
  575. },
  576. "_contentSize": {
  577. "__type__": "cc.Size",
  578. "width": 40,
  579. "height": 20
  580. },
  581. "_anchorPoint": {
  582. "__type__": "cc.Vec2",
  583. "x": 0.5,
  584. "y": 0.5
  585. },
  586. "_position": {
  587. "__type__": "cc.Vec3",
  588. "x": 32,
  589. "y": 0,
  590. "z": 0
  591. },
  592. "_scale": {
  593. "__type__": "cc.Vec3",
  594. "x": 1,
  595. "y": 1,
  596. "z": 1
  597. },
  598. "_quat": {
  599. "__type__": "cc.Quat",
  600. "x": 0,
  601. "y": 0,
  602. "z": 0,
  603. "w": 1
  604. },
  605. "_skewX": 0,
  606. "_skewY": 0,
  607. "_zIndex": 0,
  608. "_is3DNode": false,
  609. "groupIndex": 0,
  610. "_rotationX": 0,
  611. "_rotationY": 0,
  612. "_id": ""
  613. },
  614. {
  615. "__type__": "cc.Label",
  616. "_name": "",
  617. "_objFlags": 0,
  618. "node": {
  619. "__id__": 14
  620. },
  621. "_enabled": true,
  622. "_srcBlendFactor": 1,
  623. "_dstBlendFactor": 771,
  624. "_useOriginalSize": false,
  625. "_string": "钻石",
  626. "_N$string": "钻石",
  627. "_fontSize": 20,
  628. "_lineHeight": 20,
  629. "_enableWrapText": true,
  630. "_N$file": null,
  631. "_isSystemFontUsed": true,
  632. "_spacingX": 0,
  633. "_N$horizontalAlign": 0,
  634. "_N$verticalAlign": 0,
  635. "_N$fontFamily": "Arial",
  636. "_N$overflow": 0,
  637. "_id": ""
  638. },
  639. {
  640. "__type__": "cc.Animation",
  641. "_name": "",
  642. "_objFlags": 0,
  643. "node": {
  644. "__id__": 14
  645. },
  646. "_enabled": true,
  647. "_defaultClip": {
  648. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  649. },
  650. "_clips": [
  651. {
  652. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  653. }
  654. ],
  655. "playOnLoad": true,
  656. "_id": ""
  657. },
  658. {
  659. "__type__": "cc.PrefabInfo",
  660. "root": {
  661. "__id__": 1
  662. },
  663. "asset": {
  664. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  665. },
  666. "fileId": "d1fiHgV5pMDrfEqnItlhSp",
  667. "sync": false
  668. },
  669. {
  670. "__type__": "cc.Node",
  671. "_name": "New Label",
  672. "_objFlags": 0,
  673. "_parent": {
  674. "__id__": 9
  675. },
  676. "_children": [],
  677. "_active": false,
  678. "_level": 4,
  679. "_components": [
  680. {
  681. "__id__": 19
  682. },
  683. {
  684. "__id__": 20
  685. }
  686. ],
  687. "_prefab": {
  688. "__id__": 21
  689. },
  690. "_opacity": 255,
  691. "_color": {
  692. "__type__": "cc.Color",
  693. "r": 255,
  694. "g": 0,
  695. "b": 0,
  696. "a": 255
  697. },
  698. "_contentSize": {
  699. "__type__": "cc.Size",
  700. "width": 40,
  701. "height": 20
  702. },
  703. "_anchorPoint": {
  704. "__type__": "cc.Vec2",
  705. "x": 0.5,
  706. "y": 0.5
  707. },
  708. "_position": {
  709. "__type__": "cc.Vec3",
  710. "x": -47.1,
  711. "y": -20.5,
  712. "z": 0
  713. },
  714. "_scale": {
  715. "__type__": "cc.Vec3",
  716. "x": 1,
  717. "y": 1,
  718. "z": 1
  719. },
  720. "_quat": {
  721. "__type__": "cc.Quat",
  722. "x": 0,
  723. "y": 0,
  724. "z": 0,
  725. "w": 1
  726. },
  727. "_skewX": 0,
  728. "_skewY": 0,
  729. "_zIndex": 0,
  730. "_is3DNode": false,
  731. "groupIndex": 0,
  732. "_rotationX": 0,
  733. "_rotationY": 0,
  734. "_id": ""
  735. },
  736. {
  737. "__type__": "cc.Label",
  738. "_name": "",
  739. "_objFlags": 0,
  740. "node": {
  741. "__id__": 18
  742. },
  743. "_enabled": true,
  744. "_srcBlendFactor": 1,
  745. "_dstBlendFactor": 771,
  746. "_useOriginalSize": false,
  747. "_string": "人才",
  748. "_N$string": "人才",
  749. "_fontSize": 20,
  750. "_lineHeight": 20,
  751. "_enableWrapText": true,
  752. "_N$file": null,
  753. "_isSystemFontUsed": true,
  754. "_spacingX": 0,
  755. "_N$horizontalAlign": 0,
  756. "_N$verticalAlign": 0,
  757. "_N$fontFamily": "Arial",
  758. "_N$overflow": 0,
  759. "_id": ""
  760. },
  761. {
  762. "__type__": "cc.Animation",
  763. "_name": "",
  764. "_objFlags": 0,
  765. "node": {
  766. "__id__": 18
  767. },
  768. "_enabled": true,
  769. "_defaultClip": {
  770. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  771. },
  772. "_clips": [
  773. {
  774. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  775. }
  776. ],
  777. "playOnLoad": true,
  778. "_id": ""
  779. },
  780. {
  781. "__type__": "cc.PrefabInfo",
  782. "root": {
  783. "__id__": 1
  784. },
  785. "asset": {
  786. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  787. },
  788. "fileId": "30TFEh9ENEtaSfP4X3oVUd",
  789. "sync": false
  790. },
  791. {
  792. "__type__": "cc.Node",
  793. "_name": "New Label",
  794. "_objFlags": 0,
  795. "_parent": {
  796. "__id__": 9
  797. },
  798. "_children": [],
  799. "_active": false,
  800. "_level": 4,
  801. "_components": [
  802. {
  803. "__id__": 23
  804. },
  805. {
  806. "__id__": 24
  807. }
  808. ],
  809. "_prefab": {
  810. "__id__": 25
  811. },
  812. "_opacity": 255,
  813. "_color": {
  814. "__type__": "cc.Color",
  815. "r": 255,
  816. "g": 0,
  817. "b": 0,
  818. "a": 255
  819. },
  820. "_contentSize": {
  821. "__type__": "cc.Size",
  822. "width": 40,
  823. "height": 20
  824. },
  825. "_anchorPoint": {
  826. "__type__": "cc.Vec2",
  827. "x": 0.5,
  828. "y": 0.5
  829. },
  830. "_position": {
  831. "__type__": "cc.Vec3",
  832. "x": -62.5,
  833. "y": 21,
  834. "z": 0
  835. },
  836. "_scale": {
  837. "__type__": "cc.Vec3",
  838. "x": 1,
  839. "y": 1,
  840. "z": 1
  841. },
  842. "_quat": {
  843. "__type__": "cc.Quat",
  844. "x": 0,
  845. "y": 0,
  846. "z": 0,
  847. "w": 1
  848. },
  849. "_skewX": 0,
  850. "_skewY": 0,
  851. "_zIndex": 0,
  852. "_is3DNode": false,
  853. "groupIndex": 0,
  854. "_rotationX": 0,
  855. "_rotationY": 0,
  856. "_id": ""
  857. },
  858. {
  859. "__type__": "cc.Label",
  860. "_name": "",
  861. "_objFlags": 0,
  862. "node": {
  863. "__id__": 22
  864. },
  865. "_enabled": true,
  866. "_srcBlendFactor": 1,
  867. "_dstBlendFactor": 771,
  868. "_useOriginalSize": false,
  869. "_string": "人才",
  870. "_N$string": "人才",
  871. "_fontSize": 20,
  872. "_lineHeight": 20,
  873. "_enableWrapText": true,
  874. "_N$file": null,
  875. "_isSystemFontUsed": true,
  876. "_spacingX": 0,
  877. "_N$horizontalAlign": 0,
  878. "_N$verticalAlign": 0,
  879. "_N$fontFamily": "Arial",
  880. "_N$overflow": 0,
  881. "_id": ""
  882. },
  883. {
  884. "__type__": "cc.Animation",
  885. "_name": "",
  886. "_objFlags": 0,
  887. "node": {
  888. "__id__": 22
  889. },
  890. "_enabled": true,
  891. "_defaultClip": {
  892. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  893. },
  894. "_clips": [
  895. {
  896. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  897. }
  898. ],
  899. "playOnLoad": true,
  900. "_id": ""
  901. },
  902. {
  903. "__type__": "cc.PrefabInfo",
  904. "root": {
  905. "__id__": 1
  906. },
  907. "asset": {
  908. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  909. },
  910. "fileId": "3a+VKIMcBB6pwhcHFxUS0L",
  911. "sync": false
  912. },
  913. {
  914. "__type__": "cc.Label",
  915. "_name": "",
  916. "_objFlags": 0,
  917. "node": {
  918. "__id__": 9
  919. },
  920. "_enabled": true,
  921. "_srcBlendFactor": 1,
  922. "_dstBlendFactor": 771,
  923. "_useOriginalSize": false,
  924. "_string": "农田地里会有 出现哦",
  925. "_N$string": "农田地里会有 出现哦",
  926. "_fontSize": 20,
  927. "_lineHeight": 20,
  928. "_enableWrapText": true,
  929. "_N$file": null,
  930. "_isSystemFontUsed": true,
  931. "_spacingX": 0,
  932. "_N$horizontalAlign": 0,
  933. "_N$verticalAlign": 0,
  934. "_N$fontFamily": "Arial",
  935. "_N$overflow": 0,
  936. "_id": ""
  937. },
  938. {
  939. "__type__": "cc.PrefabInfo",
  940. "root": {
  941. "__id__": 1
  942. },
  943. "asset": {
  944. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  945. },
  946. "fileId": "3dN5K+j39BUKty7MWkXNqP",
  947. "sync": false
  948. },
  949. {
  950. "__type__": "cc.Node",
  951. "_name": "richtext",
  952. "_objFlags": 0,
  953. "_parent": {
  954. "__id__": 8
  955. },
  956. "_children": [
  957. {
  958. "__id__": 29
  959. },
  960. {
  961. "__id__": 32
  962. },
  963. {
  964. "__id__": 35
  965. }
  966. ],
  967. "_active": true,
  968. "_level": 3,
  969. "_components": [
  970. {
  971. "__id__": 38
  972. }
  973. ],
  974. "_prefab": {
  975. "__id__": 39
  976. },
  977. "_opacity": 255,
  978. "_color": {
  979. "__type__": "cc.Color",
  980. "r": 255,
  981. "g": 255,
  982. "b": 255,
  983. "a": 255
  984. },
  985. "_contentSize": {
  986. "__type__": "cc.Size",
  987. "width": 160,
  988. "height": 25
  989. },
  990. "_anchorPoint": {
  991. "__type__": "cc.Vec2",
  992. "x": 0.5,
  993. "y": 0.5
  994. },
  995. "_position": {
  996. "__type__": "cc.Vec3",
  997. "x": 0,
  998. "y": 68.6,
  999. "z": 0
  1000. },
  1001. "_scale": {
  1002. "__type__": "cc.Vec3",
  1003. "x": 1,
  1004. "y": 1,
  1005. "z": 1
  1006. },
  1007. "_quat": {
  1008. "__type__": "cc.Quat",
  1009. "x": 0,
  1010. "y": 0,
  1011. "z": 0,
  1012. "w": 1
  1013. },
  1014. "_skewX": 0,
  1015. "_skewY": 0,
  1016. "_zIndex": 0,
  1017. "_is3DNode": false,
  1018. "groupIndex": 0,
  1019. "_rotationX": 0,
  1020. "_rotationY": 0,
  1021. "_id": ""
  1022. },
  1023. {
  1024. "__type__": "cc.PrivateNode",
  1025. "_name": "RICHTEXT_CHILD",
  1026. "_objFlags": 0,
  1027. "_parent": {
  1028. "__id__": 28
  1029. },
  1030. "_children": [],
  1031. "_active": true,
  1032. "_level": 4,
  1033. "_components": [
  1034. {
  1035. "__id__": 30
  1036. }
  1037. ],
  1038. "_prefab": {
  1039. "__id__": 31
  1040. },
  1041. "_opacity": 255,
  1042. "_color": {
  1043. "__type__": "cc.Color",
  1044. "r": 0,
  1045. "g": 0,
  1046. "b": 0,
  1047. "a": 255
  1048. },
  1049. "_contentSize": {
  1050. "__type__": "cc.Size",
  1051. "width": 100,
  1052. "height": 25
  1053. },
  1054. "_anchorPoint": {
  1055. "__type__": "cc.Vec2",
  1056. "x": 0,
  1057. "y": 0
  1058. },
  1059. "_position": {
  1060. "__type__": "cc.Vec3",
  1061. "x": -80,
  1062. "y": -12.5,
  1063. "z": 0
  1064. },
  1065. "_scale": {
  1066. "__type__": "cc.Vec3",
  1067. "x": 1,
  1068. "y": 1,
  1069. "z": 1
  1070. },
  1071. "_quat": {
  1072. "__type__": "cc.Quat",
  1073. "x": 0,
  1074. "y": 0,
  1075. "z": 0,
  1076. "w": 1
  1077. },
  1078. "_skewX": 0,
  1079. "_skewY": 0,
  1080. "_zIndex": -32768,
  1081. "_is3DNode": false,
  1082. "groupIndex": 0,
  1083. "_id": ""
  1084. },
  1085. {
  1086. "__type__": "cc.Label",
  1087. "_name": "",
  1088. "_objFlags": 0,
  1089. "node": {
  1090. "__id__": 29
  1091. },
  1092. "_enabled": true,
  1093. "_srcBlendFactor": 1,
  1094. "_dstBlendFactor": 771,
  1095. "_useOriginalSize": true,
  1096. "_string": "再建造一个",
  1097. "_N$string": "再建造一个",
  1098. "_fontSize": 20,
  1099. "_lineHeight": 25,
  1100. "_enableWrapText": true,
  1101. "_N$file": null,
  1102. "_isSystemFontUsed": true,
  1103. "_spacingX": 0,
  1104. "_N$horizontalAlign": 0,
  1105. "_N$verticalAlign": 1,
  1106. "_N$fontFamily": "Arial",
  1107. "_N$overflow": 0,
  1108. "_id": ""
  1109. },
  1110. {
  1111. "__type__": "cc.PrefabInfo",
  1112. "root": {
  1113. "__id__": 1
  1114. },
  1115. "asset": {
  1116. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  1117. },
  1118. "fileId": "63ufHbL4NJZIGmCv03Ax2l",
  1119. "sync": false
  1120. },
  1121. {
  1122. "__type__": "cc.PrivateNode",
  1123. "_name": "RICHTEXT_CHILD",
  1124. "_objFlags": 0,
  1125. "_parent": {
  1126. "__id__": 28
  1127. },
  1128. "_children": [],
  1129. "_active": true,
  1130. "_level": 4,
  1131. "_components": [
  1132. {
  1133. "__id__": 33
  1134. }
  1135. ],
  1136. "_prefab": {
  1137. "__id__": 34
  1138. },
  1139. "_opacity": 255,
  1140. "_color": {
  1141. "__type__": "cc.Color",
  1142. "r": 255,
  1143. "g": 0,
  1144. "b": 0,
  1145. "a": 255
  1146. },
  1147. "_contentSize": {
  1148. "__type__": "cc.Size",
  1149. "width": 40,
  1150. "height": 25
  1151. },
  1152. "_anchorPoint": {
  1153. "__type__": "cc.Vec2",
  1154. "x": 0,
  1155. "y": 0
  1156. },
  1157. "_position": {
  1158. "__type__": "cc.Vec3",
  1159. "x": 20,
  1160. "y": -12.5,
  1161. "z": 0
  1162. },
  1163. "_scale": {
  1164. "__type__": "cc.Vec3",
  1165. "x": 1,
  1166. "y": 1,
  1167. "z": 1
  1168. },
  1169. "_quat": {
  1170. "__type__": "cc.Quat",
  1171. "x": 0,
  1172. "y": 0,
  1173. "z": 0,
  1174. "w": 1
  1175. },
  1176. "_skewX": 0,
  1177. "_skewY": 0,
  1178. "_zIndex": -32768,
  1179. "_is3DNode": false,
  1180. "groupIndex": 0,
  1181. "_id": ""
  1182. },
  1183. {
  1184. "__type__": "cc.Label",
  1185. "_name": "",
  1186. "_objFlags": 0,
  1187. "node": {
  1188. "__id__": 32
  1189. },
  1190. "_enabled": true,
  1191. "_srcBlendFactor": 1,
  1192. "_dstBlendFactor": 771,
  1193. "_useOriginalSize": true,
  1194. "_string": "农舍",
  1195. "_N$string": "农舍",
  1196. "_fontSize": 20,
  1197. "_lineHeight": 25,
  1198. "_enableWrapText": true,
  1199. "_N$file": null,
  1200. "_isSystemFontUsed": true,
  1201. "_spacingX": 0,
  1202. "_N$horizontalAlign": 0,
  1203. "_N$verticalAlign": 1,
  1204. "_N$fontFamily": "Arial",
  1205. "_N$overflow": 0,
  1206. "_id": ""
  1207. },
  1208. {
  1209. "__type__": "cc.PrefabInfo",
  1210. "root": {
  1211. "__id__": 1
  1212. },
  1213. "asset": {
  1214. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  1215. },
  1216. "fileId": "21ac10XChGVo6vRnfEEcUf",
  1217. "sync": false
  1218. },
  1219. {
  1220. "__type__": "cc.PrivateNode",
  1221. "_name": "RICHTEXT_CHILD",
  1222. "_objFlags": 0,
  1223. "_parent": {
  1224. "__id__": 28
  1225. },
  1226. "_children": [],
  1227. "_active": true,
  1228. "_level": 4,
  1229. "_components": [
  1230. {
  1231. "__id__": 36
  1232. }
  1233. ],
  1234. "_prefab": {
  1235. "__id__": 37
  1236. },
  1237. "_opacity": 255,
  1238. "_color": {
  1239. "__type__": "cc.Color",
  1240. "r": 0,
  1241. "g": 0,
  1242. "b": 0,
  1243. "a": 255
  1244. },
  1245. "_contentSize": {
  1246. "__type__": "cc.Size",
  1247. "width": 20,
  1248. "height": 25
  1249. },
  1250. "_anchorPoint": {
  1251. "__type__": "cc.Vec2",
  1252. "x": 0,
  1253. "y": 0
  1254. },
  1255. "_position": {
  1256. "__type__": "cc.Vec3",
  1257. "x": 60,
  1258. "y": -12.5,
  1259. "z": 0
  1260. },
  1261. "_scale": {
  1262. "__type__": "cc.Vec3",
  1263. "x": 1,
  1264. "y": 1,
  1265. "z": 1
  1266. },
  1267. "_quat": {
  1268. "__type__": "cc.Quat",
  1269. "x": 0,
  1270. "y": 0,
  1271. "z": 0,
  1272. "w": 1
  1273. },
  1274. "_skewX": 0,
  1275. "_skewY": 0,
  1276. "_zIndex": -32768,
  1277. "_is3DNode": false,
  1278. "groupIndex": 0,
  1279. "_id": ""
  1280. },
  1281. {
  1282. "__type__": "cc.Label",
  1283. "_name": "",
  1284. "_objFlags": 0,
  1285. "node": {
  1286. "__id__": 35
  1287. },
  1288. "_enabled": true,
  1289. "_srcBlendFactor": 1,
  1290. "_dstBlendFactor": 771,
  1291. "_useOriginalSize": true,
  1292. "_string": "吧",
  1293. "_N$string": "吧",
  1294. "_fontSize": 20,
  1295. "_lineHeight": 25,
  1296. "_enableWrapText": true,
  1297. "_N$file": null,
  1298. "_isSystemFontUsed": true,
  1299. "_spacingX": 0,
  1300. "_N$horizontalAlign": 0,
  1301. "_N$verticalAlign": 1,
  1302. "_N$fontFamily": "Arial",
  1303. "_N$overflow": 0,
  1304. "_id": ""
  1305. },
  1306. {
  1307. "__type__": "cc.PrefabInfo",
  1308. "root": {
  1309. "__id__": 1
  1310. },
  1311. "asset": {
  1312. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  1313. },
  1314. "fileId": "62OuzZrCFH5aZPyBdlQULs",
  1315. "sync": false
  1316. },
  1317. {
  1318. "__type__": "cc.RichText",
  1319. "_name": "",
  1320. "_objFlags": 0,
  1321. "node": {
  1322. "__id__": 28
  1323. },
  1324. "_enabled": true,
  1325. "_N$string": "<color=#000000>再建造一个</c><color=#FF0000>农舍</c><color=#000000>吧</c>",
  1326. "_N$horizontalAlign": 0,
  1327. "_N$fontSize": 20,
  1328. "_N$font": null,
  1329. "_N$maxWidth": 0,
  1330. "_N$lineHeight": 25,
  1331. "_N$imageAtlas": null,
  1332. "_N$handleTouchEvent": true,
  1333. "_id": ""
  1334. },
  1335. {
  1336. "__type__": "cc.PrefabInfo",
  1337. "root": {
  1338. "__id__": 1
  1339. },
  1340. "asset": {
  1341. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  1342. },
  1343. "fileId": "03EcOtLEFN7rpusUtDKynL",
  1344. "sync": false
  1345. },
  1346. {
  1347. "__type__": "cc.Sprite",
  1348. "_name": "",
  1349. "_objFlags": 0,
  1350. "node": {
  1351. "__id__": 8
  1352. },
  1353. "_enabled": true,
  1354. "_srcBlendFactor": 770,
  1355. "_dstBlendFactor": 771,
  1356. "_spriteFrame": {
  1357. "__uuid__": "7336ac05-5e39-44bc-92ff-d6e95545844a"
  1358. },
  1359. "_type": 0,
  1360. "_sizeMode": 0,
  1361. "_fillType": 0,
  1362. "_fillCenter": {
  1363. "__type__": "cc.Vec2",
  1364. "x": 0,
  1365. "y": 0
  1366. },
  1367. "_fillStart": 0,
  1368. "_fillRange": 0,
  1369. "_isTrimmedMode": true,
  1370. "_state": 0,
  1371. "_atlas": null,
  1372. "_id": ""
  1373. },
  1374. {
  1375. "__type__": "cc.PrefabInfo",
  1376. "root": {
  1377. "__id__": 1
  1378. },
  1379. "asset": {
  1380. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  1381. },
  1382. "fileId": "501io/wxdC47go2RnMFVED",
  1383. "sync": false
  1384. },
  1385. {
  1386. "__type__": "cc.Node",
  1387. "_name": "SureBtn",
  1388. "_objFlags": 0,
  1389. "_parent": {
  1390. "__id__": 1
  1391. },
  1392. "_children": [],
  1393. "_active": true,
  1394. "_level": 2,
  1395. "_components": [
  1396. {
  1397. "__id__": 43
  1398. },
  1399. {
  1400. "__id__": 44
  1401. }
  1402. ],
  1403. "_prefab": {
  1404. "__id__": 45
  1405. },
  1406. "_opacity": 255,
  1407. "_color": {
  1408. "__type__": "cc.Color",
  1409. "r": 255,
  1410. "g": 255,
  1411. "b": 255,
  1412. "a": 255
  1413. },
  1414. "_contentSize": {
  1415. "__type__": "cc.Size",
  1416. "width": 82,
  1417. "height": 37
  1418. },
  1419. "_anchorPoint": {
  1420. "__type__": "cc.Vec2",
  1421. "x": 0.5,
  1422. "y": 0.5
  1423. },
  1424. "_position": {
  1425. "__type__": "cc.Vec3",
  1426. "x": 0,
  1427. "y": -270,
  1428. "z": 0
  1429. },
  1430. "_scale": {
  1431. "__type__": "cc.Vec3",
  1432. "x": 2,
  1433. "y": 2,
  1434. "z": 2
  1435. },
  1436. "_quat": {
  1437. "__type__": "cc.Quat",
  1438. "x": 0,
  1439. "y": 0,
  1440. "z": 0,
  1441. "w": 1
  1442. },
  1443. "_skewX": 0,
  1444. "_skewY": 0,
  1445. "_zIndex": 0,
  1446. "_is3DNode": false,
  1447. "groupIndex": 0,
  1448. "_id": ""
  1449. },
  1450. {
  1451. "__type__": "cc.Sprite",
  1452. "_name": "",
  1453. "_objFlags": 0,
  1454. "node": {
  1455. "__id__": 42
  1456. },
  1457. "_enabled": true,
  1458. "_srcBlendFactor": 770,
  1459. "_dstBlendFactor": 771,
  1460. "_spriteFrame": {
  1461. "__uuid__": "db8cfc1e-cabb-4762-a0d5-728f49694fe2"
  1462. },
  1463. "_type": 0,
  1464. "_sizeMode": 0,
  1465. "_fillType": 0,
  1466. "_fillCenter": {
  1467. "__type__": "cc.Vec2",
  1468. "x": 0,
  1469. "y": 0
  1470. },
  1471. "_fillStart": 0,
  1472. "_fillRange": 0,
  1473. "_isTrimmedMode": true,
  1474. "_state": 0,
  1475. "_atlas": null,
  1476. "_id": ""
  1477. },
  1478. {
  1479. "__type__": "cc.Button",
  1480. "_name": "",
  1481. "_objFlags": 0,
  1482. "node": {
  1483. "__id__": 42
  1484. },
  1485. "_enabled": true,
  1486. "duration": 0.1,
  1487. "zoomScale": 1.2,
  1488. "clickEvents": [],
  1489. "_N$interactable": true,
  1490. "_N$enableAutoGrayEffect": false,
  1491. "_N$transition": 3,
  1492. "transition": 3,
  1493. "_N$normalColor": {
  1494. "__type__": "cc.Color",
  1495. "r": 214,
  1496. "g": 214,
  1497. "b": 214,
  1498. "a": 255
  1499. },
  1500. "_N$pressedColor": {
  1501. "__type__": "cc.Color",
  1502. "r": 211,
  1503. "g": 211,
  1504. "b": 211,
  1505. "a": 255
  1506. },
  1507. "pressedColor": {
  1508. "__type__": "cc.Color",
  1509. "r": 211,
  1510. "g": 211,
  1511. "b": 211,
  1512. "a": 255
  1513. },
  1514. "_N$hoverColor": {
  1515. "__type__": "cc.Color",
  1516. "r": 255,
  1517. "g": 255,
  1518. "b": 255,
  1519. "a": 255
  1520. },
  1521. "hoverColor": {
  1522. "__type__": "cc.Color",
  1523. "r": 255,
  1524. "g": 255,
  1525. "b": 255,
  1526. "a": 255
  1527. },
  1528. "_N$disabledColor": {
  1529. "__type__": "cc.Color",
  1530. "r": 124,
  1531. "g": 124,
  1532. "b": 124,
  1533. "a": 255
  1534. },
  1535. "_N$normalSprite": null,
  1536. "_N$pressedSprite": null,
  1537. "pressedSprite": null,
  1538. "_N$hoverSprite": null,
  1539. "hoverSprite": null,
  1540. "_N$disabledSprite": null,
  1541. "_N$target": null,
  1542. "_id": ""
  1543. },
  1544. {
  1545. "__type__": "cc.PrefabInfo",
  1546. "root": {
  1547. "__id__": 1
  1548. },
  1549. "asset": {
  1550. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  1551. },
  1552. "fileId": "62evZXYfZM+ILuJBDfK6Av",
  1553. "sync": false
  1554. },
  1555. {
  1556. "__type__": "cc.Node",
  1557. "_name": "info",
  1558. "_objFlags": 0,
  1559. "_parent": {
  1560. "__id__": 1
  1561. },
  1562. "_children": [
  1563. {
  1564. "__id__": 47
  1565. },
  1566. {
  1567. "__id__": 50
  1568. }
  1569. ],
  1570. "_active": false,
  1571. "_level": 2,
  1572. "_components": [
  1573. {
  1574. "__id__": 54
  1575. }
  1576. ],
  1577. "_prefab": {
  1578. "__id__": 55
  1579. },
  1580. "_opacity": 255,
  1581. "_color": {
  1582. "__type__": "cc.Color",
  1583. "r": 255,
  1584. "g": 255,
  1585. "b": 255,
  1586. "a": 255
  1587. },
  1588. "_contentSize": {
  1589. "__type__": "cc.Size",
  1590. "width": 82,
  1591. "height": 37
  1592. },
  1593. "_anchorPoint": {
  1594. "__type__": "cc.Vec2",
  1595. "x": 0.5,
  1596. "y": 0.5
  1597. },
  1598. "_position": {
  1599. "__type__": "cc.Vec3",
  1600. "x": 0,
  1601. "y": -270,
  1602. "z": 0
  1603. },
  1604. "_scale": {
  1605. "__type__": "cc.Vec3",
  1606. "x": 2,
  1607. "y": 2,
  1608. "z": 1
  1609. },
  1610. "_quat": {
  1611. "__type__": "cc.Quat",
  1612. "x": 0,
  1613. "y": 0,
  1614. "z": 0,
  1615. "w": 1
  1616. },
  1617. "_skewX": 0,
  1618. "_skewY": 0,
  1619. "_zIndex": 0,
  1620. "_is3DNode": false,
  1621. "groupIndex": 0,
  1622. "_id": ""
  1623. },
  1624. {
  1625. "__type__": "cc.Node",
  1626. "_name": "New Label",
  1627. "_objFlags": 0,
  1628. "_parent": {
  1629. "__id__": 46
  1630. },
  1631. "_children": [],
  1632. "_active": true,
  1633. "_level": 3,
  1634. "_components": [
  1635. {
  1636. "__id__": 48
  1637. }
  1638. ],
  1639. "_prefab": {
  1640. "__id__": 49
  1641. },
  1642. "_opacity": 255,
  1643. "_color": {
  1644. "__type__": "cc.Color",
  1645. "r": 0,
  1646. "g": 0,
  1647. "b": 0,
  1648. "a": 255
  1649. },
  1650. "_contentSize": {
  1651. "__type__": "cc.Size",
  1652. "width": 60,
  1653. "height": 20
  1654. },
  1655. "_anchorPoint": {
  1656. "__type__": "cc.Vec2",
  1657. "x": 0.5,
  1658. "y": 0.5
  1659. },
  1660. "_position": {
  1661. "__type__": "cc.Vec3",
  1662. "x": -1,
  1663. "y": -2,
  1664. "z": 0
  1665. },
  1666. "_scale": {
  1667. "__type__": "cc.Vec3",
  1668. "x": 1,
  1669. "y": 1,
  1670. "z": 1
  1671. },
  1672. "_quat": {
  1673. "__type__": "cc.Quat",
  1674. "x": 0,
  1675. "y": 0,
  1676. "z": 0,
  1677. "w": 1
  1678. },
  1679. "_skewX": 0,
  1680. "_skewY": 0,
  1681. "_zIndex": 0,
  1682. "_is3DNode": false,
  1683. "groupIndex": 0,
  1684. "_rotationX": 0,
  1685. "_rotationY": 0,
  1686. "_id": ""
  1687. },
  1688. {
  1689. "__type__": "cc.Label",
  1690. "_name": "",
  1691. "_objFlags": 0,
  1692. "node": {
  1693. "__id__": 47
  1694. },
  1695. "_enabled": true,
  1696. "_srcBlendFactor": 1,
  1697. "_dstBlendFactor": 771,
  1698. "_useOriginalSize": false,
  1699. "_string": "下一步",
  1700. "_N$string": "下一步",
  1701. "_fontSize": 20,
  1702. "_lineHeight": 20,
  1703. "_enableWrapText": true,
  1704. "_N$file": null,
  1705. "_isSystemFontUsed": true,
  1706. "_spacingX": 0,
  1707. "_N$horizontalAlign": 1,
  1708. "_N$verticalAlign": 1,
  1709. "_N$fontFamily": "Arial",
  1710. "_N$overflow": 0,
  1711. "_id": ""
  1712. },
  1713. {
  1714. "__type__": "cc.PrefabInfo",
  1715. "root": {
  1716. "__id__": 1
  1717. },
  1718. "asset": {
  1719. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  1720. },
  1721. "fileId": "79V0XPVrhNlbFpfJ25CKOY",
  1722. "sync": false
  1723. },
  1724. {
  1725. "__type__": "cc.Node",
  1726. "_name": "SmallArrow",
  1727. "_objFlags": 0,
  1728. "_parent": {
  1729. "__id__": 46
  1730. },
  1731. "_children": [],
  1732. "_active": false,
  1733. "_level": 3,
  1734. "_components": [
  1735. {
  1736. "__id__": 51
  1737. },
  1738. {
  1739. "__id__": 52
  1740. }
  1741. ],
  1742. "_prefab": {
  1743. "__id__": 53
  1744. },
  1745. "_opacity": 255,
  1746. "_color": {
  1747. "__type__": "cc.Color",
  1748. "r": 255,
  1749. "g": 255,
  1750. "b": 255,
  1751. "a": 255
  1752. },
  1753. "_contentSize": {
  1754. "__type__": "cc.Size",
  1755. "width": 50,
  1756. "height": 30
  1757. },
  1758. "_anchorPoint": {
  1759. "__type__": "cc.Vec2",
  1760. "x": 0.5,
  1761. "y": 0.5
  1762. },
  1763. "_position": {
  1764. "__type__": "cc.Vec3",
  1765. "x": 143,
  1766. "y": -74,
  1767. "z": 0
  1768. },
  1769. "_scale": {
  1770. "__type__": "cc.Vec3",
  1771. "x": 1,
  1772. "y": 1,
  1773. "z": 1
  1774. },
  1775. "_quat": {
  1776. "__type__": "cc.Quat",
  1777. "x": 0,
  1778. "y": 0,
  1779. "z": 0,
  1780. "w": 1
  1781. },
  1782. "_skewX": 0,
  1783. "_skewY": 0,
  1784. "_zIndex": 0,
  1785. "_is3DNode": false,
  1786. "groupIndex": 0,
  1787. "_id": ""
  1788. },
  1789. {
  1790. "__type__": "cc.Sprite",
  1791. "_name": "",
  1792. "_objFlags": 0,
  1793. "node": {
  1794. "__id__": 50
  1795. },
  1796. "_enabled": true,
  1797. "_srcBlendFactor": 770,
  1798. "_dstBlendFactor": 771,
  1799. "_spriteFrame": {
  1800. "__uuid__": "38f17776-98ef-4429-8190-483d106c3b97"
  1801. },
  1802. "_type": 0,
  1803. "_sizeMode": 1,
  1804. "_fillType": 0,
  1805. "_fillCenter": {
  1806. "__type__": "cc.Vec2",
  1807. "x": 0,
  1808. "y": 0
  1809. },
  1810. "_fillStart": 0,
  1811. "_fillRange": 0,
  1812. "_isTrimmedMode": true,
  1813. "_state": 0,
  1814. "_atlas": null,
  1815. "_id": ""
  1816. },
  1817. {
  1818. "__type__": "cc.Animation",
  1819. "_name": "",
  1820. "_objFlags": 0,
  1821. "node": {
  1822. "__id__": 50
  1823. },
  1824. "_enabled": true,
  1825. "_defaultClip": {
  1826. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  1827. },
  1828. "_clips": [
  1829. {
  1830. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  1831. }
  1832. ],
  1833. "playOnLoad": true,
  1834. "_id": ""
  1835. },
  1836. {
  1837. "__type__": "cc.PrefabInfo",
  1838. "root": {
  1839. "__id__": 1
  1840. },
  1841. "asset": {
  1842. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  1843. },
  1844. "fileId": "e82VTNZItIOqz1xLHrldf9",
  1845. "sync": false
  1846. },
  1847. {
  1848. "__type__": "cc.Sprite",
  1849. "_name": "",
  1850. "_objFlags": 0,
  1851. "node": {
  1852. "__id__": 46
  1853. },
  1854. "_enabled": true,
  1855. "_srcBlendFactor": 770,
  1856. "_dstBlendFactor": 771,
  1857. "_spriteFrame": {
  1858. "__uuid__": "05325bf4-449c-44ee-8dd3-36e3dddc0e3f"
  1859. },
  1860. "_type": 0,
  1861. "_sizeMode": 1,
  1862. "_fillType": 0,
  1863. "_fillCenter": {
  1864. "__type__": "cc.Vec2",
  1865. "x": 0,
  1866. "y": 0
  1867. },
  1868. "_fillStart": 0,
  1869. "_fillRange": 0,
  1870. "_isTrimmedMode": true,
  1871. "_state": 0,
  1872. "_atlas": null,
  1873. "_id": ""
  1874. },
  1875. {
  1876. "__type__": "cc.PrefabInfo",
  1877. "root": {
  1878. "__id__": 1
  1879. },
  1880. "asset": {
  1881. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  1882. },
  1883. "fileId": "28WX5P3AJNgri4wEeyWMJY",
  1884. "sync": false
  1885. },
  1886. {
  1887. "__type__": "cc.Node",
  1888. "_name": "richman",
  1889. "_objFlags": 0,
  1890. "_parent": {
  1891. "__id__": 1
  1892. },
  1893. "_children": [],
  1894. "_active": true,
  1895. "_level": 2,
  1896. "_components": [
  1897. {
  1898. "__id__": 57
  1899. }
  1900. ],
  1901. "_prefab": {
  1902. "__id__": 58
  1903. },
  1904. "_opacity": 255,
  1905. "_color": {
  1906. "__type__": "cc.Color",
  1907. "r": 255,
  1908. "g": 255,
  1909. "b": 255,
  1910. "a": 255
  1911. },
  1912. "_contentSize": {
  1913. "__type__": "cc.Size",
  1914. "width": 216,
  1915. "height": 664
  1916. },
  1917. "_anchorPoint": {
  1918. "__type__": "cc.Vec2",
  1919. "x": 0.5,
  1920. "y": 0.5
  1921. },
  1922. "_position": {
  1923. "__type__": "cc.Vec3",
  1924. "x": -166,
  1925. "y": -12,
  1926. "z": 0
  1927. },
  1928. "_scale": {
  1929. "__type__": "cc.Vec3",
  1930. "x": 0.7,
  1931. "y": 0.7,
  1932. "z": 1
  1933. },
  1934. "_quat": {
  1935. "__type__": "cc.Quat",
  1936. "x": 0,
  1937. "y": 0,
  1938. "z": 0,
  1939. "w": 1
  1940. },
  1941. "_skewX": 0,
  1942. "_skewY": 0,
  1943. "_zIndex": 0,
  1944. "_is3DNode": false,
  1945. "groupIndex": 0,
  1946. "_id": ""
  1947. },
  1948. {
  1949. "__type__": "cc.Sprite",
  1950. "_name": "",
  1951. "_objFlags": 0,
  1952. "node": {
  1953. "__id__": 56
  1954. },
  1955. "_enabled": true,
  1956. "_srcBlendFactor": 770,
  1957. "_dstBlendFactor": 771,
  1958. "_spriteFrame": {
  1959. "__uuid__": "e9807e16-730d-451e-a06b-f9ce32aa4919"
  1960. },
  1961. "_type": 0,
  1962. "_sizeMode": 1,
  1963. "_fillType": 0,
  1964. "_fillCenter": {
  1965. "__type__": "cc.Vec2",
  1966. "x": 0,
  1967. "y": 0
  1968. },
  1969. "_fillStart": 0,
  1970. "_fillRange": 0,
  1971. "_isTrimmedMode": true,
  1972. "_state": 0,
  1973. "_atlas": null,
  1974. "_id": ""
  1975. },
  1976. {
  1977. "__type__": "cc.PrefabInfo",
  1978. "root": {
  1979. "__id__": 1
  1980. },
  1981. "asset": {
  1982. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  1983. },
  1984. "fileId": "f0JFpOvnZJtaRkyPFcgdpJ",
  1985. "sync": false
  1986. },
  1987. {
  1988. "__type__": "cc.PrefabInfo",
  1989. "root": {
  1990. "__id__": 1
  1991. },
  1992. "asset": {
  1993. "__uuid__": "e1a5d395-c03b-400a-9527-cd3c3649b3ec"
  1994. },
  1995. "fileId": "95NHeUxnJOoZea8hBtGYHe",
  1996. "sync": false
  1997. }
  1998. ]