map.prefab 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187
  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. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "map",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 15
  24. },
  25. {
  26. "__id__": 35
  27. },
  28. {
  29. "__id__": 41
  30. },
  31. {
  32. "__id__": 53
  33. }
  34. ],
  35. "_tag": -1,
  36. "_active": true,
  37. "_components": [
  38. {
  39. "__id__": 71
  40. }
  41. ],
  42. "_prefab": {
  43. "__id__": 72
  44. },
  45. "_id": "",
  46. "_opacity": 255,
  47. "_color": {
  48. "__type__": "cc.Color",
  49. "r": 255,
  50. "g": 255,
  51. "b": 255,
  52. "a": 255
  53. },
  54. "_cascadeOpacityEnabled": true,
  55. "_anchorPoint": {
  56. "__type__": "cc.Vec2",
  57. "x": 0.5,
  58. "y": 0.5
  59. },
  60. "_contentSize": {
  61. "__type__": "cc.Size",
  62. "width": 0,
  63. "height": 0
  64. },
  65. "_rotationX": 0,
  66. "_rotationY": 0,
  67. "_scaleX": 1,
  68. "_scaleY": 1,
  69. "_position": {
  70. "__type__": "cc.Vec2",
  71. "x": 0,
  72. "y": 0
  73. },
  74. "_skewX": 0,
  75. "_skewY": 0,
  76. "_localZOrder": 0,
  77. "_globalZOrder": 0,
  78. "_opacityModifyRGB": false,
  79. "groupIndex": 0
  80. },
  81. {
  82. "__type__": "cc.Node",
  83. "_name": "ScrollView",
  84. "_objFlags": 0,
  85. "_parent": {
  86. "__id__": 1
  87. },
  88. "_children": [
  89. {
  90. "__id__": 3
  91. },
  92. {
  93. "__id__": 10
  94. }
  95. ],
  96. "_tag": -1,
  97. "_active": true,
  98. "_components": [
  99. {
  100. "__id__": 13
  101. }
  102. ],
  103. "_prefab": {
  104. "__id__": 14
  105. },
  106. "_id": "",
  107. "_opacity": 255,
  108. "_color": {
  109. "__type__": "cc.Color",
  110. "r": 184,
  111. "g": 184,
  112. "b": 184,
  113. "a": 255
  114. },
  115. "_cascadeOpacityEnabled": true,
  116. "_anchorPoint": {
  117. "__type__": "cc.Vec2",
  118. "x": 0.5,
  119. "y": 0.5
  120. },
  121. "_contentSize": {
  122. "__type__": "cc.Size",
  123. "width": 750,
  124. "height": 1334
  125. },
  126. "_rotationX": 0,
  127. "_rotationY": 0,
  128. "_scaleX": 1,
  129. "_scaleY": 1,
  130. "_position": {
  131. "__type__": "cc.Vec2",
  132. "x": 0,
  133. "y": 0
  134. },
  135. "_skewX": 0,
  136. "_skewY": 0,
  137. "_localZOrder": 0,
  138. "_globalZOrder": 0,
  139. "_opacityModifyRGB": false,
  140. "groupIndex": 0
  141. },
  142. {
  143. "__type__": "cc.Node",
  144. "_name": "view",
  145. "_objFlags": 0,
  146. "_parent": {
  147. "__id__": 2
  148. },
  149. "_children": [
  150. {
  151. "__id__": 4
  152. }
  153. ],
  154. "_tag": -1,
  155. "_active": true,
  156. "_components": [
  157. {
  158. "__id__": 8
  159. }
  160. ],
  161. "_prefab": {
  162. "__id__": 9
  163. },
  164. "_id": "",
  165. "_opacity": 255,
  166. "_color": {
  167. "__type__": "cc.Color",
  168. "r": 255,
  169. "g": 255,
  170. "b": 255,
  171. "a": 255
  172. },
  173. "_cascadeOpacityEnabled": true,
  174. "_anchorPoint": {
  175. "__type__": "cc.Vec2",
  176. "x": 0.5,
  177. "y": 0.5
  178. },
  179. "_contentSize": {
  180. "__type__": "cc.Size",
  181. "width": 750,
  182. "height": 1334
  183. },
  184. "_rotationX": 0,
  185. "_rotationY": 0,
  186. "_scaleX": 1,
  187. "_scaleY": 1,
  188. "_position": {
  189. "__type__": "cc.Vec2",
  190. "x": 0,
  191. "y": 0
  192. },
  193. "_skewX": 0,
  194. "_skewY": 0,
  195. "_localZOrder": 0,
  196. "_globalZOrder": 0,
  197. "_opacityModifyRGB": false,
  198. "groupIndex": 0
  199. },
  200. {
  201. "__type__": "cc.Node",
  202. "_name": "content",
  203. "_objFlags": 0,
  204. "_parent": {
  205. "__id__": 3
  206. },
  207. "_children": [],
  208. "_tag": -1,
  209. "_active": true,
  210. "_components": [
  211. {
  212. "__id__": 5
  213. },
  214. {
  215. "__id__": 6
  216. }
  217. ],
  218. "_prefab": {
  219. "__id__": 7
  220. },
  221. "_id": "",
  222. "_opacity": 255,
  223. "_color": {
  224. "__type__": "cc.Color",
  225. "r": 255,
  226. "g": 255,
  227. "b": 255,
  228. "a": 255
  229. },
  230. "_cascadeOpacityEnabled": true,
  231. "_anchorPoint": {
  232. "__type__": "cc.Vec2",
  233. "x": 0.5,
  234. "y": 0
  235. },
  236. "_contentSize": {
  237. "__type__": "cc.Size",
  238. "width": 750,
  239. "height": 1334
  240. },
  241. "_rotationX": 0,
  242. "_rotationY": 0,
  243. "_scaleX": 1,
  244. "_scaleY": 1,
  245. "_position": {
  246. "__type__": "cc.Vec2",
  247. "x": 0,
  248. "y": -667
  249. },
  250. "_skewX": 0,
  251. "_skewY": 0,
  252. "_localZOrder": 0,
  253. "_globalZOrder": 0,
  254. "_opacityModifyRGB": false,
  255. "groupIndex": 0
  256. },
  257. {
  258. "__type__": "cc.Sprite",
  259. "_name": "",
  260. "_objFlags": 0,
  261. "node": {
  262. "__id__": 4
  263. },
  264. "_enabled": true,
  265. "_spriteFrame": {
  266. "__uuid__": "9c8d5c80-0e85-49d4-9d7d-dfc9c3c49d80"
  267. },
  268. "_type": 0,
  269. "_sizeMode": 0,
  270. "_fillType": 0,
  271. "_fillCenter": {
  272. "__type__": "cc.Vec2",
  273. "x": 0,
  274. "y": 0
  275. },
  276. "_fillStart": 0,
  277. "_fillRange": 0,
  278. "_isTrimmedMode": true,
  279. "_srcBlendFactor": 770,
  280. "_dstBlendFactor": 771,
  281. "_atlas": null
  282. },
  283. {
  284. "__type__": "cc.BlockInputEvents",
  285. "_name": "",
  286. "_objFlags": 0,
  287. "node": {
  288. "__id__": 4
  289. },
  290. "_enabled": true
  291. },
  292. {
  293. "__type__": "cc.PrefabInfo",
  294. "root": {
  295. "__id__": 1
  296. },
  297. "asset": {
  298. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  299. },
  300. "fileId": "f4aTtiEI9F0bfpehbenlLr",
  301. "sync": false
  302. },
  303. {
  304. "__type__": "cc.Mask",
  305. "_name": "",
  306. "_objFlags": 0,
  307. "node": {
  308. "__id__": 3
  309. },
  310. "_enabled": true,
  311. "_type": 0,
  312. "_segements": 64,
  313. "_N$spriteFrame": null,
  314. "_N$alphaThreshold": 1,
  315. "_N$inverted": false
  316. },
  317. {
  318. "__type__": "cc.PrefabInfo",
  319. "root": {
  320. "__id__": 1
  321. },
  322. "asset": {
  323. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  324. },
  325. "fileId": "bfKxUxCGNLlYq+D2LoJcFk",
  326. "sync": false
  327. },
  328. {
  329. "__type__": "cc.Node",
  330. "_name": "airplane",
  331. "_objFlags": 0,
  332. "_parent": {
  333. "__id__": 2
  334. },
  335. "_children": [],
  336. "_tag": -1,
  337. "_active": true,
  338. "_components": [
  339. {
  340. "__id__": 11
  341. }
  342. ],
  343. "_prefab": {
  344. "__id__": 12
  345. },
  346. "_id": "",
  347. "_opacity": 255,
  348. "_color": {
  349. "__type__": "cc.Color",
  350. "r": 255,
  351. "g": 255,
  352. "b": 255,
  353. "a": 255
  354. },
  355. "_cascadeOpacityEnabled": true,
  356. "_anchorPoint": {
  357. "__type__": "cc.Vec2",
  358. "x": 0.5,
  359. "y": 0.5
  360. },
  361. "_contentSize": {
  362. "__type__": "cc.Size",
  363. "width": 64,
  364. "height": 62
  365. },
  366. "_rotationX": 0,
  367. "_rotationY": 0,
  368. "_scaleX": 1,
  369. "_scaleY": 1,
  370. "_position": {
  371. "__type__": "cc.Vec2",
  372. "x": 600,
  373. "y": 0
  374. },
  375. "_skewX": 0,
  376. "_skewY": 0,
  377. "_localZOrder": 0,
  378. "_globalZOrder": 0,
  379. "_opacityModifyRGB": false,
  380. "groupIndex": 0
  381. },
  382. {
  383. "__type__": "cc.Sprite",
  384. "_name": "",
  385. "_objFlags": 0,
  386. "node": {
  387. "__id__": 10
  388. },
  389. "_enabled": true,
  390. "_spriteFrame": {
  391. "__uuid__": "fa9f1b86-d737-4312-bf38-bbe5c2501133"
  392. },
  393. "_type": 0,
  394. "_sizeMode": 1,
  395. "_fillType": 0,
  396. "_fillCenter": {
  397. "__type__": "cc.Vec2",
  398. "x": 0,
  399. "y": 0
  400. },
  401. "_fillStart": 0,
  402. "_fillRange": 0,
  403. "_isTrimmedMode": true,
  404. "_srcBlendFactor": 770,
  405. "_dstBlendFactor": 771,
  406. "_atlas": null
  407. },
  408. {
  409. "__type__": "cc.PrefabInfo",
  410. "root": {
  411. "__id__": 1
  412. },
  413. "asset": {
  414. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  415. },
  416. "fileId": "b0/xQhGoNBCJxyBVwWE/Tf",
  417. "sync": false
  418. },
  419. {
  420. "__type__": "cc.ScrollView",
  421. "_name": "",
  422. "_objFlags": 0,
  423. "node": {
  424. "__id__": 2
  425. },
  426. "_enabled": true,
  427. "content": {
  428. "__id__": 4
  429. },
  430. "horizontal": false,
  431. "vertical": true,
  432. "inertia": true,
  433. "brake": 0.75,
  434. "elastic": false,
  435. "bounceDuration": 0.23,
  436. "scrollEvents": [],
  437. "cancelInnerEvents": true,
  438. "_N$horizontalScrollBar": null,
  439. "_N$verticalScrollBar": null
  440. },
  441. {
  442. "__type__": "cc.PrefabInfo",
  443. "root": {
  444. "__id__": 1
  445. },
  446. "asset": {
  447. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  448. },
  449. "fileId": "9bwzjCMh9M2a9UWEBYC/PH",
  450. "sync": false
  451. },
  452. {
  453. "__type__": "cc.Node",
  454. "_name": "money_cat",
  455. "_objFlags": 0,
  456. "_parent": {
  457. "__id__": 1
  458. },
  459. "_children": [
  460. {
  461. "__id__": 16
  462. }
  463. ],
  464. "_tag": -1,
  465. "_active": true,
  466. "_components": [
  467. {
  468. "__id__": 33
  469. }
  470. ],
  471. "_prefab": {
  472. "__id__": 34
  473. },
  474. "_id": "",
  475. "_opacity": 255,
  476. "_color": {
  477. "__type__": "cc.Color",
  478. "r": 255,
  479. "g": 255,
  480. "b": 255,
  481. "a": 255
  482. },
  483. "_cascadeOpacityEnabled": true,
  484. "_anchorPoint": {
  485. "__type__": "cc.Vec2",
  486. "x": 0.5,
  487. "y": 0.5
  488. },
  489. "_contentSize": {
  490. "__type__": "cc.Size",
  491. "width": 314,
  492. "height": 306
  493. },
  494. "_rotationX": 0,
  495. "_rotationY": 0,
  496. "_scaleX": 1,
  497. "_scaleY": 1,
  498. "_position": {
  499. "__type__": "cc.Vec2",
  500. "x": 0,
  501. "y": -430
  502. },
  503. "_skewX": 0,
  504. "_skewY": 0,
  505. "_localZOrder": 0,
  506. "_globalZOrder": 0,
  507. "_opacityModifyRGB": false,
  508. "groupIndex": 0
  509. },
  510. {
  511. "__type__": "cc.Node",
  512. "_name": "money_progressbar",
  513. "_objFlags": 0,
  514. "_parent": {
  515. "__id__": 15
  516. },
  517. "_children": [
  518. {
  519. "__id__": 17
  520. },
  521. {
  522. "__id__": 20
  523. }
  524. ],
  525. "_tag": -1,
  526. "_active": true,
  527. "_components": [
  528. {
  529. "__id__": 30
  530. },
  531. {
  532. "__id__": 31
  533. }
  534. ],
  535. "_prefab": {
  536. "__id__": 32
  537. },
  538. "_id": "",
  539. "_opacity": 255,
  540. "_color": {
  541. "__type__": "cc.Color",
  542. "r": 255,
  543. "g": 255,
  544. "b": 255,
  545. "a": 255
  546. },
  547. "_cascadeOpacityEnabled": true,
  548. "_anchorPoint": {
  549. "__type__": "cc.Vec2",
  550. "x": 0.5,
  551. "y": 0.5
  552. },
  553. "_contentSize": {
  554. "__type__": "cc.Size",
  555. "width": 213,
  556. "height": 36
  557. },
  558. "_rotationX": 0,
  559. "_rotationY": 0,
  560. "_scaleX": 1,
  561. "_scaleY": 1,
  562. "_position": {
  563. "__type__": "cc.Vec2",
  564. "x": 0,
  565. "y": -176.7
  566. },
  567. "_skewX": 0,
  568. "_skewY": 0,
  569. "_localZOrder": 0,
  570. "_globalZOrder": 0,
  571. "_opacityModifyRGB": false,
  572. "groupIndex": 0
  573. },
  574. {
  575. "__type__": "cc.Node",
  576. "_name": "bar",
  577. "_objFlags": 0,
  578. "_parent": {
  579. "__id__": 16
  580. },
  581. "_children": [],
  582. "_tag": -1,
  583. "_active": true,
  584. "_components": [
  585. {
  586. "__id__": 18
  587. }
  588. ],
  589. "_prefab": {
  590. "__id__": 19
  591. },
  592. "_id": "",
  593. "_opacity": 255,
  594. "_color": {
  595. "__type__": "cc.Color",
  596. "r": 255,
  597. "g": 255,
  598. "b": 255,
  599. "a": 255
  600. },
  601. "_cascadeOpacityEnabled": true,
  602. "_anchorPoint": {
  603. "__type__": "cc.Vec2",
  604. "x": 0,
  605. "y": 0.5
  606. },
  607. "_contentSize": {
  608. "__type__": "cc.Size",
  609. "width": 207,
  610. "height": 30
  611. },
  612. "_rotationX": 0,
  613. "_rotationY": 0,
  614. "_scaleX": 1,
  615. "_scaleY": 1,
  616. "_position": {
  617. "__type__": "cc.Vec2",
  618. "x": -103.3,
  619. "y": 0
  620. },
  621. "_skewX": 0,
  622. "_skewY": 0,
  623. "_localZOrder": 0,
  624. "_globalZOrder": 0,
  625. "_opacityModifyRGB": false,
  626. "groupIndex": 0
  627. },
  628. {
  629. "__type__": "cc.Sprite",
  630. "_name": "",
  631. "_objFlags": 0,
  632. "node": {
  633. "__id__": 17
  634. },
  635. "_enabled": true,
  636. "_spriteFrame": {
  637. "__uuid__": "da5f315a-649a-45f2-9e9f-e84ffaca2a7d"
  638. },
  639. "_type": 2,
  640. "_sizeMode": 0,
  641. "_fillType": 0,
  642. "_fillCenter": {
  643. "__type__": "cc.Vec2",
  644. "x": 0,
  645. "y": 0
  646. },
  647. "_fillStart": 0,
  648. "_fillRange": 0,
  649. "_isTrimmedMode": true,
  650. "_srcBlendFactor": 770,
  651. "_dstBlendFactor": 771,
  652. "_atlas": null
  653. },
  654. {
  655. "__type__": "cc.PrefabInfo",
  656. "root": {
  657. "__id__": 1
  658. },
  659. "asset": {
  660. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  661. },
  662. "fileId": "60RVe77otAy7DLzKFYcZx9",
  663. "sync": false
  664. },
  665. {
  666. "__type__": "cc.Node",
  667. "_name": "New Layout",
  668. "_objFlags": 0,
  669. "_parent": {
  670. "__id__": 16
  671. },
  672. "_children": [
  673. {
  674. "__id__": 21
  675. },
  676. {
  677. "__id__": 24
  678. }
  679. ],
  680. "_tag": -1,
  681. "_active": true,
  682. "_components": [
  683. {
  684. "__id__": 28
  685. }
  686. ],
  687. "_prefab": {
  688. "__id__": 29
  689. },
  690. "_id": "",
  691. "_opacity": 255,
  692. "_color": {
  693. "__type__": "cc.Color",
  694. "r": 167,
  695. "g": 167,
  696. "b": 167,
  697. "a": 255
  698. },
  699. "_cascadeOpacityEnabled": true,
  700. "_anchorPoint": {
  701. "__type__": "cc.Vec2",
  702. "x": 0.5,
  703. "y": 0.5
  704. },
  705. "_contentSize": {
  706. "__type__": "cc.Size",
  707. "width": 32,
  708. "height": 40
  709. },
  710. "_rotationX": 0,
  711. "_rotationY": 0,
  712. "_scaleX": 1,
  713. "_scaleY": 1,
  714. "_position": {
  715. "__type__": "cc.Vec2",
  716. "x": 0,
  717. "y": 0
  718. },
  719. "_skewX": 0,
  720. "_skewY": 0,
  721. "_localZOrder": 0,
  722. "_globalZOrder": 0,
  723. "_opacityModifyRGB": false,
  724. "groupIndex": 0
  725. },
  726. {
  727. "__type__": "cc.Node",
  728. "_name": "New Sprite",
  729. "_objFlags": 0,
  730. "_parent": {
  731. "__id__": 20
  732. },
  733. "_children": [],
  734. "_tag": -1,
  735. "_active": true,
  736. "_components": [
  737. {
  738. "__id__": 22
  739. }
  740. ],
  741. "_prefab": {
  742. "__id__": 23
  743. },
  744. "_id": "",
  745. "_opacity": 255,
  746. "_color": {
  747. "__type__": "cc.Color",
  748. "r": 255,
  749. "g": 255,
  750. "b": 255,
  751. "a": 255
  752. },
  753. "_cascadeOpacityEnabled": true,
  754. "_anchorPoint": {
  755. "__type__": "cc.Vec2",
  756. "x": 0.5,
  757. "y": 0.5
  758. },
  759. "_contentSize": {
  760. "__type__": "cc.Size",
  761. "width": 30,
  762. "height": 30
  763. },
  764. "_rotationX": 0,
  765. "_rotationY": 0,
  766. "_scaleX": 1,
  767. "_scaleY": 1,
  768. "_position": {
  769. "__type__": "cc.Vec2",
  770. "x": -1,
  771. "y": 0
  772. },
  773. "_skewX": 0,
  774. "_skewY": 0,
  775. "_localZOrder": 0,
  776. "_globalZOrder": 0,
  777. "_opacityModifyRGB": false,
  778. "groupIndex": 0
  779. },
  780. {
  781. "__type__": "cc.Sprite",
  782. "_name": "",
  783. "_objFlags": 0,
  784. "node": {
  785. "__id__": 21
  786. },
  787. "_enabled": true,
  788. "_spriteFrame": {
  789. "__uuid__": "8d0d6dd8-e66f-4bcd-b58c-cb1f3201c4db"
  790. },
  791. "_type": 0,
  792. "_sizeMode": 0,
  793. "_fillType": 0,
  794. "_fillCenter": {
  795. "__type__": "cc.Vec2",
  796. "x": 0,
  797. "y": 0
  798. },
  799. "_fillStart": 0,
  800. "_fillRange": 0,
  801. "_isTrimmedMode": true,
  802. "_srcBlendFactor": 770,
  803. "_dstBlendFactor": 771,
  804. "_atlas": null
  805. },
  806. {
  807. "__type__": "cc.PrefabInfo",
  808. "root": {
  809. "__id__": 1
  810. },
  811. "asset": {
  812. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  813. },
  814. "fileId": "barmd4VhRAY43xaCMzoP+M",
  815. "sync": false
  816. },
  817. {
  818. "__type__": "cc.Node",
  819. "_name": "label",
  820. "_objFlags": 0,
  821. "_parent": {
  822. "__id__": 20
  823. },
  824. "_children": [],
  825. "_tag": -1,
  826. "_active": true,
  827. "_components": [
  828. {
  829. "__id__": 25
  830. },
  831. {
  832. "__id__": 26
  833. }
  834. ],
  835. "_prefab": {
  836. "__id__": 27
  837. },
  838. "_id": "",
  839. "_opacity": 255,
  840. "_color": {
  841. "__type__": "cc.Color",
  842. "r": 255,
  843. "g": 255,
  844. "b": 255,
  845. "a": 255
  846. },
  847. "_cascadeOpacityEnabled": true,
  848. "_anchorPoint": {
  849. "__type__": "cc.Vec2",
  850. "x": 0.5,
  851. "y": 0.5
  852. },
  853. "_contentSize": {
  854. "__type__": "cc.Size",
  855. "width": 2,
  856. "height": 40
  857. },
  858. "_rotationX": 0,
  859. "_rotationY": 0,
  860. "_scaleX": 1,
  861. "_scaleY": 1,
  862. "_position": {
  863. "__type__": "cc.Vec2",
  864. "x": 15,
  865. "y": 0
  866. },
  867. "_skewX": 0,
  868. "_skewY": 0,
  869. "_localZOrder": 0,
  870. "_globalZOrder": 0,
  871. "_opacityModifyRGB": false,
  872. "groupIndex": 0
  873. },
  874. {
  875. "__type__": "cc.Label",
  876. "_name": "",
  877. "_objFlags": 0,
  878. "node": {
  879. "__id__": 24
  880. },
  881. "_enabled": true,
  882. "_useOriginalSize": false,
  883. "_actualFontSize": 30,
  884. "_fontSize": 30,
  885. "_lineHeight": 40,
  886. "_enableWrapText": true,
  887. "_N$file": null,
  888. "_isSystemFontUsed": true,
  889. "_spacingX": 0,
  890. "_N$string": "",
  891. "_N$horizontalAlign": 1,
  892. "_N$verticalAlign": 1,
  893. "_N$fontFamily": "Arial",
  894. "_N$overflow": 0
  895. },
  896. {
  897. "__type__": "cc.LabelOutline",
  898. "_name": "",
  899. "_objFlags": 0,
  900. "node": {
  901. "__id__": 24
  902. },
  903. "_enabled": true,
  904. "_color": {
  905. "__type__": "cc.Color",
  906. "r": 255,
  907. "g": 255,
  908. "b": 255,
  909. "a": 255
  910. },
  911. "_width": 1
  912. },
  913. {
  914. "__type__": "cc.PrefabInfo",
  915. "root": {
  916. "__id__": 1
  917. },
  918. "asset": {
  919. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  920. },
  921. "fileId": "55AfZ3qWtCwKqwK0i9quAW",
  922. "sync": false
  923. },
  924. {
  925. "__type__": "cc.Layout",
  926. "_name": "",
  927. "_objFlags": 0,
  928. "node": {
  929. "__id__": 20
  930. },
  931. "_enabled": true,
  932. "_layoutSize": {
  933. "__type__": "cc.Size",
  934. "width": 32,
  935. "height": 40
  936. },
  937. "_resize": 1,
  938. "_N$layoutType": 1,
  939. "_N$padding": 0,
  940. "_N$cellSize": {
  941. "__type__": "cc.Size",
  942. "width": 40,
  943. "height": 40
  944. },
  945. "_N$startAxis": 0,
  946. "_N$paddingLeft": 0,
  947. "_N$paddingRight": 0,
  948. "_N$paddingTop": 0,
  949. "_N$paddingBottom": 0,
  950. "_N$spacingX": 0,
  951. "_N$spacingY": 0,
  952. "_N$verticalDirection": 1,
  953. "_N$horizontalDirection": 0
  954. },
  955. {
  956. "__type__": "cc.PrefabInfo",
  957. "root": {
  958. "__id__": 1
  959. },
  960. "asset": {
  961. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  962. },
  963. "fileId": "11x5dhGdFOa5+c+xlEm4WC",
  964. "sync": false
  965. },
  966. {
  967. "__type__": "cc.Sprite",
  968. "_name": "",
  969. "_objFlags": 0,
  970. "node": {
  971. "__id__": 16
  972. },
  973. "_enabled": true,
  974. "_spriteFrame": {
  975. "__uuid__": "7cf885b5-a301-4440-b0ef-968cc98aee2e"
  976. },
  977. "_type": 0,
  978. "_sizeMode": 0,
  979. "_fillType": 0,
  980. "_fillCenter": {
  981. "__type__": "cc.Vec2",
  982. "x": 0,
  983. "y": 0
  984. },
  985. "_fillStart": 0,
  986. "_fillRange": 0,
  987. "_isTrimmedMode": true,
  988. "_srcBlendFactor": 770,
  989. "_dstBlendFactor": 771,
  990. "_atlas": null
  991. },
  992. {
  993. "__type__": "cc.ProgressBar",
  994. "_name": "",
  995. "_objFlags": 0,
  996. "node": {
  997. "__id__": 16
  998. },
  999. "_enabled": true,
  1000. "_N$totalLength": 207,
  1001. "_N$barSprite": {
  1002. "__id__": 18
  1003. },
  1004. "_N$mode": 0,
  1005. "_N$progress": 1,
  1006. "_N$reverse": false
  1007. },
  1008. {
  1009. "__type__": "cc.PrefabInfo",
  1010. "root": {
  1011. "__id__": 1
  1012. },
  1013. "asset": {
  1014. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1015. },
  1016. "fileId": "e9SbLFNkpDe4rokT2aUPt2",
  1017. "sync": false
  1018. },
  1019. {
  1020. "__type__": "cc.Sprite",
  1021. "_name": "",
  1022. "_objFlags": 0,
  1023. "node": {
  1024. "__id__": 15
  1025. },
  1026. "_enabled": true,
  1027. "_spriteFrame": {
  1028. "__uuid__": "26fde8ad-0e15-43d7-89b5-00aca952d0b5"
  1029. },
  1030. "_type": 0,
  1031. "_sizeMode": 1,
  1032. "_fillType": 0,
  1033. "_fillCenter": {
  1034. "__type__": "cc.Vec2",
  1035. "x": 0,
  1036. "y": 0
  1037. },
  1038. "_fillStart": 0,
  1039. "_fillRange": 0,
  1040. "_isTrimmedMode": true,
  1041. "_srcBlendFactor": 770,
  1042. "_dstBlendFactor": 771,
  1043. "_atlas": null
  1044. },
  1045. {
  1046. "__type__": "cc.PrefabInfo",
  1047. "root": {
  1048. "__id__": 1
  1049. },
  1050. "asset": {
  1051. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1052. },
  1053. "fileId": "4dFrcsU7lOcYxk0nMvBBlx",
  1054. "sync": false
  1055. },
  1056. {
  1057. "__type__": "cc.Node",
  1058. "_name": "userinformation_back_button",
  1059. "_objFlags": 0,
  1060. "_parent": {
  1061. "__id__": 1
  1062. },
  1063. "_children": [],
  1064. "_tag": -1,
  1065. "_active": true,
  1066. "_components": [
  1067. {
  1068. "__id__": 36
  1069. },
  1070. {
  1071. "__id__": 37
  1072. },
  1073. {
  1074. "__id__": 39
  1075. }
  1076. ],
  1077. "_prefab": {
  1078. "__id__": 40
  1079. },
  1080. "_id": "",
  1081. "_opacity": 255,
  1082. "_color": {
  1083. "__type__": "cc.Color",
  1084. "r": 255,
  1085. "g": 255,
  1086. "b": 255,
  1087. "a": 255
  1088. },
  1089. "_cascadeOpacityEnabled": true,
  1090. "_anchorPoint": {
  1091. "__type__": "cc.Vec2",
  1092. "x": 0.5,
  1093. "y": 0.5
  1094. },
  1095. "_contentSize": {
  1096. "__type__": "cc.Size",
  1097. "width": 61,
  1098. "height": 62
  1099. },
  1100. "_rotationX": 0,
  1101. "_rotationY": 0,
  1102. "_scaleX": 1,
  1103. "_scaleY": 1,
  1104. "_position": {
  1105. "__type__": "cc.Vec2",
  1106. "x": 304,
  1107. "y": -550
  1108. },
  1109. "_skewX": 0,
  1110. "_skewY": 0,
  1111. "_localZOrder": 0,
  1112. "_globalZOrder": 0,
  1113. "_opacityModifyRGB": false,
  1114. "groupIndex": 0
  1115. },
  1116. {
  1117. "__type__": "cc.Sprite",
  1118. "_name": "",
  1119. "_objFlags": 0,
  1120. "node": {
  1121. "__id__": 35
  1122. },
  1123. "_enabled": true,
  1124. "_spriteFrame": {
  1125. "__uuid__": "9553995f-63c6-4bb2-8fec-2550bb4144d1"
  1126. },
  1127. "_type": 0,
  1128. "_sizeMode": 1,
  1129. "_fillType": 0,
  1130. "_fillCenter": {
  1131. "__type__": "cc.Vec2",
  1132. "x": 0,
  1133. "y": 0
  1134. },
  1135. "_fillStart": 0,
  1136. "_fillRange": 0,
  1137. "_isTrimmedMode": true,
  1138. "_srcBlendFactor": 770,
  1139. "_dstBlendFactor": 771,
  1140. "_atlas": null
  1141. },
  1142. {
  1143. "__type__": "cc.Button",
  1144. "_name": "",
  1145. "_objFlags": 0,
  1146. "node": {
  1147. "__id__": 35
  1148. },
  1149. "_enabled": true,
  1150. "transition": 0,
  1151. "pressedColor": {
  1152. "__type__": "cc.Color",
  1153. "r": 211,
  1154. "g": 211,
  1155. "b": 211,
  1156. "a": 255
  1157. },
  1158. "hoverColor": {
  1159. "__type__": "cc.Color",
  1160. "r": 255,
  1161. "g": 255,
  1162. "b": 255,
  1163. "a": 255
  1164. },
  1165. "duration": 0.1,
  1166. "zoomScale": 1.2,
  1167. "clickEvents": [
  1168. {
  1169. "__id__": 38
  1170. }
  1171. ],
  1172. "_N$interactable": true,
  1173. "_N$enableAutoGrayEffect": false,
  1174. "_N$normalColor": {
  1175. "__type__": "cc.Color",
  1176. "r": 214,
  1177. "g": 214,
  1178. "b": 214,
  1179. "a": 255
  1180. },
  1181. "_N$disabledColor": {
  1182. "__type__": "cc.Color",
  1183. "r": 124,
  1184. "g": 124,
  1185. "b": 124,
  1186. "a": 255
  1187. },
  1188. "_N$normalSprite": null,
  1189. "_N$pressedSprite": null,
  1190. "pressedSprite": null,
  1191. "_N$hoverSprite": null,
  1192. "hoverSprite": null,
  1193. "_N$disabledSprite": null,
  1194. "_N$target": {
  1195. "__id__": 35
  1196. }
  1197. },
  1198. {
  1199. "__type__": "cc.ClickEvent",
  1200. "target": {
  1201. "__id__": 1
  1202. },
  1203. "component": "CityMapCtrl",
  1204. "handler": "close",
  1205. "customEventData": ""
  1206. },
  1207. {
  1208. "__type__": "9f4d2FyZDFEWaJD6/7b9oSz",
  1209. "_name": "",
  1210. "_objFlags": 0,
  1211. "node": {
  1212. "__id__": 35
  1213. },
  1214. "_enabled": true
  1215. },
  1216. {
  1217. "__type__": "cc.PrefabInfo",
  1218. "root": {
  1219. "__id__": 1
  1220. },
  1221. "asset": {
  1222. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1223. },
  1224. "fileId": "e2Fz6RODlGNqpZSJt9eVkg",
  1225. "sync": false
  1226. },
  1227. {
  1228. "__type__": "cc.Node",
  1229. "_name": "my_money",
  1230. "_objFlags": 0,
  1231. "_parent": {
  1232. "__id__": 1
  1233. },
  1234. "_children": [
  1235. {
  1236. "__id__": 42
  1237. },
  1238. {
  1239. "__id__": 47
  1240. }
  1241. ],
  1242. "_tag": -1,
  1243. "_active": true,
  1244. "_components": [
  1245. {
  1246. "__id__": 51
  1247. }
  1248. ],
  1249. "_prefab": {
  1250. "__id__": 52
  1251. },
  1252. "_id": "",
  1253. "_opacity": 255,
  1254. "_color": {
  1255. "__type__": "cc.Color",
  1256. "r": 255,
  1257. "g": 255,
  1258. "b": 255,
  1259. "a": 255
  1260. },
  1261. "_cascadeOpacityEnabled": true,
  1262. "_anchorPoint": {
  1263. "__type__": "cc.Vec2",
  1264. "x": 0.5,
  1265. "y": 0.5
  1266. },
  1267. "_contentSize": {
  1268. "__type__": "cc.Size",
  1269. "width": 70,
  1270. "height": 80
  1271. },
  1272. "_rotationX": 0,
  1273. "_rotationY": 0,
  1274. "_scaleX": 1,
  1275. "_scaleY": 1,
  1276. "_position": {
  1277. "__type__": "cc.Vec2",
  1278. "x": 0,
  1279. "y": 577
  1280. },
  1281. "_skewX": 0,
  1282. "_skewY": 0,
  1283. "_localZOrder": 0,
  1284. "_globalZOrder": 0,
  1285. "_opacityModifyRGB": false,
  1286. "groupIndex": 0
  1287. },
  1288. {
  1289. "__type__": "cc.Node",
  1290. "_name": "coinNode",
  1291. "_objFlags": 0,
  1292. "_parent": {
  1293. "__id__": 41
  1294. },
  1295. "_children": [
  1296. {
  1297. "__id__": 43
  1298. }
  1299. ],
  1300. "_tag": -1,
  1301. "_active": true,
  1302. "_components": [],
  1303. "_prefab": {
  1304. "__id__": 46
  1305. },
  1306. "_id": "",
  1307. "_opacity": 255,
  1308. "_color": {
  1309. "__type__": "cc.Color",
  1310. "r": 255,
  1311. "g": 255,
  1312. "b": 255,
  1313. "a": 255
  1314. },
  1315. "_cascadeOpacityEnabled": true,
  1316. "_anchorPoint": {
  1317. "__type__": "cc.Vec2",
  1318. "x": 0.5,
  1319. "y": 0.5
  1320. },
  1321. "_contentSize": {
  1322. "__type__": "cc.Size",
  1323. "width": 54,
  1324. "height": 54
  1325. },
  1326. "_rotationX": 0,
  1327. "_rotationY": 0,
  1328. "_scaleX": 1,
  1329. "_scaleY": 1,
  1330. "_position": {
  1331. "__type__": "cc.Vec2",
  1332. "x": -8,
  1333. "y": 0
  1334. },
  1335. "_skewX": 0,
  1336. "_skewY": 0,
  1337. "_localZOrder": 0,
  1338. "_globalZOrder": 0,
  1339. "_opacityModifyRGB": false,
  1340. "groupIndex": 0
  1341. },
  1342. {
  1343. "__type__": "cc.Node",
  1344. "_name": "levelHome_coin",
  1345. "_objFlags": 0,
  1346. "_parent": {
  1347. "__id__": 42
  1348. },
  1349. "_children": [],
  1350. "_tag": -1,
  1351. "_active": true,
  1352. "_components": [
  1353. {
  1354. "__id__": 44
  1355. }
  1356. ],
  1357. "_prefab": {
  1358. "__id__": 45
  1359. },
  1360. "_id": "",
  1361. "_opacity": 255,
  1362. "_color": {
  1363. "__type__": "cc.Color",
  1364. "r": 255,
  1365. "g": 255,
  1366. "b": 255,
  1367. "a": 255
  1368. },
  1369. "_cascadeOpacityEnabled": true,
  1370. "_anchorPoint": {
  1371. "__type__": "cc.Vec2",
  1372. "x": 0.5,
  1373. "y": 0.5
  1374. },
  1375. "_contentSize": {
  1376. "__type__": "cc.Size",
  1377. "width": 0,
  1378. "height": 0
  1379. },
  1380. "_rotationX": 0,
  1381. "_rotationY": 0,
  1382. "_scaleX": 1,
  1383. "_scaleY": 1,
  1384. "_position": {
  1385. "__type__": "cc.Vec2",
  1386. "x": 0.1,
  1387. "y": -1.5
  1388. },
  1389. "_skewX": 0,
  1390. "_skewY": 0,
  1391. "_localZOrder": 0,
  1392. "_globalZOrder": 0,
  1393. "_opacityModifyRGB": false,
  1394. "groupIndex": 0
  1395. },
  1396. {
  1397. "__type__": "sp.Skeleton",
  1398. "_name": "",
  1399. "_objFlags": 0,
  1400. "node": {
  1401. "__id__": 43
  1402. },
  1403. "_enabled": true,
  1404. "_paused": false,
  1405. "defaultSkin": "",
  1406. "defaultAnimation": "jinbi_huoqu",
  1407. "loop": true,
  1408. "_premultipliedAlpha": true,
  1409. "_N$skeletonData": {
  1410. "__uuid__": "9a421187-b4ef-49d8-b5fb-e0f134f87f4e"
  1411. },
  1412. "_N$timeScale": 1,
  1413. "_N$debugSlots": false,
  1414. "_N$debugBones": false
  1415. },
  1416. {
  1417. "__type__": "cc.PrefabInfo",
  1418. "root": {
  1419. "__id__": 1
  1420. },
  1421. "asset": {
  1422. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1423. },
  1424. "fileId": "f3vv8qnz9G7a14IhTH9iyO",
  1425. "sync": false
  1426. },
  1427. {
  1428. "__type__": "cc.PrefabInfo",
  1429. "root": {
  1430. "__id__": 1
  1431. },
  1432. "asset": {
  1433. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1434. },
  1435. "fileId": "72yz8n44BJirNHeheGl6r6",
  1436. "sync": false
  1437. },
  1438. {
  1439. "__type__": "cc.Node",
  1440. "_name": "coinLabel",
  1441. "_objFlags": 0,
  1442. "_parent": {
  1443. "__id__": 41
  1444. },
  1445. "_children": [],
  1446. "_tag": -1,
  1447. "_active": true,
  1448. "_components": [
  1449. {
  1450. "__id__": 48
  1451. },
  1452. {
  1453. "__id__": 49
  1454. }
  1455. ],
  1456. "_prefab": {
  1457. "__id__": 50
  1458. },
  1459. "_id": "",
  1460. "_opacity": 255,
  1461. "_color": {
  1462. "__type__": "cc.Color",
  1463. "r": 0,
  1464. "g": 146,
  1465. "b": 4,
  1466. "a": 255
  1467. },
  1468. "_cascadeOpacityEnabled": true,
  1469. "_anchorPoint": {
  1470. "__type__": "cc.Vec2",
  1471. "x": 0,
  1472. "y": 0.5
  1473. },
  1474. "_contentSize": {
  1475. "__type__": "cc.Size",
  1476. "width": 6,
  1477. "height": 50
  1478. },
  1479. "_rotationX": 0,
  1480. "_rotationY": 0,
  1481. "_scaleX": 1,
  1482. "_scaleY": 1,
  1483. "_position": {
  1484. "__type__": "cc.Vec2",
  1485. "x": 29,
  1486. "y": 0
  1487. },
  1488. "_skewX": 0,
  1489. "_skewY": 0,
  1490. "_localZOrder": 0,
  1491. "_globalZOrder": 0,
  1492. "_opacityModifyRGB": false,
  1493. "groupIndex": 0
  1494. },
  1495. {
  1496. "__type__": "cc.Label",
  1497. "_name": "",
  1498. "_objFlags": 0,
  1499. "node": {
  1500. "__id__": 47
  1501. },
  1502. "_enabled": true,
  1503. "_useOriginalSize": false,
  1504. "_actualFontSize": 42,
  1505. "_fontSize": 42,
  1506. "_lineHeight": 50,
  1507. "_enableWrapText": true,
  1508. "_N$file": null,
  1509. "_isSystemFontUsed": true,
  1510. "_spacingX": 0,
  1511. "_N$string": "",
  1512. "_N$horizontalAlign": 0,
  1513. "_N$verticalAlign": 0,
  1514. "_N$fontFamily": "Arial",
  1515. "_N$overflow": 0
  1516. },
  1517. {
  1518. "__type__": "cc.LabelOutline",
  1519. "_name": "",
  1520. "_objFlags": 0,
  1521. "node": {
  1522. "__id__": 47
  1523. },
  1524. "_enabled": true,
  1525. "_color": {
  1526. "__type__": "cc.Color",
  1527. "r": 255,
  1528. "g": 255,
  1529. "b": 255,
  1530. "a": 255
  1531. },
  1532. "_width": 3
  1533. },
  1534. {
  1535. "__type__": "cc.PrefabInfo",
  1536. "root": {
  1537. "__id__": 1
  1538. },
  1539. "asset": {
  1540. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1541. },
  1542. "fileId": "20znfrD1pISaehGoOMvA94",
  1543. "sync": false
  1544. },
  1545. {
  1546. "__type__": "cc.Layout",
  1547. "_name": "",
  1548. "_objFlags": 0,
  1549. "node": {
  1550. "__id__": 41
  1551. },
  1552. "_enabled": true,
  1553. "_layoutSize": {
  1554. "__type__": "cc.Size",
  1555. "width": 70,
  1556. "height": 80
  1557. },
  1558. "_resize": 1,
  1559. "_N$layoutType": 1,
  1560. "_N$padding": 0,
  1561. "_N$cellSize": {
  1562. "__type__": "cc.Size",
  1563. "width": 40,
  1564. "height": 40
  1565. },
  1566. "_N$startAxis": 0,
  1567. "_N$paddingLeft": 0,
  1568. "_N$paddingRight": 0,
  1569. "_N$paddingTop": 0,
  1570. "_N$paddingBottom": 0,
  1571. "_N$spacingX": 10,
  1572. "_N$spacingY": 0,
  1573. "_N$verticalDirection": 1,
  1574. "_N$horizontalDirection": 0
  1575. },
  1576. {
  1577. "__type__": "cc.PrefabInfo",
  1578. "root": {
  1579. "__id__": 1
  1580. },
  1581. "asset": {
  1582. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1583. },
  1584. "fileId": "d4RPgHWsFDlZT5YgCbCdWH",
  1585. "sync": false
  1586. },
  1587. {
  1588. "__type__": "cc.Node",
  1589. "_name": "my_compony_info",
  1590. "_objFlags": 0,
  1591. "_parent": {
  1592. "__id__": 1
  1593. },
  1594. "_children": [
  1595. {
  1596. "__id__": 54
  1597. },
  1598. {
  1599. "__id__": 57
  1600. },
  1601. {
  1602. "__id__": 60
  1603. },
  1604. {
  1605. "__id__": 63
  1606. },
  1607. {
  1608. "__id__": 66
  1609. }
  1610. ],
  1611. "_tag": -1,
  1612. "_active": true,
  1613. "_components": [
  1614. {
  1615. "__id__": 69
  1616. }
  1617. ],
  1618. "_prefab": {
  1619. "__id__": 70
  1620. },
  1621. "_id": "",
  1622. "_opacity": 255,
  1623. "_color": {
  1624. "__type__": "cc.Color",
  1625. "r": 255,
  1626. "g": 255,
  1627. "b": 255,
  1628. "a": 255
  1629. },
  1630. "_cascadeOpacityEnabled": true,
  1631. "_anchorPoint": {
  1632. "__type__": "cc.Vec2",
  1633. "x": 0.5,
  1634. "y": 0.5
  1635. },
  1636. "_contentSize": {
  1637. "__type__": "cc.Size",
  1638. "width": 362,
  1639. "height": 171
  1640. },
  1641. "_rotationX": 0,
  1642. "_rotationY": 0,
  1643. "_scaleX": 1,
  1644. "_scaleY": 1,
  1645. "_position": {
  1646. "__type__": "cc.Vec2",
  1647. "x": 186,
  1648. "y": 456
  1649. },
  1650. "_skewX": 0,
  1651. "_skewY": 0,
  1652. "_localZOrder": 0,
  1653. "_globalZOrder": 0,
  1654. "_opacityModifyRGB": false,
  1655. "groupIndex": 0
  1656. },
  1657. {
  1658. "__type__": "cc.Node",
  1659. "_name": "name",
  1660. "_objFlags": 0,
  1661. "_parent": {
  1662. "__id__": 53
  1663. },
  1664. "_children": [],
  1665. "_tag": -1,
  1666. "_active": true,
  1667. "_components": [
  1668. {
  1669. "__id__": 55
  1670. }
  1671. ],
  1672. "_prefab": {
  1673. "__id__": 56
  1674. },
  1675. "_id": "",
  1676. "_opacity": 255,
  1677. "_color": {
  1678. "__type__": "cc.Color",
  1679. "r": 247,
  1680. "g": 152,
  1681. "b": 10,
  1682. "a": 255
  1683. },
  1684. "_cascadeOpacityEnabled": true,
  1685. "_anchorPoint": {
  1686. "__type__": "cc.Vec2",
  1687. "x": 0.5,
  1688. "y": 0.5
  1689. },
  1690. "_contentSize": {
  1691. "__type__": "cc.Size",
  1692. "width": 126,
  1693. "height": 50
  1694. },
  1695. "_rotationX": 0,
  1696. "_rotationY": 0,
  1697. "_scaleX": 1,
  1698. "_scaleY": 1,
  1699. "_position": {
  1700. "__type__": "cc.Vec2",
  1701. "x": 0,
  1702. "y": 50
  1703. },
  1704. "_skewX": 0,
  1705. "_skewY": 0,
  1706. "_localZOrder": 0,
  1707. "_globalZOrder": 0,
  1708. "_opacityModifyRGB": false,
  1709. "groupIndex": 0
  1710. },
  1711. {
  1712. "__type__": "cc.RichText",
  1713. "_name": "",
  1714. "_objFlags": 0,
  1715. "node": {
  1716. "__id__": 54
  1717. },
  1718. "_enabled": true,
  1719. "_N$string": "<outline color=#ffffff width=2><b>赵肆家族</b></outline>",
  1720. "_N$horizontalAlign": 0,
  1721. "_N$fontSize": 30,
  1722. "_N$font": null,
  1723. "_N$maxWidth": 0,
  1724. "_N$lineHeight": 50,
  1725. "_N$imageAtlas": null,
  1726. "_N$handleTouchEvent": true
  1727. },
  1728. {
  1729. "__type__": "cc.PrefabInfo",
  1730. "root": {
  1731. "__id__": 1
  1732. },
  1733. "asset": {
  1734. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1735. },
  1736. "fileId": "51x1zHJrVEAqi48eGay1vv",
  1737. "sync": false
  1738. },
  1739. {
  1740. "__type__": "cc.Node",
  1741. "_name": "current_compony",
  1742. "_objFlags": 0,
  1743. "_parent": {
  1744. "__id__": 53
  1745. },
  1746. "_children": [],
  1747. "_tag": -1,
  1748. "_active": true,
  1749. "_components": [
  1750. {
  1751. "__id__": 58
  1752. }
  1753. ],
  1754. "_prefab": {
  1755. "__id__": 59
  1756. },
  1757. "_id": "",
  1758. "_opacity": 255,
  1759. "_color": {
  1760. "__type__": "cc.Color",
  1761. "r": 82,
  1762. "g": 67,
  1763. "b": 64,
  1764. "a": 255
  1765. },
  1766. "_cascadeOpacityEnabled": true,
  1767. "_anchorPoint": {
  1768. "__type__": "cc.Vec2",
  1769. "x": 0.5,
  1770. "y": 0.5
  1771. },
  1772. "_contentSize": {
  1773. "__type__": "cc.Size",
  1774. "width": 204,
  1775. "height": 40
  1776. },
  1777. "_rotationX": 0,
  1778. "_rotationY": 0,
  1779. "_scaleX": 1,
  1780. "_scaleY": 1,
  1781. "_position": {
  1782. "__type__": "cc.Vec2",
  1783. "x": 0,
  1784. "y": 0
  1785. },
  1786. "_skewX": 0,
  1787. "_skewY": 0,
  1788. "_localZOrder": 0,
  1789. "_globalZOrder": 0,
  1790. "_opacityModifyRGB": false,
  1791. "groupIndex": 0
  1792. },
  1793. {
  1794. "__type__": "cc.RichText",
  1795. "_name": "",
  1796. "_objFlags": 0,
  1797. "node": {
  1798. "__id__": 57
  1799. },
  1800. "_enabled": true,
  1801. "_N$string": "<outline color=#ffffff width=2><b>当前拥有2家公司</b></outline>",
  1802. "_N$horizontalAlign": 0,
  1803. "_N$fontSize": 26,
  1804. "_N$font": null,
  1805. "_N$maxWidth": 0,
  1806. "_N$lineHeight": 40,
  1807. "_N$imageAtlas": null,
  1808. "_N$handleTouchEvent": true
  1809. },
  1810. {
  1811. "__type__": "cc.PrefabInfo",
  1812. "root": {
  1813. "__id__": 1
  1814. },
  1815. "asset": {
  1816. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1817. },
  1818. "fileId": "ebKV5MBh5PIIB2dQmbquRK",
  1819. "sync": false
  1820. },
  1821. {
  1822. "__type__": "cc.Node",
  1823. "_name": "New RichText",
  1824. "_objFlags": 0,
  1825. "_parent": {
  1826. "__id__": 53
  1827. },
  1828. "_children": [],
  1829. "_tag": -1,
  1830. "_active": true,
  1831. "_components": [
  1832. {
  1833. "__id__": 61
  1834. }
  1835. ],
  1836. "_prefab": {
  1837. "__id__": 62
  1838. },
  1839. "_id": "",
  1840. "_opacity": 255,
  1841. "_color": {
  1842. "__type__": "cc.Color",
  1843. "r": 82,
  1844. "g": 67,
  1845. "b": 64,
  1846. "a": 255
  1847. },
  1848. "_cascadeOpacityEnabled": true,
  1849. "_anchorPoint": {
  1850. "__type__": "cc.Vec2",
  1851. "x": 0.5,
  1852. "y": 0.5
  1853. },
  1854. "_contentSize": {
  1855. "__type__": "cc.Size",
  1856. "width": 163,
  1857. "height": 30
  1858. },
  1859. "_rotationX": 0,
  1860. "_rotationY": 0,
  1861. "_scaleX": 1,
  1862. "_scaleY": 1,
  1863. "_position": {
  1864. "__type__": "cc.Vec2",
  1865. "x": -68.2,
  1866. "y": -38
  1867. },
  1868. "_skewX": 0,
  1869. "_skewY": 0,
  1870. "_localZOrder": 0,
  1871. "_globalZOrder": 0,
  1872. "_opacityModifyRGB": false,
  1873. "groupIndex": 0
  1874. },
  1875. {
  1876. "__type__": "cc.RichText",
  1877. "_name": "",
  1878. "_objFlags": 0,
  1879. "node": {
  1880. "__id__": 60
  1881. },
  1882. "_enabled": true,
  1883. "_N$string": "<outline color=#ffffff width=2><b>公司总收益:</b></outline>",
  1884. "_N$horizontalAlign": 0,
  1885. "_N$fontSize": 26,
  1886. "_N$font": null,
  1887. "_N$maxWidth": 0,
  1888. "_N$lineHeight": 30,
  1889. "_N$imageAtlas": null,
  1890. "_N$handleTouchEvent": true
  1891. },
  1892. {
  1893. "__type__": "cc.PrefabInfo",
  1894. "root": {
  1895. "__id__": 1
  1896. },
  1897. "asset": {
  1898. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1899. },
  1900. "fileId": "f7vLR71SxFjraA2RiE9zxV",
  1901. "sync": false
  1902. },
  1903. {
  1904. "__type__": "cc.Node",
  1905. "_name": "New Sprite",
  1906. "_objFlags": 0,
  1907. "_parent": {
  1908. "__id__": 53
  1909. },
  1910. "_children": [],
  1911. "_tag": -1,
  1912. "_active": true,
  1913. "_components": [
  1914. {
  1915. "__id__": 64
  1916. }
  1917. ],
  1918. "_prefab": {
  1919. "__id__": 65
  1920. },
  1921. "_id": "",
  1922. "_opacity": 255,
  1923. "_color": {
  1924. "__type__": "cc.Color",
  1925. "r": 255,
  1926. "g": 255,
  1927. "b": 255,
  1928. "a": 255
  1929. },
  1930. "_cascadeOpacityEnabled": true,
  1931. "_anchorPoint": {
  1932. "__type__": "cc.Vec2",
  1933. "x": 0.5,
  1934. "y": 0.5
  1935. },
  1936. "_contentSize": {
  1937. "__type__": "cc.Size",
  1938. "width": 36,
  1939. "height": 36
  1940. },
  1941. "_rotationX": 0,
  1942. "_rotationY": 0,
  1943. "_scaleX": 1,
  1944. "_scaleY": 1,
  1945. "_position": {
  1946. "__type__": "cc.Vec2",
  1947. "x": 20.6,
  1948. "y": -38
  1949. },
  1950. "_skewX": 0,
  1951. "_skewY": 0,
  1952. "_localZOrder": 0,
  1953. "_globalZOrder": 0,
  1954. "_opacityModifyRGB": false,
  1955. "groupIndex": 0
  1956. },
  1957. {
  1958. "__type__": "cc.Sprite",
  1959. "_name": "",
  1960. "_objFlags": 0,
  1961. "node": {
  1962. "__id__": 63
  1963. },
  1964. "_enabled": true,
  1965. "_spriteFrame": {
  1966. "__uuid__": "8d0d6dd8-e66f-4bcd-b58c-cb1f3201c4db"
  1967. },
  1968. "_type": 0,
  1969. "_sizeMode": 0,
  1970. "_fillType": 0,
  1971. "_fillCenter": {
  1972. "__type__": "cc.Vec2",
  1973. "x": 0,
  1974. "y": 0
  1975. },
  1976. "_fillStart": 0,
  1977. "_fillRange": 0,
  1978. "_isTrimmedMode": true,
  1979. "_srcBlendFactor": 770,
  1980. "_dstBlendFactor": 771,
  1981. "_atlas": null
  1982. },
  1983. {
  1984. "__type__": "cc.PrefabInfo",
  1985. "root": {
  1986. "__id__": 1
  1987. },
  1988. "asset": {
  1989. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1990. },
  1991. "fileId": "05q473UAdKQpshvDdVoPfp",
  1992. "sync": false
  1993. },
  1994. {
  1995. "__type__": "cc.Node",
  1996. "_name": "New RichText",
  1997. "_objFlags": 0,
  1998. "_parent": {
  1999. "__id__": 53
  2000. },
  2001. "_children": [],
  2002. "_tag": -1,
  2003. "_active": true,
  2004. "_components": [
  2005. {
  2006. "__id__": 67
  2007. }
  2008. ],
  2009. "_prefab": {
  2010. "__id__": 68
  2011. },
  2012. "_id": "",
  2013. "_opacity": 255,
  2014. "_color": {
  2015. "__type__": "cc.Color",
  2016. "r": 82,
  2017. "g": 67,
  2018. "b": 64,
  2019. "a": 255
  2020. },
  2021. "_cascadeOpacityEnabled": true,
  2022. "_anchorPoint": {
  2023. "__type__": "cc.Vec2",
  2024. "x": 0,
  2025. "y": 0.5
  2026. },
  2027. "_contentSize": {
  2028. "__type__": "cc.Size",
  2029. "width": 96,
  2030. "height": 30
  2031. },
  2032. "_rotationX": 0,
  2033. "_rotationY": 0,
  2034. "_scaleX": 1,
  2035. "_scaleY": 1,
  2036. "_position": {
  2037. "__type__": "cc.Vec2",
  2038. "x": 43.1,
  2039. "y": -38
  2040. },
  2041. "_skewX": 0,
  2042. "_skewY": 0,
  2043. "_localZOrder": 0,
  2044. "_globalZOrder": 0,
  2045. "_opacityModifyRGB": false,
  2046. "groupIndex": 0
  2047. },
  2048. {
  2049. "__type__": "cc.RichText",
  2050. "_name": "",
  2051. "_objFlags": 0,
  2052. "node": {
  2053. "__id__": 66
  2054. },
  2055. "_enabled": true,
  2056. "_N$string": "<outline color=#ffffff width=2><b>9999/天</b></outline>",
  2057. "_N$horizontalAlign": 0,
  2058. "_N$fontSize": 26,
  2059. "_N$font": null,
  2060. "_N$maxWidth": 0,
  2061. "_N$lineHeight": 30,
  2062. "_N$imageAtlas": null,
  2063. "_N$handleTouchEvent": true
  2064. },
  2065. {
  2066. "__type__": "cc.PrefabInfo",
  2067. "root": {
  2068. "__id__": 1
  2069. },
  2070. "asset": {
  2071. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2072. },
  2073. "fileId": "342CkjNAVDcJ2YLTw6ew+n",
  2074. "sync": false
  2075. },
  2076. {
  2077. "__type__": "cc.Sprite",
  2078. "_name": "",
  2079. "_objFlags": 0,
  2080. "node": {
  2081. "__id__": 53
  2082. },
  2083. "_enabled": true,
  2084. "_spriteFrame": {
  2085. "__uuid__": "dae2fc74-5bb5-43ed-8ba2-5621868c5192"
  2086. },
  2087. "_type": 1,
  2088. "_sizeMode": 0,
  2089. "_fillType": 0,
  2090. "_fillCenter": {
  2091. "__type__": "cc.Vec2",
  2092. "x": 0,
  2093. "y": 0
  2094. },
  2095. "_fillStart": 0,
  2096. "_fillRange": 0,
  2097. "_isTrimmedMode": true,
  2098. "_srcBlendFactor": 770,
  2099. "_dstBlendFactor": 771,
  2100. "_atlas": null
  2101. },
  2102. {
  2103. "__type__": "cc.PrefabInfo",
  2104. "root": {
  2105. "__id__": 1
  2106. },
  2107. "asset": {
  2108. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2109. },
  2110. "fileId": "15gSWGpdFGPpIHpXhtr0GP",
  2111. "sync": false
  2112. },
  2113. {
  2114. "__type__": "2cb76/UngpCKJk0AjJyrHCS",
  2115. "_name": "",
  2116. "_objFlags": 0,
  2117. "node": {
  2118. "__id__": 1
  2119. },
  2120. "_enabled": true,
  2121. "scrollView": {
  2122. "__id__": 13
  2123. },
  2124. "view": {
  2125. "__id__": 3
  2126. },
  2127. "mapbg": {
  2128. "__id__": 4
  2129. },
  2130. "content": {
  2131. "__id__": 4
  2132. },
  2133. "cityItemPrefab": {
  2134. "__uuid__": "404d32e8-c10e-47b0-af34-4341872c77da"
  2135. },
  2136. "myMoneyLayout": {
  2137. "__id__": 41
  2138. },
  2139. "coinNode": {
  2140. "__id__": 42
  2141. },
  2142. "coinSkeleton": {
  2143. "__id__": 44
  2144. },
  2145. "myMoneyLabel": {
  2146. "__id__": 48
  2147. },
  2148. "moneyCatNode": {
  2149. "__id__": 15
  2150. },
  2151. "backNode": {
  2152. "__id__": 35
  2153. },
  2154. "myCompanyNode": {
  2155. "__id__": 53
  2156. },
  2157. "companyText": {
  2158. "__id__": 58
  2159. },
  2160. "incomeText": {
  2161. "__id__": 67
  2162. },
  2163. "progressBar": {
  2164. "__id__": 31
  2165. },
  2166. "currentIncomeLabel": {
  2167. "__id__": 25
  2168. },
  2169. "airplane": {
  2170. "__id__": 10
  2171. },
  2172. "coinPrefab": {
  2173. "__uuid__": "afeee4a6-90f1-4bfa-8e45-989019344ea5"
  2174. }
  2175. },
  2176. {
  2177. "__type__": "cc.PrefabInfo",
  2178. "root": {
  2179. "__id__": 1
  2180. },
  2181. "asset": {
  2182. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2183. },
  2184. "fileId": "27RvMcd4ZPmpeT2hkAKBkD",
  2185. "sync": false
  2186. }
  2187. ]