UI_Setting.prefab 47 KB

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