ui_settings.prefab 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "ui_settings",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "ui_settings",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 12
  26. },
  27. {
  28. "__id__": 18
  29. },
  30. {
  31. "__id__": 24
  32. },
  33. {
  34. "__id__": 38
  35. },
  36. {
  37. "__id__": 60
  38. },
  39. {
  40. "__id__": 82
  41. }
  42. ],
  43. "_active": true,
  44. "_components": [
  45. {
  46. "__id__": 102
  47. },
  48. {
  49. "__id__": 104
  50. },
  51. {
  52. "__id__": 106
  53. }
  54. ],
  55. "_prefab": {
  56. "__id__": 108
  57. },
  58. "_lpos": {
  59. "__type__": "cc.Vec3",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0
  63. },
  64. "_lrot": {
  65. "__type__": "cc.Quat",
  66. "x": 0,
  67. "y": 0,
  68. "z": 0,
  69. "w": 1
  70. },
  71. "_lscale": {
  72. "__type__": "cc.Vec3",
  73. "x": 1,
  74. "y": 1,
  75. "z": 1
  76. },
  77. "_mobility": 0,
  78. "_layer": 33554432,
  79. "_euler": {
  80. "__type__": "cc.Vec3",
  81. "x": 0,
  82. "y": 0,
  83. "z": 0
  84. },
  85. "_id": ""
  86. },
  87. {
  88. "__type__": "cc.Node",
  89. "_name": "mask_bg",
  90. "_objFlags": 0,
  91. "__editorExtras__": {},
  92. "_parent": {
  93. "__id__": 1
  94. },
  95. "_children": [],
  96. "_active": true,
  97. "_components": [
  98. {
  99. "__id__": 3
  100. },
  101. {
  102. "__id__": 5
  103. },
  104. {
  105. "__id__": 7
  106. },
  107. {
  108. "__id__": 9
  109. }
  110. ],
  111. "_prefab": {
  112. "__id__": 11
  113. },
  114. "_lpos": {
  115. "__type__": "cc.Vec3",
  116. "x": 0,
  117. "y": 0,
  118. "z": 0
  119. },
  120. "_lrot": {
  121. "__type__": "cc.Quat",
  122. "x": 0,
  123. "y": 0,
  124. "z": 0,
  125. "w": 1
  126. },
  127. "_lscale": {
  128. "__type__": "cc.Vec3",
  129. "x": 1,
  130. "y": 1,
  131. "z": 1
  132. },
  133. "_mobility": 0,
  134. "_layer": 33554432,
  135. "_euler": {
  136. "__type__": "cc.Vec3",
  137. "x": 0,
  138. "y": 0,
  139. "z": 0
  140. },
  141. "_id": ""
  142. },
  143. {
  144. "__type__": "cc.UITransform",
  145. "_name": "",
  146. "_objFlags": 0,
  147. "__editorExtras__": {},
  148. "node": {
  149. "__id__": 2
  150. },
  151. "_enabled": true,
  152. "__prefab": {
  153. "__id__": 4
  154. },
  155. "_contentSize": {
  156. "__type__": "cc.Size",
  157. "width": 1280,
  158. "height": 720
  159. },
  160. "_anchorPoint": {
  161. "__type__": "cc.Vec2",
  162. "x": 0.5,
  163. "y": 0.5
  164. },
  165. "_id": ""
  166. },
  167. {
  168. "__type__": "cc.CompPrefabInfo",
  169. "fileId": "c4DjcB7ERG752uYWZ05jT8"
  170. },
  171. {
  172. "__type__": "cc.Sprite",
  173. "_name": "",
  174. "_objFlags": 0,
  175. "__editorExtras__": {},
  176. "node": {
  177. "__id__": 2
  178. },
  179. "_enabled": true,
  180. "__prefab": {
  181. "__id__": 6
  182. },
  183. "_customMaterial": null,
  184. "_srcBlendFactor": 2,
  185. "_dstBlendFactor": 4,
  186. "_color": {
  187. "__type__": "cc.Color",
  188. "r": 0,
  189. "g": 0,
  190. "b": 0,
  191. "a": 80
  192. },
  193. "_spriteFrame": {
  194. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  195. "__expectedType__": "cc.SpriteFrame"
  196. },
  197. "_type": 0,
  198. "_fillType": 0,
  199. "_sizeMode": 0,
  200. "_fillCenter": {
  201. "__type__": "cc.Vec2",
  202. "x": 0,
  203. "y": 0
  204. },
  205. "_fillStart": 0,
  206. "_fillRange": 0,
  207. "_isTrimmedMode": true,
  208. "_useGrayscale": false,
  209. "_atlas": null,
  210. "_id": ""
  211. },
  212. {
  213. "__type__": "cc.CompPrefabInfo",
  214. "fileId": "0dmTrc/fdHApCAAJnJmpui"
  215. },
  216. {
  217. "__type__": "cc.Widget",
  218. "_name": "",
  219. "_objFlags": 0,
  220. "__editorExtras__": {},
  221. "node": {
  222. "__id__": 2
  223. },
  224. "_enabled": true,
  225. "__prefab": {
  226. "__id__": 8
  227. },
  228. "_alignFlags": 45,
  229. "_target": null,
  230. "_left": 0,
  231. "_right": 0,
  232. "_top": 0,
  233. "_bottom": 0,
  234. "_horizontalCenter": 0,
  235. "_verticalCenter": 0,
  236. "_isAbsLeft": true,
  237. "_isAbsRight": true,
  238. "_isAbsTop": true,
  239. "_isAbsBottom": true,
  240. "_isAbsHorizontalCenter": true,
  241. "_isAbsVerticalCenter": true,
  242. "_originalWidth": 100,
  243. "_originalHeight": 100,
  244. "_alignMode": 2,
  245. "_lockFlags": 0,
  246. "_id": ""
  247. },
  248. {
  249. "__type__": "cc.CompPrefabInfo",
  250. "fileId": "ceYvivwg5OJrZgEWQCOUkz"
  251. },
  252. {
  253. "__type__": "cc.Button",
  254. "_name": "",
  255. "_objFlags": 0,
  256. "__editorExtras__": {},
  257. "node": {
  258. "__id__": 2
  259. },
  260. "_enabled": true,
  261. "__prefab": {
  262. "__id__": 10
  263. },
  264. "clickEvents": [],
  265. "_interactable": true,
  266. "_transition": 0,
  267. "_normalColor": {
  268. "__type__": "cc.Color",
  269. "r": 255,
  270. "g": 255,
  271. "b": 255,
  272. "a": 255
  273. },
  274. "_hoverColor": {
  275. "__type__": "cc.Color",
  276. "r": 211,
  277. "g": 211,
  278. "b": 211,
  279. "a": 255
  280. },
  281. "_pressedColor": {
  282. "__type__": "cc.Color",
  283. "r": 255,
  284. "g": 255,
  285. "b": 255,
  286. "a": 255
  287. },
  288. "_disabledColor": {
  289. "__type__": "cc.Color",
  290. "r": 124,
  291. "g": 124,
  292. "b": 124,
  293. "a": 255
  294. },
  295. "_normalSprite": {
  296. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  297. "__expectedType__": "cc.SpriteFrame"
  298. },
  299. "_hoverSprite": null,
  300. "_pressedSprite": null,
  301. "_disabledSprite": null,
  302. "_duration": 0.1,
  303. "_zoomScale": 1.2,
  304. "_target": null,
  305. "_id": ""
  306. },
  307. {
  308. "__type__": "cc.CompPrefabInfo",
  309. "fileId": "03Ekw6FRdOAoQImOQPh3iK"
  310. },
  311. {
  312. "__type__": "cc.PrefabInfo",
  313. "root": {
  314. "__id__": 1
  315. },
  316. "asset": {
  317. "__id__": 0
  318. },
  319. "fileId": "54QlLxS5xLIpXcN1im7oid",
  320. "instance": null,
  321. "targetOverrides": null,
  322. "nestedPrefabInstanceRoots": null
  323. },
  324. {
  325. "__type__": "cc.Node",
  326. "_name": "frame",
  327. "_objFlags": 0,
  328. "__editorExtras__": {},
  329. "_parent": {
  330. "__id__": 1
  331. },
  332. "_children": [],
  333. "_active": true,
  334. "_components": [
  335. {
  336. "__id__": 13
  337. },
  338. {
  339. "__id__": 15
  340. }
  341. ],
  342. "_prefab": {
  343. "__id__": 17
  344. },
  345. "_lpos": {
  346. "__type__": "cc.Vec3",
  347. "x": 0,
  348. "y": 0,
  349. "z": 0
  350. },
  351. "_lrot": {
  352. "__type__": "cc.Quat",
  353. "x": 0,
  354. "y": 0,
  355. "z": 0,
  356. "w": 1
  357. },
  358. "_lscale": {
  359. "__type__": "cc.Vec3",
  360. "x": 1,
  361. "y": 1,
  362. "z": 1
  363. },
  364. "_mobility": 0,
  365. "_layer": 33554432,
  366. "_euler": {
  367. "__type__": "cc.Vec3",
  368. "x": 0,
  369. "y": 0,
  370. "z": 0
  371. },
  372. "_id": ""
  373. },
  374. {
  375. "__type__": "cc.UITransform",
  376. "_name": "",
  377. "_objFlags": 0,
  378. "__editorExtras__": {},
  379. "node": {
  380. "__id__": 12
  381. },
  382. "_enabled": true,
  383. "__prefab": {
  384. "__id__": 14
  385. },
  386. "_contentSize": {
  387. "__type__": "cc.Size",
  388. "width": 556.913,
  389. "height": 322.152
  390. },
  391. "_anchorPoint": {
  392. "__type__": "cc.Vec2",
  393. "x": 0.5,
  394. "y": 0.5
  395. },
  396. "_id": ""
  397. },
  398. {
  399. "__type__": "cc.CompPrefabInfo",
  400. "fileId": "10+p5hjYFCZrjvbWW2dLTl"
  401. },
  402. {
  403. "__type__": "cc.Sprite",
  404. "_name": "",
  405. "_objFlags": 0,
  406. "__editorExtras__": {},
  407. "node": {
  408. "__id__": 12
  409. },
  410. "_enabled": true,
  411. "__prefab": {
  412. "__id__": 16
  413. },
  414. "_customMaterial": null,
  415. "_srcBlendFactor": 2,
  416. "_dstBlendFactor": 4,
  417. "_color": {
  418. "__type__": "cc.Color",
  419. "r": 240,
  420. "g": 240,
  421. "b": 240,
  422. "a": 255
  423. },
  424. "_spriteFrame": {
  425. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  426. "__expectedType__": "cc.SpriteFrame"
  427. },
  428. "_type": 0,
  429. "_fillType": 0,
  430. "_sizeMode": 0,
  431. "_fillCenter": {
  432. "__type__": "cc.Vec2",
  433. "x": 0,
  434. "y": 0
  435. },
  436. "_fillStart": 0,
  437. "_fillRange": 0,
  438. "_isTrimmedMode": true,
  439. "_useGrayscale": false,
  440. "_atlas": null,
  441. "_id": ""
  442. },
  443. {
  444. "__type__": "cc.CompPrefabInfo",
  445. "fileId": "510xzJu+JN0at9rCSjFzac"
  446. },
  447. {
  448. "__type__": "cc.PrefabInfo",
  449. "root": {
  450. "__id__": 1
  451. },
  452. "asset": {
  453. "__id__": 0
  454. },
  455. "fileId": "eamQs0fAVC05kxFbtYJvFc",
  456. "instance": null,
  457. "targetOverrides": null,
  458. "nestedPrefabInstanceRoots": null
  459. },
  460. {
  461. "__type__": "cc.Node",
  462. "_name": "Label-001",
  463. "_objFlags": 512,
  464. "__editorExtras__": {},
  465. "_parent": {
  466. "__id__": 1
  467. },
  468. "_children": [],
  469. "_active": true,
  470. "_components": [
  471. {
  472. "__id__": 19
  473. },
  474. {
  475. "__id__": 21
  476. }
  477. ],
  478. "_prefab": {
  479. "__id__": 23
  480. },
  481. "_lpos": {
  482. "__type__": "cc.Vec3",
  483. "x": 0,
  484. "y": 127,
  485. "z": 0
  486. },
  487. "_lrot": {
  488. "__type__": "cc.Quat",
  489. "x": 0,
  490. "y": 0,
  491. "z": 0,
  492. "w": 1
  493. },
  494. "_lscale": {
  495. "__type__": "cc.Vec3",
  496. "x": 1,
  497. "y": 1,
  498. "z": 1
  499. },
  500. "_mobility": 0,
  501. "_layer": 33554432,
  502. "_euler": {
  503. "__type__": "cc.Vec3",
  504. "x": 0,
  505. "y": 0,
  506. "z": 0
  507. },
  508. "_id": ""
  509. },
  510. {
  511. "__type__": "cc.UITransform",
  512. "_name": "",
  513. "_objFlags": 0,
  514. "__editorExtras__": {},
  515. "node": {
  516. "__id__": 18
  517. },
  518. "_enabled": true,
  519. "__prefab": {
  520. "__id__": 20
  521. },
  522. "_contentSize": {
  523. "__type__": "cc.Size",
  524. "width": 100,
  525. "height": 40
  526. },
  527. "_anchorPoint": {
  528. "__type__": "cc.Vec2",
  529. "x": 0.5,
  530. "y": 0.5
  531. },
  532. "_id": ""
  533. },
  534. {
  535. "__type__": "cc.CompPrefabInfo",
  536. "fileId": "72DZ2mwVlMYrrpS/wmaf0+"
  537. },
  538. {
  539. "__type__": "cc.Label",
  540. "_name": "",
  541. "_objFlags": 0,
  542. "__editorExtras__": {},
  543. "node": {
  544. "__id__": 18
  545. },
  546. "_enabled": true,
  547. "__prefab": {
  548. "__id__": 22
  549. },
  550. "_customMaterial": null,
  551. "_srcBlendFactor": 2,
  552. "_dstBlendFactor": 4,
  553. "_color": {
  554. "__type__": "cc.Color",
  555. "r": 0,
  556. "g": 0,
  557. "b": 0,
  558. "a": 255
  559. },
  560. "_string": "设置",
  561. "_horizontalAlign": 1,
  562. "_verticalAlign": 1,
  563. "_actualFontSize": 40.640625,
  564. "_fontSize": 30,
  565. "_fontFamily": "Arial",
  566. "_lineHeight": 40,
  567. "_overflow": 1,
  568. "_enableWrapText": false,
  569. "_font": null,
  570. "_isSystemFontUsed": true,
  571. "_spacingX": 0,
  572. "_isItalic": false,
  573. "_isBold": true,
  574. "_isUnderline": false,
  575. "_underlineHeight": 2,
  576. "_cacheMode": 0,
  577. "_id": ""
  578. },
  579. {
  580. "__type__": "cc.CompPrefabInfo",
  581. "fileId": "e3ea9qJRxNvYsIcedv8nWo"
  582. },
  583. {
  584. "__type__": "cc.PrefabInfo",
  585. "root": {
  586. "__id__": 1
  587. },
  588. "asset": {
  589. "__id__": 0
  590. },
  591. "fileId": "7f5UYXCrhB6Jib63vNPMSS",
  592. "instance": null,
  593. "targetOverrides": null,
  594. "nestedPrefabInstanceRoots": null
  595. },
  596. {
  597. "__type__": "cc.Node",
  598. "_name": "btnClose",
  599. "_objFlags": 0,
  600. "__editorExtras__": {},
  601. "_parent": {
  602. "__id__": 1
  603. },
  604. "_children": [
  605. {
  606. "__id__": 25
  607. }
  608. ],
  609. "_active": true,
  610. "_components": [
  611. {
  612. "__id__": 31
  613. },
  614. {
  615. "__id__": 33
  616. },
  617. {
  618. "__id__": 35
  619. }
  620. ],
  621. "_prefab": {
  622. "__id__": 37
  623. },
  624. "_lpos": {
  625. "__type__": "cc.Vec3",
  626. "x": 243.928,
  627. "y": 127.167,
  628. "z": 0
  629. },
  630. "_lrot": {
  631. "__type__": "cc.Quat",
  632. "x": 0,
  633. "y": 0,
  634. "z": 0,
  635. "w": 1
  636. },
  637. "_lscale": {
  638. "__type__": "cc.Vec3",
  639. "x": 1,
  640. "y": 1,
  641. "z": 1
  642. },
  643. "_mobility": 0,
  644. "_layer": 33554432,
  645. "_euler": {
  646. "__type__": "cc.Vec3",
  647. "x": 0,
  648. "y": 0,
  649. "z": 0
  650. },
  651. "_id": ""
  652. },
  653. {
  654. "__type__": "cc.Node",
  655. "_name": "Label",
  656. "_objFlags": 512,
  657. "__editorExtras__": {},
  658. "_parent": {
  659. "__id__": 24
  660. },
  661. "_children": [],
  662. "_active": true,
  663. "_components": [
  664. {
  665. "__id__": 26
  666. },
  667. {
  668. "__id__": 28
  669. }
  670. ],
  671. "_prefab": {
  672. "__id__": 30
  673. },
  674. "_lpos": {
  675. "__type__": "cc.Vec3",
  676. "x": 0,
  677. "y": 0,
  678. "z": 0
  679. },
  680. "_lrot": {
  681. "__type__": "cc.Quat",
  682. "x": 0,
  683. "y": 0,
  684. "z": 0,
  685. "w": 1
  686. },
  687. "_lscale": {
  688. "__type__": "cc.Vec3",
  689. "x": 1,
  690. "y": 1,
  691. "z": 1
  692. },
  693. "_mobility": 0,
  694. "_layer": 33554432,
  695. "_euler": {
  696. "__type__": "cc.Vec3",
  697. "x": 0,
  698. "y": 0,
  699. "z": 0
  700. },
  701. "_id": ""
  702. },
  703. {
  704. "__type__": "cc.UITransform",
  705. "_name": "",
  706. "_objFlags": 0,
  707. "__editorExtras__": {},
  708. "node": {
  709. "__id__": 25
  710. },
  711. "_enabled": true,
  712. "__prefab": {
  713. "__id__": 27
  714. },
  715. "_contentSize": {
  716. "__type__": "cc.Size",
  717. "width": 100,
  718. "height": 40
  719. },
  720. "_anchorPoint": {
  721. "__type__": "cc.Vec2",
  722. "x": 0.5,
  723. "y": 0.5
  724. },
  725. "_id": ""
  726. },
  727. {
  728. "__type__": "cc.CompPrefabInfo",
  729. "fileId": "6eIcbT8gNFloCZ0MhafaD9"
  730. },
  731. {
  732. "__type__": "cc.Label",
  733. "_name": "",
  734. "_objFlags": 0,
  735. "__editorExtras__": {},
  736. "node": {
  737. "__id__": 25
  738. },
  739. "_enabled": true,
  740. "__prefab": {
  741. "__id__": 29
  742. },
  743. "_customMaterial": null,
  744. "_srcBlendFactor": 2,
  745. "_dstBlendFactor": 4,
  746. "_color": {
  747. "__type__": "cc.Color",
  748. "r": 0,
  749. "g": 0,
  750. "b": 0,
  751. "a": 255
  752. },
  753. "_string": "X",
  754. "_horizontalAlign": 1,
  755. "_verticalAlign": 1,
  756. "_actualFontSize": 40.640625,
  757. "_fontSize": 30,
  758. "_fontFamily": "Arial",
  759. "_lineHeight": 40,
  760. "_overflow": 1,
  761. "_enableWrapText": false,
  762. "_font": null,
  763. "_isSystemFontUsed": true,
  764. "_spacingX": 0,
  765. "_isItalic": false,
  766. "_isBold": true,
  767. "_isUnderline": false,
  768. "_underlineHeight": 2,
  769. "_cacheMode": 0,
  770. "_id": ""
  771. },
  772. {
  773. "__type__": "cc.CompPrefabInfo",
  774. "fileId": "beEbaFJ05Op41Dk6IaXFPr"
  775. },
  776. {
  777. "__type__": "cc.PrefabInfo",
  778. "root": {
  779. "__id__": 1
  780. },
  781. "asset": {
  782. "__id__": 0
  783. },
  784. "fileId": "1aSp/6zK5EgKbWlGrCxPWK",
  785. "instance": null,
  786. "targetOverrides": null,
  787. "nestedPrefabInstanceRoots": null
  788. },
  789. {
  790. "__type__": "cc.UITransform",
  791. "_name": "",
  792. "_objFlags": 0,
  793. "__editorExtras__": {},
  794. "node": {
  795. "__id__": 24
  796. },
  797. "_enabled": true,
  798. "__prefab": {
  799. "__id__": 32
  800. },
  801. "_contentSize": {
  802. "__type__": "cc.Size",
  803. "width": 60,
  804. "height": 60
  805. },
  806. "_anchorPoint": {
  807. "__type__": "cc.Vec2",
  808. "x": 0.5,
  809. "y": 0.5
  810. },
  811. "_id": ""
  812. },
  813. {
  814. "__type__": "cc.CompPrefabInfo",
  815. "fileId": "176hbgrhFIvK/g0y6+8Mx9"
  816. },
  817. {
  818. "__type__": "cc.Sprite",
  819. "_name": "",
  820. "_objFlags": 0,
  821. "__editorExtras__": {},
  822. "node": {
  823. "__id__": 24
  824. },
  825. "_enabled": true,
  826. "__prefab": {
  827. "__id__": 34
  828. },
  829. "_customMaterial": null,
  830. "_srcBlendFactor": 2,
  831. "_dstBlendFactor": 4,
  832. "_color": {
  833. "__type__": "cc.Color",
  834. "r": 255,
  835. "g": 255,
  836. "b": 255,
  837. "a": 255
  838. },
  839. "_spriteFrame": {
  840. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  841. "__expectedType__": "cc.SpriteFrame"
  842. },
  843. "_type": 1,
  844. "_fillType": 0,
  845. "_sizeMode": 0,
  846. "_fillCenter": {
  847. "__type__": "cc.Vec2",
  848. "x": 0,
  849. "y": 0
  850. },
  851. "_fillStart": 0,
  852. "_fillRange": 0,
  853. "_isTrimmedMode": true,
  854. "_useGrayscale": false,
  855. "_atlas": null,
  856. "_id": ""
  857. },
  858. {
  859. "__type__": "cc.CompPrefabInfo",
  860. "fileId": "ecKXYpID1AIbiO/qZadLKP"
  861. },
  862. {
  863. "__type__": "cc.Button",
  864. "_name": "",
  865. "_objFlags": 0,
  866. "__editorExtras__": {},
  867. "node": {
  868. "__id__": 24
  869. },
  870. "_enabled": true,
  871. "__prefab": {
  872. "__id__": 36
  873. },
  874. "clickEvents": [],
  875. "_interactable": true,
  876. "_transition": 2,
  877. "_normalColor": {
  878. "__type__": "cc.Color",
  879. "r": 214,
  880. "g": 214,
  881. "b": 214,
  882. "a": 255
  883. },
  884. "_hoverColor": {
  885. "__type__": "cc.Color",
  886. "r": 211,
  887. "g": 211,
  888. "b": 211,
  889. "a": 255
  890. },
  891. "_pressedColor": {
  892. "__type__": "cc.Color",
  893. "r": 255,
  894. "g": 255,
  895. "b": 255,
  896. "a": 255
  897. },
  898. "_disabledColor": {
  899. "__type__": "cc.Color",
  900. "r": 124,
  901. "g": 124,
  902. "b": 124,
  903. "a": 255
  904. },
  905. "_normalSprite": {
  906. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  907. "__expectedType__": "cc.SpriteFrame"
  908. },
  909. "_hoverSprite": {
  910. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  911. "__expectedType__": "cc.SpriteFrame"
  912. },
  913. "_pressedSprite": {
  914. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  915. "__expectedType__": "cc.SpriteFrame"
  916. },
  917. "_disabledSprite": {
  918. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  919. "__expectedType__": "cc.SpriteFrame"
  920. },
  921. "_duration": 0.1,
  922. "_zoomScale": 1.2,
  923. "_target": {
  924. "__id__": 24
  925. },
  926. "_id": ""
  927. },
  928. {
  929. "__type__": "cc.CompPrefabInfo",
  930. "fileId": "c1fNqn3OhP94Ikfho70noO"
  931. },
  932. {
  933. "__type__": "cc.PrefabInfo",
  934. "root": {
  935. "__id__": 1
  936. },
  937. "asset": {
  938. "__id__": 0
  939. },
  940. "fileId": "f8yLNeukhBJ4/Ya1p5HWKq",
  941. "instance": null,
  942. "targetOverrides": null,
  943. "nestedPrefabInstanceRoots": null
  944. },
  945. {
  946. "__type__": "cc.Node",
  947. "_name": "sliderMusic",
  948. "_objFlags": 0,
  949. "__editorExtras__": {},
  950. "_parent": {
  951. "__id__": 1
  952. },
  953. "_children": [
  954. {
  955. "__id__": 39
  956. },
  957. {
  958. "__id__": 47
  959. }
  960. ],
  961. "_active": true,
  962. "_components": [
  963. {
  964. "__id__": 53
  965. },
  966. {
  967. "__id__": 55
  968. },
  969. {
  970. "__id__": 57
  971. }
  972. ],
  973. "_prefab": {
  974. "__id__": 59
  975. },
  976. "_lpos": {
  977. "__type__": "cc.Vec3",
  978. "x": 28.75,
  979. "y": 56.411,
  980. "z": 0
  981. },
  982. "_lrot": {
  983. "__type__": "cc.Quat",
  984. "x": 0,
  985. "y": 0,
  986. "z": 0,
  987. "w": 1
  988. },
  989. "_lscale": {
  990. "__type__": "cc.Vec3",
  991. "x": 1,
  992. "y": 1,
  993. "z": 1
  994. },
  995. "_mobility": 0,
  996. "_layer": 33554432,
  997. "_euler": {
  998. "__type__": "cc.Vec3",
  999. "x": 0,
  1000. "y": 0,
  1001. "z": 0
  1002. },
  1003. "_id": ""
  1004. },
  1005. {
  1006. "__type__": "cc.Node",
  1007. "_name": "Handle",
  1008. "_objFlags": 0,
  1009. "__editorExtras__": {},
  1010. "_parent": {
  1011. "__id__": 38
  1012. },
  1013. "_children": [],
  1014. "_active": true,
  1015. "_components": [
  1016. {
  1017. "__id__": 40
  1018. },
  1019. {
  1020. "__id__": 42
  1021. },
  1022. {
  1023. "__id__": 44
  1024. }
  1025. ],
  1026. "_prefab": {
  1027. "__id__": 46
  1028. },
  1029. "_lpos": {
  1030. "__type__": "cc.Vec3",
  1031. "x": -120,
  1032. "y": 0,
  1033. "z": 0
  1034. },
  1035. "_lrot": {
  1036. "__type__": "cc.Quat",
  1037. "x": 0,
  1038. "y": 0,
  1039. "z": 0,
  1040. "w": 1
  1041. },
  1042. "_lscale": {
  1043. "__type__": "cc.Vec3",
  1044. "x": 1,
  1045. "y": 1,
  1046. "z": 1
  1047. },
  1048. "_mobility": 0,
  1049. "_layer": 33554432,
  1050. "_euler": {
  1051. "__type__": "cc.Vec3",
  1052. "x": 0,
  1053. "y": 0,
  1054. "z": 0
  1055. },
  1056. "_id": ""
  1057. },
  1058. {
  1059. "__type__": "cc.UITransform",
  1060. "_name": "",
  1061. "_objFlags": 0,
  1062. "__editorExtras__": {},
  1063. "node": {
  1064. "__id__": 39
  1065. },
  1066. "_enabled": true,
  1067. "__prefab": {
  1068. "__id__": 41
  1069. },
  1070. "_contentSize": {
  1071. "__type__": "cc.Size",
  1072. "width": 32,
  1073. "height": 32
  1074. },
  1075. "_anchorPoint": {
  1076. "__type__": "cc.Vec2",
  1077. "x": 0.5,
  1078. "y": 0.5
  1079. },
  1080. "_id": ""
  1081. },
  1082. {
  1083. "__type__": "cc.CompPrefabInfo",
  1084. "fileId": "ea8bTdAalOoaPemKMHWsSm"
  1085. },
  1086. {
  1087. "__type__": "cc.Sprite",
  1088. "_name": "",
  1089. "_objFlags": 0,
  1090. "__editorExtras__": {},
  1091. "node": {
  1092. "__id__": 39
  1093. },
  1094. "_enabled": true,
  1095. "__prefab": {
  1096. "__id__": 43
  1097. },
  1098. "_customMaterial": null,
  1099. "_srcBlendFactor": 2,
  1100. "_dstBlendFactor": 4,
  1101. "_color": {
  1102. "__type__": "cc.Color",
  1103. "r": 201,
  1104. "g": 19,
  1105. "b": 19,
  1106. "a": 255
  1107. },
  1108. "_spriteFrame": {
  1109. "__uuid__": "f12a23c4-b924-4322-a260-3d982428f1e8@f9941",
  1110. "__expectedType__": "cc.SpriteFrame"
  1111. },
  1112. "_type": 0,
  1113. "_fillType": 0,
  1114. "_sizeMode": 0,
  1115. "_fillCenter": {
  1116. "__type__": "cc.Vec2",
  1117. "x": 0,
  1118. "y": 0
  1119. },
  1120. "_fillStart": 0,
  1121. "_fillRange": 0,
  1122. "_isTrimmedMode": true,
  1123. "_useGrayscale": false,
  1124. "_atlas": null,
  1125. "_id": ""
  1126. },
  1127. {
  1128. "__type__": "cc.CompPrefabInfo",
  1129. "fileId": "958+uHNRBBS7uzhLj+t51A"
  1130. },
  1131. {
  1132. "__type__": "cc.Button",
  1133. "_name": "",
  1134. "_objFlags": 0,
  1135. "__editorExtras__": {},
  1136. "node": {
  1137. "__id__": 39
  1138. },
  1139. "_enabled": true,
  1140. "__prefab": {
  1141. "__id__": 45
  1142. },
  1143. "clickEvents": [],
  1144. "_interactable": true,
  1145. "_transition": 0,
  1146. "_normalColor": {
  1147. "__type__": "cc.Color",
  1148. "r": 214,
  1149. "g": 214,
  1150. "b": 214,
  1151. "a": 255
  1152. },
  1153. "_hoverColor": {
  1154. "__type__": "cc.Color",
  1155. "r": 211,
  1156. "g": 211,
  1157. "b": 211,
  1158. "a": 255
  1159. },
  1160. "_pressedColor": {
  1161. "__type__": "cc.Color",
  1162. "r": 255,
  1163. "g": 255,
  1164. "b": 255,
  1165. "a": 255
  1166. },
  1167. "_disabledColor": {
  1168. "__type__": "cc.Color",
  1169. "r": 124,
  1170. "g": 124,
  1171. "b": 124,
  1172. "a": 255
  1173. },
  1174. "_normalSprite": {
  1175. "__uuid__": "f12a23c4-b924-4322-a260-3d982428f1e8@f9941",
  1176. "__expectedType__": "cc.SpriteFrame"
  1177. },
  1178. "_hoverSprite": null,
  1179. "_pressedSprite": null,
  1180. "_disabledSprite": null,
  1181. "_duration": 0.1,
  1182. "_zoomScale": 1.2,
  1183. "_target": {
  1184. "__id__": 39
  1185. },
  1186. "_id": ""
  1187. },
  1188. {
  1189. "__type__": "cc.CompPrefabInfo",
  1190. "fileId": "5c8gcBPfNBzLYMpzLjLL7j"
  1191. },
  1192. {
  1193. "__type__": "cc.PrefabInfo",
  1194. "root": {
  1195. "__id__": 1
  1196. },
  1197. "asset": {
  1198. "__id__": 0
  1199. },
  1200. "fileId": "8dCTGGit5OrJWTzleKSZE9",
  1201. "instance": null,
  1202. "targetOverrides": null,
  1203. "nestedPrefabInstanceRoots": null
  1204. },
  1205. {
  1206. "__type__": "cc.Node",
  1207. "_name": "Label",
  1208. "_objFlags": 0,
  1209. "__editorExtras__": {},
  1210. "_parent": {
  1211. "__id__": 38
  1212. },
  1213. "_children": [],
  1214. "_active": true,
  1215. "_components": [
  1216. {
  1217. "__id__": 48
  1218. },
  1219. {
  1220. "__id__": 50
  1221. }
  1222. ],
  1223. "_prefab": {
  1224. "__id__": 52
  1225. },
  1226. "_lpos": {
  1227. "__type__": "cc.Vec3",
  1228. "x": -200,
  1229. "y": 0,
  1230. "z": 0
  1231. },
  1232. "_lrot": {
  1233. "__type__": "cc.Quat",
  1234. "x": 0,
  1235. "y": 0,
  1236. "z": 0,
  1237. "w": 1
  1238. },
  1239. "_lscale": {
  1240. "__type__": "cc.Vec3",
  1241. "x": 1,
  1242. "y": 1,
  1243. "z": 1
  1244. },
  1245. "_mobility": 0,
  1246. "_layer": 33554432,
  1247. "_euler": {
  1248. "__type__": "cc.Vec3",
  1249. "x": 0,
  1250. "y": 0,
  1251. "z": 0
  1252. },
  1253. "_id": ""
  1254. },
  1255. {
  1256. "__type__": "cc.UITransform",
  1257. "_name": "",
  1258. "_objFlags": 0,
  1259. "__editorExtras__": {},
  1260. "node": {
  1261. "__id__": 47
  1262. },
  1263. "_enabled": true,
  1264. "__prefab": {
  1265. "__id__": 49
  1266. },
  1267. "_contentSize": {
  1268. "__type__": "cc.Size",
  1269. "width": 49.989389597750865,
  1270. "height": 50.4
  1271. },
  1272. "_anchorPoint": {
  1273. "__type__": "cc.Vec2",
  1274. "x": 0.5,
  1275. "y": 0.5
  1276. },
  1277. "_id": ""
  1278. },
  1279. {
  1280. "__type__": "cc.CompPrefabInfo",
  1281. "fileId": "ccYMNZlqBAp7ZJmiopXAxC"
  1282. },
  1283. {
  1284. "__type__": "cc.Label",
  1285. "_name": "",
  1286. "_objFlags": 0,
  1287. "__editorExtras__": {},
  1288. "node": {
  1289. "__id__": 47
  1290. },
  1291. "_enabled": true,
  1292. "__prefab": {
  1293. "__id__": 51
  1294. },
  1295. "_customMaterial": null,
  1296. "_srcBlendFactor": 2,
  1297. "_dstBlendFactor": 4,
  1298. "_color": {
  1299. "__type__": "cc.Color",
  1300. "r": 0,
  1301. "g": 0,
  1302. "b": 0,
  1303. "a": 255
  1304. },
  1305. "_string": "音乐",
  1306. "_horizontalAlign": 1,
  1307. "_verticalAlign": 1,
  1308. "_actualFontSize": 33.8671875,
  1309. "_fontSize": 25,
  1310. "_fontFamily": "Arial",
  1311. "_lineHeight": 40,
  1312. "_overflow": 0,
  1313. "_enableWrapText": true,
  1314. "_font": null,
  1315. "_isSystemFontUsed": true,
  1316. "_spacingX": 0,
  1317. "_isItalic": false,
  1318. "_isBold": false,
  1319. "_isUnderline": false,
  1320. "_underlineHeight": 2,
  1321. "_cacheMode": 0,
  1322. "_id": ""
  1323. },
  1324. {
  1325. "__type__": "cc.CompPrefabInfo",
  1326. "fileId": "55rzfIQBJAe4r6nf9/NCXc"
  1327. },
  1328. {
  1329. "__type__": "cc.PrefabInfo",
  1330. "root": {
  1331. "__id__": 1
  1332. },
  1333. "asset": {
  1334. "__id__": 0
  1335. },
  1336. "fileId": "4ehumZLuJMVaSednNMiRbq",
  1337. "instance": null,
  1338. "targetOverrides": null,
  1339. "nestedPrefabInstanceRoots": null
  1340. },
  1341. {
  1342. "__type__": "cc.UITransform",
  1343. "_name": "",
  1344. "_objFlags": 0,
  1345. "__editorExtras__": {},
  1346. "node": {
  1347. "__id__": 38
  1348. },
  1349. "_enabled": true,
  1350. "__prefab": {
  1351. "__id__": 54
  1352. },
  1353. "_contentSize": {
  1354. "__type__": "cc.Size",
  1355. "width": 300,
  1356. "height": 20
  1357. },
  1358. "_anchorPoint": {
  1359. "__type__": "cc.Vec2",
  1360. "x": 0.5,
  1361. "y": 0.5
  1362. },
  1363. "_id": ""
  1364. },
  1365. {
  1366. "__type__": "cc.CompPrefabInfo",
  1367. "fileId": "58/cT26XxMQK60Lre2FnWV"
  1368. },
  1369. {
  1370. "__type__": "cc.Sprite",
  1371. "_name": "",
  1372. "_objFlags": 0,
  1373. "__editorExtras__": {},
  1374. "node": {
  1375. "__id__": 38
  1376. },
  1377. "_enabled": true,
  1378. "__prefab": {
  1379. "__id__": 56
  1380. },
  1381. "_customMaterial": null,
  1382. "_srcBlendFactor": 2,
  1383. "_dstBlendFactor": 4,
  1384. "_color": {
  1385. "__type__": "cc.Color",
  1386. "r": 255,
  1387. "g": 255,
  1388. "b": 255,
  1389. "a": 255
  1390. },
  1391. "_spriteFrame": {
  1392. "__uuid__": "28765e2f-040a-4c65-8e8c-f9d0bb79d863@f9941",
  1393. "__expectedType__": "cc.SpriteFrame"
  1394. },
  1395. "_type": 1,
  1396. "_fillType": 0,
  1397. "_sizeMode": 0,
  1398. "_fillCenter": {
  1399. "__type__": "cc.Vec2",
  1400. "x": 0,
  1401. "y": 0
  1402. },
  1403. "_fillStart": 0,
  1404. "_fillRange": 0,
  1405. "_isTrimmedMode": true,
  1406. "_useGrayscale": false,
  1407. "_atlas": null,
  1408. "_id": ""
  1409. },
  1410. {
  1411. "__type__": "cc.CompPrefabInfo",
  1412. "fileId": "3bYLa3jmhA2b5IckdXLzRG"
  1413. },
  1414. {
  1415. "__type__": "cc.Slider",
  1416. "_name": "",
  1417. "_objFlags": 0,
  1418. "__editorExtras__": {},
  1419. "node": {
  1420. "__id__": 38
  1421. },
  1422. "_enabled": true,
  1423. "__prefab": {
  1424. "__id__": 58
  1425. },
  1426. "slideEvents": [],
  1427. "_handle": {
  1428. "__id__": 42
  1429. },
  1430. "_direction": 0,
  1431. "_progress": 0.1,
  1432. "_id": ""
  1433. },
  1434. {
  1435. "__type__": "cc.CompPrefabInfo",
  1436. "fileId": "0eQ74HjdNOhrlWNHFBdlqo"
  1437. },
  1438. {
  1439. "__type__": "cc.PrefabInfo",
  1440. "root": {
  1441. "__id__": 1
  1442. },
  1443. "asset": {
  1444. "__id__": 0
  1445. },
  1446. "fileId": "3awPrszRtEyIv6N8Lj13Yn",
  1447. "instance": null,
  1448. "targetOverrides": null,
  1449. "nestedPrefabInstanceRoots": null
  1450. },
  1451. {
  1452. "__type__": "cc.Node",
  1453. "_name": "sliderSound",
  1454. "_objFlags": 0,
  1455. "__editorExtras__": {},
  1456. "_parent": {
  1457. "__id__": 1
  1458. },
  1459. "_children": [
  1460. {
  1461. "__id__": 61
  1462. },
  1463. {
  1464. "__id__": 69
  1465. }
  1466. ],
  1467. "_active": true,
  1468. "_components": [
  1469. {
  1470. "__id__": 75
  1471. },
  1472. {
  1473. "__id__": 77
  1474. },
  1475. {
  1476. "__id__": 79
  1477. }
  1478. ],
  1479. "_prefab": {
  1480. "__id__": 81
  1481. },
  1482. "_lpos": {
  1483. "__type__": "cc.Vec3",
  1484. "x": 28.75,
  1485. "y": -16.089,
  1486. "z": 0
  1487. },
  1488. "_lrot": {
  1489. "__type__": "cc.Quat",
  1490. "x": 0,
  1491. "y": 0,
  1492. "z": 0,
  1493. "w": 1
  1494. },
  1495. "_lscale": {
  1496. "__type__": "cc.Vec3",
  1497. "x": 1,
  1498. "y": 1,
  1499. "z": 1
  1500. },
  1501. "_mobility": 0,
  1502. "_layer": 33554432,
  1503. "_euler": {
  1504. "__type__": "cc.Vec3",
  1505. "x": 0,
  1506. "y": 0,
  1507. "z": 0
  1508. },
  1509. "_id": ""
  1510. },
  1511. {
  1512. "__type__": "cc.Node",
  1513. "_name": "Handle",
  1514. "_objFlags": 0,
  1515. "__editorExtras__": {},
  1516. "_parent": {
  1517. "__id__": 60
  1518. },
  1519. "_children": [],
  1520. "_active": true,
  1521. "_components": [
  1522. {
  1523. "__id__": 62
  1524. },
  1525. {
  1526. "__id__": 64
  1527. },
  1528. {
  1529. "__id__": 66
  1530. }
  1531. ],
  1532. "_prefab": {
  1533. "__id__": 68
  1534. },
  1535. "_lpos": {
  1536. "__type__": "cc.Vec3",
  1537. "x": -120,
  1538. "y": 0,
  1539. "z": 0
  1540. },
  1541. "_lrot": {
  1542. "__type__": "cc.Quat",
  1543. "x": 0,
  1544. "y": 0,
  1545. "z": 0,
  1546. "w": 1
  1547. },
  1548. "_lscale": {
  1549. "__type__": "cc.Vec3",
  1550. "x": 1,
  1551. "y": 1,
  1552. "z": 1
  1553. },
  1554. "_mobility": 0,
  1555. "_layer": 33554432,
  1556. "_euler": {
  1557. "__type__": "cc.Vec3",
  1558. "x": 0,
  1559. "y": 0,
  1560. "z": 0
  1561. },
  1562. "_id": ""
  1563. },
  1564. {
  1565. "__type__": "cc.UITransform",
  1566. "_name": "",
  1567. "_objFlags": 0,
  1568. "__editorExtras__": {},
  1569. "node": {
  1570. "__id__": 61
  1571. },
  1572. "_enabled": true,
  1573. "__prefab": {
  1574. "__id__": 63
  1575. },
  1576. "_contentSize": {
  1577. "__type__": "cc.Size",
  1578. "width": 32,
  1579. "height": 32
  1580. },
  1581. "_anchorPoint": {
  1582. "__type__": "cc.Vec2",
  1583. "x": 0.5,
  1584. "y": 0.5
  1585. },
  1586. "_id": ""
  1587. },
  1588. {
  1589. "__type__": "cc.CompPrefabInfo",
  1590. "fileId": "dcXEWaAz5OSo7VdHH/I/5R"
  1591. },
  1592. {
  1593. "__type__": "cc.Sprite",
  1594. "_name": "",
  1595. "_objFlags": 0,
  1596. "__editorExtras__": {},
  1597. "node": {
  1598. "__id__": 61
  1599. },
  1600. "_enabled": true,
  1601. "__prefab": {
  1602. "__id__": 65
  1603. },
  1604. "_customMaterial": null,
  1605. "_srcBlendFactor": 2,
  1606. "_dstBlendFactor": 4,
  1607. "_color": {
  1608. "__type__": "cc.Color",
  1609. "r": 19,
  1610. "g": 201,
  1611. "b": 99,
  1612. "a": 255
  1613. },
  1614. "_spriteFrame": {
  1615. "__uuid__": "f12a23c4-b924-4322-a260-3d982428f1e8@f9941",
  1616. "__expectedType__": "cc.SpriteFrame"
  1617. },
  1618. "_type": 0,
  1619. "_fillType": 0,
  1620. "_sizeMode": 0,
  1621. "_fillCenter": {
  1622. "__type__": "cc.Vec2",
  1623. "x": 0,
  1624. "y": 0
  1625. },
  1626. "_fillStart": 0,
  1627. "_fillRange": 0,
  1628. "_isTrimmedMode": true,
  1629. "_useGrayscale": false,
  1630. "_atlas": null,
  1631. "_id": ""
  1632. },
  1633. {
  1634. "__type__": "cc.CompPrefabInfo",
  1635. "fileId": "d82Yg5tGdDiZfDU1B1/usG"
  1636. },
  1637. {
  1638. "__type__": "cc.Button",
  1639. "_name": "",
  1640. "_objFlags": 0,
  1641. "__editorExtras__": {},
  1642. "node": {
  1643. "__id__": 61
  1644. },
  1645. "_enabled": true,
  1646. "__prefab": {
  1647. "__id__": 67
  1648. },
  1649. "clickEvents": [],
  1650. "_interactable": true,
  1651. "_transition": 0,
  1652. "_normalColor": {
  1653. "__type__": "cc.Color",
  1654. "r": 214,
  1655. "g": 214,
  1656. "b": 214,
  1657. "a": 255
  1658. },
  1659. "_hoverColor": {
  1660. "__type__": "cc.Color",
  1661. "r": 211,
  1662. "g": 211,
  1663. "b": 211,
  1664. "a": 255
  1665. },
  1666. "_pressedColor": {
  1667. "__type__": "cc.Color",
  1668. "r": 255,
  1669. "g": 255,
  1670. "b": 255,
  1671. "a": 255
  1672. },
  1673. "_disabledColor": {
  1674. "__type__": "cc.Color",
  1675. "r": 124,
  1676. "g": 124,
  1677. "b": 124,
  1678. "a": 255
  1679. },
  1680. "_normalSprite": {
  1681. "__uuid__": "f12a23c4-b924-4322-a260-3d982428f1e8@f9941",
  1682. "__expectedType__": "cc.SpriteFrame"
  1683. },
  1684. "_hoverSprite": null,
  1685. "_pressedSprite": null,
  1686. "_disabledSprite": null,
  1687. "_duration": 0.1,
  1688. "_zoomScale": 1.2,
  1689. "_target": {
  1690. "__id__": 61
  1691. },
  1692. "_id": ""
  1693. },
  1694. {
  1695. "__type__": "cc.CompPrefabInfo",
  1696. "fileId": "fah3gKu7xBA7cETA4YjOh1"
  1697. },
  1698. {
  1699. "__type__": "cc.PrefabInfo",
  1700. "root": {
  1701. "__id__": 1
  1702. },
  1703. "asset": {
  1704. "__id__": 0
  1705. },
  1706. "fileId": "26ETUvU7pLgJge2mSzPLif",
  1707. "instance": null,
  1708. "targetOverrides": null,
  1709. "nestedPrefabInstanceRoots": null
  1710. },
  1711. {
  1712. "__type__": "cc.Node",
  1713. "_name": "Label",
  1714. "_objFlags": 0,
  1715. "__editorExtras__": {},
  1716. "_parent": {
  1717. "__id__": 60
  1718. },
  1719. "_children": [],
  1720. "_active": true,
  1721. "_components": [
  1722. {
  1723. "__id__": 70
  1724. },
  1725. {
  1726. "__id__": 72
  1727. }
  1728. ],
  1729. "_prefab": {
  1730. "__id__": 74
  1731. },
  1732. "_lpos": {
  1733. "__type__": "cc.Vec3",
  1734. "x": -200,
  1735. "y": 0,
  1736. "z": 0
  1737. },
  1738. "_lrot": {
  1739. "__type__": "cc.Quat",
  1740. "x": 0,
  1741. "y": 0,
  1742. "z": 0,
  1743. "w": 1
  1744. },
  1745. "_lscale": {
  1746. "__type__": "cc.Vec3",
  1747. "x": 1,
  1748. "y": 1,
  1749. "z": 1
  1750. },
  1751. "_mobility": 0,
  1752. "_layer": 33554432,
  1753. "_euler": {
  1754. "__type__": "cc.Vec3",
  1755. "x": 0,
  1756. "y": 0,
  1757. "z": 0
  1758. },
  1759. "_id": ""
  1760. },
  1761. {
  1762. "__type__": "cc.UITransform",
  1763. "_name": "",
  1764. "_objFlags": 0,
  1765. "__editorExtras__": {},
  1766. "node": {
  1767. "__id__": 69
  1768. },
  1769. "_enabled": true,
  1770. "__prefab": {
  1771. "__id__": 71
  1772. },
  1773. "_contentSize": {
  1774. "__type__": "cc.Size",
  1775. "width": 49.989389597750865,
  1776. "height": 50.4
  1777. },
  1778. "_anchorPoint": {
  1779. "__type__": "cc.Vec2",
  1780. "x": 0.5,
  1781. "y": 0.5
  1782. },
  1783. "_id": ""
  1784. },
  1785. {
  1786. "__type__": "cc.CompPrefabInfo",
  1787. "fileId": "c9Jrw7xEVAM7R+cUaNxHA3"
  1788. },
  1789. {
  1790. "__type__": "cc.Label",
  1791. "_name": "",
  1792. "_objFlags": 0,
  1793. "__editorExtras__": {},
  1794. "node": {
  1795. "__id__": 69
  1796. },
  1797. "_enabled": true,
  1798. "__prefab": {
  1799. "__id__": 73
  1800. },
  1801. "_customMaterial": null,
  1802. "_srcBlendFactor": 2,
  1803. "_dstBlendFactor": 4,
  1804. "_color": {
  1805. "__type__": "cc.Color",
  1806. "r": 0,
  1807. "g": 0,
  1808. "b": 0,
  1809. "a": 255
  1810. },
  1811. "_string": "音效",
  1812. "_horizontalAlign": 1,
  1813. "_verticalAlign": 1,
  1814. "_actualFontSize": 33.8671875,
  1815. "_fontSize": 25,
  1816. "_fontFamily": "Arial",
  1817. "_lineHeight": 40,
  1818. "_overflow": 0,
  1819. "_enableWrapText": true,
  1820. "_font": null,
  1821. "_isSystemFontUsed": true,
  1822. "_spacingX": 0,
  1823. "_isItalic": false,
  1824. "_isBold": false,
  1825. "_isUnderline": false,
  1826. "_underlineHeight": 2,
  1827. "_cacheMode": 0,
  1828. "_id": ""
  1829. },
  1830. {
  1831. "__type__": "cc.CompPrefabInfo",
  1832. "fileId": "3czCmUuPZIS5GAy/+krfRn"
  1833. },
  1834. {
  1835. "__type__": "cc.PrefabInfo",
  1836. "root": {
  1837. "__id__": 1
  1838. },
  1839. "asset": {
  1840. "__id__": 0
  1841. },
  1842. "fileId": "c58g/aZGtIFo8MCrU5NGRZ",
  1843. "instance": null,
  1844. "targetOverrides": null,
  1845. "nestedPrefabInstanceRoots": null
  1846. },
  1847. {
  1848. "__type__": "cc.UITransform",
  1849. "_name": "",
  1850. "_objFlags": 0,
  1851. "__editorExtras__": {},
  1852. "node": {
  1853. "__id__": 60
  1854. },
  1855. "_enabled": true,
  1856. "__prefab": {
  1857. "__id__": 76
  1858. },
  1859. "_contentSize": {
  1860. "__type__": "cc.Size",
  1861. "width": 300,
  1862. "height": 20
  1863. },
  1864. "_anchorPoint": {
  1865. "__type__": "cc.Vec2",
  1866. "x": 0.5,
  1867. "y": 0.5
  1868. },
  1869. "_id": ""
  1870. },
  1871. {
  1872. "__type__": "cc.CompPrefabInfo",
  1873. "fileId": "feIP1EBvxGPqKTZfmykbiM"
  1874. },
  1875. {
  1876. "__type__": "cc.Sprite",
  1877. "_name": "",
  1878. "_objFlags": 0,
  1879. "__editorExtras__": {},
  1880. "node": {
  1881. "__id__": 60
  1882. },
  1883. "_enabled": true,
  1884. "__prefab": {
  1885. "__id__": 78
  1886. },
  1887. "_customMaterial": null,
  1888. "_srcBlendFactor": 2,
  1889. "_dstBlendFactor": 4,
  1890. "_color": {
  1891. "__type__": "cc.Color",
  1892. "r": 255,
  1893. "g": 255,
  1894. "b": 255,
  1895. "a": 255
  1896. },
  1897. "_spriteFrame": {
  1898. "__uuid__": "28765e2f-040a-4c65-8e8c-f9d0bb79d863@f9941",
  1899. "__expectedType__": "cc.SpriteFrame"
  1900. },
  1901. "_type": 1,
  1902. "_fillType": 0,
  1903. "_sizeMode": 0,
  1904. "_fillCenter": {
  1905. "__type__": "cc.Vec2",
  1906. "x": 0,
  1907. "y": 0
  1908. },
  1909. "_fillStart": 0,
  1910. "_fillRange": 0,
  1911. "_isTrimmedMode": true,
  1912. "_useGrayscale": false,
  1913. "_atlas": null,
  1914. "_id": ""
  1915. },
  1916. {
  1917. "__type__": "cc.CompPrefabInfo",
  1918. "fileId": "d1upIWitZAwYS7MQ/IAHPS"
  1919. },
  1920. {
  1921. "__type__": "cc.Slider",
  1922. "_name": "",
  1923. "_objFlags": 0,
  1924. "__editorExtras__": {},
  1925. "node": {
  1926. "__id__": 60
  1927. },
  1928. "_enabled": true,
  1929. "__prefab": {
  1930. "__id__": 80
  1931. },
  1932. "slideEvents": [],
  1933. "_handle": {
  1934. "__id__": 64
  1935. },
  1936. "_direction": 0,
  1937. "_progress": 0.1,
  1938. "_id": ""
  1939. },
  1940. {
  1941. "__type__": "cc.CompPrefabInfo",
  1942. "fileId": "06DpGUwNZKYZXbiQ3HS+tH"
  1943. },
  1944. {
  1945. "__type__": "cc.PrefabInfo",
  1946. "root": {
  1947. "__id__": 1
  1948. },
  1949. "asset": {
  1950. "__id__": 0
  1951. },
  1952. "fileId": "63+mUC30VCBrALvuOMot0+",
  1953. "instance": null,
  1954. "targetOverrides": null,
  1955. "nestedPrefabInstanceRoots": null
  1956. },
  1957. {
  1958. "__type__": "cc.Node",
  1959. "_name": "chkFPS",
  1960. "_objFlags": 0,
  1961. "__editorExtras__": {},
  1962. "_parent": {
  1963. "__id__": 1
  1964. },
  1965. "_children": [
  1966. {
  1967. "__id__": 83
  1968. },
  1969. {
  1970. "__id__": 89
  1971. }
  1972. ],
  1973. "_active": true,
  1974. "_components": [
  1975. {
  1976. "__id__": 95
  1977. },
  1978. {
  1979. "__id__": 97
  1980. },
  1981. {
  1982. "__id__": 99
  1983. }
  1984. ],
  1985. "_prefab": {
  1986. "__id__": 101
  1987. },
  1988. "_lpos": {
  1989. "__type__": "cc.Vec3",
  1990. "x": -178,
  1991. "y": -98,
  1992. "z": 0
  1993. },
  1994. "_lrot": {
  1995. "__type__": "cc.Quat",
  1996. "x": 0,
  1997. "y": 0,
  1998. "z": 0,
  1999. "w": 1
  2000. },
  2001. "_lscale": {
  2002. "__type__": "cc.Vec3",
  2003. "x": 1,
  2004. "y": 1,
  2005. "z": 1
  2006. },
  2007. "_mobility": 0,
  2008. "_layer": 33554432,
  2009. "_euler": {
  2010. "__type__": "cc.Vec3",
  2011. "x": 0,
  2012. "y": 0,
  2013. "z": 0
  2014. },
  2015. "_id": ""
  2016. },
  2017. {
  2018. "__type__": "cc.Node",
  2019. "_name": "Checkmark",
  2020. "_objFlags": 0,
  2021. "__editorExtras__": {},
  2022. "_parent": {
  2023. "__id__": 82
  2024. },
  2025. "_children": [],
  2026. "_active": false,
  2027. "_components": [
  2028. {
  2029. "__id__": 84
  2030. },
  2031. {
  2032. "__id__": 86
  2033. }
  2034. ],
  2035. "_prefab": {
  2036. "__id__": 88
  2037. },
  2038. "_lpos": {
  2039. "__type__": "cc.Vec3",
  2040. "x": 0,
  2041. "y": 0,
  2042. "z": 0
  2043. },
  2044. "_lrot": {
  2045. "__type__": "cc.Quat",
  2046. "x": 0,
  2047. "y": 0,
  2048. "z": 0,
  2049. "w": 1
  2050. },
  2051. "_lscale": {
  2052. "__type__": "cc.Vec3",
  2053. "x": 1,
  2054. "y": 1,
  2055. "z": 1
  2056. },
  2057. "_mobility": 0,
  2058. "_layer": 33554432,
  2059. "_euler": {
  2060. "__type__": "cc.Vec3",
  2061. "x": 0,
  2062. "y": 0,
  2063. "z": 0
  2064. },
  2065. "_id": ""
  2066. },
  2067. {
  2068. "__type__": "cc.UITransform",
  2069. "_name": "",
  2070. "_objFlags": 0,
  2071. "__editorExtras__": {},
  2072. "node": {
  2073. "__id__": 83
  2074. },
  2075. "_enabled": true,
  2076. "__prefab": {
  2077. "__id__": 85
  2078. },
  2079. "_contentSize": {
  2080. "__type__": "cc.Size",
  2081. "width": 26,
  2082. "height": 26
  2083. },
  2084. "_anchorPoint": {
  2085. "__type__": "cc.Vec2",
  2086. "x": 0.5,
  2087. "y": 0.5
  2088. },
  2089. "_id": ""
  2090. },
  2091. {
  2092. "__type__": "cc.CompPrefabInfo",
  2093. "fileId": "e3kfEiZdBF64vQbgpT5gSP"
  2094. },
  2095. {
  2096. "__type__": "cc.Sprite",
  2097. "_name": "",
  2098. "_objFlags": 0,
  2099. "__editorExtras__": {},
  2100. "node": {
  2101. "__id__": 83
  2102. },
  2103. "_enabled": true,
  2104. "__prefab": {
  2105. "__id__": 87
  2106. },
  2107. "_customMaterial": null,
  2108. "_srcBlendFactor": 2,
  2109. "_dstBlendFactor": 4,
  2110. "_color": {
  2111. "__type__": "cc.Color",
  2112. "r": 255,
  2113. "g": 255,
  2114. "b": 255,
  2115. "a": 255
  2116. },
  2117. "_spriteFrame": {
  2118. "__uuid__": "158e7e52-3220-4cd7-9694-713e0e6e8278@f9941",
  2119. "__expectedType__": "cc.SpriteFrame"
  2120. },
  2121. "_type": 0,
  2122. "_fillType": 0,
  2123. "_sizeMode": 0,
  2124. "_fillCenter": {
  2125. "__type__": "cc.Vec2",
  2126. "x": 0,
  2127. "y": 0
  2128. },
  2129. "_fillStart": 0,
  2130. "_fillRange": 0,
  2131. "_isTrimmedMode": true,
  2132. "_useGrayscale": false,
  2133. "_atlas": null,
  2134. "_id": ""
  2135. },
  2136. {
  2137. "__type__": "cc.CompPrefabInfo",
  2138. "fileId": "beIanfKG9APoxQ+ryWCzns"
  2139. },
  2140. {
  2141. "__type__": "cc.PrefabInfo",
  2142. "root": {
  2143. "__id__": 1
  2144. },
  2145. "asset": {
  2146. "__id__": 0
  2147. },
  2148. "fileId": "02tnMxK0tJWbGH5SaNh777",
  2149. "instance": null,
  2150. "targetOverrides": null,
  2151. "nestedPrefabInstanceRoots": null
  2152. },
  2153. {
  2154. "__type__": "cc.Node",
  2155. "_name": "Label",
  2156. "_objFlags": 0,
  2157. "__editorExtras__": {},
  2158. "_parent": {
  2159. "__id__": 82
  2160. },
  2161. "_children": [],
  2162. "_active": true,
  2163. "_components": [
  2164. {
  2165. "__id__": 90
  2166. },
  2167. {
  2168. "__id__": 92
  2169. }
  2170. ],
  2171. "_prefab": {
  2172. "__id__": 94
  2173. },
  2174. "_lpos": {
  2175. "__type__": "cc.Vec3",
  2176. "x": 72,
  2177. "y": 0,
  2178. "z": 0
  2179. },
  2180. "_lrot": {
  2181. "__type__": "cc.Quat",
  2182. "x": 0,
  2183. "y": 0,
  2184. "z": 0,
  2185. "w": 1
  2186. },
  2187. "_lscale": {
  2188. "__type__": "cc.Vec3",
  2189. "x": 1,
  2190. "y": 1,
  2191. "z": 1
  2192. },
  2193. "_mobility": 0,
  2194. "_layer": 33554432,
  2195. "_euler": {
  2196. "__type__": "cc.Vec3",
  2197. "x": 0,
  2198. "y": 0,
  2199. "z": 0
  2200. },
  2201. "_id": ""
  2202. },
  2203. {
  2204. "__type__": "cc.UITransform",
  2205. "_name": "",
  2206. "_objFlags": 0,
  2207. "__editorExtras__": {},
  2208. "node": {
  2209. "__id__": 89
  2210. },
  2211. "_enabled": true,
  2212. "__prefab": {
  2213. "__id__": 91
  2214. },
  2215. "_contentSize": {
  2216. "__type__": "cc.Size",
  2217. "width": 99.97877919550173,
  2218. "height": 50.4
  2219. },
  2220. "_anchorPoint": {
  2221. "__type__": "cc.Vec2",
  2222. "x": 0.5,
  2223. "y": 0.5
  2224. },
  2225. "_id": ""
  2226. },
  2227. {
  2228. "__type__": "cc.CompPrefabInfo",
  2229. "fileId": "f72tuGm61C3Z3ARyhLSEZg"
  2230. },
  2231. {
  2232. "__type__": "cc.Label",
  2233. "_name": "",
  2234. "_objFlags": 0,
  2235. "__editorExtras__": {},
  2236. "node": {
  2237. "__id__": 89
  2238. },
  2239. "_enabled": true,
  2240. "__prefab": {
  2241. "__id__": 93
  2242. },
  2243. "_customMaterial": null,
  2244. "_srcBlendFactor": 2,
  2245. "_dstBlendFactor": 4,
  2246. "_color": {
  2247. "__type__": "cc.Color",
  2248. "r": 0,
  2249. "g": 0,
  2250. "b": 0,
  2251. "a": 255
  2252. },
  2253. "_string": "显示帧率",
  2254. "_horizontalAlign": 1,
  2255. "_verticalAlign": 1,
  2256. "_actualFontSize": 33.8671875,
  2257. "_fontSize": 25,
  2258. "_fontFamily": "Arial",
  2259. "_lineHeight": 40,
  2260. "_overflow": 0,
  2261. "_enableWrapText": true,
  2262. "_font": null,
  2263. "_isSystemFontUsed": true,
  2264. "_spacingX": 0,
  2265. "_isItalic": false,
  2266. "_isBold": false,
  2267. "_isUnderline": false,
  2268. "_underlineHeight": 2,
  2269. "_cacheMode": 0,
  2270. "_id": ""
  2271. },
  2272. {
  2273. "__type__": "cc.CompPrefabInfo",
  2274. "fileId": "30F3XEBUZPfoMTTX7cj/1r"
  2275. },
  2276. {
  2277. "__type__": "cc.PrefabInfo",
  2278. "root": {
  2279. "__id__": 1
  2280. },
  2281. "asset": {
  2282. "__id__": 0
  2283. },
  2284. "fileId": "1cBoYnXfpAHqh3Ji7J9A62",
  2285. "instance": null,
  2286. "targetOverrides": null,
  2287. "nestedPrefabInstanceRoots": null
  2288. },
  2289. {
  2290. "__type__": "cc.UITransform",
  2291. "_name": "",
  2292. "_objFlags": 0,
  2293. "__editorExtras__": {},
  2294. "node": {
  2295. "__id__": 82
  2296. },
  2297. "_enabled": true,
  2298. "__prefab": {
  2299. "__id__": 96
  2300. },
  2301. "_contentSize": {
  2302. "__type__": "cc.Size",
  2303. "width": 28,
  2304. "height": 28
  2305. },
  2306. "_anchorPoint": {
  2307. "__type__": "cc.Vec2",
  2308. "x": 0.5,
  2309. "y": 0.5
  2310. },
  2311. "_id": ""
  2312. },
  2313. {
  2314. "__type__": "cc.CompPrefabInfo",
  2315. "fileId": "e0MqTSCQRD0bSZ+MBrz88c"
  2316. },
  2317. {
  2318. "__type__": "cc.Sprite",
  2319. "_name": "",
  2320. "_objFlags": 0,
  2321. "__editorExtras__": {},
  2322. "node": {
  2323. "__id__": 82
  2324. },
  2325. "_enabled": true,
  2326. "__prefab": {
  2327. "__id__": 98
  2328. },
  2329. "_customMaterial": null,
  2330. "_srcBlendFactor": 2,
  2331. "_dstBlendFactor": 4,
  2332. "_color": {
  2333. "__type__": "cc.Color",
  2334. "r": 255,
  2335. "g": 255,
  2336. "b": 255,
  2337. "a": 255
  2338. },
  2339. "_spriteFrame": {
  2340. "__uuid__": "11bdc4b0-64a8-4eb7-a2a7-9fb9e233e977@f9941",
  2341. "__expectedType__": "cc.SpriteFrame"
  2342. },
  2343. "_type": 0,
  2344. "_fillType": 0,
  2345. "_sizeMode": 1,
  2346. "_fillCenter": {
  2347. "__type__": "cc.Vec2",
  2348. "x": 0,
  2349. "y": 0
  2350. },
  2351. "_fillStart": 0,
  2352. "_fillRange": 0,
  2353. "_isTrimmedMode": true,
  2354. "_useGrayscale": false,
  2355. "_atlas": null,
  2356. "_id": ""
  2357. },
  2358. {
  2359. "__type__": "cc.CompPrefabInfo",
  2360. "fileId": "28d1pBq2lFYY3etCb0iRQ1"
  2361. },
  2362. {
  2363. "__type__": "cc.Toggle",
  2364. "_name": "",
  2365. "_objFlags": 0,
  2366. "__editorExtras__": {},
  2367. "node": {
  2368. "__id__": 82
  2369. },
  2370. "_enabled": true,
  2371. "__prefab": {
  2372. "__id__": 100
  2373. },
  2374. "clickEvents": [],
  2375. "_interactable": true,
  2376. "_transition": 0,
  2377. "_normalColor": {
  2378. "__type__": "cc.Color",
  2379. "r": 214,
  2380. "g": 214,
  2381. "b": 214,
  2382. "a": 255
  2383. },
  2384. "_hoverColor": {
  2385. "__type__": "cc.Color",
  2386. "r": 211,
  2387. "g": 211,
  2388. "b": 211,
  2389. "a": 255
  2390. },
  2391. "_pressedColor": {
  2392. "__type__": "cc.Color",
  2393. "r": 255,
  2394. "g": 255,
  2395. "b": 255,
  2396. "a": 255
  2397. },
  2398. "_disabledColor": {
  2399. "__type__": "cc.Color",
  2400. "r": 124,
  2401. "g": 124,
  2402. "b": 124,
  2403. "a": 255
  2404. },
  2405. "_normalSprite": {
  2406. "__uuid__": "11bdc4b0-64a8-4eb7-a2a7-9fb9e233e977@f9941",
  2407. "__expectedType__": "cc.SpriteFrame"
  2408. },
  2409. "_hoverSprite": null,
  2410. "_pressedSprite": null,
  2411. "_disabledSprite": null,
  2412. "_duration": 0.1,
  2413. "_zoomScale": 1.2,
  2414. "_target": {
  2415. "__id__": 82
  2416. },
  2417. "checkEvents": [],
  2418. "_isChecked": false,
  2419. "_checkMark": {
  2420. "__id__": 86
  2421. },
  2422. "_id": ""
  2423. },
  2424. {
  2425. "__type__": "cc.CompPrefabInfo",
  2426. "fileId": "702i/VdyNH3IbdMspB5jbl"
  2427. },
  2428. {
  2429. "__type__": "cc.PrefabInfo",
  2430. "root": {
  2431. "__id__": 1
  2432. },
  2433. "asset": {
  2434. "__id__": 0
  2435. },
  2436. "fileId": "0ftP8GnTBKAogWW/QOndua",
  2437. "instance": null,
  2438. "targetOverrides": null,
  2439. "nestedPrefabInstanceRoots": null
  2440. },
  2441. {
  2442. "__type__": "cc.UITransform",
  2443. "_name": "",
  2444. "_objFlags": 0,
  2445. "__editorExtras__": {},
  2446. "node": {
  2447. "__id__": 1
  2448. },
  2449. "_enabled": true,
  2450. "__prefab": {
  2451. "__id__": 103
  2452. },
  2453. "_contentSize": {
  2454. "__type__": "cc.Size",
  2455. "width": 1280,
  2456. "height": 720
  2457. },
  2458. "_anchorPoint": {
  2459. "__type__": "cc.Vec2",
  2460. "x": 0.5,
  2461. "y": 0.5
  2462. },
  2463. "_id": ""
  2464. },
  2465. {
  2466. "__type__": "cc.CompPrefabInfo",
  2467. "fileId": "d6Uvu+ylpPNK8djIuNhtxG"
  2468. },
  2469. {
  2470. "__type__": "cc.Widget",
  2471. "_name": "",
  2472. "_objFlags": 0,
  2473. "__editorExtras__": {},
  2474. "node": {
  2475. "__id__": 1
  2476. },
  2477. "_enabled": true,
  2478. "__prefab": {
  2479. "__id__": 105
  2480. },
  2481. "_alignFlags": 45,
  2482. "_target": null,
  2483. "_left": 0,
  2484. "_right": 0,
  2485. "_top": 0,
  2486. "_bottom": 0,
  2487. "_horizontalCenter": 0,
  2488. "_verticalCenter": 0,
  2489. "_isAbsLeft": true,
  2490. "_isAbsRight": true,
  2491. "_isAbsTop": true,
  2492. "_isAbsBottom": true,
  2493. "_isAbsHorizontalCenter": true,
  2494. "_isAbsVerticalCenter": true,
  2495. "_originalWidth": 100,
  2496. "_originalHeight": 100,
  2497. "_alignMode": 2,
  2498. "_lockFlags": 0,
  2499. "_id": ""
  2500. },
  2501. {
  2502. "__type__": "cc.CompPrefabInfo",
  2503. "fileId": "4czkcVxSxJEYk/v1i6Lj+3"
  2504. },
  2505. {
  2506. "__type__": "b1f86h+cLZP6LEvgvQXSe45",
  2507. "_name": "",
  2508. "_objFlags": 0,
  2509. "__editorExtras__": {},
  2510. "node": {
  2511. "__id__": 1
  2512. },
  2513. "_enabled": true,
  2514. "__prefab": {
  2515. "__id__": 107
  2516. },
  2517. "btnClose": {
  2518. "__id__": 35
  2519. },
  2520. "sliderMusic": {
  2521. "__id__": 57
  2522. },
  2523. "sliderSound": {
  2524. "__id__": 79
  2525. },
  2526. "chkFPS": {
  2527. "__id__": 99
  2528. },
  2529. "_id": ""
  2530. },
  2531. {
  2532. "__type__": "cc.CompPrefabInfo",
  2533. "fileId": "67+Z4TJMZEWZKn5dJ8Pw03"
  2534. },
  2535. {
  2536. "__type__": "cc.PrefabInfo",
  2537. "root": {
  2538. "__id__": 1
  2539. },
  2540. "asset": {
  2541. "__id__": 0
  2542. },
  2543. "fileId": "5ezl5QWnxKrKjQ1OjysneE",
  2544. "instance": null,
  2545. "targetOverrides": []
  2546. }
  2547. ]