taskPrefabFarmhouse.prefab 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  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__": 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__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  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__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  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__": 37
  297. }
  298. ],
  299. "_prefab": {
  300. "__id__": 38
  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": 600,
  313. "height": 400
  314. },
  315. "_anchorPoint": {
  316. "__type__": "cc.Vec2",
  317. "x": 0.5,
  318. "y": 0.5
  319. },
  320. "_position": {
  321. "__type__": "cc.Vec3",
  322. "x": 65,
  323. "y": 194,
  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__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  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__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  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__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  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__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  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__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  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. "_active": true,
  965. "_level": 3,
  966. "_components": [
  967. {
  968. "__id__": 35
  969. }
  970. ],
  971. "_prefab": {
  972. "__id__": 36
  973. },
  974. "_opacity": 255,
  975. "_color": {
  976. "__type__": "cc.Color",
  977. "r": 255,
  978. "g": 255,
  979. "b": 255,
  980. "a": 255
  981. },
  982. "_contentSize": {
  983. "__type__": "cc.Size",
  984. "width": 440,
  985. "height": 75
  986. },
  987. "_anchorPoint": {
  988. "__type__": "cc.Vec2",
  989. "x": 0.5,
  990. "y": 0.5
  991. },
  992. "_position": {
  993. "__type__": "cc.Vec3",
  994. "x": 0,
  995. "y": 68.6,
  996. "z": 0
  997. },
  998. "_scale": {
  999. "__type__": "cc.Vec3",
  1000. "x": 1,
  1001. "y": 1,
  1002. "z": 1
  1003. },
  1004. "_quat": {
  1005. "__type__": "cc.Quat",
  1006. "x": 0,
  1007. "y": 0,
  1008. "z": 0,
  1009. "w": 1
  1010. },
  1011. "_skewX": 0,
  1012. "_skewY": 0,
  1013. "_zIndex": 0,
  1014. "_is3DNode": false,
  1015. "groupIndex": 0,
  1016. "_rotationX": 0,
  1017. "_rotationY": 0,
  1018. "_id": ""
  1019. },
  1020. {
  1021. "__type__": "cc.PrivateNode",
  1022. "_name": "RICHTEXT_CHILD",
  1023. "_objFlags": 0,
  1024. "_parent": {
  1025. "__id__": 28
  1026. },
  1027. "_children": [],
  1028. "_active": true,
  1029. "_level": 4,
  1030. "_components": [
  1031. {
  1032. "__id__": 30
  1033. }
  1034. ],
  1035. "_prefab": {
  1036. "__id__": 31
  1037. },
  1038. "_opacity": 255,
  1039. "_color": {
  1040. "__type__": "cc.Color",
  1041. "r": 0,
  1042. "g": 0,
  1043. "b": 0,
  1044. "a": 255
  1045. },
  1046. "_contentSize": {
  1047. "__type__": "cc.Size",
  1048. "width": 391.12,
  1049. "height": 25
  1050. },
  1051. "_anchorPoint": {
  1052. "__type__": "cc.Vec2",
  1053. "x": 0,
  1054. "y": 0
  1055. },
  1056. "_position": {
  1057. "__type__": "cc.Vec3",
  1058. "x": -220,
  1059. "y": -12.5,
  1060. "z": 0
  1061. },
  1062. "_scale": {
  1063. "__type__": "cc.Vec3",
  1064. "x": 1,
  1065. "y": 1,
  1066. "z": 1
  1067. },
  1068. "_quat": {
  1069. "__type__": "cc.Quat",
  1070. "x": 0,
  1071. "y": 0,
  1072. "z": 0,
  1073. "w": 1
  1074. },
  1075. "_skewX": 0,
  1076. "_skewY": 0,
  1077. "_zIndex": -32768,
  1078. "_is3DNode": false,
  1079. "groupIndex": 0,
  1080. "_id": ""
  1081. },
  1082. {
  1083. "__type__": "cc.Label",
  1084. "_name": "",
  1085. "_objFlags": 0,
  1086. "node": {
  1087. "__id__": 29
  1088. },
  1089. "_enabled": true,
  1090. "_srcBlendFactor": 1,
  1091. "_dstBlendFactor": 771,
  1092. "_useOriginalSize": true,
  1093. "_string": "这个是任务,当任务上方有一个1的提示时就",
  1094. "_N$string": "这个是任务,当任务上方有一个1的提示时就",
  1095. "_fontSize": 20,
  1096. "_lineHeight": 25,
  1097. "_enableWrapText": true,
  1098. "_N$file": null,
  1099. "_isSystemFontUsed": true,
  1100. "_spacingX": 0,
  1101. "_N$horizontalAlign": 0,
  1102. "_N$verticalAlign": 1,
  1103. "_N$fontFamily": "Arial",
  1104. "_N$overflow": 0,
  1105. "_id": ""
  1106. },
  1107. {
  1108. "__type__": "cc.PrefabInfo",
  1109. "root": {
  1110. "__id__": 1
  1111. },
  1112. "asset": {
  1113. "__uuid__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  1114. },
  1115. "fileId": "52Cn23+5FMVIzMxHQ4DQOV",
  1116. "sync": false
  1117. },
  1118. {
  1119. "__type__": "cc.PrivateNode",
  1120. "_name": "RICHTEXT_CHILD",
  1121. "_objFlags": 0,
  1122. "_parent": {
  1123. "__id__": 28
  1124. },
  1125. "_children": [],
  1126. "_active": true,
  1127. "_level": 4,
  1128. "_components": [
  1129. {
  1130. "__id__": 33
  1131. }
  1132. ],
  1133. "_prefab": {
  1134. "__id__": 34
  1135. },
  1136. "_opacity": 255,
  1137. "_color": {
  1138. "__type__": "cc.Color",
  1139. "r": 0,
  1140. "g": 0,
  1141. "b": 0,
  1142. "a": 255
  1143. },
  1144. "_contentSize": {
  1145. "__type__": "cc.Size",
  1146. "width": 440,
  1147. "height": 25
  1148. },
  1149. "_anchorPoint": {
  1150. "__type__": "cc.Vec2",
  1151. "x": 0,
  1152. "y": 0
  1153. },
  1154. "_position": {
  1155. "__type__": "cc.Vec3",
  1156. "x": -220,
  1157. "y": -37.5,
  1158. "z": 0
  1159. },
  1160. "_scale": {
  1161. "__type__": "cc.Vec3",
  1162. "x": 1,
  1163. "y": 1,
  1164. "z": 1
  1165. },
  1166. "_quat": {
  1167. "__type__": "cc.Quat",
  1168. "x": 0,
  1169. "y": 0,
  1170. "z": 0,
  1171. "w": 1
  1172. },
  1173. "_skewX": 0,
  1174. "_skewY": 0,
  1175. "_zIndex": -32768,
  1176. "_is3DNode": false,
  1177. "groupIndex": 0,
  1178. "_id": ""
  1179. },
  1180. {
  1181. "__type__": "cc.Label",
  1182. "_name": "",
  1183. "_objFlags": 0,
  1184. "node": {
  1185. "__id__": 32
  1186. },
  1187. "_enabled": true,
  1188. "_srcBlendFactor": 1,
  1189. "_dstBlendFactor": 771,
  1190. "_useOriginalSize": true,
  1191. "_string": "是有了新的任务,完成任务会有非常丰厚的奖励哦",
  1192. "_N$string": "是有了新的任务,完成任务会有非常丰厚的奖励哦",
  1193. "_fontSize": 20,
  1194. "_lineHeight": 25,
  1195. "_enableWrapText": true,
  1196. "_N$file": null,
  1197. "_isSystemFontUsed": true,
  1198. "_spacingX": 0,
  1199. "_N$horizontalAlign": 0,
  1200. "_N$verticalAlign": 1,
  1201. "_N$fontFamily": "Arial",
  1202. "_N$overflow": 0,
  1203. "_id": ""
  1204. },
  1205. {
  1206. "__type__": "cc.PrefabInfo",
  1207. "root": {
  1208. "__id__": 1
  1209. },
  1210. "asset": {
  1211. "__uuid__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  1212. },
  1213. "fileId": "dfTfXTz4NLholyjvgQ4KFC",
  1214. "sync": false
  1215. },
  1216. {
  1217. "__type__": "cc.RichText",
  1218. "_name": "",
  1219. "_objFlags": 0,
  1220. "node": {
  1221. "__id__": 28
  1222. },
  1223. "_enabled": true,
  1224. "_N$string": "<color=#000000>\n这个是任务,当任务上方有一个1的提示时就\n是有了新的任务,完成任务会有非常丰厚的奖励哦</c>",
  1225. "_N$horizontalAlign": 0,
  1226. "_N$fontSize": 20,
  1227. "_N$font": null,
  1228. "_N$maxWidth": 0,
  1229. "_N$lineHeight": 25,
  1230. "_N$imageAtlas": null,
  1231. "_N$handleTouchEvent": true,
  1232. "_id": ""
  1233. },
  1234. {
  1235. "__type__": "cc.PrefabInfo",
  1236. "root": {
  1237. "__id__": 1
  1238. },
  1239. "asset": {
  1240. "__uuid__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  1241. },
  1242. "fileId": "03EcOtLEFN7rpusUtDKynL",
  1243. "sync": false
  1244. },
  1245. {
  1246. "__type__": "cc.Sprite",
  1247. "_name": "",
  1248. "_objFlags": 0,
  1249. "node": {
  1250. "__id__": 8
  1251. },
  1252. "_enabled": true,
  1253. "_srcBlendFactor": 770,
  1254. "_dstBlendFactor": 771,
  1255. "_spriteFrame": {
  1256. "__uuid__": "c059390c-7d3d-429f-8b94-a784ad1f518f"
  1257. },
  1258. "_type": 0,
  1259. "_sizeMode": 0,
  1260. "_fillType": 0,
  1261. "_fillCenter": {
  1262. "__type__": "cc.Vec2",
  1263. "x": 0,
  1264. "y": 0
  1265. },
  1266. "_fillStart": 0,
  1267. "_fillRange": 0,
  1268. "_isTrimmedMode": true,
  1269. "_state": 0,
  1270. "_atlas": null,
  1271. "_id": ""
  1272. },
  1273. {
  1274. "__type__": "cc.PrefabInfo",
  1275. "root": {
  1276. "__id__": 1
  1277. },
  1278. "asset": {
  1279. "__uuid__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  1280. },
  1281. "fileId": "501io/wxdC47go2RnMFVED",
  1282. "sync": false
  1283. },
  1284. {
  1285. "__type__": "cc.Node",
  1286. "_name": "SureBtn",
  1287. "_objFlags": 0,
  1288. "_parent": {
  1289. "__id__": 1
  1290. },
  1291. "_children": [
  1292. {
  1293. "__id__": 40
  1294. }
  1295. ],
  1296. "_active": true,
  1297. "_level": 2,
  1298. "_components": [
  1299. {
  1300. "__id__": 43
  1301. },
  1302. {
  1303. "__id__": 44
  1304. }
  1305. ],
  1306. "_prefab": {
  1307. "__id__": 45
  1308. },
  1309. "_opacity": 255,
  1310. "_color": {
  1311. "__type__": "cc.Color",
  1312. "r": 255,
  1313. "g": 255,
  1314. "b": 255,
  1315. "a": 255
  1316. },
  1317. "_contentSize": {
  1318. "__type__": "cc.Size",
  1319. "width": 82,
  1320. "height": 37
  1321. },
  1322. "_anchorPoint": {
  1323. "__type__": "cc.Vec2",
  1324. "x": 0.5,
  1325. "y": 0.5
  1326. },
  1327. "_position": {
  1328. "__type__": "cc.Vec3",
  1329. "x": 0,
  1330. "y": -270,
  1331. "z": 0
  1332. },
  1333. "_scale": {
  1334. "__type__": "cc.Vec3",
  1335. "x": 2,
  1336. "y": 2,
  1337. "z": 2
  1338. },
  1339. "_quat": {
  1340. "__type__": "cc.Quat",
  1341. "x": 0,
  1342. "y": 0,
  1343. "z": 0,
  1344. "w": 1
  1345. },
  1346. "_skewX": 0,
  1347. "_skewY": 0,
  1348. "_zIndex": 0,
  1349. "_is3DNode": false,
  1350. "groupIndex": 0,
  1351. "_id": ""
  1352. },
  1353. {
  1354. "__type__": "cc.Node",
  1355. "_name": "New Label",
  1356. "_objFlags": 0,
  1357. "_parent": {
  1358. "__id__": 39
  1359. },
  1360. "_children": [],
  1361. "_active": true,
  1362. "_level": 3,
  1363. "_components": [
  1364. {
  1365. "__id__": 41
  1366. }
  1367. ],
  1368. "_prefab": {
  1369. "__id__": 42
  1370. },
  1371. "_opacity": 255,
  1372. "_color": {
  1373. "__type__": "cc.Color",
  1374. "r": 0,
  1375. "g": 0,
  1376. "b": 0,
  1377. "a": 255
  1378. },
  1379. "_contentSize": {
  1380. "__type__": "cc.Size",
  1381. "width": 60,
  1382. "height": 20
  1383. },
  1384. "_anchorPoint": {
  1385. "__type__": "cc.Vec2",
  1386. "x": 0.5,
  1387. "y": 0.5
  1388. },
  1389. "_position": {
  1390. "__type__": "cc.Vec3",
  1391. "x": -1,
  1392. "y": -2,
  1393. "z": 0
  1394. },
  1395. "_scale": {
  1396. "__type__": "cc.Vec3",
  1397. "x": 1,
  1398. "y": 1,
  1399. "z": 1
  1400. },
  1401. "_quat": {
  1402. "__type__": "cc.Quat",
  1403. "x": 0,
  1404. "y": 0,
  1405. "z": 0,
  1406. "w": 1
  1407. },
  1408. "_skewX": 0,
  1409. "_skewY": 0,
  1410. "_zIndex": 0,
  1411. "_is3DNode": false,
  1412. "groupIndex": 0,
  1413. "_rotationX": 0,
  1414. "_rotationY": 0,
  1415. "_id": ""
  1416. },
  1417. {
  1418. "__type__": "cc.Label",
  1419. "_name": "",
  1420. "_objFlags": 0,
  1421. "node": {
  1422. "__id__": 40
  1423. },
  1424. "_enabled": true,
  1425. "_srcBlendFactor": 1,
  1426. "_dstBlendFactor": 771,
  1427. "_useOriginalSize": false,
  1428. "_string": "下一步",
  1429. "_N$string": "下一步",
  1430. "_fontSize": 20,
  1431. "_lineHeight": 20,
  1432. "_enableWrapText": true,
  1433. "_N$file": null,
  1434. "_isSystemFontUsed": true,
  1435. "_spacingX": 0,
  1436. "_N$horizontalAlign": 1,
  1437. "_N$verticalAlign": 1,
  1438. "_N$fontFamily": "Arial",
  1439. "_N$overflow": 0,
  1440. "_id": ""
  1441. },
  1442. {
  1443. "__type__": "cc.PrefabInfo",
  1444. "root": {
  1445. "__id__": 1
  1446. },
  1447. "asset": {
  1448. "__uuid__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  1449. },
  1450. "fileId": "1fDce30PBG0pXuf9g8yzJK",
  1451. "sync": false
  1452. },
  1453. {
  1454. "__type__": "cc.Sprite",
  1455. "_name": "",
  1456. "_objFlags": 0,
  1457. "node": {
  1458. "__id__": 39
  1459. },
  1460. "_enabled": true,
  1461. "_srcBlendFactor": 770,
  1462. "_dstBlendFactor": 771,
  1463. "_spriteFrame": {
  1464. "__uuid__": "05325bf4-449c-44ee-8dd3-36e3dddc0e3f"
  1465. },
  1466. "_type": 0,
  1467. "_sizeMode": 0,
  1468. "_fillType": 0,
  1469. "_fillCenter": {
  1470. "__type__": "cc.Vec2",
  1471. "x": 0,
  1472. "y": 0
  1473. },
  1474. "_fillStart": 0,
  1475. "_fillRange": 0,
  1476. "_isTrimmedMode": true,
  1477. "_state": 0,
  1478. "_atlas": null,
  1479. "_id": ""
  1480. },
  1481. {
  1482. "__type__": "cc.Button",
  1483. "_name": "",
  1484. "_objFlags": 0,
  1485. "node": {
  1486. "__id__": 39
  1487. },
  1488. "_enabled": true,
  1489. "duration": 0.1,
  1490. "zoomScale": 1.2,
  1491. "clickEvents": [],
  1492. "_N$interactable": true,
  1493. "_N$enableAutoGrayEffect": false,
  1494. "_N$transition": 3,
  1495. "transition": 3,
  1496. "_N$normalColor": {
  1497. "__type__": "cc.Color",
  1498. "r": 214,
  1499. "g": 214,
  1500. "b": 214,
  1501. "a": 255
  1502. },
  1503. "_N$pressedColor": {
  1504. "__type__": "cc.Color",
  1505. "r": 211,
  1506. "g": 211,
  1507. "b": 211,
  1508. "a": 255
  1509. },
  1510. "pressedColor": {
  1511. "__type__": "cc.Color",
  1512. "r": 211,
  1513. "g": 211,
  1514. "b": 211,
  1515. "a": 255
  1516. },
  1517. "_N$hoverColor": {
  1518. "__type__": "cc.Color",
  1519. "r": 255,
  1520. "g": 255,
  1521. "b": 255,
  1522. "a": 255
  1523. },
  1524. "hoverColor": {
  1525. "__type__": "cc.Color",
  1526. "r": 255,
  1527. "g": 255,
  1528. "b": 255,
  1529. "a": 255
  1530. },
  1531. "_N$disabledColor": {
  1532. "__type__": "cc.Color",
  1533. "r": 124,
  1534. "g": 124,
  1535. "b": 124,
  1536. "a": 255
  1537. },
  1538. "_N$normalSprite": null,
  1539. "_N$pressedSprite": null,
  1540. "pressedSprite": null,
  1541. "_N$hoverSprite": null,
  1542. "hoverSprite": null,
  1543. "_N$disabledSprite": null,
  1544. "_N$target": null,
  1545. "_id": ""
  1546. },
  1547. {
  1548. "__type__": "cc.PrefabInfo",
  1549. "root": {
  1550. "__id__": 1
  1551. },
  1552. "asset": {
  1553. "__uuid__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  1554. },
  1555. "fileId": "62evZXYfZM+ILuJBDfK6Av",
  1556. "sync": false
  1557. },
  1558. {
  1559. "__type__": "cc.Node",
  1560. "_name": "info",
  1561. "_objFlags": 0,
  1562. "_parent": {
  1563. "__id__": 1
  1564. },
  1565. "_children": [
  1566. {
  1567. "__id__": 47
  1568. },
  1569. {
  1570. "__id__": 50
  1571. }
  1572. ],
  1573. "_active": false,
  1574. "_level": 2,
  1575. "_components": [
  1576. {
  1577. "__id__": 54
  1578. }
  1579. ],
  1580. "_prefab": {
  1581. "__id__": 55
  1582. },
  1583. "_opacity": 255,
  1584. "_color": {
  1585. "__type__": "cc.Color",
  1586. "r": 255,
  1587. "g": 255,
  1588. "b": 255,
  1589. "a": 255
  1590. },
  1591. "_contentSize": {
  1592. "__type__": "cc.Size",
  1593. "width": 82,
  1594. "height": 37
  1595. },
  1596. "_anchorPoint": {
  1597. "__type__": "cc.Vec2",
  1598. "x": 0.5,
  1599. "y": 0.5
  1600. },
  1601. "_position": {
  1602. "__type__": "cc.Vec3",
  1603. "x": 0,
  1604. "y": -270,
  1605. "z": 0
  1606. },
  1607. "_scale": {
  1608. "__type__": "cc.Vec3",
  1609. "x": 2,
  1610. "y": 2,
  1611. "z": 1
  1612. },
  1613. "_quat": {
  1614. "__type__": "cc.Quat",
  1615. "x": 0,
  1616. "y": 0,
  1617. "z": 0,
  1618. "w": 1
  1619. },
  1620. "_skewX": 0,
  1621. "_skewY": 0,
  1622. "_zIndex": 0,
  1623. "_is3DNode": false,
  1624. "groupIndex": 0,
  1625. "_id": ""
  1626. },
  1627. {
  1628. "__type__": "cc.Node",
  1629. "_name": "New Label",
  1630. "_objFlags": 0,
  1631. "_parent": {
  1632. "__id__": 46
  1633. },
  1634. "_children": [],
  1635. "_active": true,
  1636. "_level": 3,
  1637. "_components": [
  1638. {
  1639. "__id__": 48
  1640. }
  1641. ],
  1642. "_prefab": {
  1643. "__id__": 49
  1644. },
  1645. "_opacity": 255,
  1646. "_color": {
  1647. "__type__": "cc.Color",
  1648. "r": 0,
  1649. "g": 0,
  1650. "b": 0,
  1651. "a": 255
  1652. },
  1653. "_contentSize": {
  1654. "__type__": "cc.Size",
  1655. "width": 60,
  1656. "height": 20
  1657. },
  1658. "_anchorPoint": {
  1659. "__type__": "cc.Vec2",
  1660. "x": 0.5,
  1661. "y": 0.5
  1662. },
  1663. "_position": {
  1664. "__type__": "cc.Vec3",
  1665. "x": -1,
  1666. "y": -2,
  1667. "z": 0
  1668. },
  1669. "_scale": {
  1670. "__type__": "cc.Vec3",
  1671. "x": 1,
  1672. "y": 1,
  1673. "z": 1
  1674. },
  1675. "_quat": {
  1676. "__type__": "cc.Quat",
  1677. "x": 0,
  1678. "y": 0,
  1679. "z": 0,
  1680. "w": 1
  1681. },
  1682. "_skewX": 0,
  1683. "_skewY": 0,
  1684. "_zIndex": 0,
  1685. "_is3DNode": false,
  1686. "groupIndex": 0,
  1687. "_rotationX": 0,
  1688. "_rotationY": 0,
  1689. "_id": ""
  1690. },
  1691. {
  1692. "__type__": "cc.Label",
  1693. "_name": "",
  1694. "_objFlags": 0,
  1695. "node": {
  1696. "__id__": 47
  1697. },
  1698. "_enabled": true,
  1699. "_srcBlendFactor": 1,
  1700. "_dstBlendFactor": 771,
  1701. "_useOriginalSize": false,
  1702. "_string": "下一步",
  1703. "_N$string": "下一步",
  1704. "_fontSize": 20,
  1705. "_lineHeight": 20,
  1706. "_enableWrapText": true,
  1707. "_N$file": null,
  1708. "_isSystemFontUsed": true,
  1709. "_spacingX": 0,
  1710. "_N$horizontalAlign": 1,
  1711. "_N$verticalAlign": 1,
  1712. "_N$fontFamily": "Arial",
  1713. "_N$overflow": 0,
  1714. "_id": ""
  1715. },
  1716. {
  1717. "__type__": "cc.PrefabInfo",
  1718. "root": {
  1719. "__id__": 1
  1720. },
  1721. "asset": {
  1722. "__uuid__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  1723. },
  1724. "fileId": "79V0XPVrhNlbFpfJ25CKOY",
  1725. "sync": false
  1726. },
  1727. {
  1728. "__type__": "cc.Node",
  1729. "_name": "SmallArrow",
  1730. "_objFlags": 0,
  1731. "_parent": {
  1732. "__id__": 46
  1733. },
  1734. "_children": [],
  1735. "_active": false,
  1736. "_level": 3,
  1737. "_components": [
  1738. {
  1739. "__id__": 51
  1740. },
  1741. {
  1742. "__id__": 52
  1743. }
  1744. ],
  1745. "_prefab": {
  1746. "__id__": 53
  1747. },
  1748. "_opacity": 255,
  1749. "_color": {
  1750. "__type__": "cc.Color",
  1751. "r": 255,
  1752. "g": 255,
  1753. "b": 255,
  1754. "a": 255
  1755. },
  1756. "_contentSize": {
  1757. "__type__": "cc.Size",
  1758. "width": 50,
  1759. "height": 30
  1760. },
  1761. "_anchorPoint": {
  1762. "__type__": "cc.Vec2",
  1763. "x": 0.5,
  1764. "y": 0.5
  1765. },
  1766. "_position": {
  1767. "__type__": "cc.Vec3",
  1768. "x": 143,
  1769. "y": -74,
  1770. "z": 0
  1771. },
  1772. "_scale": {
  1773. "__type__": "cc.Vec3",
  1774. "x": 1,
  1775. "y": 1,
  1776. "z": 1
  1777. },
  1778. "_quat": {
  1779. "__type__": "cc.Quat",
  1780. "x": 0,
  1781. "y": 0,
  1782. "z": 0,
  1783. "w": 1
  1784. },
  1785. "_skewX": 0,
  1786. "_skewY": 0,
  1787. "_zIndex": 0,
  1788. "_is3DNode": false,
  1789. "groupIndex": 0,
  1790. "_id": ""
  1791. },
  1792. {
  1793. "__type__": "cc.Sprite",
  1794. "_name": "",
  1795. "_objFlags": 0,
  1796. "node": {
  1797. "__id__": 50
  1798. },
  1799. "_enabled": true,
  1800. "_srcBlendFactor": 770,
  1801. "_dstBlendFactor": 771,
  1802. "_spriteFrame": {
  1803. "__uuid__": "38f17776-98ef-4429-8190-483d106c3b97"
  1804. },
  1805. "_type": 0,
  1806. "_sizeMode": 1,
  1807. "_fillType": 0,
  1808. "_fillCenter": {
  1809. "__type__": "cc.Vec2",
  1810. "x": 0,
  1811. "y": 0
  1812. },
  1813. "_fillStart": 0,
  1814. "_fillRange": 0,
  1815. "_isTrimmedMode": true,
  1816. "_state": 0,
  1817. "_atlas": null,
  1818. "_id": ""
  1819. },
  1820. {
  1821. "__type__": "cc.Animation",
  1822. "_name": "",
  1823. "_objFlags": 0,
  1824. "node": {
  1825. "__id__": 50
  1826. },
  1827. "_enabled": true,
  1828. "_defaultClip": {
  1829. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  1830. },
  1831. "_clips": [
  1832. {
  1833. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  1834. }
  1835. ],
  1836. "playOnLoad": true,
  1837. "_id": ""
  1838. },
  1839. {
  1840. "__type__": "cc.PrefabInfo",
  1841. "root": {
  1842. "__id__": 1
  1843. },
  1844. "asset": {
  1845. "__uuid__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  1846. },
  1847. "fileId": "e82VTNZItIOqz1xLHrldf9",
  1848. "sync": false
  1849. },
  1850. {
  1851. "__type__": "cc.Sprite",
  1852. "_name": "",
  1853. "_objFlags": 0,
  1854. "node": {
  1855. "__id__": 46
  1856. },
  1857. "_enabled": true,
  1858. "_srcBlendFactor": 770,
  1859. "_dstBlendFactor": 771,
  1860. "_spriteFrame": {
  1861. "__uuid__": "05325bf4-449c-44ee-8dd3-36e3dddc0e3f"
  1862. },
  1863. "_type": 0,
  1864. "_sizeMode": 1,
  1865. "_fillType": 0,
  1866. "_fillCenter": {
  1867. "__type__": "cc.Vec2",
  1868. "x": 0,
  1869. "y": 0
  1870. },
  1871. "_fillStart": 0,
  1872. "_fillRange": 0,
  1873. "_isTrimmedMode": true,
  1874. "_state": 0,
  1875. "_atlas": null,
  1876. "_id": ""
  1877. },
  1878. {
  1879. "__type__": "cc.PrefabInfo",
  1880. "root": {
  1881. "__id__": 1
  1882. },
  1883. "asset": {
  1884. "__uuid__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  1885. },
  1886. "fileId": "28WX5P3AJNgri4wEeyWMJY",
  1887. "sync": false
  1888. },
  1889. {
  1890. "__type__": "cc.Node",
  1891. "_name": "richman",
  1892. "_objFlags": 0,
  1893. "_parent": {
  1894. "__id__": 1
  1895. },
  1896. "_children": [],
  1897. "_active": true,
  1898. "_level": 2,
  1899. "_components": [
  1900. {
  1901. "__id__": 57
  1902. }
  1903. ],
  1904. "_prefab": {
  1905. "__id__": 58
  1906. },
  1907. "_opacity": 255,
  1908. "_color": {
  1909. "__type__": "cc.Color",
  1910. "r": 255,
  1911. "g": 255,
  1912. "b": 255,
  1913. "a": 255
  1914. },
  1915. "_contentSize": {
  1916. "__type__": "cc.Size",
  1917. "width": 142,
  1918. "height": 352
  1919. },
  1920. "_anchorPoint": {
  1921. "__type__": "cc.Vec2",
  1922. "x": 0.5,
  1923. "y": 0.5
  1924. },
  1925. "_position": {
  1926. "__type__": "cc.Vec3",
  1927. "x": -166,
  1928. "y": -12,
  1929. "z": 0
  1930. },
  1931. "_scale": {
  1932. "__type__": "cc.Vec3",
  1933. "x": 1,
  1934. "y": 1,
  1935. "z": 1
  1936. },
  1937. "_quat": {
  1938. "__type__": "cc.Quat",
  1939. "x": 0,
  1940. "y": 0,
  1941. "z": 0,
  1942. "w": 1
  1943. },
  1944. "_skewX": 0,
  1945. "_skewY": 0,
  1946. "_zIndex": 0,
  1947. "_is3DNode": false,
  1948. "groupIndex": 0,
  1949. "_id": ""
  1950. },
  1951. {
  1952. "__type__": "cc.Sprite",
  1953. "_name": "",
  1954. "_objFlags": 0,
  1955. "node": {
  1956. "__id__": 56
  1957. },
  1958. "_enabled": true,
  1959. "_srcBlendFactor": 770,
  1960. "_dstBlendFactor": 771,
  1961. "_spriteFrame": {
  1962. "__uuid__": "0ca9ab35-d23c-4e25-8cc0-b29c97940a69"
  1963. },
  1964. "_type": 0,
  1965. "_sizeMode": 1,
  1966. "_fillType": 0,
  1967. "_fillCenter": {
  1968. "__type__": "cc.Vec2",
  1969. "x": 0,
  1970. "y": 0
  1971. },
  1972. "_fillStart": 0,
  1973. "_fillRange": 0,
  1974. "_isTrimmedMode": true,
  1975. "_state": 0,
  1976. "_atlas": null,
  1977. "_id": ""
  1978. },
  1979. {
  1980. "__type__": "cc.PrefabInfo",
  1981. "root": {
  1982. "__id__": 1
  1983. },
  1984. "asset": {
  1985. "__uuid__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  1986. },
  1987. "fileId": "f0JFpOvnZJtaRkyPFcgdpJ",
  1988. "sync": false
  1989. },
  1990. {
  1991. "__type__": "cc.PrefabInfo",
  1992. "root": {
  1993. "__id__": 1
  1994. },
  1995. "asset": {
  1996. "__uuid__": "907b14fd-fba1-4414-a0c9-380041e4ca43"
  1997. },
  1998. "fileId": "95NHeUxnJOoZea8hBtGYHe",
  1999. "sync": false
  2000. }
  2001. ]