Main.fire 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498
  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": true,
  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": true,
  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__": 8
  79. },
  80. {
  81. "__id__": 11
  82. },
  83. {
  84. "__id__": 14
  85. },
  86. {
  87. "__id__": 50
  88. }
  89. ],
  90. "_active": true,
  91. "_components": [
  92. {
  93. "__id__": 72
  94. },
  95. {
  96. "__id__": 73
  97. },
  98. {
  99. "__id__": 74
  100. }
  101. ],
  102. "_prefab": null,
  103. "_opacity": 255,
  104. "_color": {
  105. "__type__": "cc.Color",
  106. "r": 252,
  107. "g": 252,
  108. "b": 252,
  109. "a": 255
  110. },
  111. "_contentSize": {
  112. "__type__": "cc.Size",
  113. "width": 640,
  114. "height": 1280
  115. },
  116. "_anchorPoint": {
  117. "__type__": "cc.Vec2",
  118. "x": 0.5,
  119. "y": 0.5
  120. },
  121. "_trs": {
  122. "__type__": "TypedArray",
  123. "ctor": "Float64Array",
  124. "array": [
  125. 320,
  126. 640,
  127. 0,
  128. 0,
  129. 0,
  130. 0,
  131. 1,
  132. 1,
  133. 1,
  134. 1
  135. ]
  136. },
  137. "_eulerAngles": {
  138. "__type__": "cc.Vec3",
  139. "x": 0,
  140. "y": 0,
  141. "z": 0
  142. },
  143. "_skewX": 0,
  144. "_skewY": 0,
  145. "_is3DNode": false,
  146. "_groupIndex": 0,
  147. "groupIndex": 0,
  148. "_id": "a286bbGknJLZpRpxROV6M94"
  149. },
  150. {
  151. "__type__": "cc.Node",
  152. "_name": "Main Camera",
  153. "_objFlags": 0,
  154. "_parent": {
  155. "__id__": 2
  156. },
  157. "_children": [],
  158. "_active": true,
  159. "_components": [
  160. {
  161. "__id__": 4
  162. }
  163. ],
  164. "_prefab": null,
  165. "_opacity": 255,
  166. "_color": {
  167. "__type__": "cc.Color",
  168. "r": 255,
  169. "g": 255,
  170. "b": 255,
  171. "a": 255
  172. },
  173. "_contentSize": {
  174. "__type__": "cc.Size",
  175. "width": 0,
  176. "height": 0
  177. },
  178. "_anchorPoint": {
  179. "__type__": "cc.Vec2",
  180. "x": 0.5,
  181. "y": 0.5
  182. },
  183. "_trs": {
  184. "__type__": "TypedArray",
  185. "ctor": "Float64Array",
  186. "array": [
  187. 0,
  188. 0,
  189. 537.8017757501365,
  190. 0,
  191. 0,
  192. 0,
  193. 1,
  194. 1,
  195. 1,
  196. 1
  197. ]
  198. },
  199. "_eulerAngles": {
  200. "__type__": "cc.Vec3",
  201. "x": 0,
  202. "y": 0,
  203. "z": 0
  204. },
  205. "_skewX": 0,
  206. "_skewY": 0,
  207. "_is3DNode": false,
  208. "_groupIndex": 0,
  209. "groupIndex": 0,
  210. "_id": "c8am+dxHVNVLHXlfCEGgOI"
  211. },
  212. {
  213. "__type__": "cc.Camera",
  214. "_name": "",
  215. "_objFlags": 0,
  216. "node": {
  217. "__id__": 3
  218. },
  219. "_enabled": true,
  220. "_cullingMask": 4294967295,
  221. "_clearFlags": 7,
  222. "_backgroundColor": {
  223. "__type__": "cc.Color",
  224. "r": 0,
  225. "g": 0,
  226. "b": 0,
  227. "a": 255
  228. },
  229. "_depth": -1,
  230. "_zoomRatio": 1,
  231. "_targetTexture": null,
  232. "_fov": 60,
  233. "_orthoSize": 10,
  234. "_nearClip": 0.1,
  235. "_farClip": 4096,
  236. "_ortho": true,
  237. "_rect": {
  238. "__type__": "cc.Rect",
  239. "x": 0,
  240. "y": 0,
  241. "width": 1,
  242. "height": 1
  243. },
  244. "_renderStages": 1,
  245. "_alignWithScreen": true,
  246. "_id": "91Ot/TFmNH543hKr8b4jya"
  247. },
  248. {
  249. "__type__": "cc.Node",
  250. "_name": "background1",
  251. "_objFlags": 0,
  252. "_parent": {
  253. "__id__": 2
  254. },
  255. "_children": [],
  256. "_active": true,
  257. "_components": [
  258. {
  259. "__id__": 6
  260. },
  261. {
  262. "__id__": 7
  263. }
  264. ],
  265. "_prefab": null,
  266. "_opacity": 255,
  267. "_color": {
  268. "__type__": "cc.Color",
  269. "r": 255,
  270. "g": 255,
  271. "b": 255,
  272. "a": 255
  273. },
  274. "_contentSize": {
  275. "__type__": "cc.Size",
  276. "width": 640,
  277. "height": 1280
  278. },
  279. "_anchorPoint": {
  280. "__type__": "cc.Vec2",
  281. "x": 0.5,
  282. "y": 0.5
  283. },
  284. "_trs": {
  285. "__type__": "TypedArray",
  286. "ctor": "Float64Array",
  287. "array": [
  288. 0,
  289. 0,
  290. 0,
  291. 0,
  292. 0,
  293. 0,
  294. 1,
  295. 1,
  296. 1,
  297. 1
  298. ]
  299. },
  300. "_eulerAngles": {
  301. "__type__": "cc.Vec3",
  302. "x": 0,
  303. "y": 0,
  304. "z": 0
  305. },
  306. "_skewX": 0,
  307. "_skewY": 0,
  308. "_is3DNode": false,
  309. "_groupIndex": 0,
  310. "groupIndex": 0,
  311. "_id": "e2e0crkOLxGrpMxpbC4iQg1"
  312. },
  313. {
  314. "__type__": "cc.Widget",
  315. "_name": "",
  316. "_objFlags": 0,
  317. "node": {
  318. "__id__": 5
  319. },
  320. "_enabled": true,
  321. "alignMode": 0,
  322. "_target": null,
  323. "_alignFlags": 45,
  324. "_left": 0,
  325. "_right": 0,
  326. "_top": 0,
  327. "_bottom": 0,
  328. "_verticalCenter": 0,
  329. "_horizontalCenter": 0,
  330. "_isAbsLeft": true,
  331. "_isAbsRight": true,
  332. "_isAbsTop": true,
  333. "_isAbsBottom": true,
  334. "_isAbsHorizontalCenter": true,
  335. "_isAbsVerticalCenter": true,
  336. "_originalWidth": 200,
  337. "_originalHeight": 150,
  338. "_id": "13WE54Ei5G25fWbyydJOcS"
  339. },
  340. {
  341. "__type__": "cc.Sprite",
  342. "_name": "",
  343. "_objFlags": 0,
  344. "node": {
  345. "__id__": 5
  346. },
  347. "_enabled": true,
  348. "_materials": [
  349. {
  350. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  351. }
  352. ],
  353. "_srcBlendFactor": 770,
  354. "_dstBlendFactor": 771,
  355. "_spriteFrame": {
  356. "__uuid__": "546f5e32-b446-420c-9cc3-e4db519e4684"
  357. },
  358. "_type": 1,
  359. "_sizeMode": 0,
  360. "_fillType": 0,
  361. "_fillCenter": {
  362. "__type__": "cc.Vec2",
  363. "x": 0,
  364. "y": 0
  365. },
  366. "_fillStart": 0,
  367. "_fillRange": 0,
  368. "_isTrimmedMode": true,
  369. "_atlas": null,
  370. "_id": "bchan1w1VLpI2kiEXcfirx"
  371. },
  372. {
  373. "__type__": "cc.Node",
  374. "_name": "background2",
  375. "_objFlags": 0,
  376. "_parent": {
  377. "__id__": 2
  378. },
  379. "_children": [],
  380. "_active": true,
  381. "_components": [
  382. {
  383. "__id__": 9
  384. },
  385. {
  386. "__id__": 10
  387. }
  388. ],
  389. "_prefab": null,
  390. "_opacity": 100,
  391. "_color": {
  392. "__type__": "cc.Color",
  393. "r": 255,
  394. "g": 255,
  395. "b": 255,
  396. "a": 255
  397. },
  398. "_contentSize": {
  399. "__type__": "cc.Size",
  400. "width": 650,
  401. "height": 300
  402. },
  403. "_anchorPoint": {
  404. "__type__": "cc.Vec2",
  405. "x": 0.5,
  406. "y": 0.5
  407. },
  408. "_trs": {
  409. "__type__": "TypedArray",
  410. "ctor": "Float64Array",
  411. "array": [
  412. 0,
  413. 500,
  414. 0,
  415. 0,
  416. 0,
  417. 0,
  418. 1,
  419. 1,
  420. 1,
  421. 1
  422. ]
  423. },
  424. "_eulerAngles": {
  425. "__type__": "cc.Vec3",
  426. "x": 0,
  427. "y": 0,
  428. "z": 0
  429. },
  430. "_skewX": 0,
  431. "_skewY": 0,
  432. "_is3DNode": false,
  433. "_groupIndex": 0,
  434. "groupIndex": 0,
  435. "_id": "6f7iRl5cFCBbWzXSU9vWam"
  436. },
  437. {
  438. "__type__": "cc.Widget",
  439. "_name": "",
  440. "_objFlags": 0,
  441. "node": {
  442. "__id__": 8
  443. },
  444. "_enabled": true,
  445. "alignMode": 0,
  446. "_target": null,
  447. "_alignFlags": 45,
  448. "_left": -5,
  449. "_right": -5,
  450. "_top": -10,
  451. "_bottom": 990,
  452. "_verticalCenter": 0,
  453. "_horizontalCenter": 0,
  454. "_isAbsLeft": true,
  455. "_isAbsRight": true,
  456. "_isAbsTop": true,
  457. "_isAbsBottom": true,
  458. "_isAbsHorizontalCenter": true,
  459. "_isAbsVerticalCenter": true,
  460. "_originalWidth": 200,
  461. "_originalHeight": 150,
  462. "_id": "4cAeCxjyBHs46G/ImFfOB8"
  463. },
  464. {
  465. "__type__": "cc.Sprite",
  466. "_name": "",
  467. "_objFlags": 0,
  468. "node": {
  469. "__id__": 8
  470. },
  471. "_enabled": true,
  472. "_materials": [
  473. {
  474. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  475. }
  476. ],
  477. "_srcBlendFactor": 770,
  478. "_dstBlendFactor": 771,
  479. "_spriteFrame": {
  480. "__uuid__": "95f270df-0b24-4085-8f76-477aa6b2d318"
  481. },
  482. "_type": 2,
  483. "_sizeMode": 0,
  484. "_fillType": 0,
  485. "_fillCenter": {
  486. "__type__": "cc.Vec2",
  487. "x": 0,
  488. "y": 0
  489. },
  490. "_fillStart": 0,
  491. "_fillRange": 0,
  492. "_isTrimmedMode": true,
  493. "_atlas": null,
  494. "_id": "fc9twxIyBNyI1m1frSBv4e"
  495. },
  496. {
  497. "__type__": "cc.Node",
  498. "_name": "up",
  499. "_objFlags": 0,
  500. "_parent": {
  501. "__id__": 2
  502. },
  503. "_children": [],
  504. "_active": true,
  505. "_components": [
  506. {
  507. "__id__": 12
  508. },
  509. {
  510. "__id__": 13
  511. }
  512. ],
  513. "_prefab": null,
  514. "_opacity": 255,
  515. "_color": {
  516. "__type__": "cc.Color",
  517. "r": 255,
  518. "g": 255,
  519. "b": 255,
  520. "a": 255
  521. },
  522. "_contentSize": {
  523. "__type__": "cc.Size",
  524. "width": 320,
  525. "height": 180.8
  526. },
  527. "_anchorPoint": {
  528. "__type__": "cc.Vec2",
  529. "x": 0.5,
  530. "y": 0.5
  531. },
  532. "_trs": {
  533. "__type__": "TypedArray",
  534. "ctor": "Float64Array",
  535. "array": [
  536. 0,
  537. 400,
  538. 0,
  539. 0,
  540. 0,
  541. 0,
  542. 1,
  543. 1,
  544. 1,
  545. 1
  546. ]
  547. },
  548. "_eulerAngles": {
  549. "__type__": "cc.Vec3",
  550. "x": 0,
  551. "y": 0,
  552. "z": 0
  553. },
  554. "_skewX": 0,
  555. "_skewY": 0,
  556. "_is3DNode": false,
  557. "_groupIndex": 0,
  558. "groupIndex": 0,
  559. "_id": "c4f30YOS65G64U2TwufdJ+2"
  560. },
  561. {
  562. "__type__": "86003fZed1MzY518MT0JOMF",
  563. "_name": "",
  564. "_objFlags": 0,
  565. "node": {
  566. "__id__": 11
  567. },
  568. "_enabled": true,
  569. "Pic": {
  570. "__id__": 11
  571. },
  572. "_id": "caAWmYSC9H5JuhnNB5YPo5"
  573. },
  574. {
  575. "__type__": "cc.Label",
  576. "_name": "",
  577. "_objFlags": 0,
  578. "node": {
  579. "__id__": 11
  580. },
  581. "_enabled": true,
  582. "_materials": [
  583. {
  584. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  585. }
  586. ],
  587. "_srcBlendFactor": 770,
  588. "_dstBlendFactor": 771,
  589. "_string": "李老板的\n药材小铺",
  590. "_N$string": "李老板的\n药材小铺",
  591. "_fontSize": 80,
  592. "_lineHeight": 80,
  593. "_enableWrapText": true,
  594. "_N$file": null,
  595. "_isSystemFontUsed": true,
  596. "_spacingX": 0,
  597. "_batchAsBitmap": false,
  598. "_styleFlags": 0,
  599. "_underlineHeight": 0,
  600. "_N$horizontalAlign": 0,
  601. "_N$verticalAlign": 0,
  602. "_N$fontFamily": "Arial",
  603. "_N$overflow": 0,
  604. "_N$cacheMode": 0,
  605. "_id": "63OKIOpXVBSKv5vQAeKLvA"
  606. },
  607. {
  608. "__type__": "cc.Node",
  609. "_name": "按钮",
  610. "_objFlags": 0,
  611. "_parent": {
  612. "__id__": 2
  613. },
  614. "_children": [
  615. {
  616. "__id__": 15
  617. },
  618. {
  619. "__id__": 21
  620. },
  621. {
  622. "__id__": 35
  623. }
  624. ],
  625. "_active": true,
  626. "_components": [
  627. {
  628. "__id__": 48
  629. },
  630. {
  631. "__id__": 49
  632. }
  633. ],
  634. "_prefab": null,
  635. "_opacity": 255,
  636. "_color": {
  637. "__type__": "cc.Color",
  638. "r": 255,
  639. "g": 255,
  640. "b": 255,
  641. "a": 255
  642. },
  643. "_contentSize": {
  644. "__type__": "cc.Size",
  645. "width": 540,
  646. "height": 480
  647. },
  648. "_anchorPoint": {
  649. "__type__": "cc.Vec2",
  650. "x": 0.5,
  651. "y": 0.5
  652. },
  653. "_trs": {
  654. "__type__": "TypedArray",
  655. "ctor": "Float64Array",
  656. "array": [
  657. 0,
  658. 0,
  659. 0,
  660. 0,
  661. 0,
  662. 0,
  663. 1,
  664. 1,
  665. 1,
  666. 1
  667. ]
  668. },
  669. "_eulerAngles": {
  670. "__type__": "cc.Vec3",
  671. "x": 0,
  672. "y": 0,
  673. "z": 0
  674. },
  675. "_skewX": 0,
  676. "_skewY": 0,
  677. "_is3DNode": false,
  678. "_groupIndex": 0,
  679. "groupIndex": 0,
  680. "_id": "31f1bH7V69Ajr1iXhluMpTB"
  681. },
  682. {
  683. "__type__": "cc.Node",
  684. "_name": "Play",
  685. "_objFlags": 0,
  686. "_parent": {
  687. "__id__": 14
  688. },
  689. "_children": [
  690. {
  691. "__id__": 16
  692. }
  693. ],
  694. "_active": true,
  695. "_components": [
  696. {
  697. "__id__": 18
  698. },
  699. {
  700. "__id__": 19
  701. },
  702. {
  703. "__id__": 20
  704. }
  705. ],
  706. "_prefab": null,
  707. "_opacity": 255,
  708. "_color": {
  709. "__type__": "cc.Color",
  710. "r": 73,
  711. "g": 185,
  712. "b": 122,
  713. "a": 255
  714. },
  715. "_contentSize": {
  716. "__type__": "cc.Size",
  717. "width": 405,
  718. "height": 150
  719. },
  720. "_anchorPoint": {
  721. "__type__": "cc.Vec2",
  722. "x": 0.5,
  723. "y": 0.5
  724. },
  725. "_trs": {
  726. "__type__": "TypedArray",
  727. "ctor": "Float64Array",
  728. "array": [
  729. 0,
  730. 65,
  731. 0,
  732. 0,
  733. 0,
  734. 0,
  735. 1,
  736. 1,
  737. 1,
  738. 1
  739. ]
  740. },
  741. "_eulerAngles": {
  742. "__type__": "cc.Vec3",
  743. "x": 0,
  744. "y": 0,
  745. "z": 0
  746. },
  747. "_skewX": 0,
  748. "_skewY": 0,
  749. "_is3DNode": false,
  750. "_groupIndex": 0,
  751. "groupIndex": 0,
  752. "_id": "bc5yynFBdNTJKojRmH/DhV"
  753. },
  754. {
  755. "__type__": "cc.Node",
  756. "_name": "Label",
  757. "_objFlags": 0,
  758. "_parent": {
  759. "__id__": 15
  760. },
  761. "_children": [],
  762. "_active": true,
  763. "_components": [
  764. {
  765. "__id__": 17
  766. }
  767. ],
  768. "_prefab": null,
  769. "_opacity": 255,
  770. "_color": {
  771. "__type__": "cc.Color",
  772. "r": 255,
  773. "g": 255,
  774. "b": 255,
  775. "a": 255
  776. },
  777. "_contentSize": {
  778. "__type__": "cc.Size",
  779. "width": 80,
  780. "height": 80
  781. },
  782. "_anchorPoint": {
  783. "__type__": "cc.Vec2",
  784. "x": 0.5,
  785. "y": 0.5
  786. },
  787. "_trs": {
  788. "__type__": "TypedArray",
  789. "ctor": "Float64Array",
  790. "array": [
  791. 0,
  792. 0,
  793. 0,
  794. 0,
  795. 0,
  796. 0,
  797. 1,
  798. 1,
  799. 1,
  800. 1
  801. ]
  802. },
  803. "_eulerAngles": {
  804. "__type__": "cc.Vec3",
  805. "x": 0,
  806. "y": 0,
  807. "z": 0
  808. },
  809. "_skewX": 0,
  810. "_skewY": 0,
  811. "_is3DNode": false,
  812. "_groupIndex": 0,
  813. "groupIndex": 0,
  814. "_id": "8bXfEAMa9H0bCY9WZGrBtT"
  815. },
  816. {
  817. "__type__": "cc.Sprite",
  818. "_name": "",
  819. "_objFlags": 0,
  820. "node": {
  821. "__id__": 16
  822. },
  823. "_enabled": true,
  824. "_materials": [
  825. {
  826. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  827. }
  828. ],
  829. "_srcBlendFactor": 770,
  830. "_dstBlendFactor": 771,
  831. "_spriteFrame": {
  832. "__uuid__": "5ea90132-adff-49bc-bbe0-543009bb9017"
  833. },
  834. "_type": 0,
  835. "_sizeMode": 0,
  836. "_fillType": 0,
  837. "_fillCenter": {
  838. "__type__": "cc.Vec2",
  839. "x": 0,
  840. "y": 0
  841. },
  842. "_fillStart": 0,
  843. "_fillRange": 0,
  844. "_isTrimmedMode": true,
  845. "_atlas": null,
  846. "_id": "e9RX3LuBlE6Yl8sy9EiYjQ"
  847. },
  848. {
  849. "__type__": "cc.Sprite",
  850. "_name": "",
  851. "_objFlags": 0,
  852. "node": {
  853. "__id__": 15
  854. },
  855. "_enabled": true,
  856. "_materials": [
  857. {
  858. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  859. }
  860. ],
  861. "_srcBlendFactor": 770,
  862. "_dstBlendFactor": 771,
  863. "_spriteFrame": {
  864. "__uuid__": "410fb916-8721-4663-bab8-34397391ace7"
  865. },
  866. "_type": 1,
  867. "_sizeMode": 0,
  868. "_fillType": 0,
  869. "_fillCenter": {
  870. "__type__": "cc.Vec2",
  871. "x": 0,
  872. "y": 0
  873. },
  874. "_fillStart": 0,
  875. "_fillRange": 0,
  876. "_isTrimmedMode": true,
  877. "_atlas": null,
  878. "_id": "b3bN4JRxFDBImYgSpPiZLz"
  879. },
  880. {
  881. "__type__": "cc.Button",
  882. "_name": "",
  883. "_objFlags": 0,
  884. "node": {
  885. "__id__": 15
  886. },
  887. "_enabled": true,
  888. "_normalMaterial": null,
  889. "_grayMaterial": null,
  890. "duration": 0.1,
  891. "zoomScale": 1.2,
  892. "clickEvents": [],
  893. "_N$interactable": true,
  894. "_N$enableAutoGrayEffect": false,
  895. "_N$transition": 2,
  896. "transition": 2,
  897. "_N$normalColor": {
  898. "__type__": "cc.Color",
  899. "r": 255,
  900. "g": 255,
  901. "b": 255,
  902. "a": 255
  903. },
  904. "_N$pressedColor": {
  905. "__type__": "cc.Color",
  906. "r": 255,
  907. "g": 255,
  908. "b": 255,
  909. "a": 255
  910. },
  911. "pressedColor": {
  912. "__type__": "cc.Color",
  913. "r": 255,
  914. "g": 255,
  915. "b": 255,
  916. "a": 255
  917. },
  918. "_N$hoverColor": {
  919. "__type__": "cc.Color",
  920. "r": 255,
  921. "g": 255,
  922. "b": 255,
  923. "a": 255
  924. },
  925. "hoverColor": {
  926. "__type__": "cc.Color",
  927. "r": 255,
  928. "g": 255,
  929. "b": 255,
  930. "a": 255
  931. },
  932. "_N$disabledColor": {
  933. "__type__": "cc.Color",
  934. "r": 255,
  935. "g": 255,
  936. "b": 255,
  937. "a": 255
  938. },
  939. "_N$normalSprite": {
  940. "__uuid__": "410fb916-8721-4663-bab8-34397391ace7"
  941. },
  942. "_N$pressedSprite": {
  943. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  944. },
  945. "pressedSprite": {
  946. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  947. },
  948. "_N$hoverSprite": {
  949. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  950. },
  951. "hoverSprite": {
  952. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  953. },
  954. "_N$disabledSprite": {
  955. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  956. },
  957. "_N$target": {
  958. "__id__": 15
  959. },
  960. "_id": "54gZiFTy1NiLcKE9Y6nbRs"
  961. },
  962. {
  963. "__type__": "16f63WVnDRE4a7kBmd0KVcm",
  964. "_name": "",
  965. "_objFlags": 0,
  966. "node": {
  967. "__id__": 15
  968. },
  969. "_enabled": true,
  970. "button": {
  971. "__id__": 19
  972. },
  973. "_id": "fdqQdq+OVGIIkPGw0NSkus"
  974. },
  975. {
  976. "__type__": "cc.Node",
  977. "_name": "横向",
  978. "_objFlags": 0,
  979. "_parent": {
  980. "__id__": 14
  981. },
  982. "_children": [
  983. {
  984. "__id__": 22
  985. },
  986. {
  987. "__id__": 28
  988. }
  989. ],
  990. "_active": true,
  991. "_components": [
  992. {
  993. "__id__": 34
  994. }
  995. ],
  996. "_prefab": null,
  997. "_opacity": 255,
  998. "_color": {
  999. "__type__": "cc.Color",
  1000. "r": 167,
  1001. "g": 167,
  1002. "b": 167,
  1003. "a": 255
  1004. },
  1005. "_contentSize": {
  1006. "__type__": "cc.Size",
  1007. "width": 400,
  1008. "height": 100
  1009. },
  1010. "_anchorPoint": {
  1011. "__type__": "cc.Vec2",
  1012. "x": 0.5,
  1013. "y": 0.5
  1014. },
  1015. "_trs": {
  1016. "__type__": "TypedArray",
  1017. "ctor": "Float64Array",
  1018. "array": [
  1019. 0,
  1020. -80,
  1021. 0,
  1022. 0,
  1023. 0,
  1024. 0,
  1025. 1,
  1026. 1,
  1027. 1,
  1028. 1
  1029. ]
  1030. },
  1031. "_eulerAngles": {
  1032. "__type__": "cc.Vec3",
  1033. "x": 0,
  1034. "y": 0,
  1035. "z": 0
  1036. },
  1037. "_skewX": 0,
  1038. "_skewY": 0,
  1039. "_is3DNode": false,
  1040. "_groupIndex": 0,
  1041. "groupIndex": 0,
  1042. "_id": "9fiafXs4hK7JhZcUNbZpTR"
  1043. },
  1044. {
  1045. "__type__": "cc.Node",
  1046. "_name": "LikeUs",
  1047. "_objFlags": 0,
  1048. "_parent": {
  1049. "__id__": 21
  1050. },
  1051. "_children": [
  1052. {
  1053. "__id__": 23
  1054. }
  1055. ],
  1056. "_active": true,
  1057. "_components": [
  1058. {
  1059. "__id__": 25
  1060. },
  1061. {
  1062. "__id__": 26
  1063. },
  1064. {
  1065. "__id__": 27
  1066. }
  1067. ],
  1068. "_prefab": null,
  1069. "_opacity": 255,
  1070. "_color": {
  1071. "__type__": "cc.Color",
  1072. "r": 204,
  1073. "g": 107,
  1074. "b": 173,
  1075. "a": 255
  1076. },
  1077. "_contentSize": {
  1078. "__type__": "cc.Size",
  1079. "width": 190,
  1080. "height": 100
  1081. },
  1082. "_anchorPoint": {
  1083. "__type__": "cc.Vec2",
  1084. "x": 0.5,
  1085. "y": 0.5
  1086. },
  1087. "_trs": {
  1088. "__type__": "TypedArray",
  1089. "ctor": "Float64Array",
  1090. "array": [
  1091. -105,
  1092. 0,
  1093. 0,
  1094. 0,
  1095. 0,
  1096. 0,
  1097. 1,
  1098. 1,
  1099. 1,
  1100. 1
  1101. ]
  1102. },
  1103. "_eulerAngles": {
  1104. "__type__": "cc.Vec3",
  1105. "x": 0,
  1106. "y": 0,
  1107. "z": 0
  1108. },
  1109. "_skewX": 0,
  1110. "_skewY": 0,
  1111. "_is3DNode": false,
  1112. "_groupIndex": 0,
  1113. "groupIndex": 0,
  1114. "_id": "e9Rr6XJxFM1KsdODxxCtc4"
  1115. },
  1116. {
  1117. "__type__": "cc.Node",
  1118. "_name": "Label",
  1119. "_objFlags": 0,
  1120. "_parent": {
  1121. "__id__": 22
  1122. },
  1123. "_children": [],
  1124. "_active": true,
  1125. "_components": [
  1126. {
  1127. "__id__": 24
  1128. }
  1129. ],
  1130. "_prefab": null,
  1131. "_opacity": 255,
  1132. "_color": {
  1133. "__type__": "cc.Color",
  1134. "r": 255,
  1135. "g": 255,
  1136. "b": 255,
  1137. "a": 255
  1138. },
  1139. "_contentSize": {
  1140. "__type__": "cc.Size",
  1141. "width": 40,
  1142. "height": 40
  1143. },
  1144. "_anchorPoint": {
  1145. "__type__": "cc.Vec2",
  1146. "x": 0.5,
  1147. "y": 0.5
  1148. },
  1149. "_trs": {
  1150. "__type__": "TypedArray",
  1151. "ctor": "Float64Array",
  1152. "array": [
  1153. 0,
  1154. 0,
  1155. 0,
  1156. 0,
  1157. 0,
  1158. 0,
  1159. 1,
  1160. 1,
  1161. 1,
  1162. 1
  1163. ]
  1164. },
  1165. "_eulerAngles": {
  1166. "__type__": "cc.Vec3",
  1167. "x": 0,
  1168. "y": 0,
  1169. "z": 0
  1170. },
  1171. "_skewX": 0,
  1172. "_skewY": 0,
  1173. "_is3DNode": false,
  1174. "_groupIndex": 0,
  1175. "groupIndex": 0,
  1176. "_id": "07K80S6O1Lh63jz3/cCkVb"
  1177. },
  1178. {
  1179. "__type__": "cc.Sprite",
  1180. "_name": "",
  1181. "_objFlags": 0,
  1182. "node": {
  1183. "__id__": 23
  1184. },
  1185. "_enabled": true,
  1186. "_materials": [
  1187. {
  1188. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1189. }
  1190. ],
  1191. "_srcBlendFactor": 770,
  1192. "_dstBlendFactor": 771,
  1193. "_spriteFrame": {
  1194. "__uuid__": "2d93323f-c146-457f-a7f4-7141f7ce0f17"
  1195. },
  1196. "_type": 0,
  1197. "_sizeMode": 0,
  1198. "_fillType": 0,
  1199. "_fillCenter": {
  1200. "__type__": "cc.Vec2",
  1201. "x": 0,
  1202. "y": 0
  1203. },
  1204. "_fillStart": 0,
  1205. "_fillRange": 0,
  1206. "_isTrimmedMode": true,
  1207. "_atlas": null,
  1208. "_id": "675MHj+HZHAI1hFTlig/V4"
  1209. },
  1210. {
  1211. "__type__": "cc.Sprite",
  1212. "_name": "",
  1213. "_objFlags": 0,
  1214. "node": {
  1215. "__id__": 22
  1216. },
  1217. "_enabled": true,
  1218. "_materials": [
  1219. {
  1220. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1221. }
  1222. ],
  1223. "_srcBlendFactor": 770,
  1224. "_dstBlendFactor": 771,
  1225. "_spriteFrame": {
  1226. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1227. },
  1228. "_type": 1,
  1229. "_sizeMode": 0,
  1230. "_fillType": 0,
  1231. "_fillCenter": {
  1232. "__type__": "cc.Vec2",
  1233. "x": 0,
  1234. "y": 0
  1235. },
  1236. "_fillStart": 0,
  1237. "_fillRange": 0,
  1238. "_isTrimmedMode": true,
  1239. "_atlas": null,
  1240. "_id": "74TG/9XmNCKqqehEZLHumP"
  1241. },
  1242. {
  1243. "__type__": "cc.Button",
  1244. "_name": "",
  1245. "_objFlags": 0,
  1246. "node": {
  1247. "__id__": 22
  1248. },
  1249. "_enabled": true,
  1250. "_normalMaterial": null,
  1251. "_grayMaterial": null,
  1252. "duration": 0.1,
  1253. "zoomScale": 1.2,
  1254. "clickEvents": [],
  1255. "_N$interactable": true,
  1256. "_N$enableAutoGrayEffect": false,
  1257. "_N$transition": 2,
  1258. "transition": 2,
  1259. "_N$normalColor": {
  1260. "__type__": "cc.Color",
  1261. "r": 255,
  1262. "g": 255,
  1263. "b": 255,
  1264. "a": 255
  1265. },
  1266. "_N$pressedColor": {
  1267. "__type__": "cc.Color",
  1268. "r": 255,
  1269. "g": 255,
  1270. "b": 255,
  1271. "a": 255
  1272. },
  1273. "pressedColor": {
  1274. "__type__": "cc.Color",
  1275. "r": 255,
  1276. "g": 255,
  1277. "b": 255,
  1278. "a": 255
  1279. },
  1280. "_N$hoverColor": {
  1281. "__type__": "cc.Color",
  1282. "r": 255,
  1283. "g": 255,
  1284. "b": 255,
  1285. "a": 255
  1286. },
  1287. "hoverColor": {
  1288. "__type__": "cc.Color",
  1289. "r": 255,
  1290. "g": 255,
  1291. "b": 255,
  1292. "a": 255
  1293. },
  1294. "_N$disabledColor": {
  1295. "__type__": "cc.Color",
  1296. "r": 255,
  1297. "g": 255,
  1298. "b": 255,
  1299. "a": 255
  1300. },
  1301. "_N$normalSprite": {
  1302. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1303. },
  1304. "_N$pressedSprite": {
  1305. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1306. },
  1307. "pressedSprite": {
  1308. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1309. },
  1310. "_N$hoverSprite": {
  1311. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1312. },
  1313. "hoverSprite": {
  1314. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1315. },
  1316. "_N$disabledSprite": {
  1317. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1318. },
  1319. "_N$target": {
  1320. "__id__": 22
  1321. },
  1322. "_id": "8egE1781VAy4Sq+HWx38M+"
  1323. },
  1324. {
  1325. "__type__": "d137fioU5lIk5ljmR/zfRwE",
  1326. "_name": "",
  1327. "_objFlags": 0,
  1328. "node": {
  1329. "__id__": 22
  1330. },
  1331. "_enabled": true,
  1332. "button": {
  1333. "__id__": 26
  1334. },
  1335. "_id": "87hCgTM9lJqqn7uvq/8/WB"
  1336. },
  1337. {
  1338. "__type__": "cc.Node",
  1339. "_name": "Share",
  1340. "_objFlags": 0,
  1341. "_parent": {
  1342. "__id__": 21
  1343. },
  1344. "_children": [
  1345. {
  1346. "__id__": 29
  1347. }
  1348. ],
  1349. "_active": true,
  1350. "_components": [
  1351. {
  1352. "__id__": 31
  1353. },
  1354. {
  1355. "__id__": 32
  1356. },
  1357. {
  1358. "__id__": 33
  1359. }
  1360. ],
  1361. "_prefab": null,
  1362. "_opacity": 255,
  1363. "_color": {
  1364. "__type__": "cc.Color",
  1365. "r": 213,
  1366. "g": 108,
  1367. "b": 108,
  1368. "a": 255
  1369. },
  1370. "_contentSize": {
  1371. "__type__": "cc.Size",
  1372. "width": 190,
  1373. "height": 100
  1374. },
  1375. "_anchorPoint": {
  1376. "__type__": "cc.Vec2",
  1377. "x": 0.5,
  1378. "y": 0.5
  1379. },
  1380. "_trs": {
  1381. "__type__": "TypedArray",
  1382. "ctor": "Float64Array",
  1383. "array": [
  1384. 105,
  1385. 0,
  1386. 0,
  1387. 0,
  1388. 0,
  1389. 0,
  1390. 1,
  1391. 1,
  1392. 1,
  1393. 1
  1394. ]
  1395. },
  1396. "_eulerAngles": {
  1397. "__type__": "cc.Vec3",
  1398. "x": 0,
  1399. "y": 0,
  1400. "z": 0
  1401. },
  1402. "_skewX": 0,
  1403. "_skewY": 0,
  1404. "_is3DNode": false,
  1405. "_groupIndex": 0,
  1406. "groupIndex": 0,
  1407. "_id": "cac5EXeF9Eqq/lDk7OWdke"
  1408. },
  1409. {
  1410. "__type__": "cc.Node",
  1411. "_name": "Label",
  1412. "_objFlags": 0,
  1413. "_parent": {
  1414. "__id__": 28
  1415. },
  1416. "_children": [],
  1417. "_active": true,
  1418. "_components": [
  1419. {
  1420. "__id__": 30
  1421. }
  1422. ],
  1423. "_prefab": null,
  1424. "_opacity": 255,
  1425. "_color": {
  1426. "__type__": "cc.Color",
  1427. "r": 255,
  1428. "g": 255,
  1429. "b": 255,
  1430. "a": 255
  1431. },
  1432. "_contentSize": {
  1433. "__type__": "cc.Size",
  1434. "width": 40,
  1435. "height": 40
  1436. },
  1437. "_anchorPoint": {
  1438. "__type__": "cc.Vec2",
  1439. "x": 0.5,
  1440. "y": 0.5
  1441. },
  1442. "_trs": {
  1443. "__type__": "TypedArray",
  1444. "ctor": "Float64Array",
  1445. "array": [
  1446. 0,
  1447. 0,
  1448. 0,
  1449. 0,
  1450. 0,
  1451. 0,
  1452. 1,
  1453. 1,
  1454. 1,
  1455. 1
  1456. ]
  1457. },
  1458. "_eulerAngles": {
  1459. "__type__": "cc.Vec3",
  1460. "x": 0,
  1461. "y": 0,
  1462. "z": 0
  1463. },
  1464. "_skewX": 0,
  1465. "_skewY": 0,
  1466. "_is3DNode": false,
  1467. "_groupIndex": 0,
  1468. "groupIndex": 0,
  1469. "_id": "40dDz+K6FGxYu95KtVZRMJ"
  1470. },
  1471. {
  1472. "__type__": "cc.Sprite",
  1473. "_name": "",
  1474. "_objFlags": 0,
  1475. "node": {
  1476. "__id__": 29
  1477. },
  1478. "_enabled": true,
  1479. "_materials": [
  1480. {
  1481. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1482. }
  1483. ],
  1484. "_srcBlendFactor": 770,
  1485. "_dstBlendFactor": 771,
  1486. "_spriteFrame": {
  1487. "__uuid__": "c7cd38f8-3b32-49f6-ab72-1db17c8126b1"
  1488. },
  1489. "_type": 0,
  1490. "_sizeMode": 0,
  1491. "_fillType": 0,
  1492. "_fillCenter": {
  1493. "__type__": "cc.Vec2",
  1494. "x": 0,
  1495. "y": 0
  1496. },
  1497. "_fillStart": 0,
  1498. "_fillRange": 0,
  1499. "_isTrimmedMode": true,
  1500. "_atlas": null,
  1501. "_id": "4cMJtHMdlHIJuEQy8f8F1n"
  1502. },
  1503. {
  1504. "__type__": "cc.Sprite",
  1505. "_name": "",
  1506. "_objFlags": 0,
  1507. "node": {
  1508. "__id__": 28
  1509. },
  1510. "_enabled": true,
  1511. "_materials": [
  1512. {
  1513. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1514. }
  1515. ],
  1516. "_srcBlendFactor": 770,
  1517. "_dstBlendFactor": 771,
  1518. "_spriteFrame": {
  1519. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1520. },
  1521. "_type": 1,
  1522. "_sizeMode": 0,
  1523. "_fillType": 0,
  1524. "_fillCenter": {
  1525. "__type__": "cc.Vec2",
  1526. "x": 0,
  1527. "y": 0
  1528. },
  1529. "_fillStart": 0,
  1530. "_fillRange": 0,
  1531. "_isTrimmedMode": true,
  1532. "_atlas": null,
  1533. "_id": "52G9ZqfIFM77F+q7yWJxni"
  1534. },
  1535. {
  1536. "__type__": "cc.Button",
  1537. "_name": "",
  1538. "_objFlags": 0,
  1539. "node": {
  1540. "__id__": 28
  1541. },
  1542. "_enabled": true,
  1543. "_normalMaterial": null,
  1544. "_grayMaterial": null,
  1545. "duration": 0.1,
  1546. "zoomScale": 1.2,
  1547. "clickEvents": [],
  1548. "_N$interactable": true,
  1549. "_N$enableAutoGrayEffect": false,
  1550. "_N$transition": 2,
  1551. "transition": 2,
  1552. "_N$normalColor": {
  1553. "__type__": "cc.Color",
  1554. "r": 255,
  1555. "g": 255,
  1556. "b": 255,
  1557. "a": 255
  1558. },
  1559. "_N$pressedColor": {
  1560. "__type__": "cc.Color",
  1561. "r": 255,
  1562. "g": 255,
  1563. "b": 255,
  1564. "a": 255
  1565. },
  1566. "pressedColor": {
  1567. "__type__": "cc.Color",
  1568. "r": 255,
  1569. "g": 255,
  1570. "b": 255,
  1571. "a": 255
  1572. },
  1573. "_N$hoverColor": {
  1574. "__type__": "cc.Color",
  1575. "r": 255,
  1576. "g": 255,
  1577. "b": 255,
  1578. "a": 255
  1579. },
  1580. "hoverColor": {
  1581. "__type__": "cc.Color",
  1582. "r": 255,
  1583. "g": 255,
  1584. "b": 255,
  1585. "a": 255
  1586. },
  1587. "_N$disabledColor": {
  1588. "__type__": "cc.Color",
  1589. "r": 255,
  1590. "g": 255,
  1591. "b": 255,
  1592. "a": 255
  1593. },
  1594. "_N$normalSprite": {
  1595. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1596. },
  1597. "_N$pressedSprite": {
  1598. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1599. },
  1600. "pressedSprite": {
  1601. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1602. },
  1603. "_N$hoverSprite": {
  1604. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1605. },
  1606. "hoverSprite": {
  1607. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1608. },
  1609. "_N$disabledSprite": {
  1610. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1611. },
  1612. "_N$target": {
  1613. "__id__": 28
  1614. },
  1615. "_id": "38XQcifwVM0Zf4JOYE09D5"
  1616. },
  1617. {
  1618. "__type__": "876d6/nfp1M3ZL6z4q8pqBW",
  1619. "_name": "",
  1620. "_objFlags": 0,
  1621. "node": {
  1622. "__id__": 28
  1623. },
  1624. "_enabled": true,
  1625. "button": {
  1626. "__id__": 32
  1627. },
  1628. "_id": "2fP/Pob7tCOpo3ZFV7cP/t"
  1629. },
  1630. {
  1631. "__type__": "cc.Layout",
  1632. "_name": "",
  1633. "_objFlags": 0,
  1634. "node": {
  1635. "__id__": 21
  1636. },
  1637. "_enabled": true,
  1638. "_layoutSize": {
  1639. "__type__": "cc.Size",
  1640. "width": 400,
  1641. "height": 100
  1642. },
  1643. "_resize": 0,
  1644. "_N$layoutType": 1,
  1645. "_N$cellSize": {
  1646. "__type__": "cc.Size",
  1647. "width": 40,
  1648. "height": 40
  1649. },
  1650. "_N$startAxis": 0,
  1651. "_N$paddingLeft": 0,
  1652. "_N$paddingRight": 0,
  1653. "_N$paddingTop": 0,
  1654. "_N$paddingBottom": 0,
  1655. "_N$spacingX": 20,
  1656. "_N$spacingY": 0,
  1657. "_N$verticalDirection": 1,
  1658. "_N$horizontalDirection": 0,
  1659. "_N$affectedByScale": false,
  1660. "_id": "ddcNnke3hMr4iY2bOQtrtV"
  1661. },
  1662. {
  1663. "__type__": "cc.Node",
  1664. "_name": "横向",
  1665. "_objFlags": 0,
  1666. "_parent": {
  1667. "__id__": 14
  1668. },
  1669. "_children": [
  1670. {
  1671. "__id__": 36
  1672. },
  1673. {
  1674. "__id__": 41
  1675. }
  1676. ],
  1677. "_active": true,
  1678. "_components": [
  1679. {
  1680. "__id__": 47
  1681. }
  1682. ],
  1683. "_prefab": null,
  1684. "_opacity": 255,
  1685. "_color": {
  1686. "__type__": "cc.Color",
  1687. "r": 167,
  1688. "g": 167,
  1689. "b": 167,
  1690. "a": 255
  1691. },
  1692. "_contentSize": {
  1693. "__type__": "cc.Size",
  1694. "width": 400,
  1695. "height": 100
  1696. },
  1697. "_anchorPoint": {
  1698. "__type__": "cc.Vec2",
  1699. "x": 0.5,
  1700. "y": 0.5
  1701. },
  1702. "_trs": {
  1703. "__type__": "TypedArray",
  1704. "ctor": "Float64Array",
  1705. "array": [
  1706. 0,
  1707. -200,
  1708. 0,
  1709. 0,
  1710. 0,
  1711. 0,
  1712. 1,
  1713. 1,
  1714. 1,
  1715. 1
  1716. ]
  1717. },
  1718. "_eulerAngles": {
  1719. "__type__": "cc.Vec3",
  1720. "x": 0,
  1721. "y": 0,
  1722. "z": 0
  1723. },
  1724. "_skewX": 0,
  1725. "_skewY": 0,
  1726. "_is3DNode": false,
  1727. "_groupIndex": 0,
  1728. "groupIndex": 0,
  1729. "_id": "06HsvDl31IgrLcb0SZrAJC"
  1730. },
  1731. {
  1732. "__type__": "cc.Node",
  1733. "_name": "PaiMing",
  1734. "_objFlags": 0,
  1735. "_parent": {
  1736. "__id__": 35
  1737. },
  1738. "_children": [
  1739. {
  1740. "__id__": 37
  1741. }
  1742. ],
  1743. "_active": false,
  1744. "_components": [
  1745. {
  1746. "__id__": 39
  1747. },
  1748. {
  1749. "__id__": 40
  1750. }
  1751. ],
  1752. "_prefab": null,
  1753. "_opacity": 255,
  1754. "_color": {
  1755. "__type__": "cc.Color",
  1756. "r": 184,
  1757. "g": 214,
  1758. "b": 89,
  1759. "a": 255
  1760. },
  1761. "_contentSize": {
  1762. "__type__": "cc.Size",
  1763. "width": 190,
  1764. "height": 100
  1765. },
  1766. "_anchorPoint": {
  1767. "__type__": "cc.Vec2",
  1768. "x": 0.5,
  1769. "y": 0.5
  1770. },
  1771. "_trs": {
  1772. "__type__": "TypedArray",
  1773. "ctor": "Float64Array",
  1774. "array": [
  1775. -105,
  1776. 0,
  1777. 0,
  1778. 0,
  1779. 0,
  1780. 0,
  1781. 1,
  1782. 1,
  1783. 1,
  1784. 1
  1785. ]
  1786. },
  1787. "_eulerAngles": {
  1788. "__type__": "cc.Vec3",
  1789. "x": 0,
  1790. "y": 0,
  1791. "z": 0
  1792. },
  1793. "_skewX": 0,
  1794. "_skewY": 0,
  1795. "_is3DNode": false,
  1796. "_groupIndex": 0,
  1797. "groupIndex": 0,
  1798. "_id": "146Hp3+yhLGosSbdSTTo3u"
  1799. },
  1800. {
  1801. "__type__": "cc.Node",
  1802. "_name": "Label",
  1803. "_objFlags": 0,
  1804. "_parent": {
  1805. "__id__": 36
  1806. },
  1807. "_children": [],
  1808. "_active": true,
  1809. "_components": [
  1810. {
  1811. "__id__": 38
  1812. }
  1813. ],
  1814. "_prefab": null,
  1815. "_opacity": 255,
  1816. "_color": {
  1817. "__type__": "cc.Color",
  1818. "r": 255,
  1819. "g": 255,
  1820. "b": 255,
  1821. "a": 255
  1822. },
  1823. "_contentSize": {
  1824. "__type__": "cc.Size",
  1825. "width": 40,
  1826. "height": 40
  1827. },
  1828. "_anchorPoint": {
  1829. "__type__": "cc.Vec2",
  1830. "x": 0.5,
  1831. "y": 0.5
  1832. },
  1833. "_trs": {
  1834. "__type__": "TypedArray",
  1835. "ctor": "Float64Array",
  1836. "array": [
  1837. 0,
  1838. 0,
  1839. 0,
  1840. 0,
  1841. 0,
  1842. 0,
  1843. 1,
  1844. 1,
  1845. 1,
  1846. 1
  1847. ]
  1848. },
  1849. "_eulerAngles": {
  1850. "__type__": "cc.Vec3",
  1851. "x": 0,
  1852. "y": 0,
  1853. "z": 0
  1854. },
  1855. "_skewX": 0,
  1856. "_skewY": 0,
  1857. "_is3DNode": false,
  1858. "_groupIndex": 0,
  1859. "groupIndex": 0,
  1860. "_id": "831BEQiiRFsZUOt9kPKkT9"
  1861. },
  1862. {
  1863. "__type__": "cc.Sprite",
  1864. "_name": "",
  1865. "_objFlags": 0,
  1866. "node": {
  1867. "__id__": 37
  1868. },
  1869. "_enabled": true,
  1870. "_materials": [],
  1871. "_srcBlendFactor": 770,
  1872. "_dstBlendFactor": 771,
  1873. "_spriteFrame": {
  1874. "__uuid__": "b49d55e0-8363-4b44-86ed-703a799a3d5c"
  1875. },
  1876. "_type": 0,
  1877. "_sizeMode": 0,
  1878. "_fillType": 0,
  1879. "_fillCenter": {
  1880. "__type__": "cc.Vec2",
  1881. "x": 0,
  1882. "y": 0
  1883. },
  1884. "_fillStart": 0,
  1885. "_fillRange": 0,
  1886. "_isTrimmedMode": true,
  1887. "_atlas": null,
  1888. "_id": "21MLzmeMFGlL434/R5aLTt"
  1889. },
  1890. {
  1891. "__type__": "cc.Sprite",
  1892. "_name": "",
  1893. "_objFlags": 0,
  1894. "node": {
  1895. "__id__": 36
  1896. },
  1897. "_enabled": true,
  1898. "_materials": [],
  1899. "_srcBlendFactor": 770,
  1900. "_dstBlendFactor": 771,
  1901. "_spriteFrame": {
  1902. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1903. },
  1904. "_type": 1,
  1905. "_sizeMode": 0,
  1906. "_fillType": 0,
  1907. "_fillCenter": {
  1908. "__type__": "cc.Vec2",
  1909. "x": 0,
  1910. "y": 0
  1911. },
  1912. "_fillStart": 0,
  1913. "_fillRange": 0,
  1914. "_isTrimmedMode": true,
  1915. "_atlas": null,
  1916. "_id": "9fkf0HAOZK6YUCt2Oy/KqZ"
  1917. },
  1918. {
  1919. "__type__": "cc.Button",
  1920. "_name": "",
  1921. "_objFlags": 0,
  1922. "node": {
  1923. "__id__": 36
  1924. },
  1925. "_enabled": true,
  1926. "_normalMaterial": null,
  1927. "_grayMaterial": null,
  1928. "duration": 0.1,
  1929. "zoomScale": 1.2,
  1930. "clickEvents": [],
  1931. "_N$interactable": true,
  1932. "_N$enableAutoGrayEffect": false,
  1933. "_N$transition": 2,
  1934. "transition": 2,
  1935. "_N$normalColor": {
  1936. "__type__": "cc.Color",
  1937. "r": 255,
  1938. "g": 255,
  1939. "b": 255,
  1940. "a": 255
  1941. },
  1942. "_N$pressedColor": {
  1943. "__type__": "cc.Color",
  1944. "r": 255,
  1945. "g": 255,
  1946. "b": 255,
  1947. "a": 255
  1948. },
  1949. "pressedColor": {
  1950. "__type__": "cc.Color",
  1951. "r": 255,
  1952. "g": 255,
  1953. "b": 255,
  1954. "a": 255
  1955. },
  1956. "_N$hoverColor": {
  1957. "__type__": "cc.Color",
  1958. "r": 255,
  1959. "g": 255,
  1960. "b": 255,
  1961. "a": 255
  1962. },
  1963. "hoverColor": {
  1964. "__type__": "cc.Color",
  1965. "r": 255,
  1966. "g": 255,
  1967. "b": 255,
  1968. "a": 255
  1969. },
  1970. "_N$disabledColor": {
  1971. "__type__": "cc.Color",
  1972. "r": 255,
  1973. "g": 255,
  1974. "b": 255,
  1975. "a": 255
  1976. },
  1977. "_N$normalSprite": {
  1978. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1979. },
  1980. "_N$pressedSprite": {
  1981. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1982. },
  1983. "pressedSprite": {
  1984. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1985. },
  1986. "_N$hoverSprite": {
  1987. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1988. },
  1989. "hoverSprite": {
  1990. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1991. },
  1992. "_N$disabledSprite": {
  1993. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1994. },
  1995. "_N$target": {
  1996. "__id__": 36
  1997. },
  1998. "_id": "8fbTRKidJOH6SHjBGt63OR"
  1999. },
  2000. {
  2001. "__type__": "cc.Node",
  2002. "_name": "Sound",
  2003. "_objFlags": 0,
  2004. "_parent": {
  2005. "__id__": 35
  2006. },
  2007. "_children": [
  2008. {
  2009. "__id__": 42
  2010. }
  2011. ],
  2012. "_active": true,
  2013. "_components": [
  2014. {
  2015. "__id__": 44
  2016. },
  2017. {
  2018. "__id__": 45
  2019. },
  2020. {
  2021. "__id__": 46
  2022. }
  2023. ],
  2024. "_prefab": null,
  2025. "_opacity": 255,
  2026. "_color": {
  2027. "__type__": "cc.Color",
  2028. "r": 98,
  2029. "g": 107,
  2030. "b": 207,
  2031. "a": 255
  2032. },
  2033. "_contentSize": {
  2034. "__type__": "cc.Size",
  2035. "width": 400,
  2036. "height": 100
  2037. },
  2038. "_anchorPoint": {
  2039. "__type__": "cc.Vec2",
  2040. "x": 0.5,
  2041. "y": 0.5
  2042. },
  2043. "_trs": {
  2044. "__type__": "TypedArray",
  2045. "ctor": "Float64Array",
  2046. "array": [
  2047. 0,
  2048. 0,
  2049. 0,
  2050. 0,
  2051. 0,
  2052. 0,
  2053. 1,
  2054. 1,
  2055. 1,
  2056. 1
  2057. ]
  2058. },
  2059. "_eulerAngles": {
  2060. "__type__": "cc.Vec3",
  2061. "x": 0,
  2062. "y": 0,
  2063. "z": 0
  2064. },
  2065. "_skewX": 0,
  2066. "_skewY": 0,
  2067. "_is3DNode": false,
  2068. "_groupIndex": 0,
  2069. "groupIndex": 0,
  2070. "_id": "90P4QVtWlOCogW0HkPzVwZ"
  2071. },
  2072. {
  2073. "__type__": "cc.Node",
  2074. "_name": "Label",
  2075. "_objFlags": 0,
  2076. "_parent": {
  2077. "__id__": 41
  2078. },
  2079. "_children": [],
  2080. "_active": true,
  2081. "_components": [
  2082. {
  2083. "__id__": 43
  2084. }
  2085. ],
  2086. "_prefab": null,
  2087. "_opacity": 255,
  2088. "_color": {
  2089. "__type__": "cc.Color",
  2090. "r": 255,
  2091. "g": 255,
  2092. "b": 255,
  2093. "a": 255
  2094. },
  2095. "_contentSize": {
  2096. "__type__": "cc.Size",
  2097. "width": 40,
  2098. "height": 40
  2099. },
  2100. "_anchorPoint": {
  2101. "__type__": "cc.Vec2",
  2102. "x": 0.5,
  2103. "y": 0.5
  2104. },
  2105. "_trs": {
  2106. "__type__": "TypedArray",
  2107. "ctor": "Float64Array",
  2108. "array": [
  2109. 0,
  2110. 0,
  2111. 0,
  2112. 0,
  2113. 0,
  2114. 0,
  2115. 1,
  2116. 1,
  2117. 1,
  2118. 1
  2119. ]
  2120. },
  2121. "_eulerAngles": {
  2122. "__type__": "cc.Vec3",
  2123. "x": 0,
  2124. "y": 0,
  2125. "z": 0
  2126. },
  2127. "_skewX": 0,
  2128. "_skewY": 0,
  2129. "_is3DNode": false,
  2130. "_groupIndex": 0,
  2131. "groupIndex": 0,
  2132. "_id": "208S2S+YhICJtCO3ZP7U4H"
  2133. },
  2134. {
  2135. "__type__": "cc.Sprite",
  2136. "_name": "",
  2137. "_objFlags": 0,
  2138. "node": {
  2139. "__id__": 42
  2140. },
  2141. "_enabled": true,
  2142. "_materials": [
  2143. {
  2144. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2145. }
  2146. ],
  2147. "_srcBlendFactor": 770,
  2148. "_dstBlendFactor": 771,
  2149. "_spriteFrame": {
  2150. "__uuid__": "38653eaa-c049-4021-9dff-6dff956b494e"
  2151. },
  2152. "_type": 0,
  2153. "_sizeMode": 0,
  2154. "_fillType": 0,
  2155. "_fillCenter": {
  2156. "__type__": "cc.Vec2",
  2157. "x": 0,
  2158. "y": 0
  2159. },
  2160. "_fillStart": 0,
  2161. "_fillRange": 0,
  2162. "_isTrimmedMode": true,
  2163. "_atlas": null,
  2164. "_id": "c3hxRpnKtCl7rxxPaMUpaM"
  2165. },
  2166. {
  2167. "__type__": "cc.Sprite",
  2168. "_name": "",
  2169. "_objFlags": 0,
  2170. "node": {
  2171. "__id__": 41
  2172. },
  2173. "_enabled": true,
  2174. "_materials": [
  2175. {
  2176. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2177. }
  2178. ],
  2179. "_srcBlendFactor": 770,
  2180. "_dstBlendFactor": 771,
  2181. "_spriteFrame": {
  2182. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2183. },
  2184. "_type": 1,
  2185. "_sizeMode": 0,
  2186. "_fillType": 0,
  2187. "_fillCenter": {
  2188. "__type__": "cc.Vec2",
  2189. "x": 0,
  2190. "y": 0
  2191. },
  2192. "_fillStart": 0,
  2193. "_fillRange": 0,
  2194. "_isTrimmedMode": true,
  2195. "_atlas": null,
  2196. "_id": "15kV5Uv0JHdJrvBvhRSwfC"
  2197. },
  2198. {
  2199. "__type__": "cc.Button",
  2200. "_name": "",
  2201. "_objFlags": 0,
  2202. "node": {
  2203. "__id__": 41
  2204. },
  2205. "_enabled": true,
  2206. "_normalMaterial": null,
  2207. "_grayMaterial": null,
  2208. "duration": 0.1,
  2209. "zoomScale": 1.2,
  2210. "clickEvents": [],
  2211. "_N$interactable": true,
  2212. "_N$enableAutoGrayEffect": false,
  2213. "_N$transition": 2,
  2214. "transition": 2,
  2215. "_N$normalColor": {
  2216. "__type__": "cc.Color",
  2217. "r": 255,
  2218. "g": 255,
  2219. "b": 255,
  2220. "a": 255
  2221. },
  2222. "_N$pressedColor": {
  2223. "__type__": "cc.Color",
  2224. "r": 255,
  2225. "g": 255,
  2226. "b": 255,
  2227. "a": 255
  2228. },
  2229. "pressedColor": {
  2230. "__type__": "cc.Color",
  2231. "r": 255,
  2232. "g": 255,
  2233. "b": 255,
  2234. "a": 255
  2235. },
  2236. "_N$hoverColor": {
  2237. "__type__": "cc.Color",
  2238. "r": 255,
  2239. "g": 255,
  2240. "b": 255,
  2241. "a": 255
  2242. },
  2243. "hoverColor": {
  2244. "__type__": "cc.Color",
  2245. "r": 255,
  2246. "g": 255,
  2247. "b": 255,
  2248. "a": 255
  2249. },
  2250. "_N$disabledColor": {
  2251. "__type__": "cc.Color",
  2252. "r": 255,
  2253. "g": 255,
  2254. "b": 255,
  2255. "a": 255
  2256. },
  2257. "_N$normalSprite": {
  2258. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2259. },
  2260. "_N$pressedSprite": {
  2261. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2262. },
  2263. "pressedSprite": {
  2264. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2265. },
  2266. "_N$hoverSprite": {
  2267. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2268. },
  2269. "hoverSprite": {
  2270. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2271. },
  2272. "_N$disabledSprite": {
  2273. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2274. },
  2275. "_N$target": {
  2276. "__id__": 41
  2277. },
  2278. "_id": "31lN27OCtOrKWvw87l1wrn"
  2279. },
  2280. {
  2281. "__type__": "a949dc9mlJLvYGRvTIw5G+/",
  2282. "_name": "",
  2283. "_objFlags": 0,
  2284. "node": {
  2285. "__id__": 41
  2286. },
  2287. "_enabled": true,
  2288. "button": {
  2289. "__id__": 45
  2290. },
  2291. "_id": "7c8bkJ7+lBW40BbX5p1Uar"
  2292. },
  2293. {
  2294. "__type__": "cc.Layout",
  2295. "_name": "",
  2296. "_objFlags": 0,
  2297. "node": {
  2298. "__id__": 35
  2299. },
  2300. "_enabled": true,
  2301. "_layoutSize": {
  2302. "__type__": "cc.Size",
  2303. "width": 400,
  2304. "height": 100
  2305. },
  2306. "_resize": 0,
  2307. "_N$layoutType": 1,
  2308. "_N$cellSize": {
  2309. "__type__": "cc.Size",
  2310. "width": 40,
  2311. "height": 40
  2312. },
  2313. "_N$startAxis": 0,
  2314. "_N$paddingLeft": 0,
  2315. "_N$paddingRight": 0,
  2316. "_N$paddingTop": 0,
  2317. "_N$paddingBottom": 0,
  2318. "_N$spacingX": 20,
  2319. "_N$spacingY": 0,
  2320. "_N$verticalDirection": 1,
  2321. "_N$horizontalDirection": 0,
  2322. "_N$affectedByScale": false,
  2323. "_id": "ddFhDqtWRJCYeAFpysjcqr"
  2324. },
  2325. {
  2326. "__type__": "cc.Layout",
  2327. "_name": "",
  2328. "_objFlags": 0,
  2329. "node": {
  2330. "__id__": 14
  2331. },
  2332. "_enabled": true,
  2333. "_layoutSize": {
  2334. "__type__": "cc.Size",
  2335. "width": 540,
  2336. "height": 480
  2337. },
  2338. "_resize": 0,
  2339. "_N$layoutType": 2,
  2340. "_N$cellSize": {
  2341. "__type__": "cc.Size",
  2342. "width": 40,
  2343. "height": 40
  2344. },
  2345. "_N$startAxis": 0,
  2346. "_N$paddingLeft": 0,
  2347. "_N$paddingRight": 0,
  2348. "_N$paddingTop": 100,
  2349. "_N$paddingBottom": 0,
  2350. "_N$spacingX": 0,
  2351. "_N$spacingY": 20,
  2352. "_N$verticalDirection": 1,
  2353. "_N$horizontalDirection": 0,
  2354. "_N$affectedByScale": false,
  2355. "_id": "d47j6ycLJL552ITc5wcj4j"
  2356. },
  2357. {
  2358. "__type__": "cc.Widget",
  2359. "_name": "",
  2360. "_objFlags": 0,
  2361. "node": {
  2362. "__id__": 14
  2363. },
  2364. "_enabled": true,
  2365. "alignMode": 0,
  2366. "_target": null,
  2367. "_alignFlags": 45,
  2368. "_left": 50,
  2369. "_right": 50,
  2370. "_top": 400,
  2371. "_bottom": 400,
  2372. "_verticalCenter": 0,
  2373. "_horizontalCenter": 0,
  2374. "_isAbsLeft": true,
  2375. "_isAbsRight": true,
  2376. "_isAbsTop": true,
  2377. "_isAbsBottom": true,
  2378. "_isAbsHorizontalCenter": true,
  2379. "_isAbsVerticalCenter": true,
  2380. "_originalWidth": 147,
  2381. "_originalHeight": 60,
  2382. "_id": "ebaLzmrWFIVqJzs9mAQLU6"
  2383. },
  2384. {
  2385. "__type__": "cc.Node",
  2386. "_name": "ChouseStyle",
  2387. "_objFlags": 0,
  2388. "_parent": {
  2389. "__id__": 2
  2390. },
  2391. "_children": [
  2392. {
  2393. "__id__": 51
  2394. },
  2395. {
  2396. "__id__": 53
  2397. },
  2398. {
  2399. "__id__": 59
  2400. },
  2401. {
  2402. "__id__": 65
  2403. }
  2404. ],
  2405. "_active": false,
  2406. "_components": [
  2407. {
  2408. "__id__": 71
  2409. }
  2410. ],
  2411. "_prefab": null,
  2412. "_opacity": 255,
  2413. "_color": {
  2414. "__type__": "cc.Color",
  2415. "r": 255,
  2416. "g": 255,
  2417. "b": 255,
  2418. "a": 255
  2419. },
  2420. "_contentSize": {
  2421. "__type__": "cc.Size",
  2422. "width": 500,
  2423. "height": 500
  2424. },
  2425. "_anchorPoint": {
  2426. "__type__": "cc.Vec2",
  2427. "x": 0.5,
  2428. "y": 0.5
  2429. },
  2430. "_trs": {
  2431. "__type__": "TypedArray",
  2432. "ctor": "Float64Array",
  2433. "array": [
  2434. 0,
  2435. 0,
  2436. 0,
  2437. 0,
  2438. 0,
  2439. 0,
  2440. 1,
  2441. 1,
  2442. 1,
  2443. 1
  2444. ]
  2445. },
  2446. "_eulerAngles": {
  2447. "__type__": "cc.Vec3",
  2448. "x": 0,
  2449. "y": 0,
  2450. "z": 0
  2451. },
  2452. "_skewX": 0,
  2453. "_skewY": 0,
  2454. "_is3DNode": false,
  2455. "_groupIndex": 0,
  2456. "groupIndex": 0,
  2457. "_id": "92VmWMdBlLTJsDuw8psqwy"
  2458. },
  2459. {
  2460. "__type__": "cc.Node",
  2461. "_name": "Chouse Style",
  2462. "_objFlags": 0,
  2463. "_parent": {
  2464. "__id__": 50
  2465. },
  2466. "_children": [],
  2467. "_active": true,
  2468. "_components": [
  2469. {
  2470. "__id__": 52
  2471. }
  2472. ],
  2473. "_prefab": null,
  2474. "_opacity": 255,
  2475. "_color": {
  2476. "__type__": "cc.Color",
  2477. "r": 255,
  2478. "g": 255,
  2479. "b": 255,
  2480. "a": 255
  2481. },
  2482. "_contentSize": {
  2483. "__type__": "cc.Size",
  2484. "width": 361.67,
  2485. "height": 66.67
  2486. },
  2487. "_anchorPoint": {
  2488. "__type__": "cc.Vec2",
  2489. "x": 0.5,
  2490. "y": 0.5
  2491. },
  2492. "_trs": {
  2493. "__type__": "TypedArray",
  2494. "ctor": "Float64Array",
  2495. "array": [
  2496. 0,
  2497. 170,
  2498. 0,
  2499. 0,
  2500. 0,
  2501. 0,
  2502. 1,
  2503. 1,
  2504. 1,
  2505. 1
  2506. ]
  2507. },
  2508. "_eulerAngles": {
  2509. "__type__": "cc.Vec3",
  2510. "x": 0,
  2511. "y": 0,
  2512. "z": 0
  2513. },
  2514. "_skewX": 0,
  2515. "_skewY": 0,
  2516. "_is3DNode": false,
  2517. "_groupIndex": 0,
  2518. "groupIndex": 0,
  2519. "_id": "04qurG8FtFpZJkDg8pe2Ja"
  2520. },
  2521. {
  2522. "__type__": "cc.Label",
  2523. "_name": "",
  2524. "_objFlags": 0,
  2525. "node": {
  2526. "__id__": 51
  2527. },
  2528. "_enabled": true,
  2529. "_materials": [],
  2530. "_srcBlendFactor": 770,
  2531. "_dstBlendFactor": 771,
  2532. "_string": "Chouse Style",
  2533. "_N$string": "Chouse Style",
  2534. "_fontSize": 60,
  2535. "_lineHeight": 40,
  2536. "_enableWrapText": true,
  2537. "_N$file": {
  2538. "__uuid__": "5eccaf75-36ab-4fb0-b9b8-3ca2a76069fa"
  2539. },
  2540. "_isSystemFontUsed": false,
  2541. "_spacingX": 0,
  2542. "_batchAsBitmap": false,
  2543. "_styleFlags": 0,
  2544. "_underlineHeight": 0,
  2545. "_N$horizontalAlign": 1,
  2546. "_N$verticalAlign": 1,
  2547. "_N$fontFamily": "Arial",
  2548. "_N$overflow": 0,
  2549. "_N$cacheMode": 0,
  2550. "_id": "63ESntZApIcYaQXIPhXjIo"
  2551. },
  2552. {
  2553. "__type__": "cc.Node",
  2554. "_name": "宠物版",
  2555. "_objFlags": 0,
  2556. "_parent": {
  2557. "__id__": 50
  2558. },
  2559. "_children": [
  2560. {
  2561. "__id__": 54
  2562. }
  2563. ],
  2564. "_active": true,
  2565. "_components": [
  2566. {
  2567. "__id__": 56
  2568. },
  2569. {
  2570. "__id__": 57
  2571. },
  2572. {
  2573. "__id__": 58
  2574. }
  2575. ],
  2576. "_prefab": null,
  2577. "_opacity": 255,
  2578. "_color": {
  2579. "__type__": "cc.Color",
  2580. "r": 218,
  2581. "g": 112,
  2582. "b": 112,
  2583. "a": 255
  2584. },
  2585. "_contentSize": {
  2586. "__type__": "cc.Size",
  2587. "width": 300,
  2588. "height": 70
  2589. },
  2590. "_anchorPoint": {
  2591. "__type__": "cc.Vec2",
  2592. "x": 0.5,
  2593. "y": 0.5
  2594. },
  2595. "_trs": {
  2596. "__type__": "TypedArray",
  2597. "ctor": "Float64Array",
  2598. "array": [
  2599. 0,
  2600. 50,
  2601. 0,
  2602. 0,
  2603. 0,
  2604. 0,
  2605. 1,
  2606. 1,
  2607. 1,
  2608. 1
  2609. ]
  2610. },
  2611. "_eulerAngles": {
  2612. "__type__": "cc.Vec3",
  2613. "x": 0,
  2614. "y": 0,
  2615. "z": 0
  2616. },
  2617. "_skewX": 0,
  2618. "_skewY": 0,
  2619. "_is3DNode": false,
  2620. "_groupIndex": 0,
  2621. "groupIndex": 0,
  2622. "_id": "f0bfbbtUFC16qMZdv50Cv0"
  2623. },
  2624. {
  2625. "__type__": "cc.Node",
  2626. "_name": "Label",
  2627. "_objFlags": 0,
  2628. "_parent": {
  2629. "__id__": 53
  2630. },
  2631. "_children": [],
  2632. "_active": true,
  2633. "_components": [
  2634. {
  2635. "__id__": 55
  2636. }
  2637. ],
  2638. "_prefab": null,
  2639. "_opacity": 255,
  2640. "_color": {
  2641. "__type__": "cc.Color",
  2642. "r": 255,
  2643. "g": 255,
  2644. "b": 255,
  2645. "a": 255
  2646. },
  2647. "_contentSize": {
  2648. "__type__": "cc.Size",
  2649. "width": 100,
  2650. "height": 40
  2651. },
  2652. "_anchorPoint": {
  2653. "__type__": "cc.Vec2",
  2654. "x": 0.5,
  2655. "y": 0.5
  2656. },
  2657. "_trs": {
  2658. "__type__": "TypedArray",
  2659. "ctor": "Float64Array",
  2660. "array": [
  2661. 0,
  2662. 0,
  2663. 0,
  2664. 0,
  2665. 0,
  2666. 0,
  2667. 1,
  2668. 1,
  2669. 1,
  2670. 1
  2671. ]
  2672. },
  2673. "_eulerAngles": {
  2674. "__type__": "cc.Vec3",
  2675. "x": 0,
  2676. "y": 0,
  2677. "z": 0
  2678. },
  2679. "_skewX": 0,
  2680. "_skewY": 0,
  2681. "_is3DNode": false,
  2682. "_groupIndex": 0,
  2683. "groupIndex": 0,
  2684. "_id": "03E/9N4hlJ4YUbXTtWDM40"
  2685. },
  2686. {
  2687. "__type__": "cc.Label",
  2688. "_name": "",
  2689. "_objFlags": 0,
  2690. "node": {
  2691. "__id__": 54
  2692. },
  2693. "_enabled": true,
  2694. "_materials": [],
  2695. "_srcBlendFactor": 770,
  2696. "_dstBlendFactor": 771,
  2697. "_string": "Pets",
  2698. "_N$string": "Pets",
  2699. "_fontSize": 40,
  2700. "_lineHeight": 40,
  2701. "_enableWrapText": false,
  2702. "_N$file": {
  2703. "__uuid__": "5eccaf75-36ab-4fb0-b9b8-3ca2a76069fa"
  2704. },
  2705. "_isSystemFontUsed": false,
  2706. "_spacingX": 0,
  2707. "_batchAsBitmap": false,
  2708. "_styleFlags": 0,
  2709. "_underlineHeight": 0,
  2710. "_N$horizontalAlign": 1,
  2711. "_N$verticalAlign": 1,
  2712. "_N$fontFamily": "Arial",
  2713. "_N$overflow": 1,
  2714. "_N$cacheMode": 0,
  2715. "_id": "3bZyBXellLuLmEBLKVVJcb"
  2716. },
  2717. {
  2718. "__type__": "cc.Sprite",
  2719. "_name": "",
  2720. "_objFlags": 0,
  2721. "node": {
  2722. "__id__": 53
  2723. },
  2724. "_enabled": true,
  2725. "_materials": [],
  2726. "_srcBlendFactor": 770,
  2727. "_dstBlendFactor": 771,
  2728. "_spriteFrame": {
  2729. "__uuid__": "15ea3fe1-3c51-456a-aa9d-38c0f63d6959"
  2730. },
  2731. "_type": 1,
  2732. "_sizeMode": 0,
  2733. "_fillType": 0,
  2734. "_fillCenter": {
  2735. "__type__": "cc.Vec2",
  2736. "x": 0,
  2737. "y": 0
  2738. },
  2739. "_fillStart": 0,
  2740. "_fillRange": 0,
  2741. "_isTrimmedMode": true,
  2742. "_atlas": null,
  2743. "_id": "b3BT4KEG1GVpzFjZEV6e+T"
  2744. },
  2745. {
  2746. "__type__": "cc.Button",
  2747. "_name": "",
  2748. "_objFlags": 0,
  2749. "node": {
  2750. "__id__": 53
  2751. },
  2752. "_enabled": true,
  2753. "_normalMaterial": null,
  2754. "_grayMaterial": null,
  2755. "duration": 0.1,
  2756. "zoomScale": 1.2,
  2757. "clickEvents": [],
  2758. "_N$interactable": true,
  2759. "_N$enableAutoGrayEffect": false,
  2760. "_N$transition": 3,
  2761. "transition": 3,
  2762. "_N$normalColor": {
  2763. "__type__": "cc.Color",
  2764. "r": 255,
  2765. "g": 255,
  2766. "b": 255,
  2767. "a": 255
  2768. },
  2769. "_N$pressedColor": {
  2770. "__type__": "cc.Color",
  2771. "r": 255,
  2772. "g": 255,
  2773. "b": 255,
  2774. "a": 255
  2775. },
  2776. "pressedColor": {
  2777. "__type__": "cc.Color",
  2778. "r": 255,
  2779. "g": 255,
  2780. "b": 255,
  2781. "a": 255
  2782. },
  2783. "_N$hoverColor": {
  2784. "__type__": "cc.Color",
  2785. "r": 255,
  2786. "g": 255,
  2787. "b": 255,
  2788. "a": 255
  2789. },
  2790. "hoverColor": {
  2791. "__type__": "cc.Color",
  2792. "r": 255,
  2793. "g": 255,
  2794. "b": 255,
  2795. "a": 255
  2796. },
  2797. "_N$disabledColor": {
  2798. "__type__": "cc.Color",
  2799. "r": 255,
  2800. "g": 255,
  2801. "b": 255,
  2802. "a": 255
  2803. },
  2804. "_N$normalSprite": {
  2805. "__uuid__": "15ea3fe1-3c51-456a-aa9d-38c0f63d6959"
  2806. },
  2807. "_N$pressedSprite": {
  2808. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2809. },
  2810. "pressedSprite": {
  2811. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2812. },
  2813. "_N$hoverSprite": {
  2814. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2815. },
  2816. "hoverSprite": {
  2817. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2818. },
  2819. "_N$disabledSprite": {
  2820. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2821. },
  2822. "_N$target": {
  2823. "__id__": 53
  2824. },
  2825. "_id": "deVZ6hNcJDx7WDbmbfj8so"
  2826. },
  2827. {
  2828. "__type__": "16f63WVnDRE4a7kBmd0KVcm",
  2829. "_name": "",
  2830. "_objFlags": 0,
  2831. "node": {
  2832. "__id__": 53
  2833. },
  2834. "_enabled": true,
  2835. "button": {
  2836. "__id__": 57
  2837. },
  2838. "_id": "1fyLSYoylNAp0PJUI867hZ"
  2839. },
  2840. {
  2841. "__type__": "cc.Node",
  2842. "_name": "水果版",
  2843. "_objFlags": 0,
  2844. "_parent": {
  2845. "__id__": 50
  2846. },
  2847. "_children": [
  2848. {
  2849. "__id__": 60
  2850. }
  2851. ],
  2852. "_active": true,
  2853. "_components": [
  2854. {
  2855. "__id__": 62
  2856. },
  2857. {
  2858. "__id__": 63
  2859. },
  2860. {
  2861. "__id__": 64
  2862. }
  2863. ],
  2864. "_prefab": null,
  2865. "_opacity": 255,
  2866. "_color": {
  2867. "__type__": "cc.Color",
  2868. "r": 61,
  2869. "g": 221,
  2870. "b": 228,
  2871. "a": 255
  2872. },
  2873. "_contentSize": {
  2874. "__type__": "cc.Size",
  2875. "width": 300,
  2876. "height": 70
  2877. },
  2878. "_anchorPoint": {
  2879. "__type__": "cc.Vec2",
  2880. "x": 0.5,
  2881. "y": 0.5
  2882. },
  2883. "_trs": {
  2884. "__type__": "TypedArray",
  2885. "ctor": "Float64Array",
  2886. "array": [
  2887. 0,
  2888. -50,
  2889. 0,
  2890. 0,
  2891. 0,
  2892. 0,
  2893. 1,
  2894. 1,
  2895. 1,
  2896. 1
  2897. ]
  2898. },
  2899. "_eulerAngles": {
  2900. "__type__": "cc.Vec3",
  2901. "x": 0,
  2902. "y": 0,
  2903. "z": 0
  2904. },
  2905. "_skewX": 0,
  2906. "_skewY": 0,
  2907. "_is3DNode": false,
  2908. "_groupIndex": 0,
  2909. "groupIndex": 0,
  2910. "_id": "08x/D3cc9Muqc5Wt+yADdi"
  2911. },
  2912. {
  2913. "__type__": "cc.Node",
  2914. "_name": "Label",
  2915. "_objFlags": 0,
  2916. "_parent": {
  2917. "__id__": 59
  2918. },
  2919. "_children": [],
  2920. "_active": true,
  2921. "_components": [
  2922. {
  2923. "__id__": 61
  2924. }
  2925. ],
  2926. "_prefab": null,
  2927. "_opacity": 255,
  2928. "_color": {
  2929. "__type__": "cc.Color",
  2930. "r": 255,
  2931. "g": 255,
  2932. "b": 255,
  2933. "a": 255
  2934. },
  2935. "_contentSize": {
  2936. "__type__": "cc.Size",
  2937. "width": 100,
  2938. "height": 40
  2939. },
  2940. "_anchorPoint": {
  2941. "__type__": "cc.Vec2",
  2942. "x": 0.5,
  2943. "y": 0.5
  2944. },
  2945. "_trs": {
  2946. "__type__": "TypedArray",
  2947. "ctor": "Float64Array",
  2948. "array": [
  2949. 0,
  2950. 0,
  2951. 0,
  2952. 0,
  2953. 0,
  2954. 0,
  2955. 1,
  2956. 1,
  2957. 1,
  2958. 1
  2959. ]
  2960. },
  2961. "_eulerAngles": {
  2962. "__type__": "cc.Vec3",
  2963. "x": 0,
  2964. "y": 0,
  2965. "z": 0
  2966. },
  2967. "_skewX": 0,
  2968. "_skewY": 0,
  2969. "_is3DNode": false,
  2970. "_groupIndex": 0,
  2971. "groupIndex": 0,
  2972. "_id": "2f4ZjpV7xMIZXaEijRk285"
  2973. },
  2974. {
  2975. "__type__": "cc.Label",
  2976. "_name": "",
  2977. "_objFlags": 0,
  2978. "node": {
  2979. "__id__": 60
  2980. },
  2981. "_enabled": true,
  2982. "_materials": [],
  2983. "_srcBlendFactor": 770,
  2984. "_dstBlendFactor": 771,
  2985. "_string": "Fruits",
  2986. "_N$string": "Fruits",
  2987. "_fontSize": 40,
  2988. "_lineHeight": 40,
  2989. "_enableWrapText": false,
  2990. "_N$file": {
  2991. "__uuid__": "5eccaf75-36ab-4fb0-b9b8-3ca2a76069fa"
  2992. },
  2993. "_isSystemFontUsed": false,
  2994. "_spacingX": 0,
  2995. "_batchAsBitmap": false,
  2996. "_styleFlags": 0,
  2997. "_underlineHeight": 0,
  2998. "_N$horizontalAlign": 1,
  2999. "_N$verticalAlign": 1,
  3000. "_N$fontFamily": "Arial",
  3001. "_N$overflow": 1,
  3002. "_N$cacheMode": 0,
  3003. "_id": "8aeCYidkVIzIgl0u9hXKI1"
  3004. },
  3005. {
  3006. "__type__": "cc.Sprite",
  3007. "_name": "",
  3008. "_objFlags": 0,
  3009. "node": {
  3010. "__id__": 59
  3011. },
  3012. "_enabled": true,
  3013. "_materials": [],
  3014. "_srcBlendFactor": 770,
  3015. "_dstBlendFactor": 771,
  3016. "_spriteFrame": {
  3017. "__uuid__": "15ea3fe1-3c51-456a-aa9d-38c0f63d6959"
  3018. },
  3019. "_type": 1,
  3020. "_sizeMode": 0,
  3021. "_fillType": 0,
  3022. "_fillCenter": {
  3023. "__type__": "cc.Vec2",
  3024. "x": 0,
  3025. "y": 0
  3026. },
  3027. "_fillStart": 0,
  3028. "_fillRange": 0,
  3029. "_isTrimmedMode": true,
  3030. "_atlas": null,
  3031. "_id": "9aoWfipTpM7I53v6hBcue3"
  3032. },
  3033. {
  3034. "__type__": "cc.Button",
  3035. "_name": "",
  3036. "_objFlags": 0,
  3037. "node": {
  3038. "__id__": 59
  3039. },
  3040. "_enabled": true,
  3041. "_normalMaterial": null,
  3042. "_grayMaterial": null,
  3043. "duration": 0.1,
  3044. "zoomScale": 1.2,
  3045. "clickEvents": [],
  3046. "_N$interactable": true,
  3047. "_N$enableAutoGrayEffect": false,
  3048. "_N$transition": 3,
  3049. "transition": 3,
  3050. "_N$normalColor": {
  3051. "__type__": "cc.Color",
  3052. "r": 255,
  3053. "g": 255,
  3054. "b": 255,
  3055. "a": 255
  3056. },
  3057. "_N$pressedColor": {
  3058. "__type__": "cc.Color",
  3059. "r": 255,
  3060. "g": 255,
  3061. "b": 255,
  3062. "a": 255
  3063. },
  3064. "pressedColor": {
  3065. "__type__": "cc.Color",
  3066. "r": 255,
  3067. "g": 255,
  3068. "b": 255,
  3069. "a": 255
  3070. },
  3071. "_N$hoverColor": {
  3072. "__type__": "cc.Color",
  3073. "r": 255,
  3074. "g": 255,
  3075. "b": 255,
  3076. "a": 255
  3077. },
  3078. "hoverColor": {
  3079. "__type__": "cc.Color",
  3080. "r": 255,
  3081. "g": 255,
  3082. "b": 255,
  3083. "a": 255
  3084. },
  3085. "_N$disabledColor": {
  3086. "__type__": "cc.Color",
  3087. "r": 255,
  3088. "g": 255,
  3089. "b": 255,
  3090. "a": 255
  3091. },
  3092. "_N$normalSprite": {
  3093. "__uuid__": "15ea3fe1-3c51-456a-aa9d-38c0f63d6959"
  3094. },
  3095. "_N$pressedSprite": {
  3096. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3097. },
  3098. "pressedSprite": {
  3099. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3100. },
  3101. "_N$hoverSprite": {
  3102. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3103. },
  3104. "hoverSprite": {
  3105. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3106. },
  3107. "_N$disabledSprite": {
  3108. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3109. },
  3110. "_N$target": {
  3111. "__id__": 59
  3112. },
  3113. "_id": "87SAxYKONJo46lCQlsnQ9E"
  3114. },
  3115. {
  3116. "__type__": "383b6jiPtpC04bQZ1S82vRe",
  3117. "_name": "",
  3118. "_objFlags": 0,
  3119. "node": {
  3120. "__id__": 59
  3121. },
  3122. "_enabled": true,
  3123. "button": {
  3124. "__id__": 63
  3125. },
  3126. "_id": "18/IOHABNJaZ93hNiDihM1"
  3127. },
  3128. {
  3129. "__type__": "cc.Node",
  3130. "_name": "表情版",
  3131. "_objFlags": 0,
  3132. "_parent": {
  3133. "__id__": 50
  3134. },
  3135. "_children": [
  3136. {
  3137. "__id__": 66
  3138. }
  3139. ],
  3140. "_active": true,
  3141. "_components": [
  3142. {
  3143. "__id__": 68
  3144. },
  3145. {
  3146. "__id__": 69
  3147. },
  3148. {
  3149. "__id__": 70
  3150. }
  3151. ],
  3152. "_prefab": null,
  3153. "_opacity": 255,
  3154. "_color": {
  3155. "__type__": "cc.Color",
  3156. "r": 118,
  3157. "g": 214,
  3158. "b": 64,
  3159. "a": 255
  3160. },
  3161. "_contentSize": {
  3162. "__type__": "cc.Size",
  3163. "width": 300,
  3164. "height": 70
  3165. },
  3166. "_anchorPoint": {
  3167. "__type__": "cc.Vec2",
  3168. "x": 0.5,
  3169. "y": 0.5
  3170. },
  3171. "_trs": {
  3172. "__type__": "TypedArray",
  3173. "ctor": "Float64Array",
  3174. "array": [
  3175. 0,
  3176. -150,
  3177. 0,
  3178. 0,
  3179. 0,
  3180. 0,
  3181. 1,
  3182. 1,
  3183. 1,
  3184. 1
  3185. ]
  3186. },
  3187. "_eulerAngles": {
  3188. "__type__": "cc.Vec3",
  3189. "x": 0,
  3190. "y": 0,
  3191. "z": 0
  3192. },
  3193. "_skewX": 0,
  3194. "_skewY": 0,
  3195. "_is3DNode": false,
  3196. "_groupIndex": 0,
  3197. "groupIndex": 0,
  3198. "_id": "0dhRFghN9Bbby7QoKt8GQ+"
  3199. },
  3200. {
  3201. "__type__": "cc.Node",
  3202. "_name": "Label",
  3203. "_objFlags": 0,
  3204. "_parent": {
  3205. "__id__": 65
  3206. },
  3207. "_children": [],
  3208. "_active": true,
  3209. "_components": [
  3210. {
  3211. "__id__": 67
  3212. }
  3213. ],
  3214. "_prefab": null,
  3215. "_opacity": 255,
  3216. "_color": {
  3217. "__type__": "cc.Color",
  3218. "r": 255,
  3219. "g": 255,
  3220. "b": 255,
  3221. "a": 255
  3222. },
  3223. "_contentSize": {
  3224. "__type__": "cc.Size",
  3225. "width": 225.56,
  3226. "height": 44.44
  3227. },
  3228. "_anchorPoint": {
  3229. "__type__": "cc.Vec2",
  3230. "x": 0.5,
  3231. "y": 0.5
  3232. },
  3233. "_trs": {
  3234. "__type__": "TypedArray",
  3235. "ctor": "Float64Array",
  3236. "array": [
  3237. 0,
  3238. 0,
  3239. 0,
  3240. 0,
  3241. 0,
  3242. 0,
  3243. 1,
  3244. 1,
  3245. 1,
  3246. 1
  3247. ]
  3248. },
  3249. "_eulerAngles": {
  3250. "__type__": "cc.Vec3",
  3251. "x": 0,
  3252. "y": 0,
  3253. "z": 0
  3254. },
  3255. "_skewX": 0,
  3256. "_skewY": 0,
  3257. "_is3DNode": false,
  3258. "_groupIndex": 0,
  3259. "groupIndex": 0,
  3260. "_id": "96xo0TwF9MEoI1yn0FdoBp"
  3261. },
  3262. {
  3263. "__type__": "cc.Label",
  3264. "_name": "",
  3265. "_objFlags": 0,
  3266. "node": {
  3267. "__id__": 66
  3268. },
  3269. "_enabled": true,
  3270. "_materials": [],
  3271. "_srcBlendFactor": 770,
  3272. "_dstBlendFactor": 771,
  3273. "_string": "Emoji(hard)",
  3274. "_N$string": "Emoji(hard)",
  3275. "_fontSize": 40,
  3276. "_lineHeight": 40,
  3277. "_enableWrapText": false,
  3278. "_N$file": {
  3279. "__uuid__": "5eccaf75-36ab-4fb0-b9b8-3ca2a76069fa"
  3280. },
  3281. "_isSystemFontUsed": false,
  3282. "_spacingX": 0,
  3283. "_batchAsBitmap": false,
  3284. "_styleFlags": 0,
  3285. "_underlineHeight": 0,
  3286. "_N$horizontalAlign": 1,
  3287. "_N$verticalAlign": 1,
  3288. "_N$fontFamily": "Arial",
  3289. "_N$overflow": 0,
  3290. "_N$cacheMode": 0,
  3291. "_id": "0eaGfjZClNyZDOOwNDqvGE"
  3292. },
  3293. {
  3294. "__type__": "cc.Sprite",
  3295. "_name": "",
  3296. "_objFlags": 0,
  3297. "node": {
  3298. "__id__": 65
  3299. },
  3300. "_enabled": true,
  3301. "_materials": [],
  3302. "_srcBlendFactor": 770,
  3303. "_dstBlendFactor": 771,
  3304. "_spriteFrame": {
  3305. "__uuid__": "15ea3fe1-3c51-456a-aa9d-38c0f63d6959"
  3306. },
  3307. "_type": 1,
  3308. "_sizeMode": 0,
  3309. "_fillType": 0,
  3310. "_fillCenter": {
  3311. "__type__": "cc.Vec2",
  3312. "x": 0,
  3313. "y": 0
  3314. },
  3315. "_fillStart": 0,
  3316. "_fillRange": 0,
  3317. "_isTrimmedMode": true,
  3318. "_atlas": null,
  3319. "_id": "0275NNTipEHJ4xOYCk5lXW"
  3320. },
  3321. {
  3322. "__type__": "cc.Button",
  3323. "_name": "",
  3324. "_objFlags": 0,
  3325. "node": {
  3326. "__id__": 65
  3327. },
  3328. "_enabled": true,
  3329. "_normalMaterial": null,
  3330. "_grayMaterial": null,
  3331. "duration": 0.1,
  3332. "zoomScale": 1.2,
  3333. "clickEvents": [],
  3334. "_N$interactable": true,
  3335. "_N$enableAutoGrayEffect": false,
  3336. "_N$transition": 3,
  3337. "transition": 3,
  3338. "_N$normalColor": {
  3339. "__type__": "cc.Color",
  3340. "r": 255,
  3341. "g": 255,
  3342. "b": 255,
  3343. "a": 255
  3344. },
  3345. "_N$pressedColor": {
  3346. "__type__": "cc.Color",
  3347. "r": 255,
  3348. "g": 255,
  3349. "b": 255,
  3350. "a": 255
  3351. },
  3352. "pressedColor": {
  3353. "__type__": "cc.Color",
  3354. "r": 255,
  3355. "g": 255,
  3356. "b": 255,
  3357. "a": 255
  3358. },
  3359. "_N$hoverColor": {
  3360. "__type__": "cc.Color",
  3361. "r": 255,
  3362. "g": 255,
  3363. "b": 255,
  3364. "a": 255
  3365. },
  3366. "hoverColor": {
  3367. "__type__": "cc.Color",
  3368. "r": 255,
  3369. "g": 255,
  3370. "b": 255,
  3371. "a": 255
  3372. },
  3373. "_N$disabledColor": {
  3374. "__type__": "cc.Color",
  3375. "r": 255,
  3376. "g": 255,
  3377. "b": 255,
  3378. "a": 255
  3379. },
  3380. "_N$normalSprite": {
  3381. "__uuid__": "15ea3fe1-3c51-456a-aa9d-38c0f63d6959"
  3382. },
  3383. "_N$pressedSprite": {
  3384. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3385. },
  3386. "pressedSprite": {
  3387. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3388. },
  3389. "_N$hoverSprite": {
  3390. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3391. },
  3392. "hoverSprite": {
  3393. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3394. },
  3395. "_N$disabledSprite": {
  3396. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3397. },
  3398. "_N$target": {
  3399. "__id__": 65
  3400. },
  3401. "_id": "eb+mS48n5PMKwO6XLf3YCu"
  3402. },
  3403. {
  3404. "__type__": "8eaf1HKR9tHYZ6Z7N+uFfo7",
  3405. "_name": "",
  3406. "_objFlags": 0,
  3407. "node": {
  3408. "__id__": 65
  3409. },
  3410. "_enabled": true,
  3411. "button": {
  3412. "__id__": 69
  3413. },
  3414. "_id": "92lb4omSdFS6o1DXdgpf40"
  3415. },
  3416. {
  3417. "__type__": "cc.Sprite",
  3418. "_name": "",
  3419. "_objFlags": 0,
  3420. "node": {
  3421. "__id__": 50
  3422. },
  3423. "_enabled": true,
  3424. "_materials": [],
  3425. "_srcBlendFactor": 770,
  3426. "_dstBlendFactor": 771,
  3427. "_spriteFrame": {
  3428. "__uuid__": "353739e9-fac1-4946-bf90-1820db03c2de"
  3429. },
  3430. "_type": 0,
  3431. "_sizeMode": 0,
  3432. "_fillType": 0,
  3433. "_fillCenter": {
  3434. "__type__": "cc.Vec2",
  3435. "x": 0,
  3436. "y": 0
  3437. },
  3438. "_fillStart": 0,
  3439. "_fillRange": 0,
  3440. "_isTrimmedMode": true,
  3441. "_atlas": null,
  3442. "_id": "c2wtfL02dIvbEYLkIeNTuJ"
  3443. },
  3444. {
  3445. "__type__": "cc.Canvas",
  3446. "_name": "",
  3447. "_objFlags": 0,
  3448. "node": {
  3449. "__id__": 2
  3450. },
  3451. "_enabled": true,
  3452. "_designResolution": {
  3453. "__type__": "cc.Size",
  3454. "width": 640,
  3455. "height": 1280
  3456. },
  3457. "_fitWidth": false,
  3458. "_fitHeight": true,
  3459. "_id": "b00zeHWphHCI0vuxDGNBV0"
  3460. },
  3461. {
  3462. "__type__": "5e9ddW++mdH96kOPNqknwTC",
  3463. "_name": "",
  3464. "_objFlags": 0,
  3465. "node": {
  3466. "__id__": 2
  3467. },
  3468. "_enabled": true,
  3469. "_id": "605iMB5jpL26ebd304eszT"
  3470. },
  3471. {
  3472. "__type__": "cc.Widget",
  3473. "_name": "",
  3474. "_objFlags": 0,
  3475. "node": {
  3476. "__id__": 2
  3477. },
  3478. "_enabled": true,
  3479. "alignMode": 1,
  3480. "_target": null,
  3481. "_alignFlags": 45,
  3482. "_left": 0,
  3483. "_right": 0,
  3484. "_top": 0,
  3485. "_bottom": 0,
  3486. "_verticalCenter": 0,
  3487. "_horizontalCenter": 0,
  3488. "_isAbsLeft": true,
  3489. "_isAbsRight": true,
  3490. "_isAbsTop": true,
  3491. "_isAbsBottom": true,
  3492. "_isAbsHorizontalCenter": true,
  3493. "_isAbsVerticalCenter": true,
  3494. "_originalWidth": 0,
  3495. "_originalHeight": 0,
  3496. "_id": "525iTzYCRLnpwmc/xpmn7d"
  3497. }
  3498. ]