HallSettingsPanel.prefab 40 KB

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