UI_Setting.prefab 43 KB

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