UISetting.prefab 39 KB

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