taskPrefab3.prefab 36 KB

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