PausePanel.prefab 51 KB

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