taskPrefabItem0.prefab 35 KB

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