taskPrefab3.prefab 35 KB

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