main.fire 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_objFlags": 0,
  14. "_parent": null,
  15. "_children": [
  16. {
  17. "__id__": 2
  18. }
  19. ],
  20. "_active": false,
  21. "_components": [],
  22. "_prefab": null,
  23. "_opacity": 255,
  24. "_color": {
  25. "__type__": "cc.Color",
  26. "r": 255,
  27. "g": 255,
  28. "b": 255,
  29. "a": 255
  30. },
  31. "_contentSize": {
  32. "__type__": "cc.Size",
  33. "width": 0,
  34. "height": 0
  35. },
  36. "_anchorPoint": {
  37. "__type__": "cc.Vec2",
  38. "x": 0,
  39. "y": 0
  40. },
  41. "_trs": {
  42. "__type__": "TypedArray",
  43. "ctor": "Float64Array",
  44. "array": [
  45. 0,
  46. 0,
  47. 0,
  48. 0,
  49. 0,
  50. 0,
  51. 1,
  52. 1,
  53. 1,
  54. 1
  55. ]
  56. },
  57. "_is3DNode": true,
  58. "_groupIndex": 0,
  59. "groupIndex": 0,
  60. "autoReleaseAssets": false,
  61. "_id": "2d2f792f-a40c-49bb-a189-ed176a246e49"
  62. },
  63. {
  64. "__type__": "cc.Node",
  65. "_name": "Canvas",
  66. "_objFlags": 0,
  67. "_parent": {
  68. "__id__": 1
  69. },
  70. "_children": [
  71. {
  72. "__id__": 3
  73. },
  74. {
  75. "__id__": 5
  76. },
  77. {
  78. "__id__": 7
  79. },
  80. {
  81. "__id__": 8
  82. },
  83. {
  84. "__id__": 78
  85. },
  86. {
  87. "__id__": 79
  88. },
  89. {
  90. "__id__": 89
  91. }
  92. ],
  93. "_active": true,
  94. "_components": [
  95. {
  96. "__id__": 96
  97. },
  98. {
  99. "__id__": 97
  100. },
  101. {
  102. "__id__": 98
  103. },
  104. {
  105. "__id__": 99
  106. },
  107. {
  108. "__id__": 100
  109. },
  110. {
  111. "__id__": 101
  112. },
  113. {
  114. "__id__": 102
  115. }
  116. ],
  117. "_prefab": null,
  118. "_opacity": 255,
  119. "_color": {
  120. "__type__": "cc.Color",
  121. "r": 252,
  122. "g": 252,
  123. "b": 252,
  124. "a": 255
  125. },
  126. "_contentSize": {
  127. "__type__": "cc.Size",
  128. "width": 1334,
  129. "height": 750
  130. },
  131. "_anchorPoint": {
  132. "__type__": "cc.Vec2",
  133. "x": 0.5,
  134. "y": 0.5
  135. },
  136. "_trs": {
  137. "__type__": "TypedArray",
  138. "ctor": "Float64Array",
  139. "array": [
  140. 667,
  141. 375,
  142. 0,
  143. 0,
  144. 0,
  145. 0,
  146. 1,
  147. 1,
  148. 1,
  149. 1
  150. ]
  151. },
  152. "_eulerAngles": {
  153. "__type__": "cc.Vec3",
  154. "x": 0,
  155. "y": 0,
  156. "z": 0
  157. },
  158. "_skewX": 0,
  159. "_skewY": 0,
  160. "_is3DNode": false,
  161. "_groupIndex": 0,
  162. "groupIndex": 0,
  163. "_id": "a286bbGknJLZpRpxROV6M94"
  164. },
  165. {
  166. "__type__": "cc.Node",
  167. "_name": "mapCamera",
  168. "_objFlags": 0,
  169. "_parent": {
  170. "__id__": 2
  171. },
  172. "_children": [],
  173. "_active": true,
  174. "_components": [
  175. {
  176. "__id__": 4
  177. }
  178. ],
  179. "_prefab": null,
  180. "_opacity": 255,
  181. "_color": {
  182. "__type__": "cc.Color",
  183. "r": 255,
  184. "g": 255,
  185. "b": 255,
  186. "a": 255
  187. },
  188. "_contentSize": {
  189. "__type__": "cc.Size",
  190. "width": 0,
  191. "height": 0
  192. },
  193. "_anchorPoint": {
  194. "__type__": "cc.Vec2",
  195. "x": 0.5,
  196. "y": 0.5
  197. },
  198. "_trs": {
  199. "__type__": "TypedArray",
  200. "ctor": "Float64Array",
  201. "array": [
  202. 0,
  203. 0,
  204. 338.7636710703262,
  205. 0,
  206. 0,
  207. 0,
  208. 1,
  209. 1,
  210. 1,
  211. 1
  212. ]
  213. },
  214. "_eulerAngles": {
  215. "__type__": "cc.Vec3",
  216. "x": 0,
  217. "y": 0,
  218. "z": 0
  219. },
  220. "_skewX": 0,
  221. "_skewY": 0,
  222. "_is3DNode": false,
  223. "_groupIndex": 0,
  224. "groupIndex": 0,
  225. "_id": "e3e1B04PlI2LtKfeJbfVDh"
  226. },
  227. {
  228. "__type__": "cc.Camera",
  229. "_name": "",
  230. "_objFlags": 0,
  231. "node": {
  232. "__id__": 3
  233. },
  234. "_enabled": true,
  235. "_cullingMask": 126,
  236. "_clearFlags": 7,
  237. "_backgroundColor": {
  238. "__type__": "cc.Color",
  239. "r": 0,
  240. "g": 0,
  241. "b": 0,
  242. "a": 255
  243. },
  244. "_depth": -1,
  245. "_zoomRatio": 1,
  246. "_targetTexture": null,
  247. "_fov": 60,
  248. "_orthoSize": 10,
  249. "_nearClip": 0.1,
  250. "_farClip": 4096,
  251. "_ortho": true,
  252. "_rect": {
  253. "__type__": "cc.Rect",
  254. "x": 0,
  255. "y": 0,
  256. "width": 1,
  257. "height": 1
  258. },
  259. "_renderStages": 1,
  260. "_alignWithScreen": true,
  261. "_id": "b57aYkl/NMX4/IcE9f2gIf"
  262. },
  263. {
  264. "__type__": "cc.Node",
  265. "_name": "Main Camera",
  266. "_objFlags": 0,
  267. "_parent": {
  268. "__id__": 2
  269. },
  270. "_children": [],
  271. "_active": true,
  272. "_components": [
  273. {
  274. "__id__": 6
  275. }
  276. ],
  277. "_prefab": null,
  278. "_opacity": 255,
  279. "_color": {
  280. "__type__": "cc.Color",
  281. "r": 255,
  282. "g": 255,
  283. "b": 255,
  284. "a": 255
  285. },
  286. "_contentSize": {
  287. "__type__": "cc.Size",
  288. "width": 0,
  289. "height": 0
  290. },
  291. "_anchorPoint": {
  292. "__type__": "cc.Vec2",
  293. "x": 0.5,
  294. "y": 0.5
  295. },
  296. "_trs": {
  297. "__type__": "TypedArray",
  298. "ctor": "Float64Array",
  299. "array": [
  300. 0,
  301. 0,
  302. 338.7636710703262,
  303. 0,
  304. 0,
  305. 0,
  306. 1,
  307. 1,
  308. 1,
  309. 1
  310. ]
  311. },
  312. "_eulerAngles": {
  313. "__type__": "cc.Vec3",
  314. "x": 0,
  315. "y": 0,
  316. "z": 0
  317. },
  318. "_skewX": 0,
  319. "_skewY": 0,
  320. "_is3DNode": false,
  321. "_groupIndex": 0,
  322. "groupIndex": 0,
  323. "_id": "fcSUztHuVBn5ekrvKQLpVn"
  324. },
  325. {
  326. "__type__": "cc.Camera",
  327. "_name": "",
  328. "_objFlags": 0,
  329. "node": {
  330. "__id__": 5
  331. },
  332. "_enabled": true,
  333. "_cullingMask": 1,
  334. "_clearFlags": 0,
  335. "_backgroundColor": {
  336. "__type__": "cc.Color",
  337. "r": 0,
  338. "g": 0,
  339. "b": 0,
  340. "a": 255
  341. },
  342. "_depth": -1,
  343. "_zoomRatio": 1,
  344. "_targetTexture": null,
  345. "_fov": 60,
  346. "_orthoSize": 10,
  347. "_nearClip": 1,
  348. "_farClip": 4096,
  349. "_ortho": true,
  350. "_rect": {
  351. "__type__": "cc.Rect",
  352. "x": 0,
  353. "y": 0,
  354. "width": 1,
  355. "height": 1
  356. },
  357. "_renderStages": 1,
  358. "_alignWithScreen": true,
  359. "_id": "f07qbePHhPXpwFXcu66cKs"
  360. },
  361. {
  362. "__type__": "cc.Node",
  363. "_name": "layout0",
  364. "_objFlags": 0,
  365. "_parent": {
  366. "__id__": 2
  367. },
  368. "_children": [],
  369. "_active": true,
  370. "_components": [],
  371. "_prefab": null,
  372. "_opacity": 255,
  373. "_color": {
  374. "__type__": "cc.Color",
  375. "r": 255,
  376. "g": 255,
  377. "b": 255,
  378. "a": 255
  379. },
  380. "_contentSize": {
  381. "__type__": "cc.Size",
  382. "width": 0,
  383. "height": 0
  384. },
  385. "_anchorPoint": {
  386. "__type__": "cc.Vec2",
  387. "x": 0.5,
  388. "y": 0.5
  389. },
  390. "_trs": {
  391. "__type__": "TypedArray",
  392. "ctor": "Float64Array",
  393. "array": [
  394. 0,
  395. 0,
  396. 0,
  397. 0,
  398. 0,
  399. 0,
  400. 1,
  401. 1,
  402. 1,
  403. 1
  404. ]
  405. },
  406. "_eulerAngles": {
  407. "__type__": "cc.Vec3",
  408. "x": 0,
  409. "y": 0,
  410. "z": 0
  411. },
  412. "_skewX": 0,
  413. "_skewY": 0,
  414. "_is3DNode": false,
  415. "_groupIndex": 0,
  416. "groupIndex": 0,
  417. "_id": "4bi3yc8VhFMLWF0CmXlDcS"
  418. },
  419. {
  420. "__type__": "cc.Node",
  421. "_name": "top_right",
  422. "_objFlags": 0,
  423. "_parent": {
  424. "__id__": 2
  425. },
  426. "_children": [
  427. {
  428. "__id__": 9
  429. },
  430. {
  431. "__id__": 30
  432. },
  433. {
  434. "__id__": 47
  435. },
  436. {
  437. "__id__": 64
  438. },
  439. {
  440. "__id__": 69
  441. }
  442. ],
  443. "_active": false,
  444. "_components": [
  445. {
  446. "__id__": 74
  447. },
  448. {
  449. "__id__": 75
  450. },
  451. {
  452. "__id__": 76
  453. }
  454. ],
  455. "_prefab": {
  456. "__id__": 77
  457. },
  458. "_opacity": 255,
  459. "_color": {
  460. "__type__": "cc.Color",
  461. "r": 255,
  462. "g": 255,
  463. "b": 255,
  464. "a": 255
  465. },
  466. "_contentSize": {
  467. "__type__": "cc.Size",
  468. "width": 1280,
  469. "height": 82
  470. },
  471. "_anchorPoint": {
  472. "__type__": "cc.Vec2",
  473. "x": 0.5,
  474. "y": 0.5
  475. },
  476. "_trs": {
  477. "__type__": "TypedArray",
  478. "ctor": "Float64Array",
  479. "array": [
  480. 17,
  481. 324,
  482. 0,
  483. 0,
  484. 0,
  485. 0,
  486. 1,
  487. 1,
  488. 1,
  489. 1
  490. ]
  491. },
  492. "_eulerAngles": {
  493. "__type__": "cc.Vec3",
  494. "x": 0,
  495. "y": 0,
  496. "z": 0
  497. },
  498. "_skewX": 0,
  499. "_skewY": 0,
  500. "_is3DNode": false,
  501. "_groupIndex": 0,
  502. "groupIndex": 0,
  503. "_id": "cd/cdP3C1HZJf0NyGmy9Ec"
  504. },
  505. {
  506. "__type__": "cc.Node",
  507. "_name": "power",
  508. "_objFlags": 0,
  509. "_parent": {
  510. "__id__": 8
  511. },
  512. "_children": [
  513. {
  514. "__id__": 10
  515. },
  516. {
  517. "__id__": 13
  518. },
  519. {
  520. "__id__": 16
  521. },
  522. {
  523. "__id__": 20
  524. },
  525. {
  526. "__id__": 23
  527. }
  528. ],
  529. "_active": true,
  530. "_components": [
  531. {
  532. "__id__": 27
  533. }
  534. ],
  535. "_prefab": {
  536. "__id__": 29
  537. },
  538. "_opacity": 255,
  539. "_color": {
  540. "__type__": "cc.Color",
  541. "r": 255,
  542. "g": 255,
  543. "b": 255,
  544. "a": 255
  545. },
  546. "_contentSize": {
  547. "__type__": "cc.Size",
  548. "width": 160,
  549. "height": 40
  550. },
  551. "_anchorPoint": {
  552. "__type__": "cc.Vec2",
  553. "x": 0.5,
  554. "y": 0.5
  555. },
  556. "_trs": {
  557. "__type__": "TypedArray",
  558. "ctor": "Float64Array",
  559. "array": [
  560. -60,
  561. 0,
  562. 0,
  563. 0,
  564. 0,
  565. 0,
  566. 1,
  567. 1,
  568. 1,
  569. 0
  570. ]
  571. },
  572. "_eulerAngles": {
  573. "__type__": "cc.Vec3",
  574. "x": 0,
  575. "y": 0,
  576. "z": 0
  577. },
  578. "_skewX": 0,
  579. "_skewY": 0,
  580. "_is3DNode": false,
  581. "_groupIndex": 0,
  582. "groupIndex": 0,
  583. "_id": "4fc4EEhuhDLaYWrICTuaL8"
  584. },
  585. {
  586. "__type__": "cc.Node",
  587. "_name": "New Sprite",
  588. "_objFlags": 0,
  589. "_parent": {
  590. "__id__": 9
  591. },
  592. "_children": [],
  593. "_active": true,
  594. "_components": [
  595. {
  596. "__id__": 11
  597. }
  598. ],
  599. "_prefab": {
  600. "__id__": 12
  601. },
  602. "_opacity": 150,
  603. "_color": {
  604. "__type__": "cc.Color",
  605. "r": 255,
  606. "g": 255,
  607. "b": 255,
  608. "a": 255
  609. },
  610. "_contentSize": {
  611. "__type__": "cc.Size",
  612. "width": 160,
  613. "height": 30
  614. },
  615. "_anchorPoint": {
  616. "__type__": "cc.Vec2",
  617. "x": 0.5,
  618. "y": 0.5
  619. },
  620. "_trs": {
  621. "__type__": "TypedArray",
  622. "ctor": "Float64Array",
  623. "array": [
  624. 0,
  625. 0,
  626. 0,
  627. 0,
  628. 0,
  629. 0,
  630. 1,
  631. 1,
  632. 1,
  633. 1
  634. ]
  635. },
  636. "_eulerAngles": {
  637. "__type__": "cc.Vec3",
  638. "x": 0,
  639. "y": 0,
  640. "z": 0
  641. },
  642. "_skewX": 0,
  643. "_skewY": 0,
  644. "_is3DNode": false,
  645. "_groupIndex": 0,
  646. "groupIndex": 0,
  647. "_id": "5f/4GudhRPvbuawR9H+LCU"
  648. },
  649. {
  650. "__type__": "cc.Sprite",
  651. "_name": "",
  652. "_objFlags": 0,
  653. "node": {
  654. "__id__": 10
  655. },
  656. "_enabled": true,
  657. "_materials": [
  658. {
  659. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  660. }
  661. ],
  662. "_srcBlendFactor": 770,
  663. "_dstBlendFactor": 771,
  664. "_spriteFrame": {
  665. "__uuid__": "7ae6b329-dade-486e-b1ba-108bc1a0e8f5"
  666. },
  667. "_type": 1,
  668. "_sizeMode": 0,
  669. "_fillType": 0,
  670. "_fillCenter": {
  671. "__type__": "cc.Vec2",
  672. "x": 0,
  673. "y": 0
  674. },
  675. "_fillStart": 0,
  676. "_fillRange": 0,
  677. "_isTrimmedMode": true,
  678. "_atlas": null,
  679. "_id": "79mOCJPhZJ4qNiD49O7k2u"
  680. },
  681. {
  682. "__type__": "cc.PrefabInfo",
  683. "root": {
  684. "__id__": 8
  685. },
  686. "asset": {
  687. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  688. },
  689. "fileId": "b9JsB9cmdPeLICxmnsQOW6",
  690. "sync": false
  691. },
  692. {
  693. "__type__": "cc.Node",
  694. "_name": "New Sprite",
  695. "_objFlags": 0,
  696. "_parent": {
  697. "__id__": 9
  698. },
  699. "_children": [],
  700. "_active": true,
  701. "_components": [
  702. {
  703. "__id__": 14
  704. }
  705. ],
  706. "_prefab": {
  707. "__id__": 15
  708. },
  709. "_opacity": 255,
  710. "_color": {
  711. "__type__": "cc.Color",
  712. "r": 255,
  713. "g": 255,
  714. "b": 255,
  715. "a": 255
  716. },
  717. "_contentSize": {
  718. "__type__": "cc.Size",
  719. "width": 36,
  720. "height": 30
  721. },
  722. "_anchorPoint": {
  723. "__type__": "cc.Vec2",
  724. "x": 0.5,
  725. "y": 0.5
  726. },
  727. "_trs": {
  728. "__type__": "TypedArray",
  729. "ctor": "Float64Array",
  730. "array": [
  731. -81.057,
  732. 0,
  733. 0,
  734. 0,
  735. 0,
  736. 0,
  737. 1,
  738. 1,
  739. 1,
  740. 1
  741. ]
  742. },
  743. "_eulerAngles": {
  744. "__type__": "cc.Vec3",
  745. "x": 0,
  746. "y": 0,
  747. "z": 0
  748. },
  749. "_skewX": 0,
  750. "_skewY": 0,
  751. "_is3DNode": false,
  752. "_groupIndex": 0,
  753. "groupIndex": 0,
  754. "_id": "e3ICu7hUJACp7+MFNKpOXS"
  755. },
  756. {
  757. "__type__": "cc.Sprite",
  758. "_name": "",
  759. "_objFlags": 0,
  760. "node": {
  761. "__id__": 13
  762. },
  763. "_enabled": true,
  764. "_materials": [
  765. {
  766. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  767. }
  768. ],
  769. "_srcBlendFactor": 770,
  770. "_dstBlendFactor": 771,
  771. "_spriteFrame": {
  772. "__uuid__": "6b99b222-3d8c-4e20-a740-7d6e8b508c3d"
  773. },
  774. "_type": 0,
  775. "_sizeMode": 1,
  776. "_fillType": 0,
  777. "_fillCenter": {
  778. "__type__": "cc.Vec2",
  779. "x": 0,
  780. "y": 0
  781. },
  782. "_fillStart": 0,
  783. "_fillRange": 0,
  784. "_isTrimmedMode": true,
  785. "_atlas": null,
  786. "_id": "2b2I5TmQpOd6P5n06Aqrwz"
  787. },
  788. {
  789. "__type__": "cc.PrefabInfo",
  790. "root": {
  791. "__id__": 8
  792. },
  793. "asset": {
  794. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  795. },
  796. "fileId": "9arnQ7YdZIrJDlBRgHIXUU",
  797. "sync": false
  798. },
  799. {
  800. "__type__": "cc.Node",
  801. "_name": "power",
  802. "_objFlags": 0,
  803. "_parent": {
  804. "__id__": 9
  805. },
  806. "_children": [],
  807. "_active": true,
  808. "_components": [
  809. {
  810. "__id__": 17
  811. },
  812. {
  813. "__id__": 18
  814. }
  815. ],
  816. "_prefab": {
  817. "__id__": 19
  818. },
  819. "_opacity": 255,
  820. "_color": {
  821. "__type__": "cc.Color",
  822. "r": 255,
  823. "g": 251,
  824. "b": 202,
  825. "a": 255
  826. },
  827. "_contentSize": {
  828. "__type__": "cc.Size",
  829. "width": 63.13,
  830. "height": 35.5
  831. },
  832. "_anchorPoint": {
  833. "__type__": "cc.Vec2",
  834. "x": 1,
  835. "y": 0.5
  836. },
  837. "_trs": {
  838. "__type__": "TypedArray",
  839. "ctor": "Float64Array",
  840. "array": [
  841. 51.002,
  842. 0,
  843. 0,
  844. 0,
  845. 0,
  846. 0,
  847. 1,
  848. 1,
  849. 1,
  850. 1
  851. ]
  852. },
  853. "_eulerAngles": {
  854. "__type__": "cc.Vec3",
  855. "x": 0,
  856. "y": 0,
  857. "z": 0
  858. },
  859. "_skewX": 0,
  860. "_skewY": 0,
  861. "_is3DNode": false,
  862. "_groupIndex": 0,
  863. "groupIndex": 0,
  864. "_id": "c6zM7K4xlKnbX9kyJ9llEz"
  865. },
  866. {
  867. "__type__": "cc.Label",
  868. "_name": "",
  869. "_objFlags": 0,
  870. "node": {
  871. "__id__": 16
  872. },
  873. "_enabled": true,
  874. "_materials": [
  875. {
  876. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  877. }
  878. ],
  879. "_srcBlendFactor": 770,
  880. "_dstBlendFactor": 771,
  881. "_string": "30/30",
  882. "_N$string": "30/30",
  883. "_fontSize": 22,
  884. "_lineHeight": 25,
  885. "_enableWrapText": true,
  886. "_N$file": {
  887. "__uuid__": "ab4a312d-4aea-4102-b816-a39640555ef4"
  888. },
  889. "_isSystemFontUsed": false,
  890. "_spacingX": 0,
  891. "_batchAsBitmap": false,
  892. "_styleFlags": 0,
  893. "_underlineHeight": 0,
  894. "_N$horizontalAlign": 1,
  895. "_N$verticalAlign": 1,
  896. "_N$fontFamily": "Arial",
  897. "_N$overflow": 0,
  898. "_N$cacheMode": 0,
  899. "_id": "653A8OCRxIg5qvEWx4cXHz"
  900. },
  901. {
  902. "__type__": "cc.LabelOutline",
  903. "_name": "",
  904. "_objFlags": 0,
  905. "node": {
  906. "__id__": 16
  907. },
  908. "_enabled": true,
  909. "_color": {
  910. "__type__": "cc.Color",
  911. "r": 0,
  912. "g": 0,
  913. "b": 0,
  914. "a": 255
  915. },
  916. "_width": 2,
  917. "_id": "68uUSZ5Z1Ki6AAV4qlc9NU"
  918. },
  919. {
  920. "__type__": "cc.PrefabInfo",
  921. "root": {
  922. "__id__": 8
  923. },
  924. "asset": {
  925. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  926. },
  927. "fileId": "6emyAexP9PH7dqBZQH6wBV",
  928. "sync": false
  929. },
  930. {
  931. "__type__": "cc.Node",
  932. "_name": "New Sprite",
  933. "_objFlags": 0,
  934. "_parent": {
  935. "__id__": 9
  936. },
  937. "_children": [],
  938. "_active": true,
  939. "_components": [
  940. {
  941. "__id__": 21
  942. }
  943. ],
  944. "_prefab": {
  945. "__id__": 22
  946. },
  947. "_opacity": 255,
  948. "_color": {
  949. "__type__": "cc.Color",
  950. "r": 255,
  951. "g": 255,
  952. "b": 255,
  953. "a": 255
  954. },
  955. "_contentSize": {
  956. "__type__": "cc.Size",
  957. "width": 25,
  958. "height": 25
  959. },
  960. "_anchorPoint": {
  961. "__type__": "cc.Vec2",
  962. "x": 0.5,
  963. "y": 0.5
  964. },
  965. "_trs": {
  966. "__type__": "TypedArray",
  967. "ctor": "Float64Array",
  968. "array": [
  969. 71.315,
  970. 0,
  971. 0,
  972. 0,
  973. 0,
  974. 0,
  975. 1,
  976. 1,
  977. 1,
  978. 1
  979. ]
  980. },
  981. "_eulerAngles": {
  982. "__type__": "cc.Vec3",
  983. "x": 0,
  984. "y": 0,
  985. "z": 0
  986. },
  987. "_skewX": 0,
  988. "_skewY": 0,
  989. "_is3DNode": false,
  990. "_groupIndex": 0,
  991. "groupIndex": 0,
  992. "_id": "76qYdZdU1ChY/yeyVY1sX6"
  993. },
  994. {
  995. "__type__": "cc.Sprite",
  996. "_name": "",
  997. "_objFlags": 0,
  998. "node": {
  999. "__id__": 20
  1000. },
  1001. "_enabled": true,
  1002. "_materials": [
  1003. {
  1004. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1005. }
  1006. ],
  1007. "_srcBlendFactor": 770,
  1008. "_dstBlendFactor": 771,
  1009. "_spriteFrame": {
  1010. "__uuid__": "814c247e-ec6e-4d04-a42e-9168ba96559a"
  1011. },
  1012. "_type": 0,
  1013. "_sizeMode": 0,
  1014. "_fillType": 0,
  1015. "_fillCenter": {
  1016. "__type__": "cc.Vec2",
  1017. "x": 0,
  1018. "y": 0
  1019. },
  1020. "_fillStart": 0,
  1021. "_fillRange": 0,
  1022. "_isTrimmedMode": true,
  1023. "_atlas": null,
  1024. "_id": "05O+MXJVxOMY1QQMd1nKs7"
  1025. },
  1026. {
  1027. "__type__": "cc.PrefabInfo",
  1028. "root": {
  1029. "__id__": 8
  1030. },
  1031. "asset": {
  1032. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  1033. },
  1034. "fileId": "2bNoews3pF2KJA7dKlqv8C",
  1035. "sync": false
  1036. },
  1037. {
  1038. "__type__": "cc.Node",
  1039. "_name": "time",
  1040. "_objFlags": 0,
  1041. "_parent": {
  1042. "__id__": 9
  1043. },
  1044. "_children": [],
  1045. "_active": false,
  1046. "_components": [
  1047. {
  1048. "__id__": 24
  1049. },
  1050. {
  1051. "__id__": 25
  1052. }
  1053. ],
  1054. "_prefab": {
  1055. "__id__": 26
  1056. },
  1057. "_opacity": 255,
  1058. "_color": {
  1059. "__type__": "cc.Color",
  1060. "r": 255,
  1061. "g": 255,
  1062. "b": 255,
  1063. "a": 255
  1064. },
  1065. "_contentSize": {
  1066. "__type__": "cc.Size",
  1067. "width": 55.73,
  1068. "height": 31.72
  1069. },
  1070. "_anchorPoint": {
  1071. "__type__": "cc.Vec2",
  1072. "x": 1,
  1073. "y": 0.5
  1074. },
  1075. "_trs": {
  1076. "__type__": "TypedArray",
  1077. "ctor": "Float64Array",
  1078. "array": [
  1079. 51.002,
  1080. -27.764,
  1081. 0,
  1082. 0,
  1083. 0,
  1084. 0,
  1085. 1,
  1086. 1,
  1087. 1,
  1088. 1
  1089. ]
  1090. },
  1091. "_eulerAngles": {
  1092. "__type__": "cc.Vec3",
  1093. "x": 0,
  1094. "y": 0,
  1095. "z": 0
  1096. },
  1097. "_skewX": 0,
  1098. "_skewY": 0,
  1099. "_is3DNode": false,
  1100. "_groupIndex": 0,
  1101. "groupIndex": 0,
  1102. "_id": "11Y4Ubh4lGIbxanzaxyHip"
  1103. },
  1104. {
  1105. "__type__": "cc.Label",
  1106. "_name": "",
  1107. "_objFlags": 0,
  1108. "node": {
  1109. "__id__": 23
  1110. },
  1111. "_enabled": true,
  1112. "_materials": [
  1113. {
  1114. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1115. }
  1116. ],
  1117. "_srcBlendFactor": 770,
  1118. "_dstBlendFactor": 771,
  1119. "_string": "10:59",
  1120. "_N$string": "10:59",
  1121. "_fontSize": 20,
  1122. "_lineHeight": 22,
  1123. "_enableWrapText": true,
  1124. "_N$file": {
  1125. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  1126. },
  1127. "_isSystemFontUsed": false,
  1128. "_spacingX": 0,
  1129. "_batchAsBitmap": false,
  1130. "_styleFlags": 0,
  1131. "_underlineHeight": 0,
  1132. "_N$horizontalAlign": 1,
  1133. "_N$verticalAlign": 1,
  1134. "_N$fontFamily": "Arial",
  1135. "_N$overflow": 0,
  1136. "_N$cacheMode": 0,
  1137. "_id": "d89yxkStlMSoc6XV0UUB9R"
  1138. },
  1139. {
  1140. "__type__": "cc.LabelOutline",
  1141. "_name": "",
  1142. "_objFlags": 0,
  1143. "node": {
  1144. "__id__": 23
  1145. },
  1146. "_enabled": true,
  1147. "_color": {
  1148. "__type__": "cc.Color",
  1149. "r": 0,
  1150. "g": 0,
  1151. "b": 0,
  1152. "a": 255
  1153. },
  1154. "_width": 2,
  1155. "_id": "20FRynP+1KrItB+mGQ2wZP"
  1156. },
  1157. {
  1158. "__type__": "cc.PrefabInfo",
  1159. "root": {
  1160. "__id__": 8
  1161. },
  1162. "asset": {
  1163. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  1164. },
  1165. "fileId": "da2i+9CUhE/p5mtW6opHcw",
  1166. "sync": false
  1167. },
  1168. {
  1169. "__type__": "cc.Button",
  1170. "_name": "",
  1171. "_objFlags": 0,
  1172. "node": {
  1173. "__id__": 9
  1174. },
  1175. "_enabled": true,
  1176. "_normalMaterial": null,
  1177. "_grayMaterial": null,
  1178. "duration": 0.1,
  1179. "zoomScale": 0.9,
  1180. "clickEvents": [
  1181. {
  1182. "__id__": 28
  1183. }
  1184. ],
  1185. "_N$interactable": true,
  1186. "_N$enableAutoGrayEffect": false,
  1187. "_N$transition": 0,
  1188. "transition": 0,
  1189. "_N$normalColor": {
  1190. "__type__": "cc.Color",
  1191. "r": 255,
  1192. "g": 255,
  1193. "b": 255,
  1194. "a": 255
  1195. },
  1196. "_N$pressedColor": {
  1197. "__type__": "cc.Color",
  1198. "r": 211,
  1199. "g": 211,
  1200. "b": 211,
  1201. "a": 255
  1202. },
  1203. "pressedColor": {
  1204. "__type__": "cc.Color",
  1205. "r": 211,
  1206. "g": 211,
  1207. "b": 211,
  1208. "a": 255
  1209. },
  1210. "_N$hoverColor": {
  1211. "__type__": "cc.Color",
  1212. "r": 255,
  1213. "g": 255,
  1214. "b": 255,
  1215. "a": 255
  1216. },
  1217. "hoverColor": {
  1218. "__type__": "cc.Color",
  1219. "r": 255,
  1220. "g": 255,
  1221. "b": 255,
  1222. "a": 255
  1223. },
  1224. "_N$disabledColor": {
  1225. "__type__": "cc.Color",
  1226. "r": 124,
  1227. "g": 124,
  1228. "b": 124,
  1229. "a": 255
  1230. },
  1231. "_N$normalSprite": null,
  1232. "_N$pressedSprite": null,
  1233. "pressedSprite": null,
  1234. "_N$hoverSprite": null,
  1235. "hoverSprite": null,
  1236. "_N$disabledSprite": null,
  1237. "_N$target": null,
  1238. "_id": "79sOC7qE9DRbgCVmOkanui"
  1239. },
  1240. {
  1241. "__type__": "cc.ClickEvent",
  1242. "target": {
  1243. "__id__": 8
  1244. },
  1245. "component": "",
  1246. "_componentId": "c5197+gv+9FbK4+NofHOGnw",
  1247. "handler": "openShop",
  1248. "customEventData": "102"
  1249. },
  1250. {
  1251. "__type__": "cc.PrefabInfo",
  1252. "root": {
  1253. "__id__": 8
  1254. },
  1255. "asset": {
  1256. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  1257. },
  1258. "fileId": "65IuWnt7xELYIyQdtdLfU7",
  1259. "sync": false
  1260. },
  1261. {
  1262. "__type__": "cc.Node",
  1263. "_name": "coin",
  1264. "_objFlags": 0,
  1265. "_parent": {
  1266. "__id__": 8
  1267. },
  1268. "_children": [
  1269. {
  1270. "__id__": 31
  1271. },
  1272. {
  1273. "__id__": 34
  1274. },
  1275. {
  1276. "__id__": 37
  1277. },
  1278. {
  1279. "__id__": 40
  1280. }
  1281. ],
  1282. "_active": true,
  1283. "_components": [
  1284. {
  1285. "__id__": 44
  1286. }
  1287. ],
  1288. "_prefab": {
  1289. "__id__": 46
  1290. },
  1291. "_opacity": 255,
  1292. "_color": {
  1293. "__type__": "cc.Color",
  1294. "r": 255,
  1295. "g": 255,
  1296. "b": 255,
  1297. "a": 255
  1298. },
  1299. "_contentSize": {
  1300. "__type__": "cc.Size",
  1301. "width": 160,
  1302. "height": 40
  1303. },
  1304. "_anchorPoint": {
  1305. "__type__": "cc.Vec2",
  1306. "x": 0.5,
  1307. "y": 0.5
  1308. },
  1309. "_trs": {
  1310. "__type__": "TypedArray",
  1311. "ctor": "Float64Array",
  1312. "array": [
  1313. 164,
  1314. 0,
  1315. 0,
  1316. 0,
  1317. 0,
  1318. 0,
  1319. 1,
  1320. 1,
  1321. 1,
  1322. 0
  1323. ]
  1324. },
  1325. "_eulerAngles": {
  1326. "__type__": "cc.Vec3",
  1327. "x": 0,
  1328. "y": 0,
  1329. "z": 0
  1330. },
  1331. "_skewX": 0,
  1332. "_skewY": 0,
  1333. "_is3DNode": false,
  1334. "_groupIndex": 0,
  1335. "groupIndex": 0,
  1336. "_id": "289njrlZBG5btm0gsqpsma"
  1337. },
  1338. {
  1339. "__type__": "cc.Node",
  1340. "_name": "New Sprite",
  1341. "_objFlags": 0,
  1342. "_parent": {
  1343. "__id__": 30
  1344. },
  1345. "_children": [],
  1346. "_active": true,
  1347. "_components": [
  1348. {
  1349. "__id__": 32
  1350. }
  1351. ],
  1352. "_prefab": {
  1353. "__id__": 33
  1354. },
  1355. "_opacity": 150,
  1356. "_color": {
  1357. "__type__": "cc.Color",
  1358. "r": 255,
  1359. "g": 255,
  1360. "b": 255,
  1361. "a": 255
  1362. },
  1363. "_contentSize": {
  1364. "__type__": "cc.Size",
  1365. "width": 160,
  1366. "height": 30
  1367. },
  1368. "_anchorPoint": {
  1369. "__type__": "cc.Vec2",
  1370. "x": 0.5,
  1371. "y": 0.5
  1372. },
  1373. "_trs": {
  1374. "__type__": "TypedArray",
  1375. "ctor": "Float64Array",
  1376. "array": [
  1377. 0,
  1378. 0,
  1379. 0,
  1380. 0,
  1381. 0,
  1382. 0,
  1383. 1,
  1384. 1,
  1385. 1,
  1386. 1
  1387. ]
  1388. },
  1389. "_eulerAngles": {
  1390. "__type__": "cc.Vec3",
  1391. "x": 0,
  1392. "y": 0,
  1393. "z": 0
  1394. },
  1395. "_skewX": 0,
  1396. "_skewY": 0,
  1397. "_is3DNode": false,
  1398. "_groupIndex": 0,
  1399. "groupIndex": 0,
  1400. "_id": "b9gKUymUtJN6cOplLH6U+3"
  1401. },
  1402. {
  1403. "__type__": "cc.Sprite",
  1404. "_name": "",
  1405. "_objFlags": 0,
  1406. "node": {
  1407. "__id__": 31
  1408. },
  1409. "_enabled": true,
  1410. "_materials": [
  1411. {
  1412. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1413. }
  1414. ],
  1415. "_srcBlendFactor": 770,
  1416. "_dstBlendFactor": 771,
  1417. "_spriteFrame": {
  1418. "__uuid__": "7ae6b329-dade-486e-b1ba-108bc1a0e8f5"
  1419. },
  1420. "_type": 1,
  1421. "_sizeMode": 0,
  1422. "_fillType": 0,
  1423. "_fillCenter": {
  1424. "__type__": "cc.Vec2",
  1425. "x": 0,
  1426. "y": 0
  1427. },
  1428. "_fillStart": 0,
  1429. "_fillRange": 0,
  1430. "_isTrimmedMode": true,
  1431. "_atlas": null,
  1432. "_id": "e4jO3CbhVEfY2RbxH+V00I"
  1433. },
  1434. {
  1435. "__type__": "cc.PrefabInfo",
  1436. "root": {
  1437. "__id__": 8
  1438. },
  1439. "asset": {
  1440. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  1441. },
  1442. "fileId": "8fh1zWICNKRKoC7S+uwUXm",
  1443. "sync": false
  1444. },
  1445. {
  1446. "__type__": "cc.Node",
  1447. "_name": "New Sprite",
  1448. "_objFlags": 0,
  1449. "_parent": {
  1450. "__id__": 30
  1451. },
  1452. "_children": [],
  1453. "_active": true,
  1454. "_components": [
  1455. {
  1456. "__id__": 35
  1457. }
  1458. ],
  1459. "_prefab": {
  1460. "__id__": 36
  1461. },
  1462. "_opacity": 255,
  1463. "_color": {
  1464. "__type__": "cc.Color",
  1465. "r": 255,
  1466. "g": 255,
  1467. "b": 255,
  1468. "a": 255
  1469. },
  1470. "_contentSize": {
  1471. "__type__": "cc.Size",
  1472. "width": 32,
  1473. "height": 34
  1474. },
  1475. "_anchorPoint": {
  1476. "__type__": "cc.Vec2",
  1477. "x": 0.5,
  1478. "y": 0.5
  1479. },
  1480. "_trs": {
  1481. "__type__": "TypedArray",
  1482. "ctor": "Float64Array",
  1483. "array": [
  1484. -82.87,
  1485. 0,
  1486. 0,
  1487. 0,
  1488. 0,
  1489. 0,
  1490. 1,
  1491. 1,
  1492. 1,
  1493. 1
  1494. ]
  1495. },
  1496. "_eulerAngles": {
  1497. "__type__": "cc.Vec3",
  1498. "x": 0,
  1499. "y": 0,
  1500. "z": 0
  1501. },
  1502. "_skewX": 0,
  1503. "_skewY": 0,
  1504. "_is3DNode": false,
  1505. "_groupIndex": 0,
  1506. "groupIndex": 0,
  1507. "_id": "cdVfSbCDhFCblpB80Oy39x"
  1508. },
  1509. {
  1510. "__type__": "cc.Sprite",
  1511. "_name": "",
  1512. "_objFlags": 0,
  1513. "node": {
  1514. "__id__": 34
  1515. },
  1516. "_enabled": true,
  1517. "_materials": [
  1518. {
  1519. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1520. }
  1521. ],
  1522. "_srcBlendFactor": 770,
  1523. "_dstBlendFactor": 771,
  1524. "_spriteFrame": {
  1525. "__uuid__": "1fe7dedc-4d8f-48ad-a263-479cab608107"
  1526. },
  1527. "_type": 0,
  1528. "_sizeMode": 1,
  1529. "_fillType": 0,
  1530. "_fillCenter": {
  1531. "__type__": "cc.Vec2",
  1532. "x": 0,
  1533. "y": 0
  1534. },
  1535. "_fillStart": 0,
  1536. "_fillRange": 0,
  1537. "_isTrimmedMode": true,
  1538. "_atlas": null,
  1539. "_id": "7c5191Rc1FjYTlx2eL+SP3"
  1540. },
  1541. {
  1542. "__type__": "cc.PrefabInfo",
  1543. "root": {
  1544. "__id__": 8
  1545. },
  1546. "asset": {
  1547. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  1548. },
  1549. "fileId": "e7SLXdLVdD+45E2qpQ2R6h",
  1550. "sync": false
  1551. },
  1552. {
  1553. "__type__": "cc.Node",
  1554. "_name": "New Sprite",
  1555. "_objFlags": 0,
  1556. "_parent": {
  1557. "__id__": 30
  1558. },
  1559. "_children": [],
  1560. "_active": true,
  1561. "_components": [
  1562. {
  1563. "__id__": 38
  1564. }
  1565. ],
  1566. "_prefab": {
  1567. "__id__": 39
  1568. },
  1569. "_opacity": 255,
  1570. "_color": {
  1571. "__type__": "cc.Color",
  1572. "r": 255,
  1573. "g": 255,
  1574. "b": 255,
  1575. "a": 255
  1576. },
  1577. "_contentSize": {
  1578. "__type__": "cc.Size",
  1579. "width": 30,
  1580. "height": 30
  1581. },
  1582. "_anchorPoint": {
  1583. "__type__": "cc.Vec2",
  1584. "x": 0.5,
  1585. "y": 0.5
  1586. },
  1587. "_trs": {
  1588. "__type__": "TypedArray",
  1589. "ctor": "Float64Array",
  1590. "array": [
  1591. 71.315,
  1592. 0,
  1593. 0,
  1594. 0,
  1595. 0,
  1596. 0,
  1597. 1,
  1598. 1,
  1599. 1,
  1600. 1
  1601. ]
  1602. },
  1603. "_eulerAngles": {
  1604. "__type__": "cc.Vec3",
  1605. "x": 0,
  1606. "y": 0,
  1607. "z": 0
  1608. },
  1609. "_skewX": 0,
  1610. "_skewY": 0,
  1611. "_is3DNode": false,
  1612. "_groupIndex": 0,
  1613. "groupIndex": 0,
  1614. "_id": "9bbvfdrjRD6aXi2wzB3Ofw"
  1615. },
  1616. {
  1617. "__type__": "cc.Sprite",
  1618. "_name": "",
  1619. "_objFlags": 0,
  1620. "node": {
  1621. "__id__": 37
  1622. },
  1623. "_enabled": true,
  1624. "_materials": [
  1625. {
  1626. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1627. }
  1628. ],
  1629. "_srcBlendFactor": 770,
  1630. "_dstBlendFactor": 771,
  1631. "_spriteFrame": {
  1632. "__uuid__": "814c247e-ec6e-4d04-a42e-9168ba96559a"
  1633. },
  1634. "_type": 0,
  1635. "_sizeMode": 0,
  1636. "_fillType": 0,
  1637. "_fillCenter": {
  1638. "__type__": "cc.Vec2",
  1639. "x": 0,
  1640. "y": 0
  1641. },
  1642. "_fillStart": 0,
  1643. "_fillRange": 0,
  1644. "_isTrimmedMode": true,
  1645. "_atlas": null,
  1646. "_id": "ff6d+1Sp1IIruzADFg8NdN"
  1647. },
  1648. {
  1649. "__type__": "cc.PrefabInfo",
  1650. "root": {
  1651. "__id__": 8
  1652. },
  1653. "asset": {
  1654. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  1655. },
  1656. "fileId": "1aEim9fjBCTr2tBVeMpkyI",
  1657. "sync": false
  1658. },
  1659. {
  1660. "__type__": "cc.Node",
  1661. "_name": "money",
  1662. "_objFlags": 0,
  1663. "_parent": {
  1664. "__id__": 30
  1665. },
  1666. "_children": [],
  1667. "_active": true,
  1668. "_components": [
  1669. {
  1670. "__id__": 41
  1671. },
  1672. {
  1673. "__id__": 42
  1674. }
  1675. ],
  1676. "_prefab": {
  1677. "__id__": 43
  1678. },
  1679. "_opacity": 255,
  1680. "_color": {
  1681. "__type__": "cc.Color",
  1682. "r": 255,
  1683. "g": 251,
  1684. "b": 202,
  1685. "a": 255
  1686. },
  1687. "_contentSize": {
  1688. "__type__": "cc.Size",
  1689. "width": 16.55,
  1690. "height": 35.5
  1691. },
  1692. "_anchorPoint": {
  1693. "__type__": "cc.Vec2",
  1694. "x": 1,
  1695. "y": 0.5
  1696. },
  1697. "_trs": {
  1698. "__type__": "TypedArray",
  1699. "ctor": "Float64Array",
  1700. "array": [
  1701. 49.233,
  1702. 0,
  1703. 0,
  1704. 0,
  1705. 0,
  1706. 0,
  1707. 1,
  1708. 1,
  1709. 1,
  1710. 1
  1711. ]
  1712. },
  1713. "_eulerAngles": {
  1714. "__type__": "cc.Vec3",
  1715. "x": 0,
  1716. "y": 0,
  1717. "z": 0
  1718. },
  1719. "_skewX": 0,
  1720. "_skewY": 0,
  1721. "_is3DNode": false,
  1722. "_groupIndex": 0,
  1723. "groupIndex": 0,
  1724. "_id": "369ZRuEg1J4qkh1mukHOI4"
  1725. },
  1726. {
  1727. "__type__": "cc.Label",
  1728. "_name": "",
  1729. "_objFlags": 0,
  1730. "node": {
  1731. "__id__": 40
  1732. },
  1733. "_enabled": true,
  1734. "_materials": [
  1735. {
  1736. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1737. }
  1738. ],
  1739. "_srcBlendFactor": 770,
  1740. "_dstBlendFactor": 771,
  1741. "_string": "0",
  1742. "_N$string": "0",
  1743. "_fontSize": 22,
  1744. "_lineHeight": 25,
  1745. "_enableWrapText": true,
  1746. "_N$file": {
  1747. "__uuid__": "ab4a312d-4aea-4102-b816-a39640555ef4"
  1748. },
  1749. "_isSystemFontUsed": false,
  1750. "_spacingX": 0,
  1751. "_batchAsBitmap": false,
  1752. "_styleFlags": 0,
  1753. "_underlineHeight": 0,
  1754. "_N$horizontalAlign": 1,
  1755. "_N$verticalAlign": 1,
  1756. "_N$fontFamily": "Arial",
  1757. "_N$overflow": 0,
  1758. "_N$cacheMode": 0,
  1759. "_id": "1a6HeXm+JOPZruVpFYqM7l"
  1760. },
  1761. {
  1762. "__type__": "cc.LabelOutline",
  1763. "_name": "",
  1764. "_objFlags": 0,
  1765. "node": {
  1766. "__id__": 40
  1767. },
  1768. "_enabled": true,
  1769. "_color": {
  1770. "__type__": "cc.Color",
  1771. "r": 75,
  1772. "g": 43,
  1773. "b": 0,
  1774. "a": 255
  1775. },
  1776. "_width": 2,
  1777. "_id": "97iLpw96VGLqPG9viRzyia"
  1778. },
  1779. {
  1780. "__type__": "cc.PrefabInfo",
  1781. "root": {
  1782. "__id__": 8
  1783. },
  1784. "asset": {
  1785. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  1786. },
  1787. "fileId": "afnLs8mU1EKr7rPRybyut4",
  1788. "sync": false
  1789. },
  1790. {
  1791. "__type__": "cc.Button",
  1792. "_name": "",
  1793. "_objFlags": 0,
  1794. "node": {
  1795. "__id__": 30
  1796. },
  1797. "_enabled": true,
  1798. "_normalMaterial": null,
  1799. "_grayMaterial": null,
  1800. "duration": 0.1,
  1801. "zoomScale": 0.9,
  1802. "clickEvents": [
  1803. {
  1804. "__id__": 45
  1805. }
  1806. ],
  1807. "_N$interactable": true,
  1808. "_N$enableAutoGrayEffect": false,
  1809. "_N$transition": 0,
  1810. "transition": 0,
  1811. "_N$normalColor": {
  1812. "__type__": "cc.Color",
  1813. "r": 255,
  1814. "g": 255,
  1815. "b": 255,
  1816. "a": 255
  1817. },
  1818. "_N$pressedColor": {
  1819. "__type__": "cc.Color",
  1820. "r": 211,
  1821. "g": 211,
  1822. "b": 211,
  1823. "a": 255
  1824. },
  1825. "pressedColor": {
  1826. "__type__": "cc.Color",
  1827. "r": 211,
  1828. "g": 211,
  1829. "b": 211,
  1830. "a": 255
  1831. },
  1832. "_N$hoverColor": {
  1833. "__type__": "cc.Color",
  1834. "r": 255,
  1835. "g": 255,
  1836. "b": 255,
  1837. "a": 255
  1838. },
  1839. "hoverColor": {
  1840. "__type__": "cc.Color",
  1841. "r": 255,
  1842. "g": 255,
  1843. "b": 255,
  1844. "a": 255
  1845. },
  1846. "_N$disabledColor": {
  1847. "__type__": "cc.Color",
  1848. "r": 124,
  1849. "g": 124,
  1850. "b": 124,
  1851. "a": 255
  1852. },
  1853. "_N$normalSprite": null,
  1854. "_N$pressedSprite": null,
  1855. "pressedSprite": null,
  1856. "_N$hoverSprite": null,
  1857. "hoverSprite": null,
  1858. "_N$disabledSprite": null,
  1859. "_N$target": null,
  1860. "_id": "93m3NmZ1BJdIX3sJHAciHv"
  1861. },
  1862. {
  1863. "__type__": "cc.ClickEvent",
  1864. "target": {
  1865. "__id__": 8
  1866. },
  1867. "component": "",
  1868. "_componentId": "c5197+gv+9FbK4+NofHOGnw",
  1869. "handler": "openShop",
  1870. "customEventData": "103"
  1871. },
  1872. {
  1873. "__type__": "cc.PrefabInfo",
  1874. "root": {
  1875. "__id__": 8
  1876. },
  1877. "asset": {
  1878. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  1879. },
  1880. "fileId": "88XXCqoT9GWoq4sUZ/BBk2",
  1881. "sync": false
  1882. },
  1883. {
  1884. "__type__": "cc.Node",
  1885. "_name": "diamond",
  1886. "_objFlags": 0,
  1887. "_parent": {
  1888. "__id__": 8
  1889. },
  1890. "_children": [
  1891. {
  1892. "__id__": 48
  1893. },
  1894. {
  1895. "__id__": 51
  1896. },
  1897. {
  1898. "__id__": 54
  1899. },
  1900. {
  1901. "__id__": 57
  1902. }
  1903. ],
  1904. "_active": true,
  1905. "_components": [
  1906. {
  1907. "__id__": 61
  1908. }
  1909. ],
  1910. "_prefab": {
  1911. "__id__": 63
  1912. },
  1913. "_opacity": 255,
  1914. "_color": {
  1915. "__type__": "cc.Color",
  1916. "r": 255,
  1917. "g": 255,
  1918. "b": 255,
  1919. "a": 255
  1920. },
  1921. "_contentSize": {
  1922. "__type__": "cc.Size",
  1923. "width": 160,
  1924. "height": 40
  1925. },
  1926. "_anchorPoint": {
  1927. "__type__": "cc.Vec2",
  1928. "x": 0.5,
  1929. "y": 0.5
  1930. },
  1931. "_trs": {
  1932. "__type__": "TypedArray",
  1933. "ctor": "Float64Array",
  1934. "array": [
  1935. 387,
  1936. 0,
  1937. 0,
  1938. 0,
  1939. 0,
  1940. 0,
  1941. 1,
  1942. 1,
  1943. 1,
  1944. 0
  1945. ]
  1946. },
  1947. "_eulerAngles": {
  1948. "__type__": "cc.Vec3",
  1949. "x": 0,
  1950. "y": 0,
  1951. "z": 0
  1952. },
  1953. "_skewX": 0,
  1954. "_skewY": 0,
  1955. "_is3DNode": false,
  1956. "_groupIndex": 0,
  1957. "groupIndex": 0,
  1958. "_id": "bcWhMkzFBKNJxS8tEvGa7b"
  1959. },
  1960. {
  1961. "__type__": "cc.Node",
  1962. "_name": "New Sprite",
  1963. "_objFlags": 0,
  1964. "_parent": {
  1965. "__id__": 47
  1966. },
  1967. "_children": [],
  1968. "_active": true,
  1969. "_components": [
  1970. {
  1971. "__id__": 49
  1972. }
  1973. ],
  1974. "_prefab": {
  1975. "__id__": 50
  1976. },
  1977. "_opacity": 150,
  1978. "_color": {
  1979. "__type__": "cc.Color",
  1980. "r": 255,
  1981. "g": 255,
  1982. "b": 255,
  1983. "a": 255
  1984. },
  1985. "_contentSize": {
  1986. "__type__": "cc.Size",
  1987. "width": 160,
  1988. "height": 30
  1989. },
  1990. "_anchorPoint": {
  1991. "__type__": "cc.Vec2",
  1992. "x": 0.5,
  1993. "y": 0.5
  1994. },
  1995. "_trs": {
  1996. "__type__": "TypedArray",
  1997. "ctor": "Float64Array",
  1998. "array": [
  1999. 0,
  2000. 0,
  2001. 0,
  2002. 0,
  2003. 0,
  2004. 0,
  2005. 1,
  2006. 1,
  2007. 1,
  2008. 1
  2009. ]
  2010. },
  2011. "_eulerAngles": {
  2012. "__type__": "cc.Vec3",
  2013. "x": 0,
  2014. "y": 0,
  2015. "z": 0
  2016. },
  2017. "_skewX": 0,
  2018. "_skewY": 0,
  2019. "_is3DNode": false,
  2020. "_groupIndex": 0,
  2021. "groupIndex": 0,
  2022. "_id": "6azq+tSK1Hmqel8OVHGeCy"
  2023. },
  2024. {
  2025. "__type__": "cc.Sprite",
  2026. "_name": "",
  2027. "_objFlags": 0,
  2028. "node": {
  2029. "__id__": 48
  2030. },
  2031. "_enabled": true,
  2032. "_materials": [
  2033. {
  2034. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2035. }
  2036. ],
  2037. "_srcBlendFactor": 770,
  2038. "_dstBlendFactor": 771,
  2039. "_spriteFrame": {
  2040. "__uuid__": "7ae6b329-dade-486e-b1ba-108bc1a0e8f5"
  2041. },
  2042. "_type": 1,
  2043. "_sizeMode": 0,
  2044. "_fillType": 0,
  2045. "_fillCenter": {
  2046. "__type__": "cc.Vec2",
  2047. "x": 0,
  2048. "y": 0
  2049. },
  2050. "_fillStart": 0,
  2051. "_fillRange": 0,
  2052. "_isTrimmedMode": true,
  2053. "_atlas": null,
  2054. "_id": "f75Q+W05xBX4vGcsOlfroB"
  2055. },
  2056. {
  2057. "__type__": "cc.PrefabInfo",
  2058. "root": {
  2059. "__id__": 8
  2060. },
  2061. "asset": {
  2062. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  2063. },
  2064. "fileId": "fcGA/j6sRGILei39qiEsKd",
  2065. "sync": false
  2066. },
  2067. {
  2068. "__type__": "cc.Node",
  2069. "_name": "New Sprite",
  2070. "_objFlags": 0,
  2071. "_parent": {
  2072. "__id__": 47
  2073. },
  2074. "_children": [],
  2075. "_active": true,
  2076. "_components": [
  2077. {
  2078. "__id__": 52
  2079. }
  2080. ],
  2081. "_prefab": {
  2082. "__id__": 53
  2083. },
  2084. "_opacity": 255,
  2085. "_color": {
  2086. "__type__": "cc.Color",
  2087. "r": 255,
  2088. "g": 255,
  2089. "b": 255,
  2090. "a": 255
  2091. },
  2092. "_contentSize": {
  2093. "__type__": "cc.Size",
  2094. "width": 34,
  2095. "height": 36
  2096. },
  2097. "_anchorPoint": {
  2098. "__type__": "cc.Vec2",
  2099. "x": 0.5,
  2100. "y": 0.5
  2101. },
  2102. "_trs": {
  2103. "__type__": "TypedArray",
  2104. "ctor": "Float64Array",
  2105. "array": [
  2106. -81.057,
  2107. 0,
  2108. 0,
  2109. 0,
  2110. 0,
  2111. 0,
  2112. 1,
  2113. 1,
  2114. 1,
  2115. 1
  2116. ]
  2117. },
  2118. "_eulerAngles": {
  2119. "__type__": "cc.Vec3",
  2120. "x": 0,
  2121. "y": 0,
  2122. "z": 0
  2123. },
  2124. "_skewX": 0,
  2125. "_skewY": 0,
  2126. "_is3DNode": false,
  2127. "_groupIndex": 0,
  2128. "groupIndex": 0,
  2129. "_id": "f0H8XuLyVHi70UoDQdTl8W"
  2130. },
  2131. {
  2132. "__type__": "cc.Sprite",
  2133. "_name": "",
  2134. "_objFlags": 0,
  2135. "node": {
  2136. "__id__": 51
  2137. },
  2138. "_enabled": true,
  2139. "_materials": [
  2140. {
  2141. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2142. }
  2143. ],
  2144. "_srcBlendFactor": 770,
  2145. "_dstBlendFactor": 771,
  2146. "_spriteFrame": {
  2147. "__uuid__": "dae832c8-f9be-4e46-b4ed-887ad820e9e4"
  2148. },
  2149. "_type": 0,
  2150. "_sizeMode": 1,
  2151. "_fillType": 0,
  2152. "_fillCenter": {
  2153. "__type__": "cc.Vec2",
  2154. "x": 0,
  2155. "y": 0
  2156. },
  2157. "_fillStart": 0,
  2158. "_fillRange": 0,
  2159. "_isTrimmedMode": true,
  2160. "_atlas": null,
  2161. "_id": "d7GM53i05HK5EgpKi5Sx0h"
  2162. },
  2163. {
  2164. "__type__": "cc.PrefabInfo",
  2165. "root": {
  2166. "__id__": 8
  2167. },
  2168. "asset": {
  2169. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  2170. },
  2171. "fileId": "1eNUx1jnpINoWKEkRwCZ74",
  2172. "sync": false
  2173. },
  2174. {
  2175. "__type__": "cc.Node",
  2176. "_name": "New Sprite",
  2177. "_objFlags": 0,
  2178. "_parent": {
  2179. "__id__": 47
  2180. },
  2181. "_children": [],
  2182. "_active": true,
  2183. "_components": [
  2184. {
  2185. "__id__": 55
  2186. }
  2187. ],
  2188. "_prefab": {
  2189. "__id__": 56
  2190. },
  2191. "_opacity": 255,
  2192. "_color": {
  2193. "__type__": "cc.Color",
  2194. "r": 255,
  2195. "g": 255,
  2196. "b": 255,
  2197. "a": 255
  2198. },
  2199. "_contentSize": {
  2200. "__type__": "cc.Size",
  2201. "width": 25,
  2202. "height": 25
  2203. },
  2204. "_anchorPoint": {
  2205. "__type__": "cc.Vec2",
  2206. "x": 0.5,
  2207. "y": 0.5
  2208. },
  2209. "_trs": {
  2210. "__type__": "TypedArray",
  2211. "ctor": "Float64Array",
  2212. "array": [
  2213. 71.315,
  2214. 0,
  2215. 0,
  2216. 0,
  2217. 0,
  2218. 0,
  2219. 1,
  2220. 1,
  2221. 1,
  2222. 1
  2223. ]
  2224. },
  2225. "_eulerAngles": {
  2226. "__type__": "cc.Vec3",
  2227. "x": 0,
  2228. "y": 0,
  2229. "z": 0
  2230. },
  2231. "_skewX": 0,
  2232. "_skewY": 0,
  2233. "_is3DNode": false,
  2234. "_groupIndex": 0,
  2235. "groupIndex": 0,
  2236. "_id": "c7kiyAUvlPBaA8f1OOcXGM"
  2237. },
  2238. {
  2239. "__type__": "cc.Sprite",
  2240. "_name": "",
  2241. "_objFlags": 0,
  2242. "node": {
  2243. "__id__": 54
  2244. },
  2245. "_enabled": true,
  2246. "_materials": [
  2247. {
  2248. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2249. }
  2250. ],
  2251. "_srcBlendFactor": 770,
  2252. "_dstBlendFactor": 771,
  2253. "_spriteFrame": {
  2254. "__uuid__": "814c247e-ec6e-4d04-a42e-9168ba96559a"
  2255. },
  2256. "_type": 0,
  2257. "_sizeMode": 0,
  2258. "_fillType": 0,
  2259. "_fillCenter": {
  2260. "__type__": "cc.Vec2",
  2261. "x": 0,
  2262. "y": 0
  2263. },
  2264. "_fillStart": 0,
  2265. "_fillRange": 0,
  2266. "_isTrimmedMode": true,
  2267. "_atlas": null,
  2268. "_id": "31T+1AGd5JBq6Grts6+vC9"
  2269. },
  2270. {
  2271. "__type__": "cc.PrefabInfo",
  2272. "root": {
  2273. "__id__": 8
  2274. },
  2275. "asset": {
  2276. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  2277. },
  2278. "fileId": "01y1TWd6BIjqrbBTkisMR1",
  2279. "sync": false
  2280. },
  2281. {
  2282. "__type__": "cc.Node",
  2283. "_name": "gold",
  2284. "_objFlags": 0,
  2285. "_parent": {
  2286. "__id__": 47
  2287. },
  2288. "_children": [],
  2289. "_active": true,
  2290. "_components": [
  2291. {
  2292. "__id__": 58
  2293. },
  2294. {
  2295. "__id__": 59
  2296. }
  2297. ],
  2298. "_prefab": {
  2299. "__id__": 60
  2300. },
  2301. "_opacity": 255,
  2302. "_color": {
  2303. "__type__": "cc.Color",
  2304. "r": 255,
  2305. "g": 251,
  2306. "b": 202,
  2307. "a": 255
  2308. },
  2309. "_contentSize": {
  2310. "__type__": "cc.Size",
  2311. "width": 16.55,
  2312. "height": 35.5
  2313. },
  2314. "_anchorPoint": {
  2315. "__type__": "cc.Vec2",
  2316. "x": 1,
  2317. "y": 0.5
  2318. },
  2319. "_trs": {
  2320. "__type__": "TypedArray",
  2321. "ctor": "Float64Array",
  2322. "array": [
  2323. 51.002,
  2324. 0,
  2325. 0,
  2326. 0,
  2327. 0,
  2328. 0,
  2329. 1,
  2330. 1,
  2331. 1,
  2332. 1
  2333. ]
  2334. },
  2335. "_eulerAngles": {
  2336. "__type__": "cc.Vec3",
  2337. "x": 0,
  2338. "y": 0,
  2339. "z": 0
  2340. },
  2341. "_skewX": 0,
  2342. "_skewY": 0,
  2343. "_is3DNode": false,
  2344. "_groupIndex": 0,
  2345. "groupIndex": 0,
  2346. "_id": "0bVpOHD6NBWanhQ88SVt9K"
  2347. },
  2348. {
  2349. "__type__": "cc.Label",
  2350. "_name": "",
  2351. "_objFlags": 0,
  2352. "node": {
  2353. "__id__": 57
  2354. },
  2355. "_enabled": true,
  2356. "_materials": [
  2357. {
  2358. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2359. }
  2360. ],
  2361. "_srcBlendFactor": 770,
  2362. "_dstBlendFactor": 771,
  2363. "_string": "0",
  2364. "_N$string": "0",
  2365. "_fontSize": 22,
  2366. "_lineHeight": 25,
  2367. "_enableWrapText": true,
  2368. "_N$file": {
  2369. "__uuid__": "ab4a312d-4aea-4102-b816-a39640555ef4"
  2370. },
  2371. "_isSystemFontUsed": false,
  2372. "_spacingX": 0,
  2373. "_batchAsBitmap": false,
  2374. "_styleFlags": 0,
  2375. "_underlineHeight": 0,
  2376. "_N$horizontalAlign": 1,
  2377. "_N$verticalAlign": 1,
  2378. "_N$fontFamily": "Arial",
  2379. "_N$overflow": 0,
  2380. "_N$cacheMode": 0,
  2381. "_id": "01dVVkoGJPPLq0sdON0zrU"
  2382. },
  2383. {
  2384. "__type__": "cc.LabelOutline",
  2385. "_name": "",
  2386. "_objFlags": 0,
  2387. "node": {
  2388. "__id__": 57
  2389. },
  2390. "_enabled": true,
  2391. "_color": {
  2392. "__type__": "cc.Color",
  2393. "r": 75,
  2394. "g": 43,
  2395. "b": 0,
  2396. "a": 255
  2397. },
  2398. "_width": 2,
  2399. "_id": "abWecy3ERB35qgzUAbSPCP"
  2400. },
  2401. {
  2402. "__type__": "cc.PrefabInfo",
  2403. "root": {
  2404. "__id__": 8
  2405. },
  2406. "asset": {
  2407. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  2408. },
  2409. "fileId": "18LRxFR0BJs5LKbyPOSsGl",
  2410. "sync": false
  2411. },
  2412. {
  2413. "__type__": "cc.Button",
  2414. "_name": "",
  2415. "_objFlags": 0,
  2416. "node": {
  2417. "__id__": 47
  2418. },
  2419. "_enabled": true,
  2420. "_normalMaterial": null,
  2421. "_grayMaterial": null,
  2422. "duration": 0.1,
  2423. "zoomScale": 0.9,
  2424. "clickEvents": [
  2425. {
  2426. "__id__": 62
  2427. }
  2428. ],
  2429. "_N$interactable": true,
  2430. "_N$enableAutoGrayEffect": false,
  2431. "_N$transition": 0,
  2432. "transition": 0,
  2433. "_N$normalColor": {
  2434. "__type__": "cc.Color",
  2435. "r": 255,
  2436. "g": 255,
  2437. "b": 255,
  2438. "a": 255
  2439. },
  2440. "_N$pressedColor": {
  2441. "__type__": "cc.Color",
  2442. "r": 211,
  2443. "g": 211,
  2444. "b": 211,
  2445. "a": 255
  2446. },
  2447. "pressedColor": {
  2448. "__type__": "cc.Color",
  2449. "r": 211,
  2450. "g": 211,
  2451. "b": 211,
  2452. "a": 255
  2453. },
  2454. "_N$hoverColor": {
  2455. "__type__": "cc.Color",
  2456. "r": 255,
  2457. "g": 255,
  2458. "b": 255,
  2459. "a": 255
  2460. },
  2461. "hoverColor": {
  2462. "__type__": "cc.Color",
  2463. "r": 255,
  2464. "g": 255,
  2465. "b": 255,
  2466. "a": 255
  2467. },
  2468. "_N$disabledColor": {
  2469. "__type__": "cc.Color",
  2470. "r": 124,
  2471. "g": 124,
  2472. "b": 124,
  2473. "a": 255
  2474. },
  2475. "_N$normalSprite": null,
  2476. "_N$pressedSprite": null,
  2477. "pressedSprite": null,
  2478. "_N$hoverSprite": null,
  2479. "hoverSprite": null,
  2480. "_N$disabledSprite": null,
  2481. "_N$target": null,
  2482. "_id": "84BYdxZp9K/ZwM+4GKlmy6"
  2483. },
  2484. {
  2485. "__type__": "cc.ClickEvent",
  2486. "target": {
  2487. "__id__": 8
  2488. },
  2489. "component": "",
  2490. "_componentId": "c5197+gv+9FbK4+NofHOGnw",
  2491. "handler": "openShop",
  2492. "customEventData": "101"
  2493. },
  2494. {
  2495. "__type__": "cc.PrefabInfo",
  2496. "root": {
  2497. "__id__": 8
  2498. },
  2499. "asset": {
  2500. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  2501. },
  2502. "fileId": "02AFSEmQRDtoFNTSQFaI5R",
  2503. "sync": false
  2504. },
  2505. {
  2506. "__type__": "cc.Node",
  2507. "_name": "mail",
  2508. "_objFlags": 0,
  2509. "_parent": {
  2510. "__id__": 8
  2511. },
  2512. "_children": [],
  2513. "_active": true,
  2514. "_components": [
  2515. {
  2516. "__id__": 65
  2517. },
  2518. {
  2519. "__id__": 66
  2520. }
  2521. ],
  2522. "_prefab": {
  2523. "__id__": 68
  2524. },
  2525. "_opacity": 255,
  2526. "_color": {
  2527. "__type__": "cc.Color",
  2528. "r": 255,
  2529. "g": 255,
  2530. "b": 255,
  2531. "a": 255
  2532. },
  2533. "_contentSize": {
  2534. "__type__": "cc.Size",
  2535. "width": 50,
  2536. "height": 43
  2537. },
  2538. "_anchorPoint": {
  2539. "__type__": "cc.Vec2",
  2540. "x": 0.5,
  2541. "y": 0.5
  2542. },
  2543. "_trs": {
  2544. "__type__": "TypedArray",
  2545. "ctor": "Float64Array",
  2546. "array": [
  2547. 526.559,
  2548. 0,
  2549. 0,
  2550. 0,
  2551. 0,
  2552. 0,
  2553. 1,
  2554. 1,
  2555. 1,
  2556. 0
  2557. ]
  2558. },
  2559. "_eulerAngles": {
  2560. "__type__": "cc.Vec3",
  2561. "x": 0,
  2562. "y": 0,
  2563. "z": 0
  2564. },
  2565. "_skewX": 0,
  2566. "_skewY": 0,
  2567. "_is3DNode": false,
  2568. "_groupIndex": 0,
  2569. "groupIndex": 0,
  2570. "_id": "23LHfPbYxJpIETUDFD5/sk"
  2571. },
  2572. {
  2573. "__type__": "cc.Sprite",
  2574. "_name": "",
  2575. "_objFlags": 0,
  2576. "node": {
  2577. "__id__": 64
  2578. },
  2579. "_enabled": true,
  2580. "_materials": [
  2581. {
  2582. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2583. }
  2584. ],
  2585. "_srcBlendFactor": 770,
  2586. "_dstBlendFactor": 771,
  2587. "_spriteFrame": {
  2588. "__uuid__": "871023fa-2c40-4510-8651-ecd3c4d52c49"
  2589. },
  2590. "_type": 0,
  2591. "_sizeMode": 0,
  2592. "_fillType": 0,
  2593. "_fillCenter": {
  2594. "__type__": "cc.Vec2",
  2595. "x": 0,
  2596. "y": 0
  2597. },
  2598. "_fillStart": 0,
  2599. "_fillRange": 0,
  2600. "_isTrimmedMode": true,
  2601. "_atlas": null,
  2602. "_id": "f2DofhbLFKK5syQWg7pxYG"
  2603. },
  2604. {
  2605. "__type__": "cc.Button",
  2606. "_name": "",
  2607. "_objFlags": 0,
  2608. "node": {
  2609. "__id__": 64
  2610. },
  2611. "_enabled": true,
  2612. "_normalMaterial": null,
  2613. "_grayMaterial": null,
  2614. "duration": 0.1,
  2615. "zoomScale": 0.9,
  2616. "clickEvents": [
  2617. {
  2618. "__id__": 67
  2619. }
  2620. ],
  2621. "_N$interactable": true,
  2622. "_N$enableAutoGrayEffect": false,
  2623. "_N$transition": 3,
  2624. "transition": 3,
  2625. "_N$normalColor": {
  2626. "__type__": "cc.Color",
  2627. "r": 255,
  2628. "g": 255,
  2629. "b": 255,
  2630. "a": 255
  2631. },
  2632. "_N$pressedColor": {
  2633. "__type__": "cc.Color",
  2634. "r": 211,
  2635. "g": 211,
  2636. "b": 211,
  2637. "a": 255
  2638. },
  2639. "pressedColor": {
  2640. "__type__": "cc.Color",
  2641. "r": 211,
  2642. "g": 211,
  2643. "b": 211,
  2644. "a": 255
  2645. },
  2646. "_N$hoverColor": {
  2647. "__type__": "cc.Color",
  2648. "r": 255,
  2649. "g": 255,
  2650. "b": 255,
  2651. "a": 255
  2652. },
  2653. "hoverColor": {
  2654. "__type__": "cc.Color",
  2655. "r": 255,
  2656. "g": 255,
  2657. "b": 255,
  2658. "a": 255
  2659. },
  2660. "_N$disabledColor": {
  2661. "__type__": "cc.Color",
  2662. "r": 124,
  2663. "g": 124,
  2664. "b": 124,
  2665. "a": 255
  2666. },
  2667. "_N$normalSprite": null,
  2668. "_N$pressedSprite": null,
  2669. "pressedSprite": null,
  2670. "_N$hoverSprite": null,
  2671. "hoverSprite": null,
  2672. "_N$disabledSprite": null,
  2673. "_N$target": null,
  2674. "_id": "bb8StXGbhJ84xatJeCavHC"
  2675. },
  2676. {
  2677. "__type__": "cc.ClickEvent",
  2678. "target": {
  2679. "__id__": 8
  2680. },
  2681. "component": "",
  2682. "_componentId": "c5197+gv+9FbK4+NofHOGnw",
  2683. "handler": "onclickMail",
  2684. "customEventData": ""
  2685. },
  2686. {
  2687. "__type__": "cc.PrefabInfo",
  2688. "root": {
  2689. "__id__": 8
  2690. },
  2691. "asset": {
  2692. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  2693. },
  2694. "fileId": "e791nmDK5AL4/Tc+u0N2Lc",
  2695. "sync": false
  2696. },
  2697. {
  2698. "__type__": "cc.Node",
  2699. "_name": "setting",
  2700. "_objFlags": 0,
  2701. "_parent": {
  2702. "__id__": 8
  2703. },
  2704. "_children": [],
  2705. "_active": true,
  2706. "_components": [
  2707. {
  2708. "__id__": 70
  2709. },
  2710. {
  2711. "__id__": 71
  2712. }
  2713. ],
  2714. "_prefab": {
  2715. "__id__": 73
  2716. },
  2717. "_opacity": 255,
  2718. "_color": {
  2719. "__type__": "cc.Color",
  2720. "r": 255,
  2721. "g": 255,
  2722. "b": 255,
  2723. "a": 255
  2724. },
  2725. "_contentSize": {
  2726. "__type__": "cc.Size",
  2727. "width": 39,
  2728. "height": 38
  2729. },
  2730. "_anchorPoint": {
  2731. "__type__": "cc.Vec2",
  2732. "x": 0.5,
  2733. "y": 0.5
  2734. },
  2735. "_trs": {
  2736. "__type__": "TypedArray",
  2737. "ctor": "Float64Array",
  2738. "array": [
  2739. 593.378,
  2740. 0,
  2741. 0,
  2742. 0,
  2743. 0,
  2744. 0,
  2745. 1,
  2746. 1,
  2747. 1,
  2748. 0
  2749. ]
  2750. },
  2751. "_eulerAngles": {
  2752. "__type__": "cc.Vec3",
  2753. "x": 0,
  2754. "y": 0,
  2755. "z": 0
  2756. },
  2757. "_skewX": 0,
  2758. "_skewY": 0,
  2759. "_is3DNode": false,
  2760. "_groupIndex": 0,
  2761. "groupIndex": 0,
  2762. "_id": "868h5PSHdDooMHdH5RslXL"
  2763. },
  2764. {
  2765. "__type__": "cc.Sprite",
  2766. "_name": "",
  2767. "_objFlags": 0,
  2768. "node": {
  2769. "__id__": 69
  2770. },
  2771. "_enabled": true,
  2772. "_materials": [
  2773. {
  2774. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2775. }
  2776. ],
  2777. "_srcBlendFactor": 770,
  2778. "_dstBlendFactor": 771,
  2779. "_spriteFrame": {
  2780. "__uuid__": "081d1176-3dd1-4d69-9210-2413e3541a0f"
  2781. },
  2782. "_type": 0,
  2783. "_sizeMode": 1,
  2784. "_fillType": 0,
  2785. "_fillCenter": {
  2786. "__type__": "cc.Vec2",
  2787. "x": 0,
  2788. "y": 0
  2789. },
  2790. "_fillStart": 0,
  2791. "_fillRange": 0,
  2792. "_isTrimmedMode": true,
  2793. "_atlas": null,
  2794. "_id": "92xEXLM2RIeZKjm8kXcmZE"
  2795. },
  2796. {
  2797. "__type__": "cc.Button",
  2798. "_name": "",
  2799. "_objFlags": 0,
  2800. "node": {
  2801. "__id__": 69
  2802. },
  2803. "_enabled": true,
  2804. "_normalMaterial": null,
  2805. "_grayMaterial": null,
  2806. "duration": 0.1,
  2807. "zoomScale": 0.9,
  2808. "clickEvents": [
  2809. {
  2810. "__id__": 72
  2811. }
  2812. ],
  2813. "_N$interactable": true,
  2814. "_N$enableAutoGrayEffect": false,
  2815. "_N$transition": 3,
  2816. "transition": 3,
  2817. "_N$normalColor": {
  2818. "__type__": "cc.Color",
  2819. "r": 255,
  2820. "g": 255,
  2821. "b": 255,
  2822. "a": 255
  2823. },
  2824. "_N$pressedColor": {
  2825. "__type__": "cc.Color",
  2826. "r": 211,
  2827. "g": 211,
  2828. "b": 211,
  2829. "a": 255
  2830. },
  2831. "pressedColor": {
  2832. "__type__": "cc.Color",
  2833. "r": 211,
  2834. "g": 211,
  2835. "b": 211,
  2836. "a": 255
  2837. },
  2838. "_N$hoverColor": {
  2839. "__type__": "cc.Color",
  2840. "r": 255,
  2841. "g": 255,
  2842. "b": 255,
  2843. "a": 255
  2844. },
  2845. "hoverColor": {
  2846. "__type__": "cc.Color",
  2847. "r": 255,
  2848. "g": 255,
  2849. "b": 255,
  2850. "a": 255
  2851. },
  2852. "_N$disabledColor": {
  2853. "__type__": "cc.Color",
  2854. "r": 124,
  2855. "g": 124,
  2856. "b": 124,
  2857. "a": 255
  2858. },
  2859. "_N$normalSprite": null,
  2860. "_N$pressedSprite": null,
  2861. "pressedSprite": null,
  2862. "_N$hoverSprite": null,
  2863. "hoverSprite": null,
  2864. "_N$disabledSprite": null,
  2865. "_N$target": null,
  2866. "_id": "37J0WRZARMCK0Fxe5/Hnub"
  2867. },
  2868. {
  2869. "__type__": "cc.ClickEvent",
  2870. "target": {
  2871. "__id__": 8
  2872. },
  2873. "component": "",
  2874. "_componentId": "c5197+gv+9FbK4+NofHOGnw",
  2875. "handler": "onclickSet",
  2876. "customEventData": ""
  2877. },
  2878. {
  2879. "__type__": "cc.PrefabInfo",
  2880. "root": {
  2881. "__id__": 8
  2882. },
  2883. "asset": {
  2884. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  2885. },
  2886. "fileId": "59pUIeuqJEwJJKaoPosNQD",
  2887. "sync": false
  2888. },
  2889. {
  2890. "__type__": "cc.Widget",
  2891. "_name": "",
  2892. "_objFlags": 0,
  2893. "node": {
  2894. "__id__": 8
  2895. },
  2896. "_enabled": true,
  2897. "alignMode": 1,
  2898. "_target": null,
  2899. "_alignFlags": 33,
  2900. "_left": 0,
  2901. "_right": 10,
  2902. "_top": 10,
  2903. "_bottom": 0,
  2904. "_verticalCenter": 0,
  2905. "_horizontalCenter": 0,
  2906. "_isAbsLeft": true,
  2907. "_isAbsRight": true,
  2908. "_isAbsTop": true,
  2909. "_isAbsBottom": true,
  2910. "_isAbsHorizontalCenter": true,
  2911. "_isAbsVerticalCenter": true,
  2912. "_originalWidth": 0,
  2913. "_originalHeight": 0,
  2914. "_id": "0eJB9V8IhM+oGKVP0U4plb"
  2915. },
  2916. {
  2917. "__type__": "7d960ysRr9KlbQ4MbYsl6fv",
  2918. "_name": "",
  2919. "_objFlags": 0,
  2920. "node": {
  2921. "__id__": 8
  2922. },
  2923. "_enabled": true,
  2924. "_id": "706rJMR79OsrwXRppE1xcZ"
  2925. },
  2926. {
  2927. "__type__": "c5197+gv+9FbK4+NofHOGnw",
  2928. "_name": "",
  2929. "_objFlags": 0,
  2930. "node": {
  2931. "__id__": 8
  2932. },
  2933. "_enabled": true,
  2934. "lbPower": {
  2935. "__id__": 17
  2936. },
  2937. "lbCoin": {
  2938. "__id__": 41
  2939. },
  2940. "lbDiamond": {
  2941. "__id__": 58
  2942. },
  2943. "mEmailNode": {
  2944. "__id__": 64
  2945. },
  2946. "_id": "57hOsf3H5FUoy9SuF36Jp7"
  2947. },
  2948. {
  2949. "__type__": "cc.PrefabInfo",
  2950. "root": {
  2951. "__id__": 8
  2952. },
  2953. "asset": {
  2954. "__uuid__": "fa9ffea5-5e91-4337-bccf-6951ccefbb51"
  2955. },
  2956. "fileId": "",
  2957. "sync": false
  2958. },
  2959. {
  2960. "__type__": "cc.Node",
  2961. "_name": "layout1",
  2962. "_objFlags": 0,
  2963. "_parent": {
  2964. "__id__": 2
  2965. },
  2966. "_children": [],
  2967. "_active": true,
  2968. "_components": [],
  2969. "_prefab": null,
  2970. "_opacity": 255,
  2971. "_color": {
  2972. "__type__": "cc.Color",
  2973. "r": 255,
  2974. "g": 255,
  2975. "b": 255,
  2976. "a": 255
  2977. },
  2978. "_contentSize": {
  2979. "__type__": "cc.Size",
  2980. "width": 0,
  2981. "height": 0
  2982. },
  2983. "_anchorPoint": {
  2984. "__type__": "cc.Vec2",
  2985. "x": 0.5,
  2986. "y": 0.5
  2987. },
  2988. "_trs": {
  2989. "__type__": "TypedArray",
  2990. "ctor": "Float64Array",
  2991. "array": [
  2992. 0,
  2993. 0,
  2994. 0,
  2995. 0,
  2996. 0,
  2997. 0,
  2998. 1,
  2999. 1,
  3000. 1,
  3001. 1
  3002. ]
  3003. },
  3004. "_eulerAngles": {
  3005. "__type__": "cc.Vec3",
  3006. "x": 0,
  3007. "y": 0,
  3008. "z": 0
  3009. },
  3010. "_skewX": 0,
  3011. "_skewY": 0,
  3012. "_is3DNode": false,
  3013. "_groupIndex": 0,
  3014. "groupIndex": 0,
  3015. "_id": "52rZaQ+UJDiqABKqod/j9a"
  3016. },
  3017. {
  3018. "__type__": "cc.Node",
  3019. "_name": "guideMark",
  3020. "_objFlags": 0,
  3021. "_parent": {
  3022. "__id__": 2
  3023. },
  3024. "_children": [
  3025. {
  3026. "__id__": 80
  3027. },
  3028. {
  3029. "__id__": 85
  3030. }
  3031. ],
  3032. "_active": true,
  3033. "_components": [
  3034. {
  3035. "__id__": 88
  3036. }
  3037. ],
  3038. "_prefab": null,
  3039. "_opacity": 255,
  3040. "_color": {
  3041. "__type__": "cc.Color",
  3042. "r": 255,
  3043. "g": 255,
  3044. "b": 255,
  3045. "a": 255
  3046. },
  3047. "_contentSize": {
  3048. "__type__": "cc.Size",
  3049. "width": 1334,
  3050. "height": 750
  3051. },
  3052. "_anchorPoint": {
  3053. "__type__": "cc.Vec2",
  3054. "x": 0.5,
  3055. "y": 0.5
  3056. },
  3057. "_trs": {
  3058. "__type__": "TypedArray",
  3059. "ctor": "Float64Array",
  3060. "array": [
  3061. 0,
  3062. 0,
  3063. 0,
  3064. 0,
  3065. 0,
  3066. 0,
  3067. 1,
  3068. 1,
  3069. 1,
  3070. 1
  3071. ]
  3072. },
  3073. "_eulerAngles": {
  3074. "__type__": "cc.Vec3",
  3075. "x": 0,
  3076. "y": 0,
  3077. "z": 0
  3078. },
  3079. "_skewX": 0,
  3080. "_skewY": 0,
  3081. "_is3DNode": false,
  3082. "_groupIndex": 0,
  3083. "groupIndex": 0,
  3084. "_id": "a30imiDBBPAp+8TXuaXdwo"
  3085. },
  3086. {
  3087. "__type__": "cc.Node",
  3088. "_name": "activeMask",
  3089. "_objFlags": 0,
  3090. "_parent": {
  3091. "__id__": 79
  3092. },
  3093. "_children": [
  3094. {
  3095. "__id__": 81
  3096. }
  3097. ],
  3098. "_active": true,
  3099. "_components": [
  3100. {
  3101. "__id__": 84
  3102. }
  3103. ],
  3104. "_prefab": null,
  3105. "_opacity": 255,
  3106. "_color": {
  3107. "__type__": "cc.Color",
  3108. "r": 255,
  3109. "g": 255,
  3110. "b": 255,
  3111. "a": 255
  3112. },
  3113. "_contentSize": {
  3114. "__type__": "cc.Size",
  3115. "width": 160,
  3116. "height": 160
  3117. },
  3118. "_anchorPoint": {
  3119. "__type__": "cc.Vec2",
  3120. "x": 0.5,
  3121. "y": 0.5
  3122. },
  3123. "_trs": {
  3124. "__type__": "TypedArray",
  3125. "ctor": "Float64Array",
  3126. "array": [
  3127. 0,
  3128. 0,
  3129. 0,
  3130. 0,
  3131. 0,
  3132. 0,
  3133. 1,
  3134. 1,
  3135. 1,
  3136. 1
  3137. ]
  3138. },
  3139. "_eulerAngles": {
  3140. "__type__": "cc.Vec3",
  3141. "x": 0,
  3142. "y": 0,
  3143. "z": 0
  3144. },
  3145. "_skewX": 0,
  3146. "_skewY": 0,
  3147. "_is3DNode": false,
  3148. "_groupIndex": 0,
  3149. "groupIndex": 0,
  3150. "_id": "db9BOnopRG+JcNc35V19/R"
  3151. },
  3152. {
  3153. "__type__": "cc.Node",
  3154. "_name": "shard",
  3155. "_objFlags": 0,
  3156. "_parent": {
  3157. "__id__": 80
  3158. },
  3159. "_children": [],
  3160. "_active": true,
  3161. "_components": [
  3162. {
  3163. "__id__": 82
  3164. },
  3165. {
  3166. "__id__": 83
  3167. }
  3168. ],
  3169. "_prefab": null,
  3170. "_opacity": 200,
  3171. "_color": {
  3172. "__type__": "cc.Color",
  3173. "r": 0,
  3174. "g": 0,
  3175. "b": 0,
  3176. "a": 255
  3177. },
  3178. "_contentSize": {
  3179. "__type__": "cc.Size",
  3180. "width": 1334,
  3181. "height": 750
  3182. },
  3183. "_anchorPoint": {
  3184. "__type__": "cc.Vec2",
  3185. "x": 0.5,
  3186. "y": 0.5
  3187. },
  3188. "_trs": {
  3189. "__type__": "TypedArray",
  3190. "ctor": "Float64Array",
  3191. "array": [
  3192. 0,
  3193. 0,
  3194. 0,
  3195. 0,
  3196. 0,
  3197. 0,
  3198. 1,
  3199. 1,
  3200. 1,
  3201. 1
  3202. ]
  3203. },
  3204. "_eulerAngles": {
  3205. "__type__": "cc.Vec3",
  3206. "x": 0,
  3207. "y": 0,
  3208. "z": 0
  3209. },
  3210. "_skewX": 0,
  3211. "_skewY": 0,
  3212. "_is3DNode": false,
  3213. "_groupIndex": 0,
  3214. "groupIndex": 0,
  3215. "_id": "cbndncoV5PtIvE5vKXUvuC"
  3216. },
  3217. {
  3218. "__type__": "cc.Sprite",
  3219. "_name": "",
  3220. "_objFlags": 0,
  3221. "node": {
  3222. "__id__": 81
  3223. },
  3224. "_enabled": true,
  3225. "_materials": [
  3226. {
  3227. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3228. }
  3229. ],
  3230. "_srcBlendFactor": 770,
  3231. "_dstBlendFactor": 771,
  3232. "_spriteFrame": {
  3233. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  3234. },
  3235. "_type": 0,
  3236. "_sizeMode": 0,
  3237. "_fillType": 0,
  3238. "_fillCenter": {
  3239. "__type__": "cc.Vec2",
  3240. "x": 0,
  3241. "y": 0
  3242. },
  3243. "_fillStart": 0,
  3244. "_fillRange": 0,
  3245. "_isTrimmedMode": true,
  3246. "_atlas": null,
  3247. "_id": "766dTWsz5LnLDJebbvAr56"
  3248. },
  3249. {
  3250. "__type__": "50926/BsyZKHYMN6tib9fNS",
  3251. "_name": "",
  3252. "_objFlags": 0,
  3253. "node": {
  3254. "__id__": 81
  3255. },
  3256. "_enabled": true,
  3257. "_id": "34a0bfXVlGw5t2MnRZ01fV"
  3258. },
  3259. {
  3260. "__type__": "cc.Mask",
  3261. "_name": "",
  3262. "_objFlags": 0,
  3263. "node": {
  3264. "__id__": 80
  3265. },
  3266. "_enabled": true,
  3267. "_materials": [
  3268. {
  3269. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3270. }
  3271. ],
  3272. "_spriteFrame": null,
  3273. "_type": 0,
  3274. "_segments": 64,
  3275. "_N$alphaThreshold": 0.1,
  3276. "_N$inverted": true,
  3277. "_id": "2ciD/qzotD0qxTeTmWtpv2"
  3278. },
  3279. {
  3280. "__type__": "cc.Node",
  3281. "_name": "guideMark",
  3282. "_objFlags": 0,
  3283. "_parent": {
  3284. "__id__": 79
  3285. },
  3286. "_children": [
  3287. {
  3288. "__id__": 86
  3289. }
  3290. ],
  3291. "_active": true,
  3292. "_components": [],
  3293. "_prefab": null,
  3294. "_opacity": 255,
  3295. "_color": {
  3296. "__type__": "cc.Color",
  3297. "r": 255,
  3298. "g": 255,
  3299. "b": 255,
  3300. "a": 255
  3301. },
  3302. "_contentSize": {
  3303. "__type__": "cc.Size",
  3304. "width": 0,
  3305. "height": 0
  3306. },
  3307. "_anchorPoint": {
  3308. "__type__": "cc.Vec2",
  3309. "x": 0.5,
  3310. "y": 0.5
  3311. },
  3312. "_trs": {
  3313. "__type__": "TypedArray",
  3314. "ctor": "Float64Array",
  3315. "array": [
  3316. 0,
  3317. 0,
  3318. 0,
  3319. 0,
  3320. 0,
  3321. 0,
  3322. 1,
  3323. 1,
  3324. 1,
  3325. 1
  3326. ]
  3327. },
  3328. "_eulerAngles": {
  3329. "__type__": "cc.Vec3",
  3330. "x": 0,
  3331. "y": 0,
  3332. "z": 0
  3333. },
  3334. "_skewX": 0,
  3335. "_skewY": 0,
  3336. "_is3DNode": false,
  3337. "_groupIndex": 0,
  3338. "groupIndex": 0,
  3339. "_id": "efXtp/KtxPc4hfE711xe4K"
  3340. },
  3341. {
  3342. "__type__": "cc.Node",
  3343. "_name": "1",
  3344. "_objFlags": 0,
  3345. "_parent": {
  3346. "__id__": 85
  3347. },
  3348. "_children": [],
  3349. "_active": true,
  3350. "_components": [
  3351. {
  3352. "__id__": 87
  3353. }
  3354. ],
  3355. "_prefab": null,
  3356. "_opacity": 255,
  3357. "_color": {
  3358. "__type__": "cc.Color",
  3359. "r": 255,
  3360. "g": 255,
  3361. "b": 255,
  3362. "a": 255
  3363. },
  3364. "_contentSize": {
  3365. "__type__": "cc.Size",
  3366. "width": 0,
  3367. "height": 0
  3368. },
  3369. "_anchorPoint": {
  3370. "__type__": "cc.Vec2",
  3371. "x": 0.5,
  3372. "y": 0.5
  3373. },
  3374. "_trs": {
  3375. "__type__": "TypedArray",
  3376. "ctor": "Float64Array",
  3377. "array": [
  3378. 0,
  3379. 0,
  3380. 0,
  3381. 0,
  3382. 0,
  3383. 0,
  3384. 1,
  3385. 0.8,
  3386. 0.8,
  3387. 0.8
  3388. ]
  3389. },
  3390. "_eulerAngles": {
  3391. "__type__": "cc.Vec3",
  3392. "x": 0,
  3393. "y": 0,
  3394. "z": 0
  3395. },
  3396. "_skewX": 0,
  3397. "_skewY": 0,
  3398. "_is3DNode": false,
  3399. "_groupIndex": 0,
  3400. "groupIndex": 0,
  3401. "_id": "f13soeR8BHlrDGU0dpxp0O"
  3402. },
  3403. {
  3404. "__type__": "sp.Skeleton",
  3405. "_name": "",
  3406. "_objFlags": 0,
  3407. "node": {
  3408. "__id__": 86
  3409. },
  3410. "_enabled": true,
  3411. "_materials": [
  3412. {
  3413. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  3414. }
  3415. ],
  3416. "paused": false,
  3417. "defaultSkin": "default",
  3418. "defaultAnimation": "tutorial_arrow",
  3419. "_preCacheMode": 0,
  3420. "_cacheMode": 0,
  3421. "loop": true,
  3422. "premultipliedAlpha": true,
  3423. "timeScale": 1,
  3424. "_accTime": 0,
  3425. "_playCount": 0,
  3426. "_frameCache": null,
  3427. "_curFrame": null,
  3428. "_skeletonCache": null,
  3429. "_animationName": "tutorial_arrow",
  3430. "_animationQueue": [],
  3431. "_headAniInfo": null,
  3432. "_playTimes": 0,
  3433. "_isAniComplete": true,
  3434. "_N$skeletonData": {
  3435. "__uuid__": "cc95f661-2168-428f-9d0a-d41decc913e9"
  3436. },
  3437. "_N$_defaultCacheMode": 0,
  3438. "_N$debugSlots": false,
  3439. "_N$debugBones": false,
  3440. "_N$debugMesh": false,
  3441. "_N$useTint": false,
  3442. "_N$enableBatch": false,
  3443. "_id": "3egw/XYHdAH5GSHsFBmq8K"
  3444. },
  3445. {
  3446. "__type__": "1406cpHqdNFWah+/ezPk5P5",
  3447. "_name": "",
  3448. "_objFlags": 0,
  3449. "node": {
  3450. "__id__": 79
  3451. },
  3452. "_enabled": true,
  3453. "mLayout0": {
  3454. "__id__": 2
  3455. },
  3456. "mMask": {
  3457. "__id__": 84
  3458. },
  3459. "mShadow": {
  3460. "__id__": 81
  3461. },
  3462. "guideMark": {
  3463. "__id__": 85
  3464. },
  3465. "_id": "43AV2lXHZHGI+EDgLtC2dR"
  3466. },
  3467. {
  3468. "__type__": "cc.Node",
  3469. "_name": "load",
  3470. "_objFlags": 0,
  3471. "_parent": {
  3472. "__id__": 2
  3473. },
  3474. "_children": [
  3475. {
  3476. "__id__": 90
  3477. }
  3478. ],
  3479. "_active": true,
  3480. "_components": [
  3481. {
  3482. "__id__": 92
  3483. },
  3484. {
  3485. "__id__": 93
  3486. },
  3487. {
  3488. "__id__": 94
  3489. },
  3490. {
  3491. "__id__": 95
  3492. }
  3493. ],
  3494. "_prefab": null,
  3495. "_opacity": 120,
  3496. "_color": {
  3497. "__type__": "cc.Color",
  3498. "r": 0,
  3499. "g": 0,
  3500. "b": 0,
  3501. "a": 255
  3502. },
  3503. "_contentSize": {
  3504. "__type__": "cc.Size",
  3505. "width": 1334,
  3506. "height": 750
  3507. },
  3508. "_anchorPoint": {
  3509. "__type__": "cc.Vec2",
  3510. "x": 0.5,
  3511. "y": 0.5
  3512. },
  3513. "_trs": {
  3514. "__type__": "TypedArray",
  3515. "ctor": "Float64Array",
  3516. "array": [
  3517. 0,
  3518. 0,
  3519. 0,
  3520. 0,
  3521. 0,
  3522. 0,
  3523. 1,
  3524. 1,
  3525. 1,
  3526. 1
  3527. ]
  3528. },
  3529. "_eulerAngles": {
  3530. "__type__": "cc.Vec3",
  3531. "x": 0,
  3532. "y": 0,
  3533. "z": 0
  3534. },
  3535. "_skewX": 0,
  3536. "_skewY": 0,
  3537. "_is3DNode": false,
  3538. "_groupIndex": 0,
  3539. "groupIndex": 0,
  3540. "_id": "c6IKj1jhhJv7oYrD2BBmSN"
  3541. },
  3542. {
  3543. "__type__": "cc.Node",
  3544. "_name": "loading_circle",
  3545. "_objFlags": 0,
  3546. "_parent": {
  3547. "__id__": 89
  3548. },
  3549. "_children": [],
  3550. "_active": true,
  3551. "_components": [
  3552. {
  3553. "__id__": 91
  3554. }
  3555. ],
  3556. "_prefab": null,
  3557. "_opacity": 255,
  3558. "_color": {
  3559. "__type__": "cc.Color",
  3560. "r": 255,
  3561. "g": 255,
  3562. "b": 255,
  3563. "a": 255
  3564. },
  3565. "_contentSize": {
  3566. "__type__": "cc.Size",
  3567. "width": 42,
  3568. "height": 42
  3569. },
  3570. "_anchorPoint": {
  3571. "__type__": "cc.Vec2",
  3572. "x": 0.5,
  3573. "y": 0.5
  3574. },
  3575. "_trs": {
  3576. "__type__": "TypedArray",
  3577. "ctor": "Float64Array",
  3578. "array": [
  3579. 0,
  3580. 0,
  3581. 0,
  3582. 0,
  3583. 0,
  3584. 0,
  3585. 1,
  3586. 1,
  3587. 1,
  3588. 1
  3589. ]
  3590. },
  3591. "_eulerAngles": {
  3592. "__type__": "cc.Vec3",
  3593. "x": 0,
  3594. "y": 0,
  3595. "z": 0
  3596. },
  3597. "_skewX": 0,
  3598. "_skewY": 0,
  3599. "_is3DNode": false,
  3600. "_groupIndex": 0,
  3601. "groupIndex": 0,
  3602. "_id": "a6F+/nlQJHG7C42GQHftfs"
  3603. },
  3604. {
  3605. "__type__": "cc.Sprite",
  3606. "_name": "",
  3607. "_objFlags": 0,
  3608. "node": {
  3609. "__id__": 90
  3610. },
  3611. "_enabled": true,
  3612. "_materials": [
  3613. {
  3614. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3615. }
  3616. ],
  3617. "_srcBlendFactor": 770,
  3618. "_dstBlendFactor": 771,
  3619. "_spriteFrame": {
  3620. "__uuid__": "065f7aaa-0441-469d-ae5a-63b1be8f95b6"
  3621. },
  3622. "_type": 0,
  3623. "_sizeMode": 1,
  3624. "_fillType": 0,
  3625. "_fillCenter": {
  3626. "__type__": "cc.Vec2",
  3627. "x": 0,
  3628. "y": 0
  3629. },
  3630. "_fillStart": 0,
  3631. "_fillRange": 0,
  3632. "_isTrimmedMode": true,
  3633. "_atlas": null,
  3634. "_id": "e24/qrWe9Ilbh205vAVhUP"
  3635. },
  3636. {
  3637. "__type__": "cc.Sprite",
  3638. "_name": "",
  3639. "_objFlags": 0,
  3640. "node": {
  3641. "__id__": 89
  3642. },
  3643. "_enabled": true,
  3644. "_materials": [
  3645. {
  3646. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3647. }
  3648. ],
  3649. "_srcBlendFactor": 770,
  3650. "_dstBlendFactor": 771,
  3651. "_spriteFrame": {
  3652. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  3653. },
  3654. "_type": 0,
  3655. "_sizeMode": 0,
  3656. "_fillType": 0,
  3657. "_fillCenter": {
  3658. "__type__": "cc.Vec2",
  3659. "x": 0,
  3660. "y": 0
  3661. },
  3662. "_fillStart": 0,
  3663. "_fillRange": 0,
  3664. "_isTrimmedMode": true,
  3665. "_atlas": null,
  3666. "_id": "abH22CXKRGQasmbgqzfSSv"
  3667. },
  3668. {
  3669. "__type__": "cc.BlockInputEvents",
  3670. "_name": "",
  3671. "_objFlags": 0,
  3672. "node": {
  3673. "__id__": 89
  3674. },
  3675. "_enabled": true,
  3676. "_id": "5azwizS2BAzqCy7cfDpl2n"
  3677. },
  3678. {
  3679. "__type__": "cc.Widget",
  3680. "_name": "",
  3681. "_objFlags": 0,
  3682. "node": {
  3683. "__id__": 89
  3684. },
  3685. "_enabled": true,
  3686. "alignMode": 1,
  3687. "_target": null,
  3688. "_alignFlags": 45,
  3689. "_left": 0,
  3690. "_right": 0,
  3691. "_top": 0,
  3692. "_bottom": 0,
  3693. "_verticalCenter": 0,
  3694. "_horizontalCenter": 0,
  3695. "_isAbsLeft": true,
  3696. "_isAbsRight": true,
  3697. "_isAbsTop": true,
  3698. "_isAbsBottom": true,
  3699. "_isAbsHorizontalCenter": true,
  3700. "_isAbsVerticalCenter": true,
  3701. "_originalWidth": 100,
  3702. "_originalHeight": 100,
  3703. "_id": "bdeytWjTZI/p1rQNxjcD0f"
  3704. },
  3705. {
  3706. "__type__": "5707dIKCrdND7TgP73NAZfV",
  3707. "_name": "",
  3708. "_objFlags": 0,
  3709. "node": {
  3710. "__id__": 89
  3711. },
  3712. "_enabled": true,
  3713. "rotateNode": {
  3714. "__id__": 90
  3715. },
  3716. "_id": "524mbKcv9M77WbYlLmEGrF"
  3717. },
  3718. {
  3719. "__type__": "cc.Canvas",
  3720. "_name": "",
  3721. "_objFlags": 0,
  3722. "node": {
  3723. "__id__": 2
  3724. },
  3725. "_enabled": true,
  3726. "_designResolution": {
  3727. "__type__": "cc.Size",
  3728. "width": 1334,
  3729. "height": 750
  3730. },
  3731. "_fitWidth": false,
  3732. "_fitHeight": true,
  3733. "_id": "a9QR+xfJpKJZm5xrMxS7F4"
  3734. },
  3735. {
  3736. "__type__": "cc.Widget",
  3737. "_name": "",
  3738. "_objFlags": 0,
  3739. "node": {
  3740. "__id__": 2
  3741. },
  3742. "_enabled": true,
  3743. "alignMode": 1,
  3744. "_target": null,
  3745. "_alignFlags": 45,
  3746. "_left": 0,
  3747. "_right": 0,
  3748. "_top": 0,
  3749. "_bottom": 0,
  3750. "_verticalCenter": 0,
  3751. "_horizontalCenter": 0,
  3752. "_isAbsLeft": true,
  3753. "_isAbsRight": true,
  3754. "_isAbsTop": true,
  3755. "_isAbsBottom": true,
  3756. "_isAbsHorizontalCenter": true,
  3757. "_isAbsVerticalCenter": true,
  3758. "_originalWidth": 1334,
  3759. "_originalHeight": 0,
  3760. "_id": "0cVo/HBTZA4oX3gxozJwsh"
  3761. },
  3762. {
  3763. "__type__": "7e1acWS4btEFLQ6Cpkhl5Ex",
  3764. "_name": "",
  3765. "_objFlags": 0,
  3766. "node": {
  3767. "__id__": 2
  3768. },
  3769. "_enabled": true,
  3770. "url_dev": "http://192.168.0.108:9999",
  3771. "url_test": "http://47.106.87.53:9999",
  3772. "url_prod": "http://xsdmx.funqueuehk.com/xsdmx",
  3773. "mChannel": 1,
  3774. "_id": "0bgHBOec9KwKaHnqUeqff5"
  3775. },
  3776. {
  3777. "__type__": "3d264uzMp9AmpRfP/6dLcPR",
  3778. "_name": "",
  3779. "_objFlags": 0,
  3780. "node": {
  3781. "__id__": 2
  3782. },
  3783. "_enabled": true,
  3784. "_id": "a7rUxA6UZGaInSqUSvJJX1"
  3785. },
  3786. {
  3787. "__type__": "55cd4aLA19Kl5ViM+3IP4E/",
  3788. "_name": "",
  3789. "_objFlags": 0,
  3790. "node": {
  3791. "__id__": 2
  3792. },
  3793. "_enabled": true,
  3794. "mLayer": {
  3795. "__id__": 7
  3796. },
  3797. "mLayer1": {
  3798. "__id__": 78
  3799. },
  3800. "_id": "26SiuMZkJJTaYf/dskVd6A"
  3801. },
  3802. {
  3803. "__type__": "e425ajU8s9GUZ109zIh6jIf",
  3804. "_name": "",
  3805. "_objFlags": 0,
  3806. "node": {
  3807. "__id__": 2
  3808. },
  3809. "_enabled": true,
  3810. "jsonAsset": {
  3811. "__uuid__": "4a721078-0665-44d3-b0e7-dbf38a6255cb"
  3812. },
  3813. "_id": "51wlzNFxJLPayXSVbaUI7+"
  3814. },
  3815. {
  3816. "__type__": "b902fuPqp5GaJPLoBL3IWMm",
  3817. "_name": "",
  3818. "_objFlags": 0,
  3819. "node": {
  3820. "__id__": 2
  3821. },
  3822. "_enabled": true,
  3823. "mMapCamera": {
  3824. "__id__": 4
  3825. },
  3826. "mLoading": {
  3827. "__id__": 89
  3828. },
  3829. "mTips": {
  3830. "__uuid__": "b1154c42-91b2-43d9-818e-f39952ef7798"
  3831. },
  3832. "mGuideMask": {
  3833. "__id__": 88
  3834. },
  3835. "mI18n": {
  3836. "__id__": 99
  3837. },
  3838. "RED_POINT": {
  3839. "__uuid__": "10c71866-a1c6-4342-8b37-9264cfd94ee3"
  3840. },
  3841. "topNode": {
  3842. "__id__": 8
  3843. },
  3844. "_id": "9240dONYhNB7DuAFnC4OB5"
  3845. }
  3846. ]