taskPrefab12.prefab 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658
  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__": 62
  31. },
  32. {
  33. "__id__": 66
  34. },
  35. {
  36. "__id__": 76
  37. }
  38. ],
  39. "_active": true,
  40. "_level": 1,
  41. "_components": [],
  42. "_prefab": {
  43. "__id__": 79
  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__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  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__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  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__": 27
  285. }
  286. ],
  287. "_active": true,
  288. "_level": 2,
  289. "_components": [
  290. {
  291. "__id__": 60
  292. }
  293. ],
  294. "_prefab": {
  295. "__id__": 61
  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": 629,
  308. "height": 495
  309. },
  310. "_anchorPoint": {
  311. "__type__": "cc.Vec2",
  312. "x": 0.5,
  313. "y": 0.5
  314. },
  315. "_position": {
  316. "__type__": "cc.Vec3",
  317. "x": -4,
  318. "y": 236,
  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. "__id__": 17
  357. },
  358. {
  359. "__id__": 21
  360. }
  361. ],
  362. "_active": false,
  363. "_level": 3,
  364. "_components": [
  365. {
  366. "__id__": 25
  367. }
  368. ],
  369. "_prefab": {
  370. "__id__": 26
  371. },
  372. "_opacity": 255,
  373. "_color": {
  374. "__type__": "cc.Color",
  375. "r": 0,
  376. "g": 0,
  377. "b": 0,
  378. "a": 255
  379. },
  380. "_contentSize": {
  381. "__type__": "cc.Size",
  382. "width": 323.35,
  383. "height": 80
  384. },
  385. "_anchorPoint": {
  386. "__type__": "cc.Vec2",
  387. "x": 0.5,
  388. "y": 0.5
  389. },
  390. "_position": {
  391. "__type__": "cc.Vec3",
  392. "x": -27,
  393. "y": 70,
  394. "z": 0
  395. },
  396. "_scale": {
  397. "__type__": "cc.Vec3",
  398. "x": 1,
  399. "y": 1,
  400. "z": 1
  401. },
  402. "_quat": {
  403. "__type__": "cc.Quat",
  404. "x": 0,
  405. "y": 0,
  406. "z": 0,
  407. "w": 1
  408. },
  409. "_skewX": 0,
  410. "_skewY": 0,
  411. "_zIndex": 0,
  412. "_is3DNode": false,
  413. "groupIndex": 0,
  414. "_id": ""
  415. },
  416. {
  417. "__type__": "cc.Node",
  418. "_name": "New Label",
  419. "_objFlags": 0,
  420. "_parent": {
  421. "__id__": 9
  422. },
  423. "_children": [],
  424. "_active": true,
  425. "_level": 4,
  426. "_components": [
  427. {
  428. "__id__": 11
  429. }
  430. ],
  431. "_prefab": {
  432. "__id__": 12
  433. },
  434. "_opacity": 255,
  435. "_color": {
  436. "__type__": "cc.Color",
  437. "r": 255,
  438. "g": 0,
  439. "b": 0,
  440. "a": 255
  441. },
  442. "_contentSize": {
  443. "__type__": "cc.Size",
  444. "width": 40,
  445. "height": 20
  446. },
  447. "_anchorPoint": {
  448. "__type__": "cc.Vec2",
  449. "x": 0.5,
  450. "y": 0.5
  451. },
  452. "_position": {
  453. "__type__": "cc.Vec3",
  454. "x": -53.7,
  455. "y": -11,
  456. "z": 0
  457. },
  458. "_scale": {
  459. "__type__": "cc.Vec3",
  460. "x": 1,
  461. "y": 1,
  462. "z": 1
  463. },
  464. "_quat": {
  465. "__type__": "cc.Quat",
  466. "x": 0,
  467. "y": 0,
  468. "z": 0,
  469. "w": 1
  470. },
  471. "_skewX": 0,
  472. "_skewY": 0,
  473. "_zIndex": 0,
  474. "_is3DNode": false,
  475. "groupIndex": 0,
  476. "_id": ""
  477. },
  478. {
  479. "__type__": "cc.Label",
  480. "_name": "",
  481. "_objFlags": 0,
  482. "node": {
  483. "__id__": 10
  484. },
  485. "_enabled": true,
  486. "_srcBlendFactor": 1,
  487. "_dstBlendFactor": 771,
  488. "_useOriginalSize": false,
  489. "_string": "建造",
  490. "_N$string": "建造",
  491. "_fontSize": 20,
  492. "_lineHeight": 20,
  493. "_enableWrapText": true,
  494. "_N$file": null,
  495. "_isSystemFontUsed": true,
  496. "_spacingX": 0,
  497. "_N$horizontalAlign": 0,
  498. "_N$verticalAlign": 0,
  499. "_N$fontFamily": "Arial",
  500. "_N$overflow": 0,
  501. "_id": ""
  502. },
  503. {
  504. "__type__": "cc.PrefabInfo",
  505. "root": {
  506. "__id__": 1
  507. },
  508. "asset": {
  509. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  510. },
  511. "fileId": "66FhFw1JFIJISlmxqxqWVF",
  512. "sync": false
  513. },
  514. {
  515. "__type__": "cc.Node",
  516. "_name": "New Label",
  517. "_objFlags": 0,
  518. "_parent": {
  519. "__id__": 9
  520. },
  521. "_children": [],
  522. "_active": false,
  523. "_level": 4,
  524. "_components": [
  525. {
  526. "__id__": 14
  527. },
  528. {
  529. "__id__": 15
  530. }
  531. ],
  532. "_prefab": {
  533. "__id__": 16
  534. },
  535. "_opacity": 255,
  536. "_color": {
  537. "__type__": "cc.Color",
  538. "r": 255,
  539. "g": 0,
  540. "b": 0,
  541. "a": 255
  542. },
  543. "_contentSize": {
  544. "__type__": "cc.Size",
  545. "width": 60,
  546. "height": 20
  547. },
  548. "_anchorPoint": {
  549. "__type__": "cc.Vec2",
  550. "x": 0.5,
  551. "y": 0.5
  552. },
  553. "_position": {
  554. "__type__": "cc.Vec3",
  555. "x": -63.6,
  556. "y": 0.30000000000000004,
  557. "z": 0
  558. },
  559. "_scale": {
  560. "__type__": "cc.Vec3",
  561. "x": 1,
  562. "y": 1,
  563. "z": 1
  564. },
  565. "_quat": {
  566. "__type__": "cc.Quat",
  567. "x": 0,
  568. "y": 0,
  569. "z": 0,
  570. "w": 1
  571. },
  572. "_skewX": 0,
  573. "_skewY": 0,
  574. "_zIndex": 0,
  575. "_is3DNode": false,
  576. "groupIndex": 0,
  577. "_id": ""
  578. },
  579. {
  580. "__type__": "cc.Label",
  581. "_name": "",
  582. "_objFlags": 0,
  583. "node": {
  584. "__id__": 13
  585. },
  586. "_enabled": true,
  587. "_srcBlendFactor": 1,
  588. "_dstBlendFactor": 771,
  589. "_useOriginalSize": false,
  590. "_string": "加工厂",
  591. "_N$string": "加工厂",
  592. "_fontSize": 20,
  593. "_lineHeight": 20,
  594. "_enableWrapText": true,
  595. "_N$file": null,
  596. "_isSystemFontUsed": true,
  597. "_spacingX": 0,
  598. "_N$horizontalAlign": 0,
  599. "_N$verticalAlign": 0,
  600. "_N$fontFamily": "Arial",
  601. "_N$overflow": 0,
  602. "_id": ""
  603. },
  604. {
  605. "__type__": "cc.Animation",
  606. "_name": "",
  607. "_objFlags": 0,
  608. "node": {
  609. "__id__": 13
  610. },
  611. "_enabled": true,
  612. "_defaultClip": {
  613. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  614. },
  615. "_clips": [
  616. {
  617. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  618. }
  619. ],
  620. "playOnLoad": true,
  621. "_id": ""
  622. },
  623. {
  624. "__type__": "cc.PrefabInfo",
  625. "root": {
  626. "__id__": 1
  627. },
  628. "asset": {
  629. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  630. },
  631. "fileId": "d1fiHgV5pMDrfEqnItlhSp",
  632. "sync": false
  633. },
  634. {
  635. "__type__": "cc.Node",
  636. "_name": "New Label",
  637. "_objFlags": 0,
  638. "_parent": {
  639. "__id__": 9
  640. },
  641. "_children": [],
  642. "_active": false,
  643. "_level": 4,
  644. "_components": [
  645. {
  646. "__id__": 18
  647. },
  648. {
  649. "__id__": 19
  650. }
  651. ],
  652. "_prefab": {
  653. "__id__": 20
  654. },
  655. "_opacity": 255,
  656. "_color": {
  657. "__type__": "cc.Color",
  658. "r": 255,
  659. "g": 0,
  660. "b": 0,
  661. "a": 255
  662. },
  663. "_contentSize": {
  664. "__type__": "cc.Size",
  665. "width": 40,
  666. "height": 20
  667. },
  668. "_anchorPoint": {
  669. "__type__": "cc.Vec2",
  670. "x": 0.5,
  671. "y": 0.5
  672. },
  673. "_position": {
  674. "__type__": "cc.Vec3",
  675. "x": -33.4,
  676. "y": -39.4,
  677. "z": 0
  678. },
  679. "_scale": {
  680. "__type__": "cc.Vec3",
  681. "x": 1,
  682. "y": 1,
  683. "z": 1
  684. },
  685. "_quat": {
  686. "__type__": "cc.Quat",
  687. "x": 0,
  688. "y": 0,
  689. "z": 0,
  690. "w": 1
  691. },
  692. "_skewX": 0,
  693. "_skewY": 0,
  694. "_zIndex": 0,
  695. "_is3DNode": false,
  696. "groupIndex": 0,
  697. "_id": ""
  698. },
  699. {
  700. "__type__": "cc.Label",
  701. "_name": "",
  702. "_objFlags": 0,
  703. "node": {
  704. "__id__": 17
  705. },
  706. "_enabled": true,
  707. "_srcBlendFactor": 1,
  708. "_dstBlendFactor": 771,
  709. "_useOriginalSize": false,
  710. "_string": "建造",
  711. "_N$string": "建造",
  712. "_fontSize": 20,
  713. "_lineHeight": 20,
  714. "_enableWrapText": true,
  715. "_N$file": null,
  716. "_isSystemFontUsed": true,
  717. "_spacingX": 0,
  718. "_N$horizontalAlign": 0,
  719. "_N$verticalAlign": 0,
  720. "_N$fontFamily": "Arial",
  721. "_N$overflow": 0,
  722. "_id": ""
  723. },
  724. {
  725. "__type__": "cc.Animation",
  726. "_name": "",
  727. "_objFlags": 0,
  728. "node": {
  729. "__id__": 17
  730. },
  731. "_enabled": true,
  732. "_defaultClip": {
  733. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  734. },
  735. "_clips": [
  736. {
  737. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  738. }
  739. ],
  740. "playOnLoad": true,
  741. "_id": ""
  742. },
  743. {
  744. "__type__": "cc.PrefabInfo",
  745. "root": {
  746. "__id__": 1
  747. },
  748. "asset": {
  749. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  750. },
  751. "fileId": "30TFEh9ENEtaSfP4X3oVUd",
  752. "sync": false
  753. },
  754. {
  755. "__type__": "cc.Node",
  756. "_name": "New Label",
  757. "_objFlags": 0,
  758. "_parent": {
  759. "__id__": 9
  760. },
  761. "_children": [],
  762. "_active": false,
  763. "_level": 4,
  764. "_components": [
  765. {
  766. "__id__": 22
  767. },
  768. {
  769. "__id__": 23
  770. }
  771. ],
  772. "_prefab": {
  773. "__id__": 24
  774. },
  775. "_opacity": 255,
  776. "_color": {
  777. "__type__": "cc.Color",
  778. "r": 255,
  779. "g": 0,
  780. "b": 0,
  781. "a": 255
  782. },
  783. "_contentSize": {
  784. "__type__": "cc.Size",
  785. "width": 40,
  786. "height": 20
  787. },
  788. "_anchorPoint": {
  789. "__type__": "cc.Vec2",
  790. "x": 0.5,
  791. "y": 0.5
  792. },
  793. "_position": {
  794. "__type__": "cc.Vec3",
  795. "x": -62.5,
  796. "y": 21,
  797. "z": 0
  798. },
  799. "_scale": {
  800. "__type__": "cc.Vec3",
  801. "x": 1,
  802. "y": 1,
  803. "z": 1
  804. },
  805. "_quat": {
  806. "__type__": "cc.Quat",
  807. "x": 0,
  808. "y": 0,
  809. "z": 0,
  810. "w": 1
  811. },
  812. "_skewX": 0,
  813. "_skewY": 0,
  814. "_zIndex": 0,
  815. "_is3DNode": false,
  816. "groupIndex": 0,
  817. "_id": ""
  818. },
  819. {
  820. "__type__": "cc.Label",
  821. "_name": "",
  822. "_objFlags": 0,
  823. "node": {
  824. "__id__": 21
  825. },
  826. "_enabled": true,
  827. "_srcBlendFactor": 1,
  828. "_dstBlendFactor": 771,
  829. "_useOriginalSize": false,
  830. "_string": "人才",
  831. "_N$string": "人才",
  832. "_fontSize": 20,
  833. "_lineHeight": 20,
  834. "_enableWrapText": true,
  835. "_N$file": null,
  836. "_isSystemFontUsed": true,
  837. "_spacingX": 0,
  838. "_N$horizontalAlign": 0,
  839. "_N$verticalAlign": 0,
  840. "_N$fontFamily": "Arial",
  841. "_N$overflow": 0,
  842. "_id": ""
  843. },
  844. {
  845. "__type__": "cc.Animation",
  846. "_name": "",
  847. "_objFlags": 0,
  848. "node": {
  849. "__id__": 21
  850. },
  851. "_enabled": true,
  852. "_defaultClip": {
  853. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  854. },
  855. "_clips": [
  856. {
  857. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  858. }
  859. ],
  860. "playOnLoad": true,
  861. "_id": ""
  862. },
  863. {
  864. "__type__": "cc.PrefabInfo",
  865. "root": {
  866. "__id__": 1
  867. },
  868. "asset": {
  869. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  870. },
  871. "fileId": "3a+VKIMcBB6pwhcHFxUS0L",
  872. "sync": false
  873. },
  874. {
  875. "__type__": "cc.Label",
  876. "_name": "",
  877. "_objFlags": 0,
  878. "node": {
  879. "__id__": 9
  880. },
  881. "_enabled": true,
  882. "_srcBlendFactor": 1,
  883. "_dstBlendFactor": 771,
  884. "_useOriginalSize": false,
  885. "_string": " 有了加工厂后,我们试试\n 开出您的第一个商店。点击\n 然后根据提示沿着道\n 路建设便利店",
  886. "_N$string": " 有了加工厂后,我们试试\n 开出您的第一个商店。点击\n 然后根据提示沿着道\n 路建设便利店",
  887. "_fontSize": 20,
  888. "_lineHeight": 20,
  889. "_enableWrapText": true,
  890. "_N$file": null,
  891. "_isSystemFontUsed": true,
  892. "_spacingX": 0,
  893. "_N$horizontalAlign": 0,
  894. "_N$verticalAlign": 0,
  895. "_N$fontFamily": "Arial",
  896. "_N$overflow": 0,
  897. "_id": ""
  898. },
  899. {
  900. "__type__": "cc.PrefabInfo",
  901. "root": {
  902. "__id__": 1
  903. },
  904. "asset": {
  905. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  906. },
  907. "fileId": "3dN5K+j39BUKty7MWkXNqP",
  908. "sync": false
  909. },
  910. {
  911. "__type__": "cc.Node",
  912. "_name": "richtext",
  913. "_objFlags": 0,
  914. "_parent": {
  915. "__id__": 8
  916. },
  917. "_children": [
  918. {
  919. "__id__": 28
  920. },
  921. {
  922. "__id__": 31
  923. },
  924. {
  925. "__id__": 34
  926. },
  927. {
  928. "__id__": 37
  929. },
  930. {
  931. "__id__": 40
  932. },
  933. {
  934. "__id__": 43
  935. },
  936. {
  937. "__id__": 46
  938. },
  939. {
  940. "__id__": 49
  941. },
  942. {
  943. "__id__": 52
  944. },
  945. {
  946. "__id__": 55
  947. }
  948. ],
  949. "_active": true,
  950. "_level": 3,
  951. "_components": [
  952. {
  953. "__id__": 58
  954. }
  955. ],
  956. "_prefab": {
  957. "__id__": 59
  958. },
  959. "_opacity": 255,
  960. "_color": {
  961. "__type__": "cc.Color",
  962. "r": 255,
  963. "g": 255,
  964. "b": 255,
  965. "a": 255
  966. },
  967. "_contentSize": {
  968. "__type__": "cc.Size",
  969. "width": 525,
  970. "height": 150
  971. },
  972. "_anchorPoint": {
  973. "__type__": "cc.Vec2",
  974. "x": 0.5,
  975. "y": 0.5
  976. },
  977. "_position": {
  978. "__type__": "cc.Vec3",
  979. "x": 19,
  980. "y": 91,
  981. "z": 0
  982. },
  983. "_scale": {
  984. "__type__": "cc.Vec3",
  985. "x": 1,
  986. "y": 1,
  987. "z": 1
  988. },
  989. "_quat": {
  990. "__type__": "cc.Quat",
  991. "x": 0,
  992. "y": 0,
  993. "z": 0,
  994. "w": 1
  995. },
  996. "_skewX": 0,
  997. "_skewY": 0,
  998. "_zIndex": 0,
  999. "_is3DNode": false,
  1000. "groupIndex": 0,
  1001. "_id": ""
  1002. },
  1003. {
  1004. "__type__": "cc.PrivateNode",
  1005. "_name": "RICHTEXT_CHILD",
  1006. "_objFlags": 0,
  1007. "_parent": {
  1008. "__id__": 27
  1009. },
  1010. "_children": [],
  1011. "_active": true,
  1012. "_level": 4,
  1013. "_components": [
  1014. {
  1015. "__id__": 29
  1016. }
  1017. ],
  1018. "_prefab": {
  1019. "__id__": 30
  1020. },
  1021. "_opacity": 255,
  1022. "_color": {
  1023. "__type__": "cc.Color",
  1024. "r": 0,
  1025. "g": 0,
  1026. "b": 0,
  1027. "a": 255
  1028. },
  1029. "_contentSize": {
  1030. "__type__": "cc.Size",
  1031. "width": 187.54,
  1032. "height": 25
  1033. },
  1034. "_anchorPoint": {
  1035. "__type__": "cc.Vec2",
  1036. "x": 0,
  1037. "y": 0
  1038. },
  1039. "_position": {
  1040. "__type__": "cc.Vec3",
  1041. "x": -262.5,
  1042. "y": 50,
  1043. "z": 0
  1044. },
  1045. "_scale": {
  1046. "__type__": "cc.Vec3",
  1047. "x": 1,
  1048. "y": 1,
  1049. "z": 1
  1050. },
  1051. "_quat": {
  1052. "__type__": "cc.Quat",
  1053. "x": 0,
  1054. "y": 0,
  1055. "z": 0,
  1056. "w": 1
  1057. },
  1058. "_skewX": 0,
  1059. "_skewY": 0,
  1060. "_zIndex": -32768,
  1061. "_is3DNode": false,
  1062. "groupIndex": 0,
  1063. "_id": ""
  1064. },
  1065. {
  1066. "__type__": "cc.Label",
  1067. "_name": "",
  1068. "_objFlags": 0,
  1069. "node": {
  1070. "__id__": 28
  1071. },
  1072. "_enabled": true,
  1073. "_srcBlendFactor": 1,
  1074. "_dstBlendFactor": 771,
  1075. "_useOriginalSize": true,
  1076. "_string": " ",
  1077. "_N$string": " ",
  1078. "_fontSize": 25,
  1079. "_lineHeight": 25,
  1080. "_enableWrapText": true,
  1081. "_N$file": null,
  1082. "_isSystemFontUsed": true,
  1083. "_spacingX": 0,
  1084. "_N$horizontalAlign": 0,
  1085. "_N$verticalAlign": 1,
  1086. "_N$fontFamily": "Arial",
  1087. "_N$overflow": 0,
  1088. "_id": ""
  1089. },
  1090. {
  1091. "__type__": "cc.PrefabInfo",
  1092. "root": {
  1093. "__id__": 1
  1094. },
  1095. "asset": {
  1096. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  1097. },
  1098. "fileId": "b99S4TAj5Ea4O83J1V80Yd",
  1099. "sync": false
  1100. },
  1101. {
  1102. "__type__": "cc.PrivateNode",
  1103. "_name": "RICHTEXT_CHILD",
  1104. "_objFlags": 0,
  1105. "_parent": {
  1106. "__id__": 27
  1107. },
  1108. "_children": [],
  1109. "_active": true,
  1110. "_level": 4,
  1111. "_components": [
  1112. {
  1113. "__id__": 32
  1114. }
  1115. ],
  1116. "_prefab": {
  1117. "__id__": 33
  1118. },
  1119. "_opacity": 255,
  1120. "_color": {
  1121. "__type__": "cc.Color",
  1122. "r": 0,
  1123. "g": 0,
  1124. "b": 0,
  1125. "a": 255
  1126. },
  1127. "_contentSize": {
  1128. "__type__": "cc.Size",
  1129. "width": 440.3,
  1130. "height": 25
  1131. },
  1132. "_anchorPoint": {
  1133. "__type__": "cc.Vec2",
  1134. "x": 0,
  1135. "y": 0
  1136. },
  1137. "_position": {
  1138. "__type__": "cc.Vec3",
  1139. "x": -262.5,
  1140. "y": 25,
  1141. "z": 0
  1142. },
  1143. "_scale": {
  1144. "__type__": "cc.Vec3",
  1145. "x": 1,
  1146. "y": 1,
  1147. "z": 1
  1148. },
  1149. "_quat": {
  1150. "__type__": "cc.Quat",
  1151. "x": 0,
  1152. "y": 0,
  1153. "z": 0,
  1154. "w": 1
  1155. },
  1156. "_skewX": 0,
  1157. "_skewY": 0,
  1158. "_zIndex": -32768,
  1159. "_is3DNode": false,
  1160. "groupIndex": 0,
  1161. "_id": ""
  1162. },
  1163. {
  1164. "__type__": "cc.Label",
  1165. "_name": "",
  1166. "_objFlags": 0,
  1167. "node": {
  1168. "__id__": 31
  1169. },
  1170. "_enabled": true,
  1171. "_srcBlendFactor": 1,
  1172. "_dstBlendFactor": 771,
  1173. "_useOriginalSize": true,
  1174. "_string": " 城市的建设固然重要,但是也不",
  1175. "_N$string": " 城市的建设固然重要,但是也不",
  1176. "_fontSize": 25,
  1177. "_lineHeight": 25,
  1178. "_enableWrapText": true,
  1179. "_N$file": null,
  1180. "_isSystemFontUsed": true,
  1181. "_spacingX": 0,
  1182. "_N$horizontalAlign": 0,
  1183. "_N$verticalAlign": 1,
  1184. "_N$fontFamily": "Arial",
  1185. "_N$overflow": 0,
  1186. "_id": ""
  1187. },
  1188. {
  1189. "__type__": "cc.PrefabInfo",
  1190. "root": {
  1191. "__id__": 1
  1192. },
  1193. "asset": {
  1194. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  1195. },
  1196. "fileId": "b6SPoIegxB+oW0D2uCS3gW",
  1197. "sync": false
  1198. },
  1199. {
  1200. "__type__": "cc.PrivateNode",
  1201. "_name": "RICHTEXT_CHILD",
  1202. "_objFlags": 0,
  1203. "_parent": {
  1204. "__id__": 27
  1205. },
  1206. "_children": [],
  1207. "_active": true,
  1208. "_level": 4,
  1209. "_components": [
  1210. {
  1211. "__id__": 35
  1212. }
  1213. ],
  1214. "_prefab": {
  1215. "__id__": 36
  1216. },
  1217. "_opacity": 255,
  1218. "_color": {
  1219. "__type__": "cc.Color",
  1220. "r": 0,
  1221. "g": 0,
  1222. "b": 0,
  1223. "a": 255
  1224. },
  1225. "_contentSize": {
  1226. "__type__": "cc.Size",
  1227. "width": 525,
  1228. "height": 25
  1229. },
  1230. "_anchorPoint": {
  1231. "__type__": "cc.Vec2",
  1232. "x": 0,
  1233. "y": 0
  1234. },
  1235. "_position": {
  1236. "__type__": "cc.Vec3",
  1237. "x": -262.5,
  1238. "y": 0,
  1239. "z": 0
  1240. },
  1241. "_scale": {
  1242. "__type__": "cc.Vec3",
  1243. "x": 1,
  1244. "y": 1,
  1245. "z": 1
  1246. },
  1247. "_quat": {
  1248. "__type__": "cc.Quat",
  1249. "x": 0,
  1250. "y": 0,
  1251. "z": 0,
  1252. "w": 1
  1253. },
  1254. "_skewX": 0,
  1255. "_skewY": 0,
  1256. "_zIndex": -32768,
  1257. "_is3DNode": false,
  1258. "groupIndex": 0,
  1259. "_id": ""
  1260. },
  1261. {
  1262. "__type__": "cc.Label",
  1263. "_name": "",
  1264. "_objFlags": 0,
  1265. "node": {
  1266. "__id__": 34
  1267. },
  1268. "_enabled": true,
  1269. "_srcBlendFactor": 1,
  1270. "_dstBlendFactor": 771,
  1271. "_useOriginalSize": true,
  1272. "_string": "要忽视环保!绿化带不仅可以让城市更加美观,",
  1273. "_N$string": "要忽视环保!绿化带不仅可以让城市更加美观,",
  1274. "_fontSize": 25,
  1275. "_lineHeight": 25,
  1276. "_enableWrapText": true,
  1277. "_N$file": null,
  1278. "_isSystemFontUsed": true,
  1279. "_spacingX": 0,
  1280. "_N$horizontalAlign": 0,
  1281. "_N$verticalAlign": 1,
  1282. "_N$fontFamily": "Arial",
  1283. "_N$overflow": 0,
  1284. "_id": ""
  1285. },
  1286. {
  1287. "__type__": "cc.PrefabInfo",
  1288. "root": {
  1289. "__id__": 1
  1290. },
  1291. "asset": {
  1292. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  1293. },
  1294. "fileId": "437oPs/HZOh5TEoMsOWfzb",
  1295. "sync": false
  1296. },
  1297. {
  1298. "__type__": "cc.PrivateNode",
  1299. "_name": "RICHTEXT_CHILD",
  1300. "_objFlags": 0,
  1301. "_parent": {
  1302. "__id__": 27
  1303. },
  1304. "_children": [],
  1305. "_active": true,
  1306. "_level": 4,
  1307. "_components": [
  1308. {
  1309. "__id__": 38
  1310. }
  1311. ],
  1312. "_prefab": {
  1313. "__id__": 39
  1314. },
  1315. "_opacity": 255,
  1316. "_color": {
  1317. "__type__": "cc.Color",
  1318. "r": 0,
  1319. "g": 0,
  1320. "b": 0,
  1321. "a": 255
  1322. },
  1323. "_contentSize": {
  1324. "__type__": "cc.Size",
  1325. "width": 500,
  1326. "height": 25
  1327. },
  1328. "_anchorPoint": {
  1329. "__type__": "cc.Vec2",
  1330. "x": 0,
  1331. "y": 0
  1332. },
  1333. "_position": {
  1334. "__type__": "cc.Vec3",
  1335. "x": -262.5,
  1336. "y": -25,
  1337. "z": 0
  1338. },
  1339. "_scale": {
  1340. "__type__": "cc.Vec3",
  1341. "x": 1,
  1342. "y": 1,
  1343. "z": 1
  1344. },
  1345. "_quat": {
  1346. "__type__": "cc.Quat",
  1347. "x": 0,
  1348. "y": 0,
  1349. "z": 0,
  1350. "w": 1
  1351. },
  1352. "_skewX": 0,
  1353. "_skewY": 0,
  1354. "_zIndex": -32768,
  1355. "_is3DNode": false,
  1356. "groupIndex": 0,
  1357. "_id": ""
  1358. },
  1359. {
  1360. "__type__": "cc.Label",
  1361. "_name": "",
  1362. "_objFlags": 0,
  1363. "node": {
  1364. "__id__": 37
  1365. },
  1366. "_enabled": true,
  1367. "_srcBlendFactor": 1,
  1368. "_dstBlendFactor": 771,
  1369. "_useOriginalSize": true,
  1370. "_string": "也可以为周边的商店带来销售加成,还可以给",
  1371. "_N$string": "也可以为周边的商店带来销售加成,还可以给",
  1372. "_fontSize": 25,
  1373. "_lineHeight": 25,
  1374. "_enableWrapText": true,
  1375. "_N$file": null,
  1376. "_isSystemFontUsed": true,
  1377. "_spacingX": 0,
  1378. "_N$horizontalAlign": 0,
  1379. "_N$verticalAlign": 1,
  1380. "_N$fontFamily": "Arial",
  1381. "_N$overflow": 0,
  1382. "_id": ""
  1383. },
  1384. {
  1385. "__type__": "cc.PrefabInfo",
  1386. "root": {
  1387. "__id__": 1
  1388. },
  1389. "asset": {
  1390. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  1391. },
  1392. "fileId": "2aaxjH0ztOD5fe7CwNgHx7",
  1393. "sync": false
  1394. },
  1395. {
  1396. "__type__": "cc.PrivateNode",
  1397. "_name": "RICHTEXT_CHILD",
  1398. "_objFlags": 0,
  1399. "_parent": {
  1400. "__id__": 27
  1401. },
  1402. "_children": [],
  1403. "_active": true,
  1404. "_level": 4,
  1405. "_components": [
  1406. {
  1407. "__id__": 41
  1408. }
  1409. ],
  1410. "_prefab": {
  1411. "__id__": 42
  1412. },
  1413. "_opacity": 255,
  1414. "_color": {
  1415. "__type__": "cc.Color",
  1416. "r": 0,
  1417. "g": 0,
  1418. "b": 0,
  1419. "a": 255
  1420. },
  1421. "_contentSize": {
  1422. "__type__": "cc.Size",
  1423. "width": 331.95,
  1424. "height": 25
  1425. },
  1426. "_anchorPoint": {
  1427. "__type__": "cc.Vec2",
  1428. "x": 0,
  1429. "y": 0
  1430. },
  1431. "_position": {
  1432. "__type__": "cc.Vec3",
  1433. "x": -262.5,
  1434. "y": -50,
  1435. "z": 0
  1436. },
  1437. "_scale": {
  1438. "__type__": "cc.Vec3",
  1439. "x": 1,
  1440. "y": 1,
  1441. "z": 1
  1442. },
  1443. "_quat": {
  1444. "__type__": "cc.Quat",
  1445. "x": 0,
  1446. "y": 0,
  1447. "z": 0,
  1448. "w": 1
  1449. },
  1450. "_skewX": 0,
  1451. "_skewY": 0,
  1452. "_zIndex": -32768,
  1453. "_is3DNode": false,
  1454. "groupIndex": 0,
  1455. "_id": ""
  1456. },
  1457. {
  1458. "__type__": "cc.Label",
  1459. "_name": "",
  1460. "_objFlags": 0,
  1461. "node": {
  1462. "__id__": 40
  1463. },
  1464. "_enabled": true,
  1465. "_srcBlendFactor": 1,
  1466. "_dstBlendFactor": 771,
  1467. "_useOriginalSize": true,
  1468. "_string": "周边宿舍带来恢复加成。点击 ",
  1469. "_N$string": "周边宿舍带来恢复加成。点击 ",
  1470. "_fontSize": 25,
  1471. "_lineHeight": 25,
  1472. "_enableWrapText": true,
  1473. "_N$file": null,
  1474. "_isSystemFontUsed": true,
  1475. "_spacingX": 0,
  1476. "_N$horizontalAlign": 0,
  1477. "_N$verticalAlign": 1,
  1478. "_N$fontFamily": "Arial",
  1479. "_N$overflow": 0,
  1480. "_id": ""
  1481. },
  1482. {
  1483. "__type__": "cc.PrefabInfo",
  1484. "root": {
  1485. "__id__": 1
  1486. },
  1487. "asset": {
  1488. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  1489. },
  1490. "fileId": "e8n1hlg8FP25RTgRjZqzzv",
  1491. "sync": false
  1492. },
  1493. {
  1494. "__type__": "cc.PrivateNode",
  1495. "_name": "RICHTEXT_CHILD",
  1496. "_objFlags": 0,
  1497. "_parent": {
  1498. "__id__": 27
  1499. },
  1500. "_children": [],
  1501. "_active": true,
  1502. "_level": 4,
  1503. "_components": [
  1504. {
  1505. "__id__": 44
  1506. }
  1507. ],
  1508. "_prefab": {
  1509. "__id__": 45
  1510. },
  1511. "_opacity": 255,
  1512. "_color": {
  1513. "__type__": "cc.Color",
  1514. "r": 255,
  1515. "g": 0,
  1516. "b": 0,
  1517. "a": 255
  1518. },
  1519. "_contentSize": {
  1520. "__type__": "cc.Size",
  1521. "width": 50,
  1522. "height": 25
  1523. },
  1524. "_anchorPoint": {
  1525. "__type__": "cc.Vec2",
  1526. "x": 0,
  1527. "y": 0
  1528. },
  1529. "_position": {
  1530. "__type__": "cc.Vec3",
  1531. "x": 69.44999999999999,
  1532. "y": -50,
  1533. "z": 0
  1534. },
  1535. "_scale": {
  1536. "__type__": "cc.Vec3",
  1537. "x": 1,
  1538. "y": 1,
  1539. "z": 1
  1540. },
  1541. "_quat": {
  1542. "__type__": "cc.Quat",
  1543. "x": 0,
  1544. "y": 0,
  1545. "z": 0,
  1546. "w": 1
  1547. },
  1548. "_skewX": 0,
  1549. "_skewY": 0,
  1550. "_zIndex": -32768,
  1551. "_is3DNode": false,
  1552. "groupIndex": 0,
  1553. "_id": ""
  1554. },
  1555. {
  1556. "__type__": "cc.Label",
  1557. "_name": "",
  1558. "_objFlags": 0,
  1559. "node": {
  1560. "__id__": 43
  1561. },
  1562. "_enabled": true,
  1563. "_srcBlendFactor": 1,
  1564. "_dstBlendFactor": 771,
  1565. "_useOriginalSize": true,
  1566. "_string": "建造",
  1567. "_N$string": "建造",
  1568. "_fontSize": 25,
  1569. "_lineHeight": 25,
  1570. "_enableWrapText": true,
  1571. "_N$file": null,
  1572. "_isSystemFontUsed": true,
  1573. "_spacingX": 0,
  1574. "_N$horizontalAlign": 0,
  1575. "_N$verticalAlign": 1,
  1576. "_N$fontFamily": "Arial",
  1577. "_N$overflow": 0,
  1578. "_id": ""
  1579. },
  1580. {
  1581. "__type__": "cc.PrefabInfo",
  1582. "root": {
  1583. "__id__": 1
  1584. },
  1585. "asset": {
  1586. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  1587. },
  1588. "fileId": "3dTz45Gc1JmbqbSnmvw19I",
  1589. "sync": false
  1590. },
  1591. {
  1592. "__type__": "cc.PrivateNode",
  1593. "_name": "RICHTEXT_CHILD",
  1594. "_objFlags": 0,
  1595. "_parent": {
  1596. "__id__": 27
  1597. },
  1598. "_children": [],
  1599. "_active": true,
  1600. "_level": 4,
  1601. "_components": [
  1602. {
  1603. "__id__": 47
  1604. }
  1605. ],
  1606. "_prefab": {
  1607. "__id__": 48
  1608. },
  1609. "_opacity": 255,
  1610. "_color": {
  1611. "__type__": "cc.Color",
  1612. "r": 0,
  1613. "g": 0,
  1614. "b": 0,
  1615. "a": 255
  1616. },
  1617. "_contentSize": {
  1618. "__type__": "cc.Size",
  1619. "width": 56.95,
  1620. "height": 25
  1621. },
  1622. "_anchorPoint": {
  1623. "__type__": "cc.Vec2",
  1624. "x": 0,
  1625. "y": 0
  1626. },
  1627. "_position": {
  1628. "__type__": "cc.Vec3",
  1629. "x": 119.44999999999999,
  1630. "y": -50,
  1631. "z": 0
  1632. },
  1633. "_scale": {
  1634. "__type__": "cc.Vec3",
  1635. "x": 1,
  1636. "y": 1,
  1637. "z": 1
  1638. },
  1639. "_quat": {
  1640. "__type__": "cc.Quat",
  1641. "x": 0,
  1642. "y": 0,
  1643. "z": 0,
  1644. "w": 1
  1645. },
  1646. "_skewX": 0,
  1647. "_skewY": 0,
  1648. "_zIndex": -32768,
  1649. "_is3DNode": false,
  1650. "groupIndex": 0,
  1651. "_id": ""
  1652. },
  1653. {
  1654. "__type__": "cc.Label",
  1655. "_name": "",
  1656. "_objFlags": 0,
  1657. "node": {
  1658. "__id__": 46
  1659. },
  1660. "_enabled": true,
  1661. "_srcBlendFactor": 1,
  1662. "_dstBlendFactor": 771,
  1663. "_useOriginalSize": true,
  1664. "_string": ",在 ",
  1665. "_N$string": ",在 ",
  1666. "_fontSize": 25,
  1667. "_lineHeight": 25,
  1668. "_enableWrapText": true,
  1669. "_N$file": null,
  1670. "_isSystemFontUsed": true,
  1671. "_spacingX": 0,
  1672. "_N$horizontalAlign": 0,
  1673. "_N$verticalAlign": 1,
  1674. "_N$fontFamily": "Arial",
  1675. "_N$overflow": 0,
  1676. "_id": ""
  1677. },
  1678. {
  1679. "__type__": "cc.PrefabInfo",
  1680. "root": {
  1681. "__id__": 1
  1682. },
  1683. "asset": {
  1684. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  1685. },
  1686. "fileId": "acrPUb0TRO4aqfoYzcjR8o",
  1687. "sync": false
  1688. },
  1689. {
  1690. "__type__": "cc.PrivateNode",
  1691. "_name": "RICHTEXT_CHILD",
  1692. "_objFlags": 0,
  1693. "_parent": {
  1694. "__id__": 27
  1695. },
  1696. "_children": [],
  1697. "_active": true,
  1698. "_level": 4,
  1699. "_components": [
  1700. {
  1701. "__id__": 50
  1702. }
  1703. ],
  1704. "_prefab": {
  1705. "__id__": 51
  1706. },
  1707. "_opacity": 255,
  1708. "_color": {
  1709. "__type__": "cc.Color",
  1710. "r": 255,
  1711. "g": 0,
  1712. "b": 0,
  1713. "a": 255
  1714. },
  1715. "_contentSize": {
  1716. "__type__": "cc.Size",
  1717. "width": 50,
  1718. "height": 25
  1719. },
  1720. "_anchorPoint": {
  1721. "__type__": "cc.Vec2",
  1722. "x": 0,
  1723. "y": 0
  1724. },
  1725. "_position": {
  1726. "__type__": "cc.Vec3",
  1727. "x": 176.39999999999998,
  1728. "y": -50,
  1729. "z": 0
  1730. },
  1731. "_scale": {
  1732. "__type__": "cc.Vec3",
  1733. "x": 1,
  1734. "y": 1,
  1735. "z": 1
  1736. },
  1737. "_quat": {
  1738. "__type__": "cc.Quat",
  1739. "x": 0,
  1740. "y": 0,
  1741. "z": 0,
  1742. "w": 1
  1743. },
  1744. "_skewX": 0,
  1745. "_skewY": 0,
  1746. "_zIndex": -32768,
  1747. "_is3DNode": false,
  1748. "groupIndex": 0,
  1749. "_id": ""
  1750. },
  1751. {
  1752. "__type__": "cc.Label",
  1753. "_name": "",
  1754. "_objFlags": 0,
  1755. "node": {
  1756. "__id__": 49
  1757. },
  1758. "_enabled": true,
  1759. "_srcBlendFactor": 1,
  1760. "_dstBlendFactor": 771,
  1761. "_useOriginalSize": true,
  1762. "_string": "特殊",
  1763. "_N$string": "特殊",
  1764. "_fontSize": 25,
  1765. "_lineHeight": 25,
  1766. "_enableWrapText": true,
  1767. "_N$file": null,
  1768. "_isSystemFontUsed": true,
  1769. "_spacingX": 0,
  1770. "_N$horizontalAlign": 0,
  1771. "_N$verticalAlign": 1,
  1772. "_N$fontFamily": "Arial",
  1773. "_N$overflow": 0,
  1774. "_id": ""
  1775. },
  1776. {
  1777. "__type__": "cc.PrefabInfo",
  1778. "root": {
  1779. "__id__": 1
  1780. },
  1781. "asset": {
  1782. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  1783. },
  1784. "fileId": "cavFclCwNGApmriq7jHAmO",
  1785. "sync": false
  1786. },
  1787. {
  1788. "__type__": "cc.PrivateNode",
  1789. "_name": "RICHTEXT_CHILD",
  1790. "_objFlags": 0,
  1791. "_parent": {
  1792. "__id__": 27
  1793. },
  1794. "_children": [],
  1795. "_active": true,
  1796. "_level": 4,
  1797. "_components": [
  1798. {
  1799. "__id__": 53
  1800. }
  1801. ],
  1802. "_prefab": {
  1803. "__id__": 54
  1804. },
  1805. "_opacity": 255,
  1806. "_color": {
  1807. "__type__": "cc.Color",
  1808. "r": 0,
  1809. "g": 0,
  1810. "b": 0,
  1811. "a": 255
  1812. },
  1813. "_contentSize": {
  1814. "__type__": "cc.Size",
  1815. "width": 25,
  1816. "height": 25
  1817. },
  1818. "_anchorPoint": {
  1819. "__type__": "cc.Vec2",
  1820. "x": 0,
  1821. "y": 0
  1822. },
  1823. "_position": {
  1824. "__type__": "cc.Vec3",
  1825. "x": 226.39999999999998,
  1826. "y": -50,
  1827. "z": 0
  1828. },
  1829. "_scale": {
  1830. "__type__": "cc.Vec3",
  1831. "x": 1,
  1832. "y": 1,
  1833. "z": 1
  1834. },
  1835. "_quat": {
  1836. "__type__": "cc.Quat",
  1837. "x": 0,
  1838. "y": 0,
  1839. "z": 0,
  1840. "w": 1
  1841. },
  1842. "_skewX": 0,
  1843. "_skewY": 0,
  1844. "_zIndex": -32768,
  1845. "_is3DNode": false,
  1846. "groupIndex": 0,
  1847. "_id": ""
  1848. },
  1849. {
  1850. "__type__": "cc.Label",
  1851. "_name": "",
  1852. "_objFlags": 0,
  1853. "node": {
  1854. "__id__": 52
  1855. },
  1856. "_enabled": true,
  1857. "_srcBlendFactor": 1,
  1858. "_dstBlendFactor": 771,
  1859. "_useOriginalSize": true,
  1860. "_string": "栏",
  1861. "_N$string": "栏",
  1862. "_fontSize": 25,
  1863. "_lineHeight": 25,
  1864. "_enableWrapText": true,
  1865. "_N$file": null,
  1866. "_isSystemFontUsed": true,
  1867. "_spacingX": 0,
  1868. "_N$horizontalAlign": 0,
  1869. "_N$verticalAlign": 1,
  1870. "_N$fontFamily": "Arial",
  1871. "_N$overflow": 0,
  1872. "_id": ""
  1873. },
  1874. {
  1875. "__type__": "cc.PrefabInfo",
  1876. "root": {
  1877. "__id__": 1
  1878. },
  1879. "asset": {
  1880. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  1881. },
  1882. "fileId": "f2/sjMa1FB7r5PoUgppZgT",
  1883. "sync": false
  1884. },
  1885. {
  1886. "__type__": "cc.PrivateNode",
  1887. "_name": "RICHTEXT_CHILD",
  1888. "_objFlags": 0,
  1889. "_parent": {
  1890. "__id__": 27
  1891. },
  1892. "_children": [],
  1893. "_active": true,
  1894. "_level": 4,
  1895. "_components": [
  1896. {
  1897. "__id__": 56
  1898. }
  1899. ],
  1900. "_prefab": {
  1901. "__id__": 57
  1902. },
  1903. "_opacity": 255,
  1904. "_color": {
  1905. "__type__": "cc.Color",
  1906. "r": 0,
  1907. "g": 0,
  1908. "b": 0,
  1909. "a": 255
  1910. },
  1911. "_contentSize": {
  1912. "__type__": "cc.Size",
  1913. "width": 225,
  1914. "height": 25
  1915. },
  1916. "_anchorPoint": {
  1917. "__type__": "cc.Vec2",
  1918. "x": 0,
  1919. "y": 0
  1920. },
  1921. "_position": {
  1922. "__type__": "cc.Vec3",
  1923. "x": -262.5,
  1924. "y": -75,
  1925. "z": 0
  1926. },
  1927. "_scale": {
  1928. "__type__": "cc.Vec3",
  1929. "x": 1,
  1930. "y": 1,
  1931. "z": 1
  1932. },
  1933. "_quat": {
  1934. "__type__": "cc.Quat",
  1935. "x": 0,
  1936. "y": 0,
  1937. "z": 0,
  1938. "w": 1
  1939. },
  1940. "_skewX": 0,
  1941. "_skewY": 0,
  1942. "_zIndex": -32768,
  1943. "_is3DNode": false,
  1944. "groupIndex": 0,
  1945. "_id": ""
  1946. },
  1947. {
  1948. "__type__": "cc.Label",
  1949. "_name": "",
  1950. "_objFlags": 0,
  1951. "node": {
  1952. "__id__": 55
  1953. },
  1954. "_enabled": true,
  1955. "_srcBlendFactor": 1,
  1956. "_dstBlendFactor": 771,
  1957. "_useOriginalSize": true,
  1958. "_string": "目可选取建造绿化带",
  1959. "_N$string": "目可选取建造绿化带",
  1960. "_fontSize": 25,
  1961. "_lineHeight": 25,
  1962. "_enableWrapText": true,
  1963. "_N$file": null,
  1964. "_isSystemFontUsed": true,
  1965. "_spacingX": 0,
  1966. "_N$horizontalAlign": 0,
  1967. "_N$verticalAlign": 1,
  1968. "_N$fontFamily": "Arial",
  1969. "_N$overflow": 0,
  1970. "_id": ""
  1971. },
  1972. {
  1973. "__type__": "cc.PrefabInfo",
  1974. "root": {
  1975. "__id__": 1
  1976. },
  1977. "asset": {
  1978. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  1979. },
  1980. "fileId": "acOiY4161GGYxLKzSTyOqK",
  1981. "sync": false
  1982. },
  1983. {
  1984. "__type__": "cc.RichText",
  1985. "_name": "",
  1986. "_objFlags": 0,
  1987. "node": {
  1988. "__id__": 27
  1989. },
  1990. "_enabled": true,
  1991. "_N$string": "<color=#000000> \n 城市的建设固然重要,但是也不\n要忽视环保!绿化带不仅可以让城市更加美观,\n也可以为周边的商店带来销售加成,还可以给\n周边宿舍带来恢复加成。点击 </c><color=#FF0000>建造</c><color=#000000>,在 </c><color=#FF0000>特殊</c><color=#000000>栏\n目可选取建造绿化带</c>",
  1992. "_N$horizontalAlign": 0,
  1993. "_N$fontSize": 25,
  1994. "_N$font": null,
  1995. "_N$maxWidth": 0,
  1996. "_N$lineHeight": 25,
  1997. "_N$imageAtlas": null,
  1998. "_N$handleTouchEvent": true,
  1999. "_id": ""
  2000. },
  2001. {
  2002. "__type__": "cc.PrefabInfo",
  2003. "root": {
  2004. "__id__": 1
  2005. },
  2006. "asset": {
  2007. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  2008. },
  2009. "fileId": "e9N5A7C1pBbZxaxnE/Zc+j",
  2010. "sync": false
  2011. },
  2012. {
  2013. "__type__": "cc.Sprite",
  2014. "_name": "",
  2015. "_objFlags": 0,
  2016. "node": {
  2017. "__id__": 8
  2018. },
  2019. "_enabled": true,
  2020. "_srcBlendFactor": 770,
  2021. "_dstBlendFactor": 771,
  2022. "_spriteFrame": {
  2023. "__uuid__": "7336ac05-5e39-44bc-92ff-d6e95545844a"
  2024. },
  2025. "_type": 0,
  2026. "_sizeMode": 0,
  2027. "_fillType": 0,
  2028. "_fillCenter": {
  2029. "__type__": "cc.Vec2",
  2030. "x": 0,
  2031. "y": 0
  2032. },
  2033. "_fillStart": 0,
  2034. "_fillRange": 0,
  2035. "_isTrimmedMode": true,
  2036. "_state": 0,
  2037. "_atlas": null,
  2038. "_id": ""
  2039. },
  2040. {
  2041. "__type__": "cc.PrefabInfo",
  2042. "root": {
  2043. "__id__": 1
  2044. },
  2045. "asset": {
  2046. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  2047. },
  2048. "fileId": "501io/wxdC47go2RnMFVED",
  2049. "sync": false
  2050. },
  2051. {
  2052. "__type__": "cc.Node",
  2053. "_name": "SureBtn",
  2054. "_objFlags": 0,
  2055. "_parent": {
  2056. "__id__": 1
  2057. },
  2058. "_children": [],
  2059. "_active": true,
  2060. "_level": 2,
  2061. "_components": [
  2062. {
  2063. "__id__": 63
  2064. },
  2065. {
  2066. "__id__": 64
  2067. }
  2068. ],
  2069. "_prefab": {
  2070. "__id__": 65
  2071. },
  2072. "_opacity": 255,
  2073. "_color": {
  2074. "__type__": "cc.Color",
  2075. "r": 255,
  2076. "g": 255,
  2077. "b": 255,
  2078. "a": 255
  2079. },
  2080. "_contentSize": {
  2081. "__type__": "cc.Size",
  2082. "width": 82,
  2083. "height": 37
  2084. },
  2085. "_anchorPoint": {
  2086. "__type__": "cc.Vec2",
  2087. "x": 0.5,
  2088. "y": 0.5
  2089. },
  2090. "_position": {
  2091. "__type__": "cc.Vec3",
  2092. "x": 0,
  2093. "y": -270,
  2094. "z": 0
  2095. },
  2096. "_scale": {
  2097. "__type__": "cc.Vec3",
  2098. "x": 2,
  2099. "y": 2,
  2100. "z": 2
  2101. },
  2102. "_skewX": 0,
  2103. "_skewY": 0,
  2104. "_zIndex": 0,
  2105. "_is3DNode": false,
  2106. "groupIndex": 0,
  2107. "_id": "",
  2108. "_eulerAngles": {
  2109. "__type__": "cc.Vec3",
  2110. "x": 0,
  2111. "y": 0,
  2112. "z": 0
  2113. }
  2114. },
  2115. {
  2116. "__type__": "cc.Sprite",
  2117. "_name": "",
  2118. "_objFlags": 0,
  2119. "node": {
  2120. "__id__": 62
  2121. },
  2122. "_enabled": true,
  2123. "_srcBlendFactor": 770,
  2124. "_dstBlendFactor": 771,
  2125. "_spriteFrame": {
  2126. "__uuid__": "db8cfc1e-cabb-4762-a0d5-728f49694fe2"
  2127. },
  2128. "_type": 0,
  2129. "_sizeMode": 0,
  2130. "_fillType": 0,
  2131. "_fillCenter": {
  2132. "__type__": "cc.Vec2",
  2133. "x": 0,
  2134. "y": 0
  2135. },
  2136. "_fillStart": 0,
  2137. "_fillRange": 0,
  2138. "_isTrimmedMode": true,
  2139. "_state": 0,
  2140. "_atlas": null,
  2141. "_id": ""
  2142. },
  2143. {
  2144. "__type__": "cc.Button",
  2145. "_name": "",
  2146. "_objFlags": 0,
  2147. "node": {
  2148. "__id__": 62
  2149. },
  2150. "_enabled": true,
  2151. "duration": 0.1,
  2152. "zoomScale": 1.2,
  2153. "clickEvents": [],
  2154. "_N$interactable": true,
  2155. "_N$enableAutoGrayEffect": false,
  2156. "_N$transition": 3,
  2157. "transition": 3,
  2158. "_N$normalColor": {
  2159. "__type__": "cc.Color",
  2160. "r": 214,
  2161. "g": 214,
  2162. "b": 214,
  2163. "a": 255
  2164. },
  2165. "_N$pressedColor": {
  2166. "__type__": "cc.Color",
  2167. "r": 211,
  2168. "g": 211,
  2169. "b": 211,
  2170. "a": 255
  2171. },
  2172. "pressedColor": {
  2173. "__type__": "cc.Color",
  2174. "r": 211,
  2175. "g": 211,
  2176. "b": 211,
  2177. "a": 255
  2178. },
  2179. "_N$hoverColor": {
  2180. "__type__": "cc.Color",
  2181. "r": 255,
  2182. "g": 255,
  2183. "b": 255,
  2184. "a": 255
  2185. },
  2186. "hoverColor": {
  2187. "__type__": "cc.Color",
  2188. "r": 255,
  2189. "g": 255,
  2190. "b": 255,
  2191. "a": 255
  2192. },
  2193. "_N$disabledColor": {
  2194. "__type__": "cc.Color",
  2195. "r": 124,
  2196. "g": 124,
  2197. "b": 124,
  2198. "a": 255
  2199. },
  2200. "_N$normalSprite": null,
  2201. "_N$pressedSprite": null,
  2202. "pressedSprite": null,
  2203. "_N$hoverSprite": null,
  2204. "hoverSprite": null,
  2205. "_N$disabledSprite": null,
  2206. "_N$target": null,
  2207. "_id": ""
  2208. },
  2209. {
  2210. "__type__": "cc.PrefabInfo",
  2211. "root": {
  2212. "__id__": 1
  2213. },
  2214. "asset": {
  2215. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  2216. },
  2217. "fileId": "0cngF76ARC158SMF2DK5nO",
  2218. "sync": false
  2219. },
  2220. {
  2221. "__type__": "cc.Node",
  2222. "_name": "info",
  2223. "_objFlags": 0,
  2224. "_parent": {
  2225. "__id__": 1
  2226. },
  2227. "_children": [
  2228. {
  2229. "__id__": 67
  2230. },
  2231. {
  2232. "__id__": 70
  2233. }
  2234. ],
  2235. "_active": false,
  2236. "_level": 2,
  2237. "_components": [
  2238. {
  2239. "__id__": 74
  2240. }
  2241. ],
  2242. "_prefab": {
  2243. "__id__": 75
  2244. },
  2245. "_opacity": 255,
  2246. "_color": {
  2247. "__type__": "cc.Color",
  2248. "r": 255,
  2249. "g": 255,
  2250. "b": 255,
  2251. "a": 255
  2252. },
  2253. "_contentSize": {
  2254. "__type__": "cc.Size",
  2255. "width": 82,
  2256. "height": 37
  2257. },
  2258. "_anchorPoint": {
  2259. "__type__": "cc.Vec2",
  2260. "x": 0.5,
  2261. "y": 0.5
  2262. },
  2263. "_position": {
  2264. "__type__": "cc.Vec3",
  2265. "x": 0,
  2266. "y": -270,
  2267. "z": 0
  2268. },
  2269. "_scale": {
  2270. "__type__": "cc.Vec3",
  2271. "x": 2,
  2272. "y": 2,
  2273. "z": 1
  2274. },
  2275. "_skewX": 0,
  2276. "_skewY": 0,
  2277. "_zIndex": 0,
  2278. "_is3DNode": false,
  2279. "groupIndex": 0,
  2280. "_id": "",
  2281. "_eulerAngles": {
  2282. "__type__": "cc.Vec3",
  2283. "x": 0,
  2284. "y": 0,
  2285. "z": 0
  2286. }
  2287. },
  2288. {
  2289. "__type__": "cc.Node",
  2290. "_name": "New Label",
  2291. "_objFlags": 0,
  2292. "_parent": {
  2293. "__id__": 66
  2294. },
  2295. "_children": [],
  2296. "_active": true,
  2297. "_level": 3,
  2298. "_components": [
  2299. {
  2300. "__id__": 68
  2301. }
  2302. ],
  2303. "_prefab": {
  2304. "__id__": 69
  2305. },
  2306. "_opacity": 255,
  2307. "_color": {
  2308. "__type__": "cc.Color",
  2309. "r": 0,
  2310. "g": 0,
  2311. "b": 0,
  2312. "a": 255
  2313. },
  2314. "_contentSize": {
  2315. "__type__": "cc.Size",
  2316. "width": 60,
  2317. "height": 20
  2318. },
  2319. "_anchorPoint": {
  2320. "__type__": "cc.Vec2",
  2321. "x": 0.5,
  2322. "y": 0.5
  2323. },
  2324. "_position": {
  2325. "__type__": "cc.Vec3",
  2326. "x": -1,
  2327. "y": -2,
  2328. "z": 0
  2329. },
  2330. "_scale": {
  2331. "__type__": "cc.Vec3",
  2332. "x": 1,
  2333. "y": 1,
  2334. "z": 1
  2335. },
  2336. "_quat": {
  2337. "__type__": "cc.Quat",
  2338. "x": 0,
  2339. "y": 0,
  2340. "z": 0,
  2341. "w": 1
  2342. },
  2343. "_skewX": 0,
  2344. "_skewY": 0,
  2345. "_zIndex": 0,
  2346. "_is3DNode": false,
  2347. "groupIndex": 0,
  2348. "_id": ""
  2349. },
  2350. {
  2351. "__type__": "cc.Label",
  2352. "_name": "",
  2353. "_objFlags": 0,
  2354. "node": {
  2355. "__id__": 67
  2356. },
  2357. "_enabled": true,
  2358. "_srcBlendFactor": 1,
  2359. "_dstBlendFactor": 771,
  2360. "_useOriginalSize": false,
  2361. "_string": "下一步",
  2362. "_N$string": "下一步",
  2363. "_fontSize": 20,
  2364. "_lineHeight": 20,
  2365. "_enableWrapText": true,
  2366. "_N$file": null,
  2367. "_isSystemFontUsed": true,
  2368. "_spacingX": 0,
  2369. "_N$horizontalAlign": 1,
  2370. "_N$verticalAlign": 1,
  2371. "_N$fontFamily": "Arial",
  2372. "_N$overflow": 0,
  2373. "_id": ""
  2374. },
  2375. {
  2376. "__type__": "cc.PrefabInfo",
  2377. "root": {
  2378. "__id__": 1
  2379. },
  2380. "asset": {
  2381. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  2382. },
  2383. "fileId": "79V0XPVrhNlbFpfJ25CKOY",
  2384. "sync": false
  2385. },
  2386. {
  2387. "__type__": "cc.Node",
  2388. "_name": "SmallArrow",
  2389. "_objFlags": 0,
  2390. "_parent": {
  2391. "__id__": 66
  2392. },
  2393. "_children": [],
  2394. "_active": false,
  2395. "_level": 3,
  2396. "_components": [
  2397. {
  2398. "__id__": 71
  2399. },
  2400. {
  2401. "__id__": 72
  2402. }
  2403. ],
  2404. "_prefab": {
  2405. "__id__": 73
  2406. },
  2407. "_opacity": 255,
  2408. "_color": {
  2409. "__type__": "cc.Color",
  2410. "r": 255,
  2411. "g": 255,
  2412. "b": 255,
  2413. "a": 255
  2414. },
  2415. "_contentSize": {
  2416. "__type__": "cc.Size",
  2417. "width": 50,
  2418. "height": 30
  2419. },
  2420. "_anchorPoint": {
  2421. "__type__": "cc.Vec2",
  2422. "x": 0.5,
  2423. "y": 0.5
  2424. },
  2425. "_position": {
  2426. "__type__": "cc.Vec3",
  2427. "x": 143,
  2428. "y": -74,
  2429. "z": 0
  2430. },
  2431. "_scale": {
  2432. "__type__": "cc.Vec3",
  2433. "x": 1,
  2434. "y": 1,
  2435. "z": 1
  2436. },
  2437. "_skewX": 0,
  2438. "_skewY": 0,
  2439. "_zIndex": 0,
  2440. "_is3DNode": false,
  2441. "groupIndex": 0,
  2442. "_id": "",
  2443. "_eulerAngles": {
  2444. "__type__": "cc.Vec3",
  2445. "x": 0,
  2446. "y": 0,
  2447. "z": 0
  2448. }
  2449. },
  2450. {
  2451. "__type__": "cc.Sprite",
  2452. "_name": "",
  2453. "_objFlags": 0,
  2454. "node": {
  2455. "__id__": 70
  2456. },
  2457. "_enabled": true,
  2458. "_srcBlendFactor": 770,
  2459. "_dstBlendFactor": 771,
  2460. "_spriteFrame": {
  2461. "__uuid__": "38f17776-98ef-4429-8190-483d106c3b97"
  2462. },
  2463. "_type": 0,
  2464. "_sizeMode": 1,
  2465. "_fillType": 0,
  2466. "_fillCenter": {
  2467. "__type__": "cc.Vec2",
  2468. "x": 0,
  2469. "y": 0
  2470. },
  2471. "_fillStart": 0,
  2472. "_fillRange": 0,
  2473. "_isTrimmedMode": true,
  2474. "_state": 0,
  2475. "_atlas": null,
  2476. "_id": ""
  2477. },
  2478. {
  2479. "__type__": "cc.Animation",
  2480. "_name": "",
  2481. "_objFlags": 0,
  2482. "node": {
  2483. "__id__": 70
  2484. },
  2485. "_enabled": true,
  2486. "_defaultClip": {
  2487. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  2488. },
  2489. "_clips": [
  2490. {
  2491. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  2492. }
  2493. ],
  2494. "playOnLoad": true,
  2495. "_id": ""
  2496. },
  2497. {
  2498. "__type__": "cc.PrefabInfo",
  2499. "root": {
  2500. "__id__": 1
  2501. },
  2502. "asset": {
  2503. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  2504. },
  2505. "fileId": "e82VTNZItIOqz1xLHrldf9",
  2506. "sync": false
  2507. },
  2508. {
  2509. "__type__": "cc.Sprite",
  2510. "_name": "",
  2511. "_objFlags": 0,
  2512. "node": {
  2513. "__id__": 66
  2514. },
  2515. "_enabled": true,
  2516. "_srcBlendFactor": 770,
  2517. "_dstBlendFactor": 771,
  2518. "_spriteFrame": {
  2519. "__uuid__": "05325bf4-449c-44ee-8dd3-36e3dddc0e3f"
  2520. },
  2521. "_type": 0,
  2522. "_sizeMode": 1,
  2523. "_fillType": 0,
  2524. "_fillCenter": {
  2525. "__type__": "cc.Vec2",
  2526. "x": 0,
  2527. "y": 0
  2528. },
  2529. "_fillStart": 0,
  2530. "_fillRange": 0,
  2531. "_isTrimmedMode": true,
  2532. "_state": 0,
  2533. "_atlas": null,
  2534. "_id": ""
  2535. },
  2536. {
  2537. "__type__": "cc.PrefabInfo",
  2538. "root": {
  2539. "__id__": 1
  2540. },
  2541. "asset": {
  2542. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  2543. },
  2544. "fileId": "28WX5P3AJNgri4wEeyWMJY",
  2545. "sync": false
  2546. },
  2547. {
  2548. "__type__": "cc.Node",
  2549. "_name": "richman",
  2550. "_objFlags": 0,
  2551. "_parent": {
  2552. "__id__": 1
  2553. },
  2554. "_children": [],
  2555. "_active": true,
  2556. "_level": 2,
  2557. "_components": [
  2558. {
  2559. "__id__": 77
  2560. }
  2561. ],
  2562. "_prefab": {
  2563. "__id__": 78
  2564. },
  2565. "_opacity": 255,
  2566. "_color": {
  2567. "__type__": "cc.Color",
  2568. "r": 255,
  2569. "g": 255,
  2570. "b": 255,
  2571. "a": 255
  2572. },
  2573. "_contentSize": {
  2574. "__type__": "cc.Size",
  2575. "width": 216,
  2576. "height": 664
  2577. },
  2578. "_anchorPoint": {
  2579. "__type__": "cc.Vec2",
  2580. "x": 0.5,
  2581. "y": 0.5
  2582. },
  2583. "_position": {
  2584. "__type__": "cc.Vec3",
  2585. "x": -269,
  2586. "y": -12,
  2587. "z": 0
  2588. },
  2589. "_scale": {
  2590. "__type__": "cc.Vec3",
  2591. "x": 0.7,
  2592. "y": 0.7,
  2593. "z": 1
  2594. },
  2595. "_skewX": 0,
  2596. "_skewY": 0,
  2597. "_zIndex": 0,
  2598. "_is3DNode": false,
  2599. "groupIndex": 0,
  2600. "_id": "",
  2601. "_eulerAngles": {
  2602. "__type__": "cc.Vec3",
  2603. "x": 0,
  2604. "y": 0,
  2605. "z": 0
  2606. }
  2607. },
  2608. {
  2609. "__type__": "cc.Sprite",
  2610. "_name": "",
  2611. "_objFlags": 0,
  2612. "node": {
  2613. "__id__": 76
  2614. },
  2615. "_enabled": true,
  2616. "_srcBlendFactor": 770,
  2617. "_dstBlendFactor": 771,
  2618. "_spriteFrame": {
  2619. "__uuid__": "e9807e16-730d-451e-a06b-f9ce32aa4919"
  2620. },
  2621. "_type": 0,
  2622. "_sizeMode": 1,
  2623. "_fillType": 0,
  2624. "_fillCenter": {
  2625. "__type__": "cc.Vec2",
  2626. "x": 0,
  2627. "y": 0
  2628. },
  2629. "_fillStart": 0,
  2630. "_fillRange": 0,
  2631. "_isTrimmedMode": true,
  2632. "_state": 0,
  2633. "_atlas": null,
  2634. "_id": ""
  2635. },
  2636. {
  2637. "__type__": "cc.PrefabInfo",
  2638. "root": {
  2639. "__id__": 1
  2640. },
  2641. "asset": {
  2642. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  2643. },
  2644. "fileId": "f0JFpOvnZJtaRkyPFcgdpJ",
  2645. "sync": false
  2646. },
  2647. {
  2648. "__type__": "cc.PrefabInfo",
  2649. "root": {
  2650. "__id__": 1
  2651. },
  2652. "asset": {
  2653. "__uuid__": "798a9a21-ddc8-4e05-b0df-46bc6d0d6580"
  2654. },
  2655. "fileId": "95NHeUxnJOoZea8hBtGYHe",
  2656. "sync": false
  2657. }
  2658. ]