map.prefab 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039
  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__": 6
  24. },
  25. {
  26. "__id__": 18
  27. },
  28. {
  29. "__id__": 56
  30. },
  31. {
  32. "__id__": 63
  33. },
  34. {
  35. "__id__": 67
  36. },
  37. {
  38. "__id__": 79
  39. },
  40. {
  41. "__id__": 97
  42. }
  43. ],
  44. "_tag": -1,
  45. "_active": true,
  46. "_components": [
  47. {
  48. "__id__": 100
  49. }
  50. ],
  51. "_prefab": {
  52. "__id__": 101
  53. },
  54. "_id": "",
  55. "_opacity": 255,
  56. "_color": {
  57. "__type__": "cc.Color",
  58. "r": 255,
  59. "g": 255,
  60. "b": 255,
  61. "a": 255
  62. },
  63. "_cascadeOpacityEnabled": true,
  64. "_anchorPoint": {
  65. "__type__": "cc.Vec2",
  66. "x": 0.5,
  67. "y": 0.5
  68. },
  69. "_contentSize": {
  70. "__type__": "cc.Size",
  71. "width": 750,
  72. "height": 1334
  73. },
  74. "_rotationX": 0,
  75. "_rotationY": 0,
  76. "_scaleX": 1,
  77. "_scaleY": 1,
  78. "_position": {
  79. "__type__": "cc.Vec2",
  80. "x": 0,
  81. "y": 0
  82. },
  83. "_skewX": 0,
  84. "_skewY": 0,
  85. "_localZOrder": 0,
  86. "_globalZOrder": 0,
  87. "_opacityModifyRGB": false,
  88. "groupIndex": 0
  89. },
  90. {
  91. "__type__": "cc.Node",
  92. "_name": "bg",
  93. "_objFlags": 0,
  94. "_parent": {
  95. "__id__": 1
  96. },
  97. "_children": [],
  98. "_tag": -1,
  99. "_active": true,
  100. "_components": [
  101. {
  102. "__id__": 3
  103. },
  104. {
  105. "__id__": 4
  106. }
  107. ],
  108. "_prefab": {
  109. "__id__": 5
  110. },
  111. "_id": "",
  112. "_opacity": 255,
  113. "_color": {
  114. "__type__": "cc.Color",
  115. "r": 255,
  116. "g": 255,
  117. "b": 255,
  118. "a": 255
  119. },
  120. "_cascadeOpacityEnabled": true,
  121. "_anchorPoint": {
  122. "__type__": "cc.Vec2",
  123. "x": 0.5,
  124. "y": 0
  125. },
  126. "_contentSize": {
  127. "__type__": "cc.Size",
  128. "width": 750,
  129. "height": 1334
  130. },
  131. "_rotationX": 0,
  132. "_rotationY": 0,
  133. "_scaleX": 1,
  134. "_scaleY": 1,
  135. "_position": {
  136. "__type__": "cc.Vec2",
  137. "x": 0,
  138. "y": -667
  139. },
  140. "_skewX": 0,
  141. "_skewY": 0,
  142. "_localZOrder": 0,
  143. "_globalZOrder": 0,
  144. "_opacityModifyRGB": false,
  145. "groupIndex": 0
  146. },
  147. {
  148. "__type__": "cc.Sprite",
  149. "_name": "",
  150. "_objFlags": 0,
  151. "node": {
  152. "__id__": 2
  153. },
  154. "_enabled": true,
  155. "_spriteFrame": {
  156. "__uuid__": "12a26647-7a86-42bc-b3c9-77806237bc4e"
  157. },
  158. "_type": 1,
  159. "_sizeMode": 0,
  160. "_fillType": 0,
  161. "_fillCenter": {
  162. "__type__": "cc.Vec2",
  163. "x": 0,
  164. "y": 0
  165. },
  166. "_fillStart": 0,
  167. "_fillRange": 0,
  168. "_isTrimmedMode": true,
  169. "_srcBlendFactor": 770,
  170. "_dstBlendFactor": 771,
  171. "_atlas": null
  172. },
  173. {
  174. "__type__": "cc.Widget",
  175. "_name": "",
  176. "_objFlags": 0,
  177. "node": {
  178. "__id__": 2
  179. },
  180. "_enabled": true,
  181. "alignMode": 2,
  182. "_target": null,
  183. "_alignFlags": 4,
  184. "_left": 0,
  185. "_right": 0,
  186. "_top": 0,
  187. "_bottom": 0,
  188. "_verticalCenter": 0,
  189. "_horizontalCenter": 0,
  190. "_isAbsLeft": true,
  191. "_isAbsRight": true,
  192. "_isAbsTop": true,
  193. "_isAbsBottom": true,
  194. "_isAbsHorizontalCenter": true,
  195. "_isAbsVerticalCenter": true,
  196. "_originalWidth": 0,
  197. "_originalHeight": 0
  198. },
  199. {
  200. "__type__": "cc.PrefabInfo",
  201. "root": {
  202. "__id__": 1
  203. },
  204. "asset": {
  205. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  206. },
  207. "fileId": "05kx4MPqdK8LVFpt92Tai2",
  208. "sync": false
  209. },
  210. {
  211. "__type__": "cc.Node",
  212. "_name": "ScrollView",
  213. "_objFlags": 0,
  214. "_parent": {
  215. "__id__": 1
  216. },
  217. "_children": [
  218. {
  219. "__id__": 7
  220. }
  221. ],
  222. "_tag": -1,
  223. "_active": true,
  224. "_components": [
  225. {
  226. "__id__": 15
  227. },
  228. {
  229. "__id__": 16
  230. }
  231. ],
  232. "_prefab": {
  233. "__id__": 17
  234. },
  235. "_id": "",
  236. "_opacity": 255,
  237. "_color": {
  238. "__type__": "cc.Color",
  239. "r": 184,
  240. "g": 184,
  241. "b": 184,
  242. "a": 255
  243. },
  244. "_cascadeOpacityEnabled": true,
  245. "_anchorPoint": {
  246. "__type__": "cc.Vec2",
  247. "x": 0.5,
  248. "y": 0
  249. },
  250. "_contentSize": {
  251. "__type__": "cc.Size",
  252. "width": 750,
  253. "height": 887
  254. },
  255. "_rotationX": 0,
  256. "_rotationY": 0,
  257. "_scaleX": 1,
  258. "_scaleY": 1,
  259. "_position": {
  260. "__type__": "cc.Vec2",
  261. "x": 0,
  262. "y": -220
  263. },
  264. "_skewX": 0,
  265. "_skewY": 0,
  266. "_localZOrder": 0,
  267. "_globalZOrder": 0,
  268. "_opacityModifyRGB": false,
  269. "groupIndex": 0
  270. },
  271. {
  272. "__type__": "cc.Node",
  273. "_name": "view",
  274. "_objFlags": 0,
  275. "_parent": {
  276. "__id__": 6
  277. },
  278. "_children": [
  279. {
  280. "__id__": 8
  281. }
  282. ],
  283. "_tag": -1,
  284. "_active": true,
  285. "_components": [
  286. {
  287. "__id__": 13
  288. }
  289. ],
  290. "_prefab": {
  291. "__id__": 14
  292. },
  293. "_id": "",
  294. "_opacity": 255,
  295. "_color": {
  296. "__type__": "cc.Color",
  297. "r": 255,
  298. "g": 255,
  299. "b": 255,
  300. "a": 255
  301. },
  302. "_cascadeOpacityEnabled": true,
  303. "_anchorPoint": {
  304. "__type__": "cc.Vec2",
  305. "x": 0.5,
  306. "y": 0
  307. },
  308. "_contentSize": {
  309. "__type__": "cc.Size",
  310. "width": 750,
  311. "height": 887
  312. },
  313. "_rotationX": 0,
  314. "_rotationY": 0,
  315. "_scaleX": 1,
  316. "_scaleY": 1,
  317. "_position": {
  318. "__type__": "cc.Vec2",
  319. "x": 0,
  320. "y": 0
  321. },
  322. "_skewX": 0,
  323. "_skewY": 0,
  324. "_localZOrder": 0,
  325. "_globalZOrder": 0,
  326. "_opacityModifyRGB": false,
  327. "groupIndex": 0
  328. },
  329. {
  330. "__type__": "cc.Node",
  331. "_name": "content",
  332. "_objFlags": 0,
  333. "_parent": {
  334. "__id__": 7
  335. },
  336. "_children": [],
  337. "_tag": -1,
  338. "_active": true,
  339. "_components": [
  340. {
  341. "__id__": 9
  342. },
  343. {
  344. "__id__": 10
  345. },
  346. {
  347. "__id__": 11
  348. }
  349. ],
  350. "_prefab": {
  351. "__id__": 12
  352. },
  353. "_id": "",
  354. "_opacity": 255,
  355. "_color": {
  356. "__type__": "cc.Color",
  357. "r": 255,
  358. "g": 255,
  359. "b": 255,
  360. "a": 255
  361. },
  362. "_cascadeOpacityEnabled": true,
  363. "_anchorPoint": {
  364. "__type__": "cc.Vec2",
  365. "x": 0.5,
  366. "y": 0
  367. },
  368. "_contentSize": {
  369. "__type__": "cc.Size",
  370. "width": 750,
  371. "height": 778
  372. },
  373. "_rotationX": 0,
  374. "_rotationY": 0,
  375. "_scaleX": 1,
  376. "_scaleY": 1,
  377. "_position": {
  378. "__type__": "cc.Vec2",
  379. "x": 0,
  380. "y": 0
  381. },
  382. "_skewX": 0,
  383. "_skewY": 0,
  384. "_localZOrder": 0,
  385. "_globalZOrder": 0,
  386. "_opacityModifyRGB": false,
  387. "groupIndex": 0
  388. },
  389. {
  390. "__type__": "cc.Sprite",
  391. "_name": "",
  392. "_objFlags": 0,
  393. "node": {
  394. "__id__": 8
  395. },
  396. "_enabled": true,
  397. "_spriteFrame": null,
  398. "_type": 1,
  399. "_sizeMode": 0,
  400. "_fillType": 0,
  401. "_fillCenter": {
  402. "__type__": "cc.Vec2",
  403. "x": 0,
  404. "y": 0
  405. },
  406. "_fillStart": 0,
  407. "_fillRange": 0,
  408. "_isTrimmedMode": true,
  409. "_srcBlendFactor": 770,
  410. "_dstBlendFactor": 771,
  411. "_atlas": null
  412. },
  413. {
  414. "__type__": "cc.BlockInputEvents",
  415. "_name": "",
  416. "_objFlags": 0,
  417. "node": {
  418. "__id__": 8
  419. },
  420. "_enabled": true
  421. },
  422. {
  423. "__type__": "cc.Layout",
  424. "_name": "",
  425. "_objFlags": 0,
  426. "node": {
  427. "__id__": 8
  428. },
  429. "_enabled": true,
  430. "_layoutSize": {
  431. "__type__": "cc.Size",
  432. "width": 750,
  433. "height": 778
  434. },
  435. "_resize": 1,
  436. "_N$layoutType": 2,
  437. "_N$padding": 0,
  438. "_N$cellSize": {
  439. "__type__": "cc.Size",
  440. "width": 40,
  441. "height": 40
  442. },
  443. "_N$startAxis": 0,
  444. "_N$paddingLeft": 0,
  445. "_N$paddingRight": 0,
  446. "_N$paddingTop": 300,
  447. "_N$paddingBottom": 100,
  448. "_N$spacingX": 0,
  449. "_N$spacingY": 30,
  450. "_N$verticalDirection": 0,
  451. "_N$horizontalDirection": 0
  452. },
  453. {
  454. "__type__": "cc.PrefabInfo",
  455. "root": {
  456. "__id__": 1
  457. },
  458. "asset": {
  459. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  460. },
  461. "fileId": "f4aTtiEI9F0bfpehbenlLr",
  462. "sync": false
  463. },
  464. {
  465. "__type__": "cc.Mask",
  466. "_name": "",
  467. "_objFlags": 0,
  468. "node": {
  469. "__id__": 7
  470. },
  471. "_enabled": true,
  472. "_type": 0,
  473. "_segements": 64,
  474. "_N$spriteFrame": null,
  475. "_N$alphaThreshold": 1,
  476. "_N$inverted": false
  477. },
  478. {
  479. "__type__": "cc.PrefabInfo",
  480. "root": {
  481. "__id__": 1
  482. },
  483. "asset": {
  484. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  485. },
  486. "fileId": "bfKxUxCGNLlYq+D2LoJcFk",
  487. "sync": false
  488. },
  489. {
  490. "__type__": "cc.ScrollView",
  491. "_name": "",
  492. "_objFlags": 0,
  493. "node": {
  494. "__id__": 6
  495. },
  496. "_enabled": true,
  497. "content": {
  498. "__id__": 8
  499. },
  500. "horizontal": false,
  501. "vertical": true,
  502. "inertia": true,
  503. "brake": 0.75,
  504. "elastic": false,
  505. "bounceDuration": 0.23,
  506. "scrollEvents": [],
  507. "cancelInnerEvents": true,
  508. "_N$horizontalScrollBar": null,
  509. "_N$verticalScrollBar": null
  510. },
  511. {
  512. "__type__": "cc.Sprite",
  513. "_name": "",
  514. "_objFlags": 0,
  515. "node": {
  516. "__id__": 6
  517. },
  518. "_enabled": true,
  519. "_spriteFrame": null,
  520. "_type": 0,
  521. "_sizeMode": 0,
  522. "_fillType": 0,
  523. "_fillCenter": {
  524. "__type__": "cc.Vec2",
  525. "x": 0,
  526. "y": 0
  527. },
  528. "_fillStart": 0,
  529. "_fillRange": 0,
  530. "_isTrimmedMode": true,
  531. "_srcBlendFactor": 770,
  532. "_dstBlendFactor": 771,
  533. "_atlas": null
  534. },
  535. {
  536. "__type__": "cc.PrefabInfo",
  537. "root": {
  538. "__id__": 1
  539. },
  540. "asset": {
  541. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  542. },
  543. "fileId": "9bwzjCMh9M2a9UWEBYC/PH",
  544. "sync": false
  545. },
  546. {
  547. "__type__": "cc.Node",
  548. "_name": "money_cat",
  549. "_objFlags": 0,
  550. "_parent": {
  551. "__id__": 1
  552. },
  553. "_children": [
  554. {
  555. "__id__": 19
  556. },
  557. {
  558. "__id__": 22
  559. },
  560. {
  561. "__id__": 25
  562. },
  563. {
  564. "__id__": 42
  565. },
  566. {
  567. "__id__": 45
  568. },
  569. {
  570. "__id__": 49
  571. }
  572. ],
  573. "_tag": -1,
  574. "_active": true,
  575. "_components": [
  576. {
  577. "__id__": 53
  578. },
  579. {
  580. "__id__": 54
  581. }
  582. ],
  583. "_prefab": {
  584. "__id__": 55
  585. },
  586. "_id": "",
  587. "_opacity": 255,
  588. "_color": {
  589. "__type__": "cc.Color",
  590. "r": 255,
  591. "g": 255,
  592. "b": 255,
  593. "a": 255
  594. },
  595. "_cascadeOpacityEnabled": true,
  596. "_anchorPoint": {
  597. "__type__": "cc.Vec2",
  598. "x": 0.5,
  599. "y": 0.5
  600. },
  601. "_contentSize": {
  602. "__type__": "cc.Size",
  603. "width": 400,
  604. "height": 400
  605. },
  606. "_rotationX": 0,
  607. "_rotationY": 0,
  608. "_scaleX": 1,
  609. "_scaleY": 1,
  610. "_position": {
  611. "__type__": "cc.Vec2",
  612. "x": 0,
  613. "y": -447
  614. },
  615. "_skewX": 0,
  616. "_skewY": 0,
  617. "_localZOrder": 0,
  618. "_globalZOrder": 0,
  619. "_opacityModifyRGB": false,
  620. "groupIndex": 0
  621. },
  622. {
  623. "__type__": "cc.Node",
  624. "_name": "cat_skeleton",
  625. "_objFlags": 0,
  626. "_parent": {
  627. "__id__": 18
  628. },
  629. "_children": [],
  630. "_tag": -1,
  631. "_active": true,
  632. "_components": [
  633. {
  634. "__id__": 20
  635. }
  636. ],
  637. "_prefab": {
  638. "__id__": 21
  639. },
  640. "_id": "",
  641. "_opacity": 255,
  642. "_color": {
  643. "__type__": "cc.Color",
  644. "r": 255,
  645. "g": 255,
  646. "b": 255,
  647. "a": 255
  648. },
  649. "_cascadeOpacityEnabled": true,
  650. "_anchorPoint": {
  651. "__type__": "cc.Vec2",
  652. "x": 0.5,
  653. "y": 0.5
  654. },
  655. "_contentSize": {
  656. "__type__": "cc.Size",
  657. "width": 0,
  658. "height": 0
  659. },
  660. "_rotationX": 0,
  661. "_rotationY": 0,
  662. "_scaleX": 1,
  663. "_scaleY": 1,
  664. "_position": {
  665. "__type__": "cc.Vec2",
  666. "x": -10,
  667. "y": -200
  668. },
  669. "_skewX": 0,
  670. "_skewY": 0,
  671. "_localZOrder": 0,
  672. "_globalZOrder": 0,
  673. "_opacityModifyRGB": false,
  674. "groupIndex": 0
  675. },
  676. {
  677. "__type__": "sp.Skeleton",
  678. "_name": "",
  679. "_objFlags": 0,
  680. "node": {
  681. "__id__": 19
  682. },
  683. "_enabled": true,
  684. "_paused": false,
  685. "defaultSkin": "",
  686. "defaultAnimation": "",
  687. "loop": true,
  688. "_premultipliedAlpha": true,
  689. "_N$skeletonData": {
  690. "__uuid__": "21d0f6e3-54ed-43b1-b513-dfbdd4fca3f6"
  691. },
  692. "_N$timeScale": 1,
  693. "_N$debugSlots": false,
  694. "_N$debugBones": false
  695. },
  696. {
  697. "__type__": "cc.PrefabInfo",
  698. "root": {
  699. "__id__": 1
  700. },
  701. "asset": {
  702. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  703. },
  704. "fileId": "a6+y/0KLZEo7I9rrMqz++1",
  705. "sync": false
  706. },
  707. {
  708. "__type__": "cc.Node",
  709. "_name": "lot_gold",
  710. "_objFlags": 0,
  711. "_parent": {
  712. "__id__": 18
  713. },
  714. "_children": [],
  715. "_tag": -1,
  716. "_active": true,
  717. "_components": [
  718. {
  719. "__id__": 23
  720. }
  721. ],
  722. "_prefab": {
  723. "__id__": 24
  724. },
  725. "_id": "",
  726. "_opacity": 255,
  727. "_color": {
  728. "__type__": "cc.Color",
  729. "r": 255,
  730. "g": 255,
  731. "b": 255,
  732. "a": 255
  733. },
  734. "_cascadeOpacityEnabled": true,
  735. "_anchorPoint": {
  736. "__type__": "cc.Vec2",
  737. "x": 0.5,
  738. "y": 0.5
  739. },
  740. "_contentSize": {
  741. "__type__": "cc.Size",
  742. "width": 728,
  743. "height": 133
  744. },
  745. "_rotationX": 0,
  746. "_rotationY": 0,
  747. "_scaleX": 1,
  748. "_scaleY": 1,
  749. "_position": {
  750. "__type__": "cc.Vec2",
  751. "x": 0,
  752. "y": -135
  753. },
  754. "_skewX": 0,
  755. "_skewY": 0,
  756. "_localZOrder": 0,
  757. "_globalZOrder": 0,
  758. "_opacityModifyRGB": false,
  759. "groupIndex": 0
  760. },
  761. {
  762. "__type__": "cc.Sprite",
  763. "_name": "",
  764. "_objFlags": 0,
  765. "node": {
  766. "__id__": 22
  767. },
  768. "_enabled": true,
  769. "_spriteFrame": {
  770. "__uuid__": "9a02a7c8-dce3-4aea-894a-9fe97bde6b4f"
  771. },
  772. "_type": 0,
  773. "_sizeMode": 1,
  774. "_fillType": 0,
  775. "_fillCenter": {
  776. "__type__": "cc.Vec2",
  777. "x": 0,
  778. "y": 0
  779. },
  780. "_fillStart": 0,
  781. "_fillRange": 0,
  782. "_isTrimmedMode": true,
  783. "_srcBlendFactor": 770,
  784. "_dstBlendFactor": 771,
  785. "_atlas": null
  786. },
  787. {
  788. "__type__": "cc.PrefabInfo",
  789. "root": {
  790. "__id__": 1
  791. },
  792. "asset": {
  793. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  794. },
  795. "fileId": "8aOEKyvxZPVK7JDVnA6ybt",
  796. "sync": false
  797. },
  798. {
  799. "__type__": "cc.Node",
  800. "_name": "money_progressbar",
  801. "_objFlags": 0,
  802. "_parent": {
  803. "__id__": 18
  804. },
  805. "_children": [
  806. {
  807. "__id__": 26
  808. },
  809. {
  810. "__id__": 29
  811. }
  812. ],
  813. "_tag": -1,
  814. "_active": true,
  815. "_components": [
  816. {
  817. "__id__": 39
  818. },
  819. {
  820. "__id__": 40
  821. }
  822. ],
  823. "_prefab": {
  824. "__id__": 41
  825. },
  826. "_id": "",
  827. "_opacity": 255,
  828. "_color": {
  829. "__type__": "cc.Color",
  830. "r": 255,
  831. "g": 255,
  832. "b": 255,
  833. "a": 255
  834. },
  835. "_cascadeOpacityEnabled": true,
  836. "_anchorPoint": {
  837. "__type__": "cc.Vec2",
  838. "x": 0.5,
  839. "y": 0.5
  840. },
  841. "_contentSize": {
  842. "__type__": "cc.Size",
  843. "width": 503,
  844. "height": 46
  845. },
  846. "_rotationX": 0,
  847. "_rotationY": 0,
  848. "_scaleX": 1,
  849. "_scaleY": 1,
  850. "_position": {
  851. "__type__": "cc.Vec2",
  852. "x": 0,
  853. "y": -160
  854. },
  855. "_skewX": 0,
  856. "_skewY": 0,
  857. "_localZOrder": 0,
  858. "_globalZOrder": 0,
  859. "_opacityModifyRGB": false,
  860. "groupIndex": 0
  861. },
  862. {
  863. "__type__": "cc.Node",
  864. "_name": "bar",
  865. "_objFlags": 0,
  866. "_parent": {
  867. "__id__": 25
  868. },
  869. "_children": [],
  870. "_tag": -1,
  871. "_active": true,
  872. "_components": [
  873. {
  874. "__id__": 27
  875. }
  876. ],
  877. "_prefab": {
  878. "__id__": 28
  879. },
  880. "_id": "",
  881. "_opacity": 255,
  882. "_color": {
  883. "__type__": "cc.Color",
  884. "r": 255,
  885. "g": 255,
  886. "b": 255,
  887. "a": 255
  888. },
  889. "_cascadeOpacityEnabled": true,
  890. "_anchorPoint": {
  891. "__type__": "cc.Vec2",
  892. "x": 0,
  893. "y": 0.5
  894. },
  895. "_contentSize": {
  896. "__type__": "cc.Size",
  897. "width": 0,
  898. "height": 40
  899. },
  900. "_rotationX": 0,
  901. "_rotationY": 0,
  902. "_scaleX": 1,
  903. "_scaleY": 1,
  904. "_position": {
  905. "__type__": "cc.Vec2",
  906. "x": -248.50000000000006,
  907. "y": 0
  908. },
  909. "_skewX": 0,
  910. "_skewY": 0,
  911. "_localZOrder": 0,
  912. "_globalZOrder": 0,
  913. "_opacityModifyRGB": false,
  914. "groupIndex": 0
  915. },
  916. {
  917. "__type__": "cc.Sprite",
  918. "_name": "",
  919. "_objFlags": 0,
  920. "node": {
  921. "__id__": 26
  922. },
  923. "_enabled": true,
  924. "_spriteFrame": {
  925. "__uuid__": "da5f315a-649a-45f2-9e9f-e84ffaca2a7d"
  926. },
  927. "_type": 2,
  928. "_sizeMode": 0,
  929. "_fillType": 0,
  930. "_fillCenter": {
  931. "__type__": "cc.Vec2",
  932. "x": 0,
  933. "y": 0
  934. },
  935. "_fillStart": 0,
  936. "_fillRange": 0,
  937. "_isTrimmedMode": true,
  938. "_srcBlendFactor": 770,
  939. "_dstBlendFactor": 771,
  940. "_atlas": null
  941. },
  942. {
  943. "__type__": "cc.PrefabInfo",
  944. "root": {
  945. "__id__": 1
  946. },
  947. "asset": {
  948. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  949. },
  950. "fileId": "c4cesPehpKYJ7jPMtaZ3ZP",
  951. "sync": false
  952. },
  953. {
  954. "__type__": "cc.Node",
  955. "_name": "New Layout",
  956. "_objFlags": 0,
  957. "_parent": {
  958. "__id__": 25
  959. },
  960. "_children": [
  961. {
  962. "__id__": 30
  963. },
  964. {
  965. "__id__": 33
  966. }
  967. ],
  968. "_tag": -1,
  969. "_active": true,
  970. "_components": [
  971. {
  972. "__id__": 37
  973. }
  974. ],
  975. "_prefab": {
  976. "__id__": 38
  977. },
  978. "_id": "",
  979. "_opacity": 255,
  980. "_color": {
  981. "__type__": "cc.Color",
  982. "r": 167,
  983. "g": 167,
  984. "b": 167,
  985. "a": 255
  986. },
  987. "_cascadeOpacityEnabled": true,
  988. "_anchorPoint": {
  989. "__type__": "cc.Vec2",
  990. "x": 0.5,
  991. "y": 0.5
  992. },
  993. "_contentSize": {
  994. "__type__": "cc.Size",
  995. "width": 32,
  996. "height": 40
  997. },
  998. "_rotationX": 0,
  999. "_rotationY": 0,
  1000. "_scaleX": 1,
  1001. "_scaleY": 1,
  1002. "_position": {
  1003. "__type__": "cc.Vec2",
  1004. "x": -5.684341886080802e-14,
  1005. "y": 0
  1006. },
  1007. "_skewX": 0,
  1008. "_skewY": 0,
  1009. "_localZOrder": 0,
  1010. "_globalZOrder": 0,
  1011. "_opacityModifyRGB": false,
  1012. "groupIndex": 0
  1013. },
  1014. {
  1015. "__type__": "cc.Node",
  1016. "_name": "New Sprite",
  1017. "_objFlags": 0,
  1018. "_parent": {
  1019. "__id__": 29
  1020. },
  1021. "_children": [],
  1022. "_tag": -1,
  1023. "_active": true,
  1024. "_components": [
  1025. {
  1026. "__id__": 31
  1027. }
  1028. ],
  1029. "_prefab": {
  1030. "__id__": 32
  1031. },
  1032. "_id": "",
  1033. "_opacity": 255,
  1034. "_color": {
  1035. "__type__": "cc.Color",
  1036. "r": 255,
  1037. "g": 255,
  1038. "b": 255,
  1039. "a": 255
  1040. },
  1041. "_cascadeOpacityEnabled": true,
  1042. "_anchorPoint": {
  1043. "__type__": "cc.Vec2",
  1044. "x": 0.5,
  1045. "y": 0.5
  1046. },
  1047. "_contentSize": {
  1048. "__type__": "cc.Size",
  1049. "width": 30,
  1050. "height": 30
  1051. },
  1052. "_rotationX": 0,
  1053. "_rotationY": 0,
  1054. "_scaleX": 1,
  1055. "_scaleY": 1,
  1056. "_position": {
  1057. "__type__": "cc.Vec2",
  1058. "x": -1,
  1059. "y": 0
  1060. },
  1061. "_skewX": 0,
  1062. "_skewY": 0,
  1063. "_localZOrder": 0,
  1064. "_globalZOrder": 0,
  1065. "_opacityModifyRGB": false,
  1066. "groupIndex": 0
  1067. },
  1068. {
  1069. "__type__": "cc.Sprite",
  1070. "_name": "",
  1071. "_objFlags": 0,
  1072. "node": {
  1073. "__id__": 30
  1074. },
  1075. "_enabled": true,
  1076. "_spriteFrame": {
  1077. "__uuid__": "8d0d6dd8-e66f-4bcd-b58c-cb1f3201c4db"
  1078. },
  1079. "_type": 0,
  1080. "_sizeMode": 0,
  1081. "_fillType": 0,
  1082. "_fillCenter": {
  1083. "__type__": "cc.Vec2",
  1084. "x": 0,
  1085. "y": 0
  1086. },
  1087. "_fillStart": 0,
  1088. "_fillRange": 0,
  1089. "_isTrimmedMode": true,
  1090. "_srcBlendFactor": 770,
  1091. "_dstBlendFactor": 771,
  1092. "_atlas": null
  1093. },
  1094. {
  1095. "__type__": "cc.PrefabInfo",
  1096. "root": {
  1097. "__id__": 1
  1098. },
  1099. "asset": {
  1100. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1101. },
  1102. "fileId": "40odjqDHJF+7bXyjXy4dcq",
  1103. "sync": false
  1104. },
  1105. {
  1106. "__type__": "cc.Node",
  1107. "_name": "label",
  1108. "_objFlags": 0,
  1109. "_parent": {
  1110. "__id__": 29
  1111. },
  1112. "_children": [],
  1113. "_tag": -1,
  1114. "_active": true,
  1115. "_components": [
  1116. {
  1117. "__id__": 34
  1118. },
  1119. {
  1120. "__id__": 35
  1121. }
  1122. ],
  1123. "_prefab": {
  1124. "__id__": 36
  1125. },
  1126. "_id": "",
  1127. "_opacity": 255,
  1128. "_color": {
  1129. "__type__": "cc.Color",
  1130. "r": 255,
  1131. "g": 255,
  1132. "b": 255,
  1133. "a": 255
  1134. },
  1135. "_cascadeOpacityEnabled": true,
  1136. "_anchorPoint": {
  1137. "__type__": "cc.Vec2",
  1138. "x": 0.5,
  1139. "y": 0.5
  1140. },
  1141. "_contentSize": {
  1142. "__type__": "cc.Size",
  1143. "width": 2,
  1144. "height": 40
  1145. },
  1146. "_rotationX": 0,
  1147. "_rotationY": 0,
  1148. "_scaleX": 1,
  1149. "_scaleY": 1,
  1150. "_position": {
  1151. "__type__": "cc.Vec2",
  1152. "x": 15,
  1153. "y": 0
  1154. },
  1155. "_skewX": 0,
  1156. "_skewY": 0,
  1157. "_localZOrder": 0,
  1158. "_globalZOrder": 0,
  1159. "_opacityModifyRGB": false,
  1160. "groupIndex": 0
  1161. },
  1162. {
  1163. "__type__": "cc.Label",
  1164. "_name": "",
  1165. "_objFlags": 0,
  1166. "node": {
  1167. "__id__": 33
  1168. },
  1169. "_enabled": true,
  1170. "_useOriginalSize": false,
  1171. "_actualFontSize": 30,
  1172. "_fontSize": 30,
  1173. "_lineHeight": 40,
  1174. "_enableWrapText": true,
  1175. "_N$file": null,
  1176. "_isSystemFontUsed": true,
  1177. "_spacingX": 0,
  1178. "_N$string": "",
  1179. "_N$horizontalAlign": 1,
  1180. "_N$verticalAlign": 1,
  1181. "_N$fontFamily": "Arial",
  1182. "_N$overflow": 0
  1183. },
  1184. {
  1185. "__type__": "cc.LabelOutline",
  1186. "_name": "",
  1187. "_objFlags": 0,
  1188. "node": {
  1189. "__id__": 33
  1190. },
  1191. "_enabled": true,
  1192. "_color": {
  1193. "__type__": "cc.Color",
  1194. "r": 255,
  1195. "g": 255,
  1196. "b": 255,
  1197. "a": 255
  1198. },
  1199. "_width": 1
  1200. },
  1201. {
  1202. "__type__": "cc.PrefabInfo",
  1203. "root": {
  1204. "__id__": 1
  1205. },
  1206. "asset": {
  1207. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1208. },
  1209. "fileId": "30nvuGZUZDHqoaRrF1VJLC",
  1210. "sync": false
  1211. },
  1212. {
  1213. "__type__": "cc.Layout",
  1214. "_name": "",
  1215. "_objFlags": 0,
  1216. "node": {
  1217. "__id__": 29
  1218. },
  1219. "_enabled": true,
  1220. "_layoutSize": {
  1221. "__type__": "cc.Size",
  1222. "width": 32,
  1223. "height": 40
  1224. },
  1225. "_resize": 1,
  1226. "_N$layoutType": 1,
  1227. "_N$padding": 0,
  1228. "_N$cellSize": {
  1229. "__type__": "cc.Size",
  1230. "width": 40,
  1231. "height": 40
  1232. },
  1233. "_N$startAxis": 0,
  1234. "_N$paddingLeft": 0,
  1235. "_N$paddingRight": 0,
  1236. "_N$paddingTop": 0,
  1237. "_N$paddingBottom": 0,
  1238. "_N$spacingX": 0,
  1239. "_N$spacingY": 0,
  1240. "_N$verticalDirection": 1,
  1241. "_N$horizontalDirection": 0
  1242. },
  1243. {
  1244. "__type__": "cc.PrefabInfo",
  1245. "root": {
  1246. "__id__": 1
  1247. },
  1248. "asset": {
  1249. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1250. },
  1251. "fileId": "88kdnzxddG3IAtc2APxopJ",
  1252. "sync": false
  1253. },
  1254. {
  1255. "__type__": "cc.Sprite",
  1256. "_name": "",
  1257. "_objFlags": 0,
  1258. "node": {
  1259. "__id__": 25
  1260. },
  1261. "_enabled": true,
  1262. "_spriteFrame": {
  1263. "__uuid__": "7cf885b5-a301-4440-b0ef-968cc98aee2e"
  1264. },
  1265. "_type": 1,
  1266. "_sizeMode": 1,
  1267. "_fillType": 0,
  1268. "_fillCenter": {
  1269. "__type__": "cc.Vec2",
  1270. "x": 0,
  1271. "y": 0
  1272. },
  1273. "_fillStart": 0,
  1274. "_fillRange": 0,
  1275. "_isTrimmedMode": true,
  1276. "_srcBlendFactor": 770,
  1277. "_dstBlendFactor": 771,
  1278. "_atlas": null
  1279. },
  1280. {
  1281. "__type__": "cc.ProgressBar",
  1282. "_name": "",
  1283. "_objFlags": 0,
  1284. "node": {
  1285. "__id__": 25
  1286. },
  1287. "_enabled": true,
  1288. "_N$totalLength": 497,
  1289. "_N$barSprite": {
  1290. "__id__": 27
  1291. },
  1292. "_N$mode": 0,
  1293. "_N$progress": 0,
  1294. "_N$reverse": false
  1295. },
  1296. {
  1297. "__type__": "cc.PrefabInfo",
  1298. "root": {
  1299. "__id__": 1
  1300. },
  1301. "asset": {
  1302. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1303. },
  1304. "fileId": "d142bNYhhIOpk7Qylxa1Hq",
  1305. "sync": false
  1306. },
  1307. {
  1308. "__type__": "cc.Node",
  1309. "_name": "gold_icon",
  1310. "_objFlags": 0,
  1311. "_parent": {
  1312. "__id__": 18
  1313. },
  1314. "_children": [],
  1315. "_tag": -1,
  1316. "_active": true,
  1317. "_components": [
  1318. {
  1319. "__id__": 43
  1320. }
  1321. ],
  1322. "_prefab": {
  1323. "__id__": 44
  1324. },
  1325. "_id": "",
  1326. "_opacity": 255,
  1327. "_color": {
  1328. "__type__": "cc.Color",
  1329. "r": 255,
  1330. "g": 255,
  1331. "b": 255,
  1332. "a": 255
  1333. },
  1334. "_cascadeOpacityEnabled": true,
  1335. "_anchorPoint": {
  1336. "__type__": "cc.Vec2",
  1337. "x": 0.5,
  1338. "y": 0.5
  1339. },
  1340. "_contentSize": {
  1341. "__type__": "cc.Size",
  1342. "width": 30,
  1343. "height": 30
  1344. },
  1345. "_rotationX": 0,
  1346. "_rotationY": 0,
  1347. "_scaleX": 1,
  1348. "_scaleY": 1,
  1349. "_position": {
  1350. "__type__": "cc.Vec2",
  1351. "x": -222,
  1352. "y": -202
  1353. },
  1354. "_skewX": 0,
  1355. "_skewY": 0,
  1356. "_localZOrder": 0,
  1357. "_globalZOrder": 0,
  1358. "_opacityModifyRGB": false,
  1359. "groupIndex": 0
  1360. },
  1361. {
  1362. "__type__": "cc.Sprite",
  1363. "_name": "",
  1364. "_objFlags": 0,
  1365. "node": {
  1366. "__id__": 42
  1367. },
  1368. "_enabled": true,
  1369. "_spriteFrame": {
  1370. "__uuid__": "8d0d6dd8-e66f-4bcd-b58c-cb1f3201c4db"
  1371. },
  1372. "_type": 0,
  1373. "_sizeMode": 0,
  1374. "_fillType": 0,
  1375. "_fillCenter": {
  1376. "__type__": "cc.Vec2",
  1377. "x": 0,
  1378. "y": 0
  1379. },
  1380. "_fillStart": 0,
  1381. "_fillRange": 0,
  1382. "_isTrimmedMode": true,
  1383. "_srcBlendFactor": 770,
  1384. "_dstBlendFactor": 771,
  1385. "_atlas": null
  1386. },
  1387. {
  1388. "__type__": "cc.PrefabInfo",
  1389. "root": {
  1390. "__id__": 1
  1391. },
  1392. "asset": {
  1393. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1394. },
  1395. "fileId": "48Lst1mDdCbLMgw9E0IR8U",
  1396. "sync": false
  1397. },
  1398. {
  1399. "__type__": "cc.Node",
  1400. "_name": "total_speed_label",
  1401. "_objFlags": 0,
  1402. "_parent": {
  1403. "__id__": 18
  1404. },
  1405. "_children": [],
  1406. "_tag": -1,
  1407. "_active": true,
  1408. "_components": [
  1409. {
  1410. "__id__": 46
  1411. },
  1412. {
  1413. "__id__": 47
  1414. }
  1415. ],
  1416. "_prefab": {
  1417. "__id__": 48
  1418. },
  1419. "_id": "",
  1420. "_opacity": 255,
  1421. "_color": {
  1422. "__type__": "cc.Color",
  1423. "r": 255,
  1424. "g": 255,
  1425. "b": 255,
  1426. "a": 255
  1427. },
  1428. "_cascadeOpacityEnabled": true,
  1429. "_anchorPoint": {
  1430. "__type__": "cc.Vec2",
  1431. "x": 0,
  1432. "y": 0.5
  1433. },
  1434. "_contentSize": {
  1435. "__type__": "cc.Size",
  1436. "width": 39,
  1437. "height": 30
  1438. },
  1439. "_rotationX": 0,
  1440. "_rotationY": 0,
  1441. "_scaleX": 1,
  1442. "_scaleY": 1,
  1443. "_position": {
  1444. "__type__": "cc.Vec2",
  1445. "x": -201.2,
  1446. "y": -202
  1447. },
  1448. "_skewX": 0,
  1449. "_skewY": 0,
  1450. "_localZOrder": 0,
  1451. "_globalZOrder": 0,
  1452. "_opacityModifyRGB": false,
  1453. "groupIndex": 0
  1454. },
  1455. {
  1456. "__type__": "cc.Label",
  1457. "_name": "",
  1458. "_objFlags": 0,
  1459. "node": {
  1460. "__id__": 45
  1461. },
  1462. "_enabled": true,
  1463. "_useOriginalSize": false,
  1464. "_actualFontSize": 20,
  1465. "_fontSize": 20,
  1466. "_lineHeight": 30,
  1467. "_enableWrapText": true,
  1468. "_N$file": null,
  1469. "_isSystemFontUsed": true,
  1470. "_spacingX": 0,
  1471. "_N$string": "0/天",
  1472. "_N$horizontalAlign": 1,
  1473. "_N$verticalAlign": 1,
  1474. "_N$fontFamily": "Arial",
  1475. "_N$overflow": 0
  1476. },
  1477. {
  1478. "__type__": "cc.LabelOutline",
  1479. "_name": "",
  1480. "_objFlags": 0,
  1481. "node": {
  1482. "__id__": 45
  1483. },
  1484. "_enabled": true,
  1485. "_color": {
  1486. "__type__": "cc.Color",
  1487. "r": 44,
  1488. "g": 44,
  1489. "b": 44,
  1490. "a": 255
  1491. },
  1492. "_width": 1
  1493. },
  1494. {
  1495. "__type__": "cc.PrefabInfo",
  1496. "root": {
  1497. "__id__": 1
  1498. },
  1499. "asset": {
  1500. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1501. },
  1502. "fileId": "a797TjD+JOE48gNC+2XvF1",
  1503. "sync": false
  1504. },
  1505. {
  1506. "__type__": "cc.Node",
  1507. "_name": "income_limit_label",
  1508. "_objFlags": 0,
  1509. "_parent": {
  1510. "__id__": 18
  1511. },
  1512. "_children": [],
  1513. "_tag": -1,
  1514. "_active": true,
  1515. "_components": [
  1516. {
  1517. "__id__": 50
  1518. },
  1519. {
  1520. "__id__": 51
  1521. }
  1522. ],
  1523. "_prefab": {
  1524. "__id__": 52
  1525. },
  1526. "_id": "",
  1527. "_opacity": 255,
  1528. "_color": {
  1529. "__type__": "cc.Color",
  1530. "r": 255,
  1531. "g": 255,
  1532. "b": 255,
  1533. "a": 255
  1534. },
  1535. "_cascadeOpacityEnabled": true,
  1536. "_anchorPoint": {
  1537. "__type__": "cc.Vec2",
  1538. "x": 1,
  1539. "y": 0.5
  1540. },
  1541. "_contentSize": {
  1542. "__type__": "cc.Size",
  1543. "width": 13,
  1544. "height": 30
  1545. },
  1546. "_rotationX": 0,
  1547. "_rotationY": 0,
  1548. "_scaleX": 1,
  1549. "_scaleY": 1,
  1550. "_position": {
  1551. "__type__": "cc.Vec2",
  1552. "x": 247.2,
  1553. "y": -202
  1554. },
  1555. "_skewX": 0,
  1556. "_skewY": 0,
  1557. "_localZOrder": 0,
  1558. "_globalZOrder": 0,
  1559. "_opacityModifyRGB": false,
  1560. "groupIndex": 0
  1561. },
  1562. {
  1563. "__type__": "cc.Label",
  1564. "_name": "",
  1565. "_objFlags": 0,
  1566. "node": {
  1567. "__id__": 49
  1568. },
  1569. "_enabled": true,
  1570. "_useOriginalSize": false,
  1571. "_actualFontSize": 20,
  1572. "_fontSize": 20,
  1573. "_lineHeight": 30,
  1574. "_enableWrapText": true,
  1575. "_N$file": null,
  1576. "_isSystemFontUsed": true,
  1577. "_spacingX": 0,
  1578. "_N$string": "0",
  1579. "_N$horizontalAlign": 1,
  1580. "_N$verticalAlign": 1,
  1581. "_N$fontFamily": "Arial",
  1582. "_N$overflow": 0
  1583. },
  1584. {
  1585. "__type__": "cc.LabelOutline",
  1586. "_name": "",
  1587. "_objFlags": 0,
  1588. "node": {
  1589. "__id__": 49
  1590. },
  1591. "_enabled": true,
  1592. "_color": {
  1593. "__type__": "cc.Color",
  1594. "r": 44,
  1595. "g": 44,
  1596. "b": 44,
  1597. "a": 255
  1598. },
  1599. "_width": 1
  1600. },
  1601. {
  1602. "__type__": "cc.PrefabInfo",
  1603. "root": {
  1604. "__id__": 1
  1605. },
  1606. "asset": {
  1607. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1608. },
  1609. "fileId": "9dU5i1SG5Lm75MX98Sd5Z9",
  1610. "sync": false
  1611. },
  1612. {
  1613. "__type__": "cc.Sprite",
  1614. "_name": "",
  1615. "_objFlags": 0,
  1616. "node": {
  1617. "__id__": 18
  1618. },
  1619. "_enabled": true,
  1620. "_spriteFrame": null,
  1621. "_type": 0,
  1622. "_sizeMode": 1,
  1623. "_fillType": 0,
  1624. "_fillCenter": {
  1625. "__type__": "cc.Vec2",
  1626. "x": 0,
  1627. "y": 0
  1628. },
  1629. "_fillStart": 0,
  1630. "_fillRange": 0,
  1631. "_isTrimmedMode": true,
  1632. "_srcBlendFactor": 770,
  1633. "_dstBlendFactor": 771,
  1634. "_atlas": null
  1635. },
  1636. {
  1637. "__type__": "cc.Widget",
  1638. "_name": "",
  1639. "_objFlags": 0,
  1640. "node": {
  1641. "__id__": 18
  1642. },
  1643. "_enabled": true,
  1644. "alignMode": 1,
  1645. "_target": null,
  1646. "_alignFlags": 4,
  1647. "_left": 0,
  1648. "_right": 0,
  1649. "_top": 0,
  1650. "_bottom": 20,
  1651. "_verticalCenter": 0,
  1652. "_horizontalCenter": 0,
  1653. "_isAbsLeft": true,
  1654. "_isAbsRight": true,
  1655. "_isAbsTop": true,
  1656. "_isAbsBottom": true,
  1657. "_isAbsHorizontalCenter": true,
  1658. "_isAbsVerticalCenter": true,
  1659. "_originalWidth": 0,
  1660. "_originalHeight": 0
  1661. },
  1662. {
  1663. "__type__": "cc.PrefabInfo",
  1664. "root": {
  1665. "__id__": 1
  1666. },
  1667. "asset": {
  1668. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1669. },
  1670. "fileId": "4dFrcsU7lOcYxk0nMvBBlx",
  1671. "sync": false
  1672. },
  1673. {
  1674. "__type__": "cc.Node",
  1675. "_name": "back_button",
  1676. "_objFlags": 0,
  1677. "_parent": {
  1678. "__id__": 1
  1679. },
  1680. "_children": [],
  1681. "_tag": -1,
  1682. "_active": true,
  1683. "_components": [
  1684. {
  1685. "__id__": 57
  1686. },
  1687. {
  1688. "__id__": 58
  1689. },
  1690. {
  1691. "__id__": 60
  1692. },
  1693. {
  1694. "__id__": 61
  1695. }
  1696. ],
  1697. "_prefab": {
  1698. "__id__": 62
  1699. },
  1700. "_id": "",
  1701. "_opacity": 255,
  1702. "_color": {
  1703. "__type__": "cc.Color",
  1704. "r": 255,
  1705. "g": 255,
  1706. "b": 255,
  1707. "a": 255
  1708. },
  1709. "_cascadeOpacityEnabled": true,
  1710. "_anchorPoint": {
  1711. "__type__": "cc.Vec2",
  1712. "x": 0.5,
  1713. "y": 0.5
  1714. },
  1715. "_contentSize": {
  1716. "__type__": "cc.Size",
  1717. "width": 108,
  1718. "height": 80
  1719. },
  1720. "_rotationX": 0,
  1721. "_rotationY": 0,
  1722. "_scaleX": 1,
  1723. "_scaleY": 1,
  1724. "_position": {
  1725. "__type__": "cc.Vec2",
  1726. "x": -323.5,
  1727. "y": -467
  1728. },
  1729. "_skewX": 0,
  1730. "_skewY": 0,
  1731. "_localZOrder": 0,
  1732. "_globalZOrder": 0,
  1733. "_opacityModifyRGB": false,
  1734. "groupIndex": 0
  1735. },
  1736. {
  1737. "__type__": "cc.Sprite",
  1738. "_name": "",
  1739. "_objFlags": 0,
  1740. "node": {
  1741. "__id__": 56
  1742. },
  1743. "_enabled": true,
  1744. "_spriteFrame": {
  1745. "__uuid__": "2213aa27-c55d-4625-81f3-058fc5a87b25"
  1746. },
  1747. "_type": 0,
  1748. "_sizeMode": 1,
  1749. "_fillType": 0,
  1750. "_fillCenter": {
  1751. "__type__": "cc.Vec2",
  1752. "x": 0,
  1753. "y": 0
  1754. },
  1755. "_fillStart": 0,
  1756. "_fillRange": 0,
  1757. "_isTrimmedMode": true,
  1758. "_srcBlendFactor": 770,
  1759. "_dstBlendFactor": 771,
  1760. "_atlas": null
  1761. },
  1762. {
  1763. "__type__": "cc.Button",
  1764. "_name": "",
  1765. "_objFlags": 0,
  1766. "node": {
  1767. "__id__": 56
  1768. },
  1769. "_enabled": true,
  1770. "transition": 0,
  1771. "pressedColor": {
  1772. "__type__": "cc.Color",
  1773. "r": 211,
  1774. "g": 211,
  1775. "b": 211,
  1776. "a": 255
  1777. },
  1778. "hoverColor": {
  1779. "__type__": "cc.Color",
  1780. "r": 255,
  1781. "g": 255,
  1782. "b": 255,
  1783. "a": 255
  1784. },
  1785. "duration": 0.1,
  1786. "zoomScale": 1.2,
  1787. "clickEvents": [
  1788. {
  1789. "__id__": 59
  1790. }
  1791. ],
  1792. "_N$interactable": true,
  1793. "_N$enableAutoGrayEffect": false,
  1794. "_N$normalColor": {
  1795. "__type__": "cc.Color",
  1796. "r": 214,
  1797. "g": 214,
  1798. "b": 214,
  1799. "a": 255
  1800. },
  1801. "_N$disabledColor": {
  1802. "__type__": "cc.Color",
  1803. "r": 124,
  1804. "g": 124,
  1805. "b": 124,
  1806. "a": 255
  1807. },
  1808. "_N$normalSprite": null,
  1809. "_N$pressedSprite": null,
  1810. "pressedSprite": null,
  1811. "_N$hoverSprite": null,
  1812. "hoverSprite": null,
  1813. "_N$disabledSprite": null,
  1814. "_N$target": {
  1815. "__id__": 56
  1816. }
  1817. },
  1818. {
  1819. "__type__": "cc.ClickEvent",
  1820. "target": {
  1821. "__id__": 1
  1822. },
  1823. "component": "CityMapCtrl",
  1824. "handler": "close",
  1825. "customEventData": ""
  1826. },
  1827. {
  1828. "__type__": "9f4d2FyZDFEWaJD6/7b9oSz",
  1829. "_name": "",
  1830. "_objFlags": 0,
  1831. "node": {
  1832. "__id__": 56
  1833. },
  1834. "_enabled": true
  1835. },
  1836. {
  1837. "__type__": "cc.Widget",
  1838. "_name": "",
  1839. "_objFlags": 0,
  1840. "node": {
  1841. "__id__": 56
  1842. },
  1843. "_enabled": true,
  1844. "alignMode": 1,
  1845. "_target": null,
  1846. "_alignFlags": 8,
  1847. "_left": -2.5,
  1848. "_right": 0,
  1849. "_top": 0,
  1850. "_bottom": 0,
  1851. "_verticalCenter": 0,
  1852. "_horizontalCenter": 0,
  1853. "_isAbsLeft": true,
  1854. "_isAbsRight": true,
  1855. "_isAbsTop": true,
  1856. "_isAbsBottom": true,
  1857. "_isAbsHorizontalCenter": true,
  1858. "_isAbsVerticalCenter": true,
  1859. "_originalWidth": 0,
  1860. "_originalHeight": 0
  1861. },
  1862. {
  1863. "__type__": "cc.PrefabInfo",
  1864. "root": {
  1865. "__id__": 1
  1866. },
  1867. "asset": {
  1868. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1869. },
  1870. "fileId": "e2Fz6RODlGNqpZSJt9eVkg",
  1871. "sync": false
  1872. },
  1873. {
  1874. "__type__": "cc.Node",
  1875. "_name": "home_white_cover",
  1876. "_objFlags": 0,
  1877. "_parent": {
  1878. "__id__": 1
  1879. },
  1880. "_children": [],
  1881. "_tag": -1,
  1882. "_active": true,
  1883. "_components": [
  1884. {
  1885. "__id__": 64
  1886. },
  1887. {
  1888. "__id__": 65
  1889. }
  1890. ],
  1891. "_prefab": {
  1892. "__id__": 66
  1893. },
  1894. "_id": "",
  1895. "_opacity": 255,
  1896. "_color": {
  1897. "__type__": "cc.Color",
  1898. "r": 255,
  1899. "g": 255,
  1900. "b": 255,
  1901. "a": 255
  1902. },
  1903. "_cascadeOpacityEnabled": true,
  1904. "_anchorPoint": {
  1905. "__type__": "cc.Vec2",
  1906. "x": 0.5,
  1907. "y": 0.5
  1908. },
  1909. "_contentSize": {
  1910. "__type__": "cc.Size",
  1911. "width": 750,
  1912. "height": 300
  1913. },
  1914. "_rotationX": 0,
  1915. "_rotationY": 0,
  1916. "_scaleX": 1,
  1917. "_scaleY": 1,
  1918. "_position": {
  1919. "__type__": "cc.Vec2",
  1920. "x": 0,
  1921. "y": 517
  1922. },
  1923. "_skewX": 0,
  1924. "_skewY": 0,
  1925. "_localZOrder": 0,
  1926. "_globalZOrder": 0,
  1927. "_opacityModifyRGB": false,
  1928. "groupIndex": 0
  1929. },
  1930. {
  1931. "__type__": "cc.Sprite",
  1932. "_name": "",
  1933. "_objFlags": 0,
  1934. "node": {
  1935. "__id__": 63
  1936. },
  1937. "_enabled": true,
  1938. "_spriteFrame": {
  1939. "__uuid__": "1e53d0b4-89f8-41da-8be4-aa576bf68865"
  1940. },
  1941. "_type": 0,
  1942. "_sizeMode": 0,
  1943. "_fillType": 0,
  1944. "_fillCenter": {
  1945. "__type__": "cc.Vec2",
  1946. "x": 0,
  1947. "y": 0
  1948. },
  1949. "_fillStart": 0,
  1950. "_fillRange": 0,
  1951. "_isTrimmedMode": true,
  1952. "_srcBlendFactor": 770,
  1953. "_dstBlendFactor": 771,
  1954. "_atlas": null
  1955. },
  1956. {
  1957. "__type__": "cc.Widget",
  1958. "_name": "",
  1959. "_objFlags": 0,
  1960. "node": {
  1961. "__id__": 63
  1962. },
  1963. "_enabled": true,
  1964. "alignMode": 1,
  1965. "_target": null,
  1966. "_alignFlags": 1,
  1967. "_left": 0,
  1968. "_right": 0,
  1969. "_top": 0,
  1970. "_bottom": 0,
  1971. "_verticalCenter": 0,
  1972. "_horizontalCenter": 0,
  1973. "_isAbsLeft": true,
  1974. "_isAbsRight": true,
  1975. "_isAbsTop": true,
  1976. "_isAbsBottom": true,
  1977. "_isAbsHorizontalCenter": true,
  1978. "_isAbsVerticalCenter": true,
  1979. "_originalWidth": 0,
  1980. "_originalHeight": 0
  1981. },
  1982. {
  1983. "__type__": "cc.PrefabInfo",
  1984. "root": {
  1985. "__id__": 1
  1986. },
  1987. "asset": {
  1988. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  1989. },
  1990. "fileId": "4cwRpAZVJFppzecQfe3bwb",
  1991. "sync": false
  1992. },
  1993. {
  1994. "__type__": "cc.Node",
  1995. "_name": "my_money",
  1996. "_objFlags": 0,
  1997. "_parent": {
  1998. "__id__": 1
  1999. },
  2000. "_children": [
  2001. {
  2002. "__id__": 68
  2003. },
  2004. {
  2005. "__id__": 73
  2006. }
  2007. ],
  2008. "_tag": -1,
  2009. "_active": true,
  2010. "_components": [
  2011. {
  2012. "__id__": 77
  2013. }
  2014. ],
  2015. "_prefab": {
  2016. "__id__": 78
  2017. },
  2018. "_id": "",
  2019. "_opacity": 255,
  2020. "_color": {
  2021. "__type__": "cc.Color",
  2022. "r": 255,
  2023. "g": 255,
  2024. "b": 255,
  2025. "a": 255
  2026. },
  2027. "_cascadeOpacityEnabled": true,
  2028. "_anchorPoint": {
  2029. "__type__": "cc.Vec2",
  2030. "x": 0.5,
  2031. "y": 0.5
  2032. },
  2033. "_contentSize": {
  2034. "__type__": "cc.Size",
  2035. "width": 70,
  2036. "height": 80
  2037. },
  2038. "_rotationX": 0,
  2039. "_rotationY": 0,
  2040. "_scaleX": 1,
  2041. "_scaleY": 1,
  2042. "_position": {
  2043. "__type__": "cc.Vec2",
  2044. "x": 0,
  2045. "y": 577
  2046. },
  2047. "_skewX": 0,
  2048. "_skewY": 0,
  2049. "_localZOrder": 0,
  2050. "_globalZOrder": 0,
  2051. "_opacityModifyRGB": false,
  2052. "groupIndex": 0
  2053. },
  2054. {
  2055. "__type__": "cc.Node",
  2056. "_name": "coinNode",
  2057. "_objFlags": 0,
  2058. "_parent": {
  2059. "__id__": 67
  2060. },
  2061. "_children": [
  2062. {
  2063. "__id__": 69
  2064. }
  2065. ],
  2066. "_tag": -1,
  2067. "_active": true,
  2068. "_components": [],
  2069. "_prefab": {
  2070. "__id__": 72
  2071. },
  2072. "_id": "",
  2073. "_opacity": 255,
  2074. "_color": {
  2075. "__type__": "cc.Color",
  2076. "r": 255,
  2077. "g": 255,
  2078. "b": 255,
  2079. "a": 255
  2080. },
  2081. "_cascadeOpacityEnabled": true,
  2082. "_anchorPoint": {
  2083. "__type__": "cc.Vec2",
  2084. "x": 0.5,
  2085. "y": 0.5
  2086. },
  2087. "_contentSize": {
  2088. "__type__": "cc.Size",
  2089. "width": 54,
  2090. "height": 54
  2091. },
  2092. "_rotationX": 0,
  2093. "_rotationY": 0,
  2094. "_scaleX": 1,
  2095. "_scaleY": 1,
  2096. "_position": {
  2097. "__type__": "cc.Vec2",
  2098. "x": -8,
  2099. "y": 0
  2100. },
  2101. "_skewX": 0,
  2102. "_skewY": 0,
  2103. "_localZOrder": 0,
  2104. "_globalZOrder": 0,
  2105. "_opacityModifyRGB": false,
  2106. "groupIndex": 0
  2107. },
  2108. {
  2109. "__type__": "cc.Node",
  2110. "_name": "levelHome_coin",
  2111. "_objFlags": 0,
  2112. "_parent": {
  2113. "__id__": 68
  2114. },
  2115. "_children": [],
  2116. "_tag": -1,
  2117. "_active": true,
  2118. "_components": [
  2119. {
  2120. "__id__": 70
  2121. }
  2122. ],
  2123. "_prefab": {
  2124. "__id__": 71
  2125. },
  2126. "_id": "",
  2127. "_opacity": 255,
  2128. "_color": {
  2129. "__type__": "cc.Color",
  2130. "r": 255,
  2131. "g": 255,
  2132. "b": 255,
  2133. "a": 255
  2134. },
  2135. "_cascadeOpacityEnabled": true,
  2136. "_anchorPoint": {
  2137. "__type__": "cc.Vec2",
  2138. "x": 0.5,
  2139. "y": 0.5
  2140. },
  2141. "_contentSize": {
  2142. "__type__": "cc.Size",
  2143. "width": 0,
  2144. "height": 0
  2145. },
  2146. "_rotationX": 0,
  2147. "_rotationY": 0,
  2148. "_scaleX": 1,
  2149. "_scaleY": 1,
  2150. "_position": {
  2151. "__type__": "cc.Vec2",
  2152. "x": 0.1,
  2153. "y": -1.5
  2154. },
  2155. "_skewX": 0,
  2156. "_skewY": 0,
  2157. "_localZOrder": 0,
  2158. "_globalZOrder": 0,
  2159. "_opacityModifyRGB": false,
  2160. "groupIndex": 0
  2161. },
  2162. {
  2163. "__type__": "sp.Skeleton",
  2164. "_name": "",
  2165. "_objFlags": 0,
  2166. "node": {
  2167. "__id__": 69
  2168. },
  2169. "_enabled": true,
  2170. "_paused": false,
  2171. "defaultSkin": "",
  2172. "defaultAnimation": "jinbi_huoqu",
  2173. "loop": true,
  2174. "_premultipliedAlpha": true,
  2175. "_N$skeletonData": {
  2176. "__uuid__": "9a421187-b4ef-49d8-b5fb-e0f134f87f4e"
  2177. },
  2178. "_N$timeScale": 1,
  2179. "_N$debugSlots": false,
  2180. "_N$debugBones": false
  2181. },
  2182. {
  2183. "__type__": "cc.PrefabInfo",
  2184. "root": {
  2185. "__id__": 1
  2186. },
  2187. "asset": {
  2188. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2189. },
  2190. "fileId": "f3vv8qnz9G7a14IhTH9iyO",
  2191. "sync": false
  2192. },
  2193. {
  2194. "__type__": "cc.PrefabInfo",
  2195. "root": {
  2196. "__id__": 1
  2197. },
  2198. "asset": {
  2199. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2200. },
  2201. "fileId": "72yz8n44BJirNHeheGl6r6",
  2202. "sync": false
  2203. },
  2204. {
  2205. "__type__": "cc.Node",
  2206. "_name": "coinLabel",
  2207. "_objFlags": 0,
  2208. "_parent": {
  2209. "__id__": 67
  2210. },
  2211. "_children": [],
  2212. "_tag": -1,
  2213. "_active": true,
  2214. "_components": [
  2215. {
  2216. "__id__": 74
  2217. },
  2218. {
  2219. "__id__": 75
  2220. }
  2221. ],
  2222. "_prefab": {
  2223. "__id__": 76
  2224. },
  2225. "_id": "",
  2226. "_opacity": 255,
  2227. "_color": {
  2228. "__type__": "cc.Color",
  2229. "r": 0,
  2230. "g": 146,
  2231. "b": 4,
  2232. "a": 255
  2233. },
  2234. "_cascadeOpacityEnabled": true,
  2235. "_anchorPoint": {
  2236. "__type__": "cc.Vec2",
  2237. "x": 0,
  2238. "y": 0.5
  2239. },
  2240. "_contentSize": {
  2241. "__type__": "cc.Size",
  2242. "width": 6,
  2243. "height": 50
  2244. },
  2245. "_rotationX": 0,
  2246. "_rotationY": 0,
  2247. "_scaleX": 1,
  2248. "_scaleY": 1,
  2249. "_position": {
  2250. "__type__": "cc.Vec2",
  2251. "x": 29,
  2252. "y": 0
  2253. },
  2254. "_skewX": 0,
  2255. "_skewY": 0,
  2256. "_localZOrder": 0,
  2257. "_globalZOrder": 0,
  2258. "_opacityModifyRGB": false,
  2259. "groupIndex": 0
  2260. },
  2261. {
  2262. "__type__": "cc.Label",
  2263. "_name": "",
  2264. "_objFlags": 0,
  2265. "node": {
  2266. "__id__": 73
  2267. },
  2268. "_enabled": true,
  2269. "_useOriginalSize": false,
  2270. "_actualFontSize": 42,
  2271. "_fontSize": 42,
  2272. "_lineHeight": 50,
  2273. "_enableWrapText": true,
  2274. "_N$file": null,
  2275. "_isSystemFontUsed": true,
  2276. "_spacingX": 0,
  2277. "_N$string": "",
  2278. "_N$horizontalAlign": 0,
  2279. "_N$verticalAlign": 0,
  2280. "_N$fontFamily": "Arial",
  2281. "_N$overflow": 0
  2282. },
  2283. {
  2284. "__type__": "cc.LabelOutline",
  2285. "_name": "",
  2286. "_objFlags": 0,
  2287. "node": {
  2288. "__id__": 73
  2289. },
  2290. "_enabled": true,
  2291. "_color": {
  2292. "__type__": "cc.Color",
  2293. "r": 255,
  2294. "g": 255,
  2295. "b": 255,
  2296. "a": 255
  2297. },
  2298. "_width": 3
  2299. },
  2300. {
  2301. "__type__": "cc.PrefabInfo",
  2302. "root": {
  2303. "__id__": 1
  2304. },
  2305. "asset": {
  2306. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2307. },
  2308. "fileId": "20znfrD1pISaehGoOMvA94",
  2309. "sync": false
  2310. },
  2311. {
  2312. "__type__": "cc.Layout",
  2313. "_name": "",
  2314. "_objFlags": 0,
  2315. "node": {
  2316. "__id__": 67
  2317. },
  2318. "_enabled": true,
  2319. "_layoutSize": {
  2320. "__type__": "cc.Size",
  2321. "width": 70,
  2322. "height": 80
  2323. },
  2324. "_resize": 1,
  2325. "_N$layoutType": 1,
  2326. "_N$padding": 0,
  2327. "_N$cellSize": {
  2328. "__type__": "cc.Size",
  2329. "width": 40,
  2330. "height": 40
  2331. },
  2332. "_N$startAxis": 0,
  2333. "_N$paddingLeft": 0,
  2334. "_N$paddingRight": 0,
  2335. "_N$paddingTop": 0,
  2336. "_N$paddingBottom": 0,
  2337. "_N$spacingX": 10,
  2338. "_N$spacingY": 0,
  2339. "_N$verticalDirection": 1,
  2340. "_N$horizontalDirection": 0
  2341. },
  2342. {
  2343. "__type__": "cc.PrefabInfo",
  2344. "root": {
  2345. "__id__": 1
  2346. },
  2347. "asset": {
  2348. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2349. },
  2350. "fileId": "d4RPgHWsFDlZT5YgCbCdWH",
  2351. "sync": false
  2352. },
  2353. {
  2354. "__type__": "cc.Node",
  2355. "_name": "my_compony_info",
  2356. "_objFlags": 0,
  2357. "_parent": {
  2358. "__id__": 1
  2359. },
  2360. "_children": [
  2361. {
  2362. "__id__": 80
  2363. },
  2364. {
  2365. "__id__": 83
  2366. },
  2367. {
  2368. "__id__": 86
  2369. },
  2370. {
  2371. "__id__": 89
  2372. },
  2373. {
  2374. "__id__": 92
  2375. }
  2376. ],
  2377. "_tag": -1,
  2378. "_active": true,
  2379. "_components": [
  2380. {
  2381. "__id__": 95
  2382. }
  2383. ],
  2384. "_prefab": {
  2385. "__id__": 96
  2386. },
  2387. "_id": "",
  2388. "_opacity": 255,
  2389. "_color": {
  2390. "__type__": "cc.Color",
  2391. "r": 255,
  2392. "g": 255,
  2393. "b": 255,
  2394. "a": 255
  2395. },
  2396. "_cascadeOpacityEnabled": true,
  2397. "_anchorPoint": {
  2398. "__type__": "cc.Vec2",
  2399. "x": 0.5,
  2400. "y": 0.5
  2401. },
  2402. "_contentSize": {
  2403. "__type__": "cc.Size",
  2404. "width": 362,
  2405. "height": 171
  2406. },
  2407. "_rotationX": 0,
  2408. "_rotationY": 0,
  2409. "_scaleX": 1,
  2410. "_scaleY": 1,
  2411. "_position": {
  2412. "__type__": "cc.Vec2",
  2413. "x": 186,
  2414. "y": 456
  2415. },
  2416. "_skewX": 0,
  2417. "_skewY": 0,
  2418. "_localZOrder": 0,
  2419. "_globalZOrder": 0,
  2420. "_opacityModifyRGB": false,
  2421. "groupIndex": 0
  2422. },
  2423. {
  2424. "__type__": "cc.Node",
  2425. "_name": "name",
  2426. "_objFlags": 0,
  2427. "_parent": {
  2428. "__id__": 79
  2429. },
  2430. "_children": [],
  2431. "_tag": -1,
  2432. "_active": true,
  2433. "_components": [
  2434. {
  2435. "__id__": 81
  2436. }
  2437. ],
  2438. "_prefab": {
  2439. "__id__": 82
  2440. },
  2441. "_id": "",
  2442. "_opacity": 255,
  2443. "_color": {
  2444. "__type__": "cc.Color",
  2445. "r": 247,
  2446. "g": 152,
  2447. "b": 10,
  2448. "a": 255
  2449. },
  2450. "_cascadeOpacityEnabled": true,
  2451. "_anchorPoint": {
  2452. "__type__": "cc.Vec2",
  2453. "x": 0.5,
  2454. "y": 0.5
  2455. },
  2456. "_contentSize": {
  2457. "__type__": "cc.Size",
  2458. "width": 126,
  2459. "height": 50
  2460. },
  2461. "_rotationX": 0,
  2462. "_rotationY": 0,
  2463. "_scaleX": 1,
  2464. "_scaleY": 1,
  2465. "_position": {
  2466. "__type__": "cc.Vec2",
  2467. "x": 0,
  2468. "y": 50
  2469. },
  2470. "_skewX": 0,
  2471. "_skewY": 0,
  2472. "_localZOrder": 0,
  2473. "_globalZOrder": 0,
  2474. "_opacityModifyRGB": false,
  2475. "groupIndex": 0
  2476. },
  2477. {
  2478. "__type__": "cc.RichText",
  2479. "_name": "",
  2480. "_objFlags": 0,
  2481. "node": {
  2482. "__id__": 80
  2483. },
  2484. "_enabled": true,
  2485. "_N$string": "<outline color=#ffffff width=2><b>赵肆家族</b></outline>",
  2486. "_N$horizontalAlign": 0,
  2487. "_N$fontSize": 30,
  2488. "_N$font": null,
  2489. "_N$maxWidth": 0,
  2490. "_N$lineHeight": 50,
  2491. "_N$imageAtlas": null,
  2492. "_N$handleTouchEvent": true
  2493. },
  2494. {
  2495. "__type__": "cc.PrefabInfo",
  2496. "root": {
  2497. "__id__": 1
  2498. },
  2499. "asset": {
  2500. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2501. },
  2502. "fileId": "51x1zHJrVEAqi48eGay1vv",
  2503. "sync": false
  2504. },
  2505. {
  2506. "__type__": "cc.Node",
  2507. "_name": "current_compony",
  2508. "_objFlags": 0,
  2509. "_parent": {
  2510. "__id__": 79
  2511. },
  2512. "_children": [],
  2513. "_tag": -1,
  2514. "_active": true,
  2515. "_components": [
  2516. {
  2517. "__id__": 84
  2518. }
  2519. ],
  2520. "_prefab": {
  2521. "__id__": 85
  2522. },
  2523. "_id": "",
  2524. "_opacity": 255,
  2525. "_color": {
  2526. "__type__": "cc.Color",
  2527. "r": 82,
  2528. "g": 67,
  2529. "b": 64,
  2530. "a": 255
  2531. },
  2532. "_cascadeOpacityEnabled": true,
  2533. "_anchorPoint": {
  2534. "__type__": "cc.Vec2",
  2535. "x": 0.5,
  2536. "y": 0.5
  2537. },
  2538. "_contentSize": {
  2539. "__type__": "cc.Size",
  2540. "width": 204,
  2541. "height": 40
  2542. },
  2543. "_rotationX": 0,
  2544. "_rotationY": 0,
  2545. "_scaleX": 1,
  2546. "_scaleY": 1,
  2547. "_position": {
  2548. "__type__": "cc.Vec2",
  2549. "x": 0,
  2550. "y": 0
  2551. },
  2552. "_skewX": 0,
  2553. "_skewY": 0,
  2554. "_localZOrder": 0,
  2555. "_globalZOrder": 0,
  2556. "_opacityModifyRGB": false,
  2557. "groupIndex": 0
  2558. },
  2559. {
  2560. "__type__": "cc.RichText",
  2561. "_name": "",
  2562. "_objFlags": 0,
  2563. "node": {
  2564. "__id__": 83
  2565. },
  2566. "_enabled": true,
  2567. "_N$string": "<outline color=#ffffff width=2><b>当前拥有2家公司</b></outline>",
  2568. "_N$horizontalAlign": 0,
  2569. "_N$fontSize": 26,
  2570. "_N$font": null,
  2571. "_N$maxWidth": 0,
  2572. "_N$lineHeight": 40,
  2573. "_N$imageAtlas": null,
  2574. "_N$handleTouchEvent": true
  2575. },
  2576. {
  2577. "__type__": "cc.PrefabInfo",
  2578. "root": {
  2579. "__id__": 1
  2580. },
  2581. "asset": {
  2582. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2583. },
  2584. "fileId": "ebKV5MBh5PIIB2dQmbquRK",
  2585. "sync": false
  2586. },
  2587. {
  2588. "__type__": "cc.Node",
  2589. "_name": "New RichText",
  2590. "_objFlags": 0,
  2591. "_parent": {
  2592. "__id__": 79
  2593. },
  2594. "_children": [],
  2595. "_tag": -1,
  2596. "_active": true,
  2597. "_components": [
  2598. {
  2599. "__id__": 87
  2600. }
  2601. ],
  2602. "_prefab": {
  2603. "__id__": 88
  2604. },
  2605. "_id": "",
  2606. "_opacity": 255,
  2607. "_color": {
  2608. "__type__": "cc.Color",
  2609. "r": 82,
  2610. "g": 67,
  2611. "b": 64,
  2612. "a": 255
  2613. },
  2614. "_cascadeOpacityEnabled": true,
  2615. "_anchorPoint": {
  2616. "__type__": "cc.Vec2",
  2617. "x": 0.5,
  2618. "y": 0.5
  2619. },
  2620. "_contentSize": {
  2621. "__type__": "cc.Size",
  2622. "width": 163,
  2623. "height": 30
  2624. },
  2625. "_rotationX": 0,
  2626. "_rotationY": 0,
  2627. "_scaleX": 1,
  2628. "_scaleY": 1,
  2629. "_position": {
  2630. "__type__": "cc.Vec2",
  2631. "x": -68.2,
  2632. "y": -38
  2633. },
  2634. "_skewX": 0,
  2635. "_skewY": 0,
  2636. "_localZOrder": 0,
  2637. "_globalZOrder": 0,
  2638. "_opacityModifyRGB": false,
  2639. "groupIndex": 0
  2640. },
  2641. {
  2642. "__type__": "cc.RichText",
  2643. "_name": "",
  2644. "_objFlags": 0,
  2645. "node": {
  2646. "__id__": 86
  2647. },
  2648. "_enabled": true,
  2649. "_N$string": "<outline color=#ffffff width=2><b>公司总收益:</b></outline>",
  2650. "_N$horizontalAlign": 0,
  2651. "_N$fontSize": 26,
  2652. "_N$font": null,
  2653. "_N$maxWidth": 0,
  2654. "_N$lineHeight": 30,
  2655. "_N$imageAtlas": null,
  2656. "_N$handleTouchEvent": true
  2657. },
  2658. {
  2659. "__type__": "cc.PrefabInfo",
  2660. "root": {
  2661. "__id__": 1
  2662. },
  2663. "asset": {
  2664. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2665. },
  2666. "fileId": "f7vLR71SxFjraA2RiE9zxV",
  2667. "sync": false
  2668. },
  2669. {
  2670. "__type__": "cc.Node",
  2671. "_name": "New Sprite",
  2672. "_objFlags": 0,
  2673. "_parent": {
  2674. "__id__": 79
  2675. },
  2676. "_children": [],
  2677. "_tag": -1,
  2678. "_active": true,
  2679. "_components": [
  2680. {
  2681. "__id__": 90
  2682. }
  2683. ],
  2684. "_prefab": {
  2685. "__id__": 91
  2686. },
  2687. "_id": "",
  2688. "_opacity": 255,
  2689. "_color": {
  2690. "__type__": "cc.Color",
  2691. "r": 255,
  2692. "g": 255,
  2693. "b": 255,
  2694. "a": 255
  2695. },
  2696. "_cascadeOpacityEnabled": true,
  2697. "_anchorPoint": {
  2698. "__type__": "cc.Vec2",
  2699. "x": 0.5,
  2700. "y": 0.5
  2701. },
  2702. "_contentSize": {
  2703. "__type__": "cc.Size",
  2704. "width": 36,
  2705. "height": 36
  2706. },
  2707. "_rotationX": 0,
  2708. "_rotationY": 0,
  2709. "_scaleX": 1,
  2710. "_scaleY": 1,
  2711. "_position": {
  2712. "__type__": "cc.Vec2",
  2713. "x": 20.6,
  2714. "y": -38
  2715. },
  2716. "_skewX": 0,
  2717. "_skewY": 0,
  2718. "_localZOrder": 0,
  2719. "_globalZOrder": 0,
  2720. "_opacityModifyRGB": false,
  2721. "groupIndex": 0
  2722. },
  2723. {
  2724. "__type__": "cc.Sprite",
  2725. "_name": "",
  2726. "_objFlags": 0,
  2727. "node": {
  2728. "__id__": 89
  2729. },
  2730. "_enabled": true,
  2731. "_spriteFrame": {
  2732. "__uuid__": "8d0d6dd8-e66f-4bcd-b58c-cb1f3201c4db"
  2733. },
  2734. "_type": 0,
  2735. "_sizeMode": 0,
  2736. "_fillType": 0,
  2737. "_fillCenter": {
  2738. "__type__": "cc.Vec2",
  2739. "x": 0,
  2740. "y": 0
  2741. },
  2742. "_fillStart": 0,
  2743. "_fillRange": 0,
  2744. "_isTrimmedMode": true,
  2745. "_srcBlendFactor": 770,
  2746. "_dstBlendFactor": 771,
  2747. "_atlas": null
  2748. },
  2749. {
  2750. "__type__": "cc.PrefabInfo",
  2751. "root": {
  2752. "__id__": 1
  2753. },
  2754. "asset": {
  2755. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2756. },
  2757. "fileId": "05q473UAdKQpshvDdVoPfp",
  2758. "sync": false
  2759. },
  2760. {
  2761. "__type__": "cc.Node",
  2762. "_name": "New RichText",
  2763. "_objFlags": 0,
  2764. "_parent": {
  2765. "__id__": 79
  2766. },
  2767. "_children": [],
  2768. "_tag": -1,
  2769. "_active": true,
  2770. "_components": [
  2771. {
  2772. "__id__": 93
  2773. }
  2774. ],
  2775. "_prefab": {
  2776. "__id__": 94
  2777. },
  2778. "_id": "",
  2779. "_opacity": 255,
  2780. "_color": {
  2781. "__type__": "cc.Color",
  2782. "r": 82,
  2783. "g": 67,
  2784. "b": 64,
  2785. "a": 255
  2786. },
  2787. "_cascadeOpacityEnabled": true,
  2788. "_anchorPoint": {
  2789. "__type__": "cc.Vec2",
  2790. "x": 0,
  2791. "y": 0.5
  2792. },
  2793. "_contentSize": {
  2794. "__type__": "cc.Size",
  2795. "width": 96,
  2796. "height": 30
  2797. },
  2798. "_rotationX": 0,
  2799. "_rotationY": 0,
  2800. "_scaleX": 1,
  2801. "_scaleY": 1,
  2802. "_position": {
  2803. "__type__": "cc.Vec2",
  2804. "x": 43.1,
  2805. "y": -38
  2806. },
  2807. "_skewX": 0,
  2808. "_skewY": 0,
  2809. "_localZOrder": 0,
  2810. "_globalZOrder": 0,
  2811. "_opacityModifyRGB": false,
  2812. "groupIndex": 0
  2813. },
  2814. {
  2815. "__type__": "cc.RichText",
  2816. "_name": "",
  2817. "_objFlags": 0,
  2818. "node": {
  2819. "__id__": 92
  2820. },
  2821. "_enabled": true,
  2822. "_N$string": "<outline color=#ffffff width=2><b>9999/天</b></outline>",
  2823. "_N$horizontalAlign": 0,
  2824. "_N$fontSize": 26,
  2825. "_N$font": null,
  2826. "_N$maxWidth": 0,
  2827. "_N$lineHeight": 30,
  2828. "_N$imageAtlas": null,
  2829. "_N$handleTouchEvent": true
  2830. },
  2831. {
  2832. "__type__": "cc.PrefabInfo",
  2833. "root": {
  2834. "__id__": 1
  2835. },
  2836. "asset": {
  2837. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2838. },
  2839. "fileId": "342CkjNAVDcJ2YLTw6ew+n",
  2840. "sync": false
  2841. },
  2842. {
  2843. "__type__": "cc.Sprite",
  2844. "_name": "",
  2845. "_objFlags": 0,
  2846. "node": {
  2847. "__id__": 79
  2848. },
  2849. "_enabled": true,
  2850. "_spriteFrame": {
  2851. "__uuid__": "dae2fc74-5bb5-43ed-8ba2-5621868c5192"
  2852. },
  2853. "_type": 1,
  2854. "_sizeMode": 0,
  2855. "_fillType": 0,
  2856. "_fillCenter": {
  2857. "__type__": "cc.Vec2",
  2858. "x": 0,
  2859. "y": 0
  2860. },
  2861. "_fillStart": 0,
  2862. "_fillRange": 0,
  2863. "_isTrimmedMode": true,
  2864. "_srcBlendFactor": 770,
  2865. "_dstBlendFactor": 771,
  2866. "_atlas": null
  2867. },
  2868. {
  2869. "__type__": "cc.PrefabInfo",
  2870. "root": {
  2871. "__id__": 1
  2872. },
  2873. "asset": {
  2874. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2875. },
  2876. "fileId": "15gSWGpdFGPpIHpXhtr0GP",
  2877. "sync": false
  2878. },
  2879. {
  2880. "__type__": "cc.Node",
  2881. "_name": "cover",
  2882. "_objFlags": 0,
  2883. "_parent": {
  2884. "__id__": 1
  2885. },
  2886. "_children": [],
  2887. "_tag": -1,
  2888. "_active": true,
  2889. "_components": [
  2890. {
  2891. "__id__": 98
  2892. }
  2893. ],
  2894. "_prefab": {
  2895. "__id__": 99
  2896. },
  2897. "_id": "",
  2898. "_opacity": 255,
  2899. "_color": {
  2900. "__type__": "cc.Color",
  2901. "r": 255,
  2902. "g": 255,
  2903. "b": 255,
  2904. "a": 255
  2905. },
  2906. "_cascadeOpacityEnabled": true,
  2907. "_anchorPoint": {
  2908. "__type__": "cc.Vec2",
  2909. "x": 0.5,
  2910. "y": 0.5
  2911. },
  2912. "_contentSize": {
  2913. "__type__": "cc.Size",
  2914. "width": 750,
  2915. "height": 1800
  2916. },
  2917. "_rotationX": 0,
  2918. "_rotationY": 0,
  2919. "_scaleX": 1,
  2920. "_scaleY": 1,
  2921. "_position": {
  2922. "__type__": "cc.Vec2",
  2923. "x": 0,
  2924. "y": 0
  2925. },
  2926. "_skewX": 0,
  2927. "_skewY": 0,
  2928. "_localZOrder": 0,
  2929. "_globalZOrder": 0,
  2930. "_opacityModifyRGB": false,
  2931. "groupIndex": 0
  2932. },
  2933. {
  2934. "__type__": "cc.BlockInputEvents",
  2935. "_name": "",
  2936. "_objFlags": 0,
  2937. "node": {
  2938. "__id__": 97
  2939. },
  2940. "_enabled": true
  2941. },
  2942. {
  2943. "__type__": "cc.PrefabInfo",
  2944. "root": {
  2945. "__id__": 1
  2946. },
  2947. "asset": {
  2948. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  2949. },
  2950. "fileId": "35PlPGRhxOiJ1B/kkXfzFm",
  2951. "sync": false
  2952. },
  2953. {
  2954. "__type__": "2cb76/UngpCKJk0AjJyrHCS",
  2955. "_name": "",
  2956. "_objFlags": 0,
  2957. "node": {
  2958. "__id__": 1
  2959. },
  2960. "_enabled": true,
  2961. "scrollView": {
  2962. "__id__": 15
  2963. },
  2964. "view": {
  2965. "__id__": 7
  2966. },
  2967. "mapbg": {
  2968. "__id__": 2
  2969. },
  2970. "content": {
  2971. "__id__": 8
  2972. },
  2973. "cityItemPrefab": {
  2974. "__uuid__": "404d32e8-c10e-47b0-af34-4341872c77da"
  2975. },
  2976. "myMoneyLayout": {
  2977. "__id__": 67
  2978. },
  2979. "coinNode": {
  2980. "__id__": 68
  2981. },
  2982. "coinSkeleton": {
  2983. "__id__": 70
  2984. },
  2985. "myMoneyLabel": {
  2986. "__id__": 74
  2987. },
  2988. "moneyCatNode": {
  2989. "__id__": 18
  2990. },
  2991. "moneyCatSkeleton": {
  2992. "__id__": 20
  2993. },
  2994. "backNode": {
  2995. "__id__": 56
  2996. },
  2997. "myCompanyNode": {
  2998. "__id__": 79
  2999. },
  3000. "companyText": {
  3001. "__id__": 84
  3002. },
  3003. "incomeText": {
  3004. "__id__": 93
  3005. },
  3006. "incomSpeedLabel": {
  3007. "__id__": 46
  3008. },
  3009. "incomeLimitLabel": {
  3010. "__id__": 50
  3011. },
  3012. "progressBar": {
  3013. "__id__": 40
  3014. },
  3015. "currentIncomeLabel": {
  3016. "__id__": 34
  3017. },
  3018. "coinPrefab": {
  3019. "__uuid__": "afeee4a6-90f1-4bfa-8e45-989019344ea5"
  3020. },
  3021. "topBg": {
  3022. "__id__": 63
  3023. },
  3024. "cover": {
  3025. "__id__": 97
  3026. }
  3027. },
  3028. {
  3029. "__type__": "cc.PrefabInfo",
  3030. "root": {
  3031. "__id__": 1
  3032. },
  3033. "asset": {
  3034. "__uuid__": "16c23422-304e-4985-8a14-aed42859de40"
  3035. },
  3036. "fileId": "27RvMcd4ZPmpeT2hkAKBkD",
  3037. "sync": false
  3038. }
  3039. ]