taskPrefabFarmhouse.prefab 33 KB

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