taskPrefabStart.prefab 34 KB

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