UIPause.prefab 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "UIPause",
  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": "UIPause",
  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. "__id__": 97
  35. },
  36. {
  37. "__id__": 114
  38. }
  39. ],
  40. "_active": true,
  41. "_components": [
  42. {
  43. "__id__": 131
  44. },
  45. {
  46. "__id__": 133
  47. },
  48. {
  49. "__id__": 135
  50. }
  51. ],
  52. "_prefab": {
  53. "__id__": 137
  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": "dk_sz",
  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. "_prefab": {
  103. "__id__": 7
  104. },
  105. "_lpos": {
  106. "__type__": "cc.Vec3",
  107. "x": 0,
  108. "y": 0,
  109. "z": 0
  110. },
  111. "_lrot": {
  112. "__type__": "cc.Quat",
  113. "x": 0,
  114. "y": 0,
  115. "z": 0,
  116. "w": 1
  117. },
  118. "_lscale": {
  119. "__type__": "cc.Vec3",
  120. "x": 1,
  121. "y": 1,
  122. "z": 1
  123. },
  124. "_mobility": 0,
  125. "_layer": 33554432,
  126. "_euler": {
  127. "__type__": "cc.Vec3",
  128. "x": 0,
  129. "y": 0,
  130. "z": 0
  131. },
  132. "_id": ""
  133. },
  134. {
  135. "__type__": "cc.UITransform",
  136. "_name": "",
  137. "_objFlags": 0,
  138. "__editorExtras__": {},
  139. "node": {
  140. "__id__": 2
  141. },
  142. "_enabled": true,
  143. "__prefab": {
  144. "__id__": 4
  145. },
  146. "_contentSize": {
  147. "__type__": "cc.Size",
  148. "width": 461,
  149. "height": 605
  150. },
  151. "_anchorPoint": {
  152. "__type__": "cc.Vec2",
  153. "x": 0.5,
  154. "y": 0.5
  155. },
  156. "_id": ""
  157. },
  158. {
  159. "__type__": "cc.CompPrefabInfo",
  160. "fileId": "8cR8cSrfhFhrZHTK71zaXt"
  161. },
  162. {
  163. "__type__": "cc.Sprite",
  164. "_name": "",
  165. "_objFlags": 0,
  166. "__editorExtras__": {},
  167. "node": {
  168. "__id__": 2
  169. },
  170. "_enabled": true,
  171. "__prefab": {
  172. "__id__": 6
  173. },
  174. "_customMaterial": null,
  175. "_srcBlendFactor": 2,
  176. "_dstBlendFactor": 4,
  177. "_color": {
  178. "__type__": "cc.Color",
  179. "r": 255,
  180. "g": 255,
  181. "b": 255,
  182. "a": 255
  183. },
  184. "_spriteFrame": {
  185. "__uuid__": "17d08613-9856-42e6-89e0-41ccd9fae0ac@f9941",
  186. "__expectedType__": "cc.SpriteFrame"
  187. },
  188. "_type": 0,
  189. "_fillType": 0,
  190. "_sizeMode": 2,
  191. "_fillCenter": {
  192. "__type__": "cc.Vec2",
  193. "x": 0,
  194. "y": 0
  195. },
  196. "_fillStart": 0,
  197. "_fillRange": 0,
  198. "_isTrimmedMode": true,
  199. "_useGrayscale": false,
  200. "_atlas": null,
  201. "_id": ""
  202. },
  203. {
  204. "__type__": "cc.CompPrefabInfo",
  205. "fileId": "8bzfm2C91IHIzuFFECiLix"
  206. },
  207. {
  208. "__type__": "cc.PrefabInfo",
  209. "root": {
  210. "__id__": 1
  211. },
  212. "asset": {
  213. "__id__": 0
  214. },
  215. "fileId": "52nrwV3SpGSKgGXCOiqGv/",
  216. "instance": null,
  217. "targetOverrides": null,
  218. "nestedPrefabInstanceRoots": null
  219. },
  220. {
  221. "__type__": "cc.Node",
  222. "_name": "BtnClose",
  223. "_objFlags": 0,
  224. "__editorExtras__": {},
  225. "_parent": {
  226. "__id__": 1
  227. },
  228. "_children": [],
  229. "_active": true,
  230. "_components": [
  231. {
  232. "__id__": 9
  233. },
  234. {
  235. "__id__": 11
  236. },
  237. {
  238. "__id__": 13
  239. },
  240. {
  241. "__id__": 16
  242. }
  243. ],
  244. "_prefab": {
  245. "__id__": 18
  246. },
  247. "_lpos": {
  248. "__type__": "cc.Vec3",
  249. "x": 200,
  250. "y": 258,
  251. "z": 0
  252. },
  253. "_lrot": {
  254. "__type__": "cc.Quat",
  255. "x": 0,
  256. "y": 0,
  257. "z": 0,
  258. "w": 1
  259. },
  260. "_lscale": {
  261. "__type__": "cc.Vec3",
  262. "x": 1,
  263. "y": 1,
  264. "z": 1
  265. },
  266. "_mobility": 0,
  267. "_layer": 33554432,
  268. "_euler": {
  269. "__type__": "cc.Vec3",
  270. "x": 0,
  271. "y": 0,
  272. "z": 0
  273. },
  274. "_id": ""
  275. },
  276. {
  277. "__type__": "cc.UITransform",
  278. "_name": "",
  279. "_objFlags": 0,
  280. "__editorExtras__": {},
  281. "node": {
  282. "__id__": 8
  283. },
  284. "_enabled": true,
  285. "__prefab": {
  286. "__id__": 10
  287. },
  288. "_contentSize": {
  289. "__type__": "cc.Size",
  290. "width": 58,
  291. "height": 59
  292. },
  293. "_anchorPoint": {
  294. "__type__": "cc.Vec2",
  295. "x": 0.5,
  296. "y": 0.5
  297. },
  298. "_id": ""
  299. },
  300. {
  301. "__type__": "cc.CompPrefabInfo",
  302. "fileId": "4b2aqlfdlMRKfCt72iQZX5"
  303. },
  304. {
  305. "__type__": "cc.Sprite",
  306. "_name": "",
  307. "_objFlags": 0,
  308. "__editorExtras__": {},
  309. "node": {
  310. "__id__": 8
  311. },
  312. "_enabled": true,
  313. "__prefab": {
  314. "__id__": 12
  315. },
  316. "_customMaterial": null,
  317. "_srcBlendFactor": 2,
  318. "_dstBlendFactor": 4,
  319. "_color": {
  320. "__type__": "cc.Color",
  321. "r": 255,
  322. "g": 255,
  323. "b": 255,
  324. "a": 255
  325. },
  326. "_spriteFrame": {
  327. "__uuid__": "f4b0ede7-ea0f-48fe-b9cd-65860970b2b2@f9941",
  328. "__expectedType__": "cc.SpriteFrame"
  329. },
  330. "_type": 1,
  331. "_fillType": 0,
  332. "_sizeMode": 0,
  333. "_fillCenter": {
  334. "__type__": "cc.Vec2",
  335. "x": 0,
  336. "y": 0
  337. },
  338. "_fillStart": 0,
  339. "_fillRange": 0,
  340. "_isTrimmedMode": true,
  341. "_useGrayscale": false,
  342. "_atlas": null,
  343. "_id": ""
  344. },
  345. {
  346. "__type__": "cc.CompPrefabInfo",
  347. "fileId": "40oR1yanJJ9Y23MAmxV6z/"
  348. },
  349. {
  350. "__type__": "cc.Button",
  351. "_name": "",
  352. "_objFlags": 0,
  353. "__editorExtras__": {},
  354. "node": {
  355. "__id__": 8
  356. },
  357. "_enabled": true,
  358. "__prefab": {
  359. "__id__": 14
  360. },
  361. "clickEvents": [
  362. {
  363. "__id__": 15
  364. }
  365. ],
  366. "_interactable": true,
  367. "_transition": 3,
  368. "_normalColor": {
  369. "__type__": "cc.Color",
  370. "r": 214,
  371. "g": 214,
  372. "b": 214,
  373. "a": 255
  374. },
  375. "_hoverColor": {
  376. "__type__": "cc.Color",
  377. "r": 211,
  378. "g": 211,
  379. "b": 211,
  380. "a": 255
  381. },
  382. "_pressedColor": {
  383. "__type__": "cc.Color",
  384. "r": 255,
  385. "g": 255,
  386. "b": 255,
  387. "a": 255
  388. },
  389. "_disabledColor": {
  390. "__type__": "cc.Color",
  391. "r": 124,
  392. "g": 124,
  393. "b": 124,
  394. "a": 255
  395. },
  396. "_normalSprite": null,
  397. "_hoverSprite": null,
  398. "_pressedSprite": null,
  399. "_disabledSprite": null,
  400. "_duration": 0.1,
  401. "_zoomScale": 1.1,
  402. "_target": {
  403. "__id__": 8
  404. },
  405. "_id": ""
  406. },
  407. {
  408. "__type__": "cc.CompPrefabInfo",
  409. "fileId": "84lIr9GIhH7J/L6BXeQ0lB"
  410. },
  411. {
  412. "__type__": "cc.ClickEvent",
  413. "target": {
  414. "__id__": 1
  415. },
  416. "component": "",
  417. "_componentId": "c45adto9B5CUrySVMJAHfZl",
  418. "handler": "onBtnCloseClick",
  419. "customEventData": ""
  420. },
  421. {
  422. "__type__": "e858boYmuRNtaUbAZS8rSGo",
  423. "_name": "",
  424. "_objFlags": 0,
  425. "__editorExtras__": {},
  426. "node": {
  427. "__id__": 8
  428. },
  429. "_enabled": true,
  430. "__prefab": {
  431. "__id__": 17
  432. },
  433. "safeTime": 0.5,
  434. "zoomScale": 1.1,
  435. "clickSfx": "btnClick",
  436. "openUI": "",
  437. "closeUI": "",
  438. "_id": ""
  439. },
  440. {
  441. "__type__": "cc.CompPrefabInfo",
  442. "fileId": "68dAOAChVH3ovV5Hbg0j1B"
  443. },
  444. {
  445. "__type__": "cc.PrefabInfo",
  446. "root": {
  447. "__id__": 1
  448. },
  449. "asset": {
  450. "__id__": 0
  451. },
  452. "fileId": "aed8CnFphMnZ+uKX274Gt4",
  453. "instance": null,
  454. "targetOverrides": null,
  455. "nestedPrefabInstanceRoots": null
  456. },
  457. {
  458. "__type__": "cc.Node",
  459. "_name": "SwBgm",
  460. "_objFlags": 0,
  461. "__editorExtras__": {},
  462. "_parent": {
  463. "__id__": 1
  464. },
  465. "_children": [
  466. {
  467. "__id__": 20
  468. },
  469. {
  470. "__id__": 36
  471. }
  472. ],
  473. "_active": true,
  474. "_components": [
  475. {
  476. "__id__": 46
  477. },
  478. {
  479. "__id__": 48
  480. },
  481. {
  482. "__id__": 50
  483. },
  484. {
  485. "__id__": 53
  486. },
  487. {
  488. "__id__": 55
  489. }
  490. ],
  491. "_prefab": {
  492. "__id__": 57
  493. },
  494. "_lpos": {
  495. "__type__": "cc.Vec3",
  496. "x": 72,
  497. "y": 136,
  498. "z": 0
  499. },
  500. "_lrot": {
  501. "__type__": "cc.Quat",
  502. "x": 0,
  503. "y": 0,
  504. "z": 0,
  505. "w": 1
  506. },
  507. "_lscale": {
  508. "__type__": "cc.Vec3",
  509. "x": 1,
  510. "y": 1,
  511. "z": 1
  512. },
  513. "_mobility": 0,
  514. "_layer": 33554432,
  515. "_euler": {
  516. "__type__": "cc.Vec3",
  517. "x": 0,
  518. "y": 0,
  519. "z": 0
  520. },
  521. "_id": ""
  522. },
  523. {
  524. "__type__": "cc.Node",
  525. "_name": "On",
  526. "_objFlags": 0,
  527. "__editorExtras__": {},
  528. "_parent": {
  529. "__id__": 19
  530. },
  531. "_children": [
  532. {
  533. "__id__": 21
  534. },
  535. {
  536. "__id__": 27
  537. }
  538. ],
  539. "_active": true,
  540. "_components": [
  541. {
  542. "__id__": 33
  543. }
  544. ],
  545. "_prefab": {
  546. "__id__": 35
  547. },
  548. "_lpos": {
  549. "__type__": "cc.Vec3",
  550. "x": 0,
  551. "y": 0,
  552. "z": 0
  553. },
  554. "_lrot": {
  555. "__type__": "cc.Quat",
  556. "x": 0,
  557. "y": 0,
  558. "z": 0,
  559. "w": 1
  560. },
  561. "_lscale": {
  562. "__type__": "cc.Vec3",
  563. "x": 1,
  564. "y": 1,
  565. "z": 1
  566. },
  567. "_mobility": 0,
  568. "_layer": 33554432,
  569. "_euler": {
  570. "__type__": "cc.Vec3",
  571. "x": 0,
  572. "y": 0,
  573. "z": 0
  574. },
  575. "_id": ""
  576. },
  577. {
  578. "__type__": "cc.Node",
  579. "_name": "kg1",
  580. "_objFlags": 0,
  581. "__editorExtras__": {},
  582. "_parent": {
  583. "__id__": 20
  584. },
  585. "_children": [],
  586. "_active": true,
  587. "_components": [
  588. {
  589. "__id__": 22
  590. },
  591. {
  592. "__id__": 24
  593. }
  594. ],
  595. "_prefab": {
  596. "__id__": 26
  597. },
  598. "_lpos": {
  599. "__type__": "cc.Vec3",
  600. "x": 0,
  601. "y": 0,
  602. "z": 0
  603. },
  604. "_lrot": {
  605. "__type__": "cc.Quat",
  606. "x": 0,
  607. "y": 0,
  608. "z": 0,
  609. "w": 1
  610. },
  611. "_lscale": {
  612. "__type__": "cc.Vec3",
  613. "x": 1,
  614. "y": 1,
  615. "z": 1
  616. },
  617. "_mobility": 0,
  618. "_layer": 33554432,
  619. "_euler": {
  620. "__type__": "cc.Vec3",
  621. "x": 0,
  622. "y": 0,
  623. "z": 0
  624. },
  625. "_id": ""
  626. },
  627. {
  628. "__type__": "cc.UITransform",
  629. "_name": "",
  630. "_objFlags": 0,
  631. "__editorExtras__": {},
  632. "node": {
  633. "__id__": 21
  634. },
  635. "_enabled": true,
  636. "__prefab": {
  637. "__id__": 23
  638. },
  639. "_contentSize": {
  640. "__type__": "cc.Size",
  641. "width": 109,
  642. "height": 56
  643. },
  644. "_anchorPoint": {
  645. "__type__": "cc.Vec2",
  646. "x": 0.5,
  647. "y": 0.5
  648. },
  649. "_id": ""
  650. },
  651. {
  652. "__type__": "cc.CompPrefabInfo",
  653. "fileId": "6966HjFs5DyaLVU+gJ0E8q"
  654. },
  655. {
  656. "__type__": "cc.Sprite",
  657. "_name": "",
  658. "_objFlags": 0,
  659. "__editorExtras__": {},
  660. "node": {
  661. "__id__": 21
  662. },
  663. "_enabled": true,
  664. "__prefab": {
  665. "__id__": 25
  666. },
  667. "_customMaterial": null,
  668. "_srcBlendFactor": 2,
  669. "_dstBlendFactor": 4,
  670. "_color": {
  671. "__type__": "cc.Color",
  672. "r": 255,
  673. "g": 255,
  674. "b": 255,
  675. "a": 255
  676. },
  677. "_spriteFrame": {
  678. "__uuid__": "f2fc155c-3a5f-4e35-b64d-7a519f6a6ed9@f9941",
  679. "__expectedType__": "cc.SpriteFrame"
  680. },
  681. "_type": 0,
  682. "_fillType": 0,
  683. "_sizeMode": 1,
  684. "_fillCenter": {
  685. "__type__": "cc.Vec2",
  686. "x": 0,
  687. "y": 0
  688. },
  689. "_fillStart": 0,
  690. "_fillRange": 0,
  691. "_isTrimmedMode": true,
  692. "_useGrayscale": false,
  693. "_atlas": null,
  694. "_id": ""
  695. },
  696. {
  697. "__type__": "cc.CompPrefabInfo",
  698. "fileId": "e2inMA4m9LMYgW5Rgpy9h6"
  699. },
  700. {
  701. "__type__": "cc.PrefabInfo",
  702. "root": {
  703. "__id__": 1
  704. },
  705. "asset": {
  706. "__id__": 0
  707. },
  708. "fileId": "602mgTayJG85Y7fBlCIGhu",
  709. "instance": null,
  710. "targetOverrides": null,
  711. "nestedPrefabInstanceRoots": null
  712. },
  713. {
  714. "__type__": "cc.Node",
  715. "_name": "kg3",
  716. "_objFlags": 0,
  717. "__editorExtras__": {},
  718. "_parent": {
  719. "__id__": 20
  720. },
  721. "_children": [],
  722. "_active": true,
  723. "_components": [
  724. {
  725. "__id__": 28
  726. },
  727. {
  728. "__id__": 30
  729. }
  730. ],
  731. "_prefab": {
  732. "__id__": 32
  733. },
  734. "_lpos": {
  735. "__type__": "cc.Vec3",
  736. "x": 27,
  737. "y": 0,
  738. "z": 0
  739. },
  740. "_lrot": {
  741. "__type__": "cc.Quat",
  742. "x": 0,
  743. "y": 0,
  744. "z": 0,
  745. "w": 1
  746. },
  747. "_lscale": {
  748. "__type__": "cc.Vec3",
  749. "x": 1,
  750. "y": 1,
  751. "z": 1
  752. },
  753. "_mobility": 0,
  754. "_layer": 33554432,
  755. "_euler": {
  756. "__type__": "cc.Vec3",
  757. "x": 0,
  758. "y": 0,
  759. "z": 0
  760. },
  761. "_id": ""
  762. },
  763. {
  764. "__type__": "cc.UITransform",
  765. "_name": "",
  766. "_objFlags": 0,
  767. "__editorExtras__": {},
  768. "node": {
  769. "__id__": 27
  770. },
  771. "_enabled": true,
  772. "__prefab": {
  773. "__id__": 29
  774. },
  775. "_contentSize": {
  776. "__type__": "cc.Size",
  777. "width": 47,
  778. "height": 47
  779. },
  780. "_anchorPoint": {
  781. "__type__": "cc.Vec2",
  782. "x": 0.5,
  783. "y": 0.5
  784. },
  785. "_id": ""
  786. },
  787. {
  788. "__type__": "cc.CompPrefabInfo",
  789. "fileId": "61Xuly8JtJeIDMp9IqJA1k"
  790. },
  791. {
  792. "__type__": "cc.Sprite",
  793. "_name": "",
  794. "_objFlags": 0,
  795. "__editorExtras__": {},
  796. "node": {
  797. "__id__": 27
  798. },
  799. "_enabled": true,
  800. "__prefab": {
  801. "__id__": 31
  802. },
  803. "_customMaterial": null,
  804. "_srcBlendFactor": 2,
  805. "_dstBlendFactor": 4,
  806. "_color": {
  807. "__type__": "cc.Color",
  808. "r": 255,
  809. "g": 255,
  810. "b": 255,
  811. "a": 255
  812. },
  813. "_spriteFrame": {
  814. "__uuid__": "4d746b4d-fe62-4aa5-8b24-44ac0c3c41f9@f9941",
  815. "__expectedType__": "cc.SpriteFrame"
  816. },
  817. "_type": 0,
  818. "_fillType": 0,
  819. "_sizeMode": 1,
  820. "_fillCenter": {
  821. "__type__": "cc.Vec2",
  822. "x": 0,
  823. "y": 0
  824. },
  825. "_fillStart": 0,
  826. "_fillRange": 0,
  827. "_isTrimmedMode": true,
  828. "_useGrayscale": false,
  829. "_atlas": null,
  830. "_id": ""
  831. },
  832. {
  833. "__type__": "cc.CompPrefabInfo",
  834. "fileId": "55MypC7GdGpbsgld7XRvoW"
  835. },
  836. {
  837. "__type__": "cc.PrefabInfo",
  838. "root": {
  839. "__id__": 1
  840. },
  841. "asset": {
  842. "__id__": 0
  843. },
  844. "fileId": "0b9X/CQoNCW6N03BTFqakC",
  845. "instance": null,
  846. "targetOverrides": null,
  847. "nestedPrefabInstanceRoots": null
  848. },
  849. {
  850. "__type__": "cc.UITransform",
  851. "_name": "",
  852. "_objFlags": 0,
  853. "__editorExtras__": {},
  854. "node": {
  855. "__id__": 20
  856. },
  857. "_enabled": true,
  858. "__prefab": {
  859. "__id__": 34
  860. },
  861. "_contentSize": {
  862. "__type__": "cc.Size",
  863. "width": 100,
  864. "height": 100
  865. },
  866. "_anchorPoint": {
  867. "__type__": "cc.Vec2",
  868. "x": 0.5,
  869. "y": 0.5
  870. },
  871. "_id": ""
  872. },
  873. {
  874. "__type__": "cc.CompPrefabInfo",
  875. "fileId": "48mLNdHutOeI8j+HzuQu6h"
  876. },
  877. {
  878. "__type__": "cc.PrefabInfo",
  879. "root": {
  880. "__id__": 1
  881. },
  882. "asset": {
  883. "__id__": 0
  884. },
  885. "fileId": "51eJTa3KRPyKRBv0n8UbTU",
  886. "instance": null,
  887. "targetOverrides": null,
  888. "nestedPrefabInstanceRoots": null
  889. },
  890. {
  891. "__type__": "cc.Node",
  892. "_name": "Off",
  893. "_objFlags": 0,
  894. "__editorExtras__": {},
  895. "_parent": {
  896. "__id__": 19
  897. },
  898. "_children": [
  899. {
  900. "__id__": 37
  901. }
  902. ],
  903. "_active": false,
  904. "_components": [
  905. {
  906. "__id__": 43
  907. }
  908. ],
  909. "_prefab": {
  910. "__id__": 45
  911. },
  912. "_lpos": {
  913. "__type__": "cc.Vec3",
  914. "x": 0,
  915. "y": 0,
  916. "z": 0
  917. },
  918. "_lrot": {
  919. "__type__": "cc.Quat",
  920. "x": 0,
  921. "y": 0,
  922. "z": 0,
  923. "w": 1
  924. },
  925. "_lscale": {
  926. "__type__": "cc.Vec3",
  927. "x": 1,
  928. "y": 1,
  929. "z": 1
  930. },
  931. "_mobility": 0,
  932. "_layer": 33554432,
  933. "_euler": {
  934. "__type__": "cc.Vec3",
  935. "x": 0,
  936. "y": 0,
  937. "z": 0
  938. },
  939. "_id": ""
  940. },
  941. {
  942. "__type__": "cc.Node",
  943. "_name": "kg3",
  944. "_objFlags": 0,
  945. "__editorExtras__": {},
  946. "_parent": {
  947. "__id__": 36
  948. },
  949. "_children": [],
  950. "_active": true,
  951. "_components": [
  952. {
  953. "__id__": 38
  954. },
  955. {
  956. "__id__": 40
  957. }
  958. ],
  959. "_prefab": {
  960. "__id__": 42
  961. },
  962. "_lpos": {
  963. "__type__": "cc.Vec3",
  964. "x": -27,
  965. "y": 0,
  966. "z": 0
  967. },
  968. "_lrot": {
  969. "__type__": "cc.Quat",
  970. "x": 0,
  971. "y": 0,
  972. "z": 0,
  973. "w": 1
  974. },
  975. "_lscale": {
  976. "__type__": "cc.Vec3",
  977. "x": 1,
  978. "y": 1,
  979. "z": 1
  980. },
  981. "_mobility": 0,
  982. "_layer": 33554432,
  983. "_euler": {
  984. "__type__": "cc.Vec3",
  985. "x": 0,
  986. "y": 0,
  987. "z": 0
  988. },
  989. "_id": ""
  990. },
  991. {
  992. "__type__": "cc.UITransform",
  993. "_name": "",
  994. "_objFlags": 0,
  995. "__editorExtras__": {},
  996. "node": {
  997. "__id__": 37
  998. },
  999. "_enabled": true,
  1000. "__prefab": {
  1001. "__id__": 39
  1002. },
  1003. "_contentSize": {
  1004. "__type__": "cc.Size",
  1005. "width": 47,
  1006. "height": 47
  1007. },
  1008. "_anchorPoint": {
  1009. "__type__": "cc.Vec2",
  1010. "x": 0.5,
  1011. "y": 0.5
  1012. },
  1013. "_id": ""
  1014. },
  1015. {
  1016. "__type__": "cc.CompPrefabInfo",
  1017. "fileId": "2brGqTiApLS6KUXgYohEXH"
  1018. },
  1019. {
  1020. "__type__": "cc.Sprite",
  1021. "_name": "",
  1022. "_objFlags": 0,
  1023. "__editorExtras__": {},
  1024. "node": {
  1025. "__id__": 37
  1026. },
  1027. "_enabled": true,
  1028. "__prefab": {
  1029. "__id__": 41
  1030. },
  1031. "_customMaterial": null,
  1032. "_srcBlendFactor": 2,
  1033. "_dstBlendFactor": 4,
  1034. "_color": {
  1035. "__type__": "cc.Color",
  1036. "r": 255,
  1037. "g": 255,
  1038. "b": 255,
  1039. "a": 255
  1040. },
  1041. "_spriteFrame": {
  1042. "__uuid__": "4d746b4d-fe62-4aa5-8b24-44ac0c3c41f9@f9941",
  1043. "__expectedType__": "cc.SpriteFrame"
  1044. },
  1045. "_type": 0,
  1046. "_fillType": 0,
  1047. "_sizeMode": 1,
  1048. "_fillCenter": {
  1049. "__type__": "cc.Vec2",
  1050. "x": 0,
  1051. "y": 0
  1052. },
  1053. "_fillStart": 0,
  1054. "_fillRange": 0,
  1055. "_isTrimmedMode": true,
  1056. "_useGrayscale": false,
  1057. "_atlas": null,
  1058. "_id": ""
  1059. },
  1060. {
  1061. "__type__": "cc.CompPrefabInfo",
  1062. "fileId": "f8tQDhu2tNE5RtCLaSJe4l"
  1063. },
  1064. {
  1065. "__type__": "cc.PrefabInfo",
  1066. "root": {
  1067. "__id__": 1
  1068. },
  1069. "asset": {
  1070. "__id__": 0
  1071. },
  1072. "fileId": "7bFRtvKltOTr44QD5Qkz9A",
  1073. "instance": null,
  1074. "targetOverrides": null,
  1075. "nestedPrefabInstanceRoots": null
  1076. },
  1077. {
  1078. "__type__": "cc.UITransform",
  1079. "_name": "",
  1080. "_objFlags": 0,
  1081. "__editorExtras__": {},
  1082. "node": {
  1083. "__id__": 36
  1084. },
  1085. "_enabled": true,
  1086. "__prefab": {
  1087. "__id__": 44
  1088. },
  1089. "_contentSize": {
  1090. "__type__": "cc.Size",
  1091. "width": 100,
  1092. "height": 100
  1093. },
  1094. "_anchorPoint": {
  1095. "__type__": "cc.Vec2",
  1096. "x": 0.5,
  1097. "y": 0.5
  1098. },
  1099. "_id": ""
  1100. },
  1101. {
  1102. "__type__": "cc.CompPrefabInfo",
  1103. "fileId": "43Nz8jIP9Fr4oFbBbGQSnO"
  1104. },
  1105. {
  1106. "__type__": "cc.PrefabInfo",
  1107. "root": {
  1108. "__id__": 1
  1109. },
  1110. "asset": {
  1111. "__id__": 0
  1112. },
  1113. "fileId": "b7wkkiT1hKZ7qmaltAk4t1",
  1114. "instance": null,
  1115. "targetOverrides": null,
  1116. "nestedPrefabInstanceRoots": null
  1117. },
  1118. {
  1119. "__type__": "cc.UITransform",
  1120. "_name": "",
  1121. "_objFlags": 0,
  1122. "__editorExtras__": {},
  1123. "node": {
  1124. "__id__": 19
  1125. },
  1126. "_enabled": true,
  1127. "__prefab": {
  1128. "__id__": 47
  1129. },
  1130. "_contentSize": {
  1131. "__type__": "cc.Size",
  1132. "width": 109,
  1133. "height": 56
  1134. },
  1135. "_anchorPoint": {
  1136. "__type__": "cc.Vec2",
  1137. "x": 0.5,
  1138. "y": 0.5
  1139. },
  1140. "_id": ""
  1141. },
  1142. {
  1143. "__type__": "cc.CompPrefabInfo",
  1144. "fileId": "c2HKAlnAFBjbJ10pFxSTJL"
  1145. },
  1146. {
  1147. "__type__": "cc.Sprite",
  1148. "_name": "",
  1149. "_objFlags": 0,
  1150. "__editorExtras__": {},
  1151. "node": {
  1152. "__id__": 19
  1153. },
  1154. "_enabled": true,
  1155. "__prefab": {
  1156. "__id__": 49
  1157. },
  1158. "_customMaterial": null,
  1159. "_srcBlendFactor": 2,
  1160. "_dstBlendFactor": 4,
  1161. "_color": {
  1162. "__type__": "cc.Color",
  1163. "r": 255,
  1164. "g": 255,
  1165. "b": 255,
  1166. "a": 255
  1167. },
  1168. "_spriteFrame": {
  1169. "__uuid__": "d0712900-fc0f-4e2f-bfa2-75f05560c9ef@f9941",
  1170. "__expectedType__": "cc.SpriteFrame"
  1171. },
  1172. "_type": 1,
  1173. "_fillType": 0,
  1174. "_sizeMode": 2,
  1175. "_fillCenter": {
  1176. "__type__": "cc.Vec2",
  1177. "x": 0,
  1178. "y": 0
  1179. },
  1180. "_fillStart": 0,
  1181. "_fillRange": 0,
  1182. "_isTrimmedMode": true,
  1183. "_useGrayscale": false,
  1184. "_atlas": null,
  1185. "_id": ""
  1186. },
  1187. {
  1188. "__type__": "cc.CompPrefabInfo",
  1189. "fileId": "4cV/FJ85RN0aTB8mFZFe1r"
  1190. },
  1191. {
  1192. "__type__": "cc.Button",
  1193. "_name": "",
  1194. "_objFlags": 0,
  1195. "__editorExtras__": {},
  1196. "node": {
  1197. "__id__": 19
  1198. },
  1199. "_enabled": true,
  1200. "__prefab": {
  1201. "__id__": 51
  1202. },
  1203. "clickEvents": [
  1204. {
  1205. "__id__": 52
  1206. }
  1207. ],
  1208. "_interactable": true,
  1209. "_transition": 0,
  1210. "_normalColor": {
  1211. "__type__": "cc.Color",
  1212. "r": 255,
  1213. "g": 255,
  1214. "b": 255,
  1215. "a": 255
  1216. },
  1217. "_hoverColor": {
  1218. "__type__": "cc.Color",
  1219. "r": 211,
  1220. "g": 211,
  1221. "b": 211,
  1222. "a": 255
  1223. },
  1224. "_pressedColor": {
  1225. "__type__": "cc.Color",
  1226. "r": 255,
  1227. "g": 255,
  1228. "b": 255,
  1229. "a": 255
  1230. },
  1231. "_disabledColor": {
  1232. "__type__": "cc.Color",
  1233. "r": 124,
  1234. "g": 124,
  1235. "b": 124,
  1236. "a": 255
  1237. },
  1238. "_normalSprite": null,
  1239. "_hoverSprite": null,
  1240. "_pressedSprite": null,
  1241. "_disabledSprite": null,
  1242. "_duration": 0.1,
  1243. "_zoomScale": 1.2,
  1244. "_target": null,
  1245. "_id": ""
  1246. },
  1247. {
  1248. "__type__": "cc.CompPrefabInfo",
  1249. "fileId": "b3t2vd4AtO8IO8QpZzz/sh"
  1250. },
  1251. {
  1252. "__type__": "cc.ClickEvent",
  1253. "target": {
  1254. "__id__": 1
  1255. },
  1256. "component": "",
  1257. "_componentId": "c45adto9B5CUrySVMJAHfZl",
  1258. "handler": "onSwBgmClick",
  1259. "customEventData": ""
  1260. },
  1261. {
  1262. "__type__": "4772djXcEtGA6kLkEpQOZ0P",
  1263. "_name": "",
  1264. "_objFlags": 0,
  1265. "__editorExtras__": {},
  1266. "node": {
  1267. "__id__": 19
  1268. },
  1269. "_enabled": true,
  1270. "__prefab": {
  1271. "__id__": 54
  1272. },
  1273. "on": {
  1274. "__id__": 20
  1275. },
  1276. "off": {
  1277. "__id__": 36
  1278. },
  1279. "_id": ""
  1280. },
  1281. {
  1282. "__type__": "cc.CompPrefabInfo",
  1283. "fileId": "05b6ZgIqNLs4EXEIqBUuPq"
  1284. },
  1285. {
  1286. "__type__": "e858boYmuRNtaUbAZS8rSGo",
  1287. "_name": "",
  1288. "_objFlags": 0,
  1289. "__editorExtras__": {},
  1290. "node": {
  1291. "__id__": 19
  1292. },
  1293. "_enabled": true,
  1294. "__prefab": {
  1295. "__id__": 56
  1296. },
  1297. "safeTime": 0.5,
  1298. "zoomScale": 1.1,
  1299. "clickSfx": "btnClick",
  1300. "openUI": "",
  1301. "closeUI": "",
  1302. "_id": ""
  1303. },
  1304. {
  1305. "__type__": "cc.CompPrefabInfo",
  1306. "fileId": "ee5rc4TopECbzcO4mDBGJ/"
  1307. },
  1308. {
  1309. "__type__": "cc.PrefabInfo",
  1310. "root": {
  1311. "__id__": 1
  1312. },
  1313. "asset": {
  1314. "__id__": 0
  1315. },
  1316. "fileId": "09ygXa7RlPMqiqIVjXCc5C",
  1317. "instance": null,
  1318. "targetOverrides": null,
  1319. "nestedPrefabInstanceRoots": null
  1320. },
  1321. {
  1322. "__type__": "cc.Node",
  1323. "_name": "SwSfx",
  1324. "_objFlags": 0,
  1325. "__editorExtras__": {},
  1326. "_parent": {
  1327. "__id__": 1
  1328. },
  1329. "_children": [
  1330. {
  1331. "__id__": 59
  1332. },
  1333. {
  1334. "__id__": 75
  1335. }
  1336. ],
  1337. "_active": true,
  1338. "_components": [
  1339. {
  1340. "__id__": 85
  1341. },
  1342. {
  1343. "__id__": 87
  1344. },
  1345. {
  1346. "__id__": 89
  1347. },
  1348. {
  1349. "__id__": 92
  1350. },
  1351. {
  1352. "__id__": 94
  1353. }
  1354. ],
  1355. "_prefab": {
  1356. "__id__": 96
  1357. },
  1358. "_lpos": {
  1359. "__type__": "cc.Vec3",
  1360. "x": 72,
  1361. "y": 28,
  1362. "z": 0
  1363. },
  1364. "_lrot": {
  1365. "__type__": "cc.Quat",
  1366. "x": 0,
  1367. "y": 0,
  1368. "z": 0,
  1369. "w": 1
  1370. },
  1371. "_lscale": {
  1372. "__type__": "cc.Vec3",
  1373. "x": 1,
  1374. "y": 1,
  1375. "z": 1
  1376. },
  1377. "_mobility": 0,
  1378. "_layer": 33554432,
  1379. "_euler": {
  1380. "__type__": "cc.Vec3",
  1381. "x": 0,
  1382. "y": 0,
  1383. "z": 0
  1384. },
  1385. "_id": ""
  1386. },
  1387. {
  1388. "__type__": "cc.Node",
  1389. "_name": "On",
  1390. "_objFlags": 0,
  1391. "__editorExtras__": {},
  1392. "_parent": {
  1393. "__id__": 58
  1394. },
  1395. "_children": [
  1396. {
  1397. "__id__": 60
  1398. },
  1399. {
  1400. "__id__": 66
  1401. }
  1402. ],
  1403. "_active": true,
  1404. "_components": [
  1405. {
  1406. "__id__": 72
  1407. }
  1408. ],
  1409. "_prefab": {
  1410. "__id__": 74
  1411. },
  1412. "_lpos": {
  1413. "__type__": "cc.Vec3",
  1414. "x": 0,
  1415. "y": 0,
  1416. "z": 0
  1417. },
  1418. "_lrot": {
  1419. "__type__": "cc.Quat",
  1420. "x": 0,
  1421. "y": 0,
  1422. "z": 0,
  1423. "w": 1
  1424. },
  1425. "_lscale": {
  1426. "__type__": "cc.Vec3",
  1427. "x": 1,
  1428. "y": 1,
  1429. "z": 1
  1430. },
  1431. "_mobility": 0,
  1432. "_layer": 33554432,
  1433. "_euler": {
  1434. "__type__": "cc.Vec3",
  1435. "x": 0,
  1436. "y": 0,
  1437. "z": 0
  1438. },
  1439. "_id": ""
  1440. },
  1441. {
  1442. "__type__": "cc.Node",
  1443. "_name": "kg1",
  1444. "_objFlags": 0,
  1445. "__editorExtras__": {},
  1446. "_parent": {
  1447. "__id__": 59
  1448. },
  1449. "_children": [],
  1450. "_active": true,
  1451. "_components": [
  1452. {
  1453. "__id__": 61
  1454. },
  1455. {
  1456. "__id__": 63
  1457. }
  1458. ],
  1459. "_prefab": {
  1460. "__id__": 65
  1461. },
  1462. "_lpos": {
  1463. "__type__": "cc.Vec3",
  1464. "x": 0,
  1465. "y": 0,
  1466. "z": 0
  1467. },
  1468. "_lrot": {
  1469. "__type__": "cc.Quat",
  1470. "x": 0,
  1471. "y": 0,
  1472. "z": 0,
  1473. "w": 1
  1474. },
  1475. "_lscale": {
  1476. "__type__": "cc.Vec3",
  1477. "x": 1,
  1478. "y": 1,
  1479. "z": 1
  1480. },
  1481. "_mobility": 0,
  1482. "_layer": 33554432,
  1483. "_euler": {
  1484. "__type__": "cc.Vec3",
  1485. "x": 0,
  1486. "y": 0,
  1487. "z": 0
  1488. },
  1489. "_id": ""
  1490. },
  1491. {
  1492. "__type__": "cc.UITransform",
  1493. "_name": "",
  1494. "_objFlags": 0,
  1495. "__editorExtras__": {},
  1496. "node": {
  1497. "__id__": 60
  1498. },
  1499. "_enabled": true,
  1500. "__prefab": {
  1501. "__id__": 62
  1502. },
  1503. "_contentSize": {
  1504. "__type__": "cc.Size",
  1505. "width": 109,
  1506. "height": 56
  1507. },
  1508. "_anchorPoint": {
  1509. "__type__": "cc.Vec2",
  1510. "x": 0.5,
  1511. "y": 0.5
  1512. },
  1513. "_id": ""
  1514. },
  1515. {
  1516. "__type__": "cc.CompPrefabInfo",
  1517. "fileId": "aatl27/SlIZ42gHrE5FIcj"
  1518. },
  1519. {
  1520. "__type__": "cc.Sprite",
  1521. "_name": "",
  1522. "_objFlags": 0,
  1523. "__editorExtras__": {},
  1524. "node": {
  1525. "__id__": 60
  1526. },
  1527. "_enabled": true,
  1528. "__prefab": {
  1529. "__id__": 64
  1530. },
  1531. "_customMaterial": null,
  1532. "_srcBlendFactor": 2,
  1533. "_dstBlendFactor": 4,
  1534. "_color": {
  1535. "__type__": "cc.Color",
  1536. "r": 255,
  1537. "g": 255,
  1538. "b": 255,
  1539. "a": 255
  1540. },
  1541. "_spriteFrame": {
  1542. "__uuid__": "f2fc155c-3a5f-4e35-b64d-7a519f6a6ed9@f9941",
  1543. "__expectedType__": "cc.SpriteFrame"
  1544. },
  1545. "_type": 0,
  1546. "_fillType": 0,
  1547. "_sizeMode": 1,
  1548. "_fillCenter": {
  1549. "__type__": "cc.Vec2",
  1550. "x": 0,
  1551. "y": 0
  1552. },
  1553. "_fillStart": 0,
  1554. "_fillRange": 0,
  1555. "_isTrimmedMode": true,
  1556. "_useGrayscale": false,
  1557. "_atlas": null,
  1558. "_id": ""
  1559. },
  1560. {
  1561. "__type__": "cc.CompPrefabInfo",
  1562. "fileId": "36L6dOicJFSrt/R66OHMVK"
  1563. },
  1564. {
  1565. "__type__": "cc.PrefabInfo",
  1566. "root": {
  1567. "__id__": 1
  1568. },
  1569. "asset": {
  1570. "__id__": 0
  1571. },
  1572. "fileId": "f1Vmm0U7tFp7r+m6nXQTa1",
  1573. "instance": null,
  1574. "targetOverrides": null,
  1575. "nestedPrefabInstanceRoots": null
  1576. },
  1577. {
  1578. "__type__": "cc.Node",
  1579. "_name": "kg3",
  1580. "_objFlags": 0,
  1581. "__editorExtras__": {},
  1582. "_parent": {
  1583. "__id__": 59
  1584. },
  1585. "_children": [],
  1586. "_active": true,
  1587. "_components": [
  1588. {
  1589. "__id__": 67
  1590. },
  1591. {
  1592. "__id__": 69
  1593. }
  1594. ],
  1595. "_prefab": {
  1596. "__id__": 71
  1597. },
  1598. "_lpos": {
  1599. "__type__": "cc.Vec3",
  1600. "x": 27,
  1601. "y": 0,
  1602. "z": 0
  1603. },
  1604. "_lrot": {
  1605. "__type__": "cc.Quat",
  1606. "x": 0,
  1607. "y": 0,
  1608. "z": 0,
  1609. "w": 1
  1610. },
  1611. "_lscale": {
  1612. "__type__": "cc.Vec3",
  1613. "x": 1,
  1614. "y": 1,
  1615. "z": 1
  1616. },
  1617. "_mobility": 0,
  1618. "_layer": 33554432,
  1619. "_euler": {
  1620. "__type__": "cc.Vec3",
  1621. "x": 0,
  1622. "y": 0,
  1623. "z": 0
  1624. },
  1625. "_id": ""
  1626. },
  1627. {
  1628. "__type__": "cc.UITransform",
  1629. "_name": "",
  1630. "_objFlags": 0,
  1631. "__editorExtras__": {},
  1632. "node": {
  1633. "__id__": 66
  1634. },
  1635. "_enabled": true,
  1636. "__prefab": {
  1637. "__id__": 68
  1638. },
  1639. "_contentSize": {
  1640. "__type__": "cc.Size",
  1641. "width": 47,
  1642. "height": 47
  1643. },
  1644. "_anchorPoint": {
  1645. "__type__": "cc.Vec2",
  1646. "x": 0.5,
  1647. "y": 0.5
  1648. },
  1649. "_id": ""
  1650. },
  1651. {
  1652. "__type__": "cc.CompPrefabInfo",
  1653. "fileId": "298tgvXL1O9oLStqQo4Iop"
  1654. },
  1655. {
  1656. "__type__": "cc.Sprite",
  1657. "_name": "",
  1658. "_objFlags": 0,
  1659. "__editorExtras__": {},
  1660. "node": {
  1661. "__id__": 66
  1662. },
  1663. "_enabled": true,
  1664. "__prefab": {
  1665. "__id__": 70
  1666. },
  1667. "_customMaterial": null,
  1668. "_srcBlendFactor": 2,
  1669. "_dstBlendFactor": 4,
  1670. "_color": {
  1671. "__type__": "cc.Color",
  1672. "r": 255,
  1673. "g": 255,
  1674. "b": 255,
  1675. "a": 255
  1676. },
  1677. "_spriteFrame": {
  1678. "__uuid__": "4d746b4d-fe62-4aa5-8b24-44ac0c3c41f9@f9941",
  1679. "__expectedType__": "cc.SpriteFrame"
  1680. },
  1681. "_type": 0,
  1682. "_fillType": 0,
  1683. "_sizeMode": 1,
  1684. "_fillCenter": {
  1685. "__type__": "cc.Vec2",
  1686. "x": 0,
  1687. "y": 0
  1688. },
  1689. "_fillStart": 0,
  1690. "_fillRange": 0,
  1691. "_isTrimmedMode": true,
  1692. "_useGrayscale": false,
  1693. "_atlas": null,
  1694. "_id": ""
  1695. },
  1696. {
  1697. "__type__": "cc.CompPrefabInfo",
  1698. "fileId": "7dzXrgm59P4p8H9zVQBWWz"
  1699. },
  1700. {
  1701. "__type__": "cc.PrefabInfo",
  1702. "root": {
  1703. "__id__": 1
  1704. },
  1705. "asset": {
  1706. "__id__": 0
  1707. },
  1708. "fileId": "fbb9xqIC1EIb4N9t6nak04",
  1709. "instance": null,
  1710. "targetOverrides": null,
  1711. "nestedPrefabInstanceRoots": null
  1712. },
  1713. {
  1714. "__type__": "cc.UITransform",
  1715. "_name": "",
  1716. "_objFlags": 0,
  1717. "__editorExtras__": {},
  1718. "node": {
  1719. "__id__": 59
  1720. },
  1721. "_enabled": true,
  1722. "__prefab": {
  1723. "__id__": 73
  1724. },
  1725. "_contentSize": {
  1726. "__type__": "cc.Size",
  1727. "width": 100,
  1728. "height": 100
  1729. },
  1730. "_anchorPoint": {
  1731. "__type__": "cc.Vec2",
  1732. "x": 0.5,
  1733. "y": 0.5
  1734. },
  1735. "_id": ""
  1736. },
  1737. {
  1738. "__type__": "cc.CompPrefabInfo",
  1739. "fileId": "08lbIKDlxCBrulXVK4WF0z"
  1740. },
  1741. {
  1742. "__type__": "cc.PrefabInfo",
  1743. "root": {
  1744. "__id__": 1
  1745. },
  1746. "asset": {
  1747. "__id__": 0
  1748. },
  1749. "fileId": "d9y4nXOZFE9aVv7nPmyFeY",
  1750. "instance": null,
  1751. "targetOverrides": null,
  1752. "nestedPrefabInstanceRoots": null
  1753. },
  1754. {
  1755. "__type__": "cc.Node",
  1756. "_name": "Off",
  1757. "_objFlags": 0,
  1758. "__editorExtras__": {},
  1759. "_parent": {
  1760. "__id__": 58
  1761. },
  1762. "_children": [
  1763. {
  1764. "__id__": 76
  1765. }
  1766. ],
  1767. "_active": false,
  1768. "_components": [
  1769. {
  1770. "__id__": 82
  1771. }
  1772. ],
  1773. "_prefab": {
  1774. "__id__": 84
  1775. },
  1776. "_lpos": {
  1777. "__type__": "cc.Vec3",
  1778. "x": 0,
  1779. "y": 0,
  1780. "z": 0
  1781. },
  1782. "_lrot": {
  1783. "__type__": "cc.Quat",
  1784. "x": 0,
  1785. "y": 0,
  1786. "z": 0,
  1787. "w": 1
  1788. },
  1789. "_lscale": {
  1790. "__type__": "cc.Vec3",
  1791. "x": 1,
  1792. "y": 1,
  1793. "z": 1
  1794. },
  1795. "_mobility": 0,
  1796. "_layer": 33554432,
  1797. "_euler": {
  1798. "__type__": "cc.Vec3",
  1799. "x": 0,
  1800. "y": 0,
  1801. "z": 0
  1802. },
  1803. "_id": ""
  1804. },
  1805. {
  1806. "__type__": "cc.Node",
  1807. "_name": "kg3",
  1808. "_objFlags": 0,
  1809. "__editorExtras__": {},
  1810. "_parent": {
  1811. "__id__": 75
  1812. },
  1813. "_children": [],
  1814. "_active": true,
  1815. "_components": [
  1816. {
  1817. "__id__": 77
  1818. },
  1819. {
  1820. "__id__": 79
  1821. }
  1822. ],
  1823. "_prefab": {
  1824. "__id__": 81
  1825. },
  1826. "_lpos": {
  1827. "__type__": "cc.Vec3",
  1828. "x": -27,
  1829. "y": 0,
  1830. "z": 0
  1831. },
  1832. "_lrot": {
  1833. "__type__": "cc.Quat",
  1834. "x": 0,
  1835. "y": 0,
  1836. "z": 0,
  1837. "w": 1
  1838. },
  1839. "_lscale": {
  1840. "__type__": "cc.Vec3",
  1841. "x": 1,
  1842. "y": 1,
  1843. "z": 1
  1844. },
  1845. "_mobility": 0,
  1846. "_layer": 33554432,
  1847. "_euler": {
  1848. "__type__": "cc.Vec3",
  1849. "x": 0,
  1850. "y": 0,
  1851. "z": 0
  1852. },
  1853. "_id": ""
  1854. },
  1855. {
  1856. "__type__": "cc.UITransform",
  1857. "_name": "",
  1858. "_objFlags": 0,
  1859. "__editorExtras__": {},
  1860. "node": {
  1861. "__id__": 76
  1862. },
  1863. "_enabled": true,
  1864. "__prefab": {
  1865. "__id__": 78
  1866. },
  1867. "_contentSize": {
  1868. "__type__": "cc.Size",
  1869. "width": 47,
  1870. "height": 47
  1871. },
  1872. "_anchorPoint": {
  1873. "__type__": "cc.Vec2",
  1874. "x": 0.5,
  1875. "y": 0.5
  1876. },
  1877. "_id": ""
  1878. },
  1879. {
  1880. "__type__": "cc.CompPrefabInfo",
  1881. "fileId": "dbfwdmv29G6K+QssqO9muj"
  1882. },
  1883. {
  1884. "__type__": "cc.Sprite",
  1885. "_name": "",
  1886. "_objFlags": 0,
  1887. "__editorExtras__": {},
  1888. "node": {
  1889. "__id__": 76
  1890. },
  1891. "_enabled": true,
  1892. "__prefab": {
  1893. "__id__": 80
  1894. },
  1895. "_customMaterial": null,
  1896. "_srcBlendFactor": 2,
  1897. "_dstBlendFactor": 4,
  1898. "_color": {
  1899. "__type__": "cc.Color",
  1900. "r": 255,
  1901. "g": 255,
  1902. "b": 255,
  1903. "a": 255
  1904. },
  1905. "_spriteFrame": {
  1906. "__uuid__": "4d746b4d-fe62-4aa5-8b24-44ac0c3c41f9@f9941",
  1907. "__expectedType__": "cc.SpriteFrame"
  1908. },
  1909. "_type": 0,
  1910. "_fillType": 0,
  1911. "_sizeMode": 1,
  1912. "_fillCenter": {
  1913. "__type__": "cc.Vec2",
  1914. "x": 0,
  1915. "y": 0
  1916. },
  1917. "_fillStart": 0,
  1918. "_fillRange": 0,
  1919. "_isTrimmedMode": true,
  1920. "_useGrayscale": false,
  1921. "_atlas": null,
  1922. "_id": ""
  1923. },
  1924. {
  1925. "__type__": "cc.CompPrefabInfo",
  1926. "fileId": "3e71y/ejxMA68y/9UNOCJl"
  1927. },
  1928. {
  1929. "__type__": "cc.PrefabInfo",
  1930. "root": {
  1931. "__id__": 1
  1932. },
  1933. "asset": {
  1934. "__id__": 0
  1935. },
  1936. "fileId": "71iHJQ8aBOuLpGYitQaqUZ",
  1937. "instance": null,
  1938. "targetOverrides": null,
  1939. "nestedPrefabInstanceRoots": null
  1940. },
  1941. {
  1942. "__type__": "cc.UITransform",
  1943. "_name": "",
  1944. "_objFlags": 0,
  1945. "__editorExtras__": {},
  1946. "node": {
  1947. "__id__": 75
  1948. },
  1949. "_enabled": true,
  1950. "__prefab": {
  1951. "__id__": 83
  1952. },
  1953. "_contentSize": {
  1954. "__type__": "cc.Size",
  1955. "width": 100,
  1956. "height": 100
  1957. },
  1958. "_anchorPoint": {
  1959. "__type__": "cc.Vec2",
  1960. "x": 0.5,
  1961. "y": 0.5
  1962. },
  1963. "_id": ""
  1964. },
  1965. {
  1966. "__type__": "cc.CompPrefabInfo",
  1967. "fileId": "6a3l5Ti2hET59wVTGn05yT"
  1968. },
  1969. {
  1970. "__type__": "cc.PrefabInfo",
  1971. "root": {
  1972. "__id__": 1
  1973. },
  1974. "asset": {
  1975. "__id__": 0
  1976. },
  1977. "fileId": "4erBoVqJNGz7GQp0BJktBH",
  1978. "instance": null,
  1979. "targetOverrides": null,
  1980. "nestedPrefabInstanceRoots": null
  1981. },
  1982. {
  1983. "__type__": "cc.UITransform",
  1984. "_name": "",
  1985. "_objFlags": 0,
  1986. "__editorExtras__": {},
  1987. "node": {
  1988. "__id__": 58
  1989. },
  1990. "_enabled": true,
  1991. "__prefab": {
  1992. "__id__": 86
  1993. },
  1994. "_contentSize": {
  1995. "__type__": "cc.Size",
  1996. "width": 109,
  1997. "height": 56
  1998. },
  1999. "_anchorPoint": {
  2000. "__type__": "cc.Vec2",
  2001. "x": 0.5,
  2002. "y": 0.5
  2003. },
  2004. "_id": ""
  2005. },
  2006. {
  2007. "__type__": "cc.CompPrefabInfo",
  2008. "fileId": "27MtKkkERDwZQC3qg0wzK8"
  2009. },
  2010. {
  2011. "__type__": "cc.Sprite",
  2012. "_name": "",
  2013. "_objFlags": 0,
  2014. "__editorExtras__": {},
  2015. "node": {
  2016. "__id__": 58
  2017. },
  2018. "_enabled": true,
  2019. "__prefab": {
  2020. "__id__": 88
  2021. },
  2022. "_customMaterial": null,
  2023. "_srcBlendFactor": 2,
  2024. "_dstBlendFactor": 4,
  2025. "_color": {
  2026. "__type__": "cc.Color",
  2027. "r": 255,
  2028. "g": 255,
  2029. "b": 255,
  2030. "a": 255
  2031. },
  2032. "_spriteFrame": {
  2033. "__uuid__": "d0712900-fc0f-4e2f-bfa2-75f05560c9ef@f9941",
  2034. "__expectedType__": "cc.SpriteFrame"
  2035. },
  2036. "_type": 1,
  2037. "_fillType": 0,
  2038. "_sizeMode": 2,
  2039. "_fillCenter": {
  2040. "__type__": "cc.Vec2",
  2041. "x": 0,
  2042. "y": 0
  2043. },
  2044. "_fillStart": 0,
  2045. "_fillRange": 0,
  2046. "_isTrimmedMode": true,
  2047. "_useGrayscale": false,
  2048. "_atlas": null,
  2049. "_id": ""
  2050. },
  2051. {
  2052. "__type__": "cc.CompPrefabInfo",
  2053. "fileId": "c3G/cnYzlHqYHFo3Qurnmq"
  2054. },
  2055. {
  2056. "__type__": "cc.Button",
  2057. "_name": "",
  2058. "_objFlags": 0,
  2059. "__editorExtras__": {},
  2060. "node": {
  2061. "__id__": 58
  2062. },
  2063. "_enabled": true,
  2064. "__prefab": {
  2065. "__id__": 90
  2066. },
  2067. "clickEvents": [
  2068. {
  2069. "__id__": 91
  2070. }
  2071. ],
  2072. "_interactable": true,
  2073. "_transition": 0,
  2074. "_normalColor": {
  2075. "__type__": "cc.Color",
  2076. "r": 255,
  2077. "g": 255,
  2078. "b": 255,
  2079. "a": 255
  2080. },
  2081. "_hoverColor": {
  2082. "__type__": "cc.Color",
  2083. "r": 211,
  2084. "g": 211,
  2085. "b": 211,
  2086. "a": 255
  2087. },
  2088. "_pressedColor": {
  2089. "__type__": "cc.Color",
  2090. "r": 255,
  2091. "g": 255,
  2092. "b": 255,
  2093. "a": 255
  2094. },
  2095. "_disabledColor": {
  2096. "__type__": "cc.Color",
  2097. "r": 124,
  2098. "g": 124,
  2099. "b": 124,
  2100. "a": 255
  2101. },
  2102. "_normalSprite": null,
  2103. "_hoverSprite": null,
  2104. "_pressedSprite": null,
  2105. "_disabledSprite": null,
  2106. "_duration": 0.1,
  2107. "_zoomScale": 1.2,
  2108. "_target": null,
  2109. "_id": ""
  2110. },
  2111. {
  2112. "__type__": "cc.CompPrefabInfo",
  2113. "fileId": "97Rt3tXW1PC4bSEcO+IPN9"
  2114. },
  2115. {
  2116. "__type__": "cc.ClickEvent",
  2117. "target": {
  2118. "__id__": 1
  2119. },
  2120. "component": "",
  2121. "_componentId": "c45adto9B5CUrySVMJAHfZl",
  2122. "handler": "onSwSfxClick",
  2123. "customEventData": ""
  2124. },
  2125. {
  2126. "__type__": "4772djXcEtGA6kLkEpQOZ0P",
  2127. "_name": "",
  2128. "_objFlags": 0,
  2129. "__editorExtras__": {},
  2130. "node": {
  2131. "__id__": 58
  2132. },
  2133. "_enabled": true,
  2134. "__prefab": {
  2135. "__id__": 93
  2136. },
  2137. "on": {
  2138. "__id__": 59
  2139. },
  2140. "off": {
  2141. "__id__": 75
  2142. },
  2143. "_id": ""
  2144. },
  2145. {
  2146. "__type__": "cc.CompPrefabInfo",
  2147. "fileId": "0dtMTIxX1MfqcrvdqfIjYp"
  2148. },
  2149. {
  2150. "__type__": "e858boYmuRNtaUbAZS8rSGo",
  2151. "_name": "",
  2152. "_objFlags": 0,
  2153. "__editorExtras__": {},
  2154. "node": {
  2155. "__id__": 58
  2156. },
  2157. "_enabled": true,
  2158. "__prefab": {
  2159. "__id__": 95
  2160. },
  2161. "safeTime": 0.5,
  2162. "zoomScale": 1.1,
  2163. "clickSfx": "btnClick",
  2164. "openUI": "",
  2165. "closeUI": "",
  2166. "_id": ""
  2167. },
  2168. {
  2169. "__type__": "cc.CompPrefabInfo",
  2170. "fileId": "76qSMXkvJBB7MFQa/ceOB9"
  2171. },
  2172. {
  2173. "__type__": "cc.PrefabInfo",
  2174. "root": {
  2175. "__id__": 1
  2176. },
  2177. "asset": {
  2178. "__id__": 0
  2179. },
  2180. "fileId": "feYMghqJFN14a3WKWXUbPI",
  2181. "instance": null,
  2182. "targetOverrides": null,
  2183. "nestedPrefabInstanceRoots": null
  2184. },
  2185. {
  2186. "__type__": "cc.Node",
  2187. "_name": "BtnRestart",
  2188. "_objFlags": 0,
  2189. "__editorExtras__": {},
  2190. "_parent": {
  2191. "__id__": 1
  2192. },
  2193. "_children": [
  2194. {
  2195. "__id__": 98
  2196. }
  2197. ],
  2198. "_active": true,
  2199. "_components": [
  2200. {
  2201. "__id__": 104
  2202. },
  2203. {
  2204. "__id__": 106
  2205. },
  2206. {
  2207. "__id__": 108
  2208. },
  2209. {
  2210. "__id__": 111
  2211. }
  2212. ],
  2213. "_prefab": {
  2214. "__id__": 113
  2215. },
  2216. "_lpos": {
  2217. "__type__": "cc.Vec3",
  2218. "x": 0,
  2219. "y": -97,
  2220. "z": 0
  2221. },
  2222. "_lrot": {
  2223. "__type__": "cc.Quat",
  2224. "x": 0,
  2225. "y": 0,
  2226. "z": 0,
  2227. "w": 1
  2228. },
  2229. "_lscale": {
  2230. "__type__": "cc.Vec3",
  2231. "x": 1,
  2232. "y": 1,
  2233. "z": 1
  2234. },
  2235. "_mobility": 0,
  2236. "_layer": 33554432,
  2237. "_euler": {
  2238. "__type__": "cc.Vec3",
  2239. "x": 0,
  2240. "y": 0,
  2241. "z": 0
  2242. },
  2243. "_id": ""
  2244. },
  2245. {
  2246. "__type__": "cc.Node",
  2247. "_name": "cxks",
  2248. "_objFlags": 0,
  2249. "__editorExtras__": {},
  2250. "_parent": {
  2251. "__id__": 97
  2252. },
  2253. "_children": [],
  2254. "_active": true,
  2255. "_components": [
  2256. {
  2257. "__id__": 99
  2258. },
  2259. {
  2260. "__id__": 101
  2261. }
  2262. ],
  2263. "_prefab": {
  2264. "__id__": 103
  2265. },
  2266. "_lpos": {
  2267. "__type__": "cc.Vec3",
  2268. "x": 0,
  2269. "y": 8,
  2270. "z": 0
  2271. },
  2272. "_lrot": {
  2273. "__type__": "cc.Quat",
  2274. "x": 0,
  2275. "y": 0,
  2276. "z": 0,
  2277. "w": 1
  2278. },
  2279. "_lscale": {
  2280. "__type__": "cc.Vec3",
  2281. "x": 1,
  2282. "y": 1,
  2283. "z": 1
  2284. },
  2285. "_mobility": 0,
  2286. "_layer": 33554432,
  2287. "_euler": {
  2288. "__type__": "cc.Vec3",
  2289. "x": 0,
  2290. "y": 0,
  2291. "z": 0
  2292. },
  2293. "_id": ""
  2294. },
  2295. {
  2296. "__type__": "cc.UITransform",
  2297. "_name": "",
  2298. "_objFlags": 0,
  2299. "__editorExtras__": {},
  2300. "node": {
  2301. "__id__": 98
  2302. },
  2303. "_enabled": true,
  2304. "__prefab": {
  2305. "__id__": 100
  2306. },
  2307. "_contentSize": {
  2308. "__type__": "cc.Size",
  2309. "width": 176,
  2310. "height": 45
  2311. },
  2312. "_anchorPoint": {
  2313. "__type__": "cc.Vec2",
  2314. "x": 0.5,
  2315. "y": 0.5
  2316. },
  2317. "_id": ""
  2318. },
  2319. {
  2320. "__type__": "cc.CompPrefabInfo",
  2321. "fileId": "14zIjdqJxNTJC9gYjs/YDi"
  2322. },
  2323. {
  2324. "__type__": "cc.Sprite",
  2325. "_name": "",
  2326. "_objFlags": 0,
  2327. "__editorExtras__": {},
  2328. "node": {
  2329. "__id__": 98
  2330. },
  2331. "_enabled": true,
  2332. "__prefab": {
  2333. "__id__": 102
  2334. },
  2335. "_customMaterial": null,
  2336. "_srcBlendFactor": 2,
  2337. "_dstBlendFactor": 4,
  2338. "_color": {
  2339. "__type__": "cc.Color",
  2340. "r": 255,
  2341. "g": 255,
  2342. "b": 255,
  2343. "a": 255
  2344. },
  2345. "_spriteFrame": {
  2346. "__uuid__": "7ff79063-ee45-4868-9b57-66616f91e541@f9941",
  2347. "__expectedType__": "cc.SpriteFrame"
  2348. },
  2349. "_type": 0,
  2350. "_fillType": 0,
  2351. "_sizeMode": 1,
  2352. "_fillCenter": {
  2353. "__type__": "cc.Vec2",
  2354. "x": 0,
  2355. "y": 0
  2356. },
  2357. "_fillStart": 0,
  2358. "_fillRange": 0,
  2359. "_isTrimmedMode": true,
  2360. "_useGrayscale": false,
  2361. "_atlas": null,
  2362. "_id": ""
  2363. },
  2364. {
  2365. "__type__": "cc.CompPrefabInfo",
  2366. "fileId": "5aCK4ujrJKCp621hm66mUk"
  2367. },
  2368. {
  2369. "__type__": "cc.PrefabInfo",
  2370. "root": {
  2371. "__id__": 1
  2372. },
  2373. "asset": {
  2374. "__id__": 0
  2375. },
  2376. "fileId": "57VMp+QcNKZ6ipplMx+3OL",
  2377. "instance": null,
  2378. "targetOverrides": null,
  2379. "nestedPrefabInstanceRoots": null
  2380. },
  2381. {
  2382. "__type__": "cc.UITransform",
  2383. "_name": "",
  2384. "_objFlags": 0,
  2385. "__editorExtras__": {},
  2386. "node": {
  2387. "__id__": 97
  2388. },
  2389. "_enabled": true,
  2390. "__prefab": {
  2391. "__id__": 105
  2392. },
  2393. "_contentSize": {
  2394. "__type__": "cc.Size",
  2395. "width": 259,
  2396. "height": 108
  2397. },
  2398. "_anchorPoint": {
  2399. "__type__": "cc.Vec2",
  2400. "x": 0.5,
  2401. "y": 0.5
  2402. },
  2403. "_id": ""
  2404. },
  2405. {
  2406. "__type__": "cc.CompPrefabInfo",
  2407. "fileId": "85nLL/NfNGSa0p7sDrCDN8"
  2408. },
  2409. {
  2410. "__type__": "cc.Sprite",
  2411. "_name": "",
  2412. "_objFlags": 0,
  2413. "__editorExtras__": {},
  2414. "node": {
  2415. "__id__": 97
  2416. },
  2417. "_enabled": true,
  2418. "__prefab": {
  2419. "__id__": 107
  2420. },
  2421. "_customMaterial": null,
  2422. "_srcBlendFactor": 2,
  2423. "_dstBlendFactor": 4,
  2424. "_color": {
  2425. "__type__": "cc.Color",
  2426. "r": 255,
  2427. "g": 255,
  2428. "b": 255,
  2429. "a": 255
  2430. },
  2431. "_spriteFrame": {
  2432. "__uuid__": "0479545f-57c3-455e-b322-646e6fd11533@f9941",
  2433. "__expectedType__": "cc.SpriteFrame"
  2434. },
  2435. "_type": 1,
  2436. "_fillType": 0,
  2437. "_sizeMode": 2,
  2438. "_fillCenter": {
  2439. "__type__": "cc.Vec2",
  2440. "x": 0,
  2441. "y": 0
  2442. },
  2443. "_fillStart": 0,
  2444. "_fillRange": 0,
  2445. "_isTrimmedMode": true,
  2446. "_useGrayscale": false,
  2447. "_atlas": null,
  2448. "_id": ""
  2449. },
  2450. {
  2451. "__type__": "cc.CompPrefabInfo",
  2452. "fileId": "37sXKZ1y5OEZm+jPlnkxwC"
  2453. },
  2454. {
  2455. "__type__": "cc.Button",
  2456. "_name": "",
  2457. "_objFlags": 0,
  2458. "__editorExtras__": {},
  2459. "node": {
  2460. "__id__": 97
  2461. },
  2462. "_enabled": true,
  2463. "__prefab": {
  2464. "__id__": 109
  2465. },
  2466. "clickEvents": [
  2467. {
  2468. "__id__": 110
  2469. }
  2470. ],
  2471. "_interactable": true,
  2472. "_transition": 3,
  2473. "_normalColor": {
  2474. "__type__": "cc.Color",
  2475. "r": 255,
  2476. "g": 255,
  2477. "b": 255,
  2478. "a": 255
  2479. },
  2480. "_hoverColor": {
  2481. "__type__": "cc.Color",
  2482. "r": 211,
  2483. "g": 211,
  2484. "b": 211,
  2485. "a": 255
  2486. },
  2487. "_pressedColor": {
  2488. "__type__": "cc.Color",
  2489. "r": 255,
  2490. "g": 255,
  2491. "b": 255,
  2492. "a": 255
  2493. },
  2494. "_disabledColor": {
  2495. "__type__": "cc.Color",
  2496. "r": 124,
  2497. "g": 124,
  2498. "b": 124,
  2499. "a": 255
  2500. },
  2501. "_normalSprite": null,
  2502. "_hoverSprite": null,
  2503. "_pressedSprite": null,
  2504. "_disabledSprite": null,
  2505. "_duration": 0.1,
  2506. "_zoomScale": 1.1,
  2507. "_target": null,
  2508. "_id": ""
  2509. },
  2510. {
  2511. "__type__": "cc.CompPrefabInfo",
  2512. "fileId": "8cIrAHA4RILInvaWyjVVgT"
  2513. },
  2514. {
  2515. "__type__": "cc.ClickEvent",
  2516. "target": {
  2517. "__id__": 1
  2518. },
  2519. "component": "",
  2520. "_componentId": "c45adto9B5CUrySVMJAHfZl",
  2521. "handler": "onBtnRestartClick",
  2522. "customEventData": ""
  2523. },
  2524. {
  2525. "__type__": "e858boYmuRNtaUbAZS8rSGo",
  2526. "_name": "",
  2527. "_objFlags": 0,
  2528. "__editorExtras__": {},
  2529. "node": {
  2530. "__id__": 97
  2531. },
  2532. "_enabled": true,
  2533. "__prefab": {
  2534. "__id__": 112
  2535. },
  2536. "safeTime": 0.5,
  2537. "zoomScale": 1.1,
  2538. "clickSfx": "btnClick",
  2539. "openUI": "",
  2540. "closeUI": "",
  2541. "_id": ""
  2542. },
  2543. {
  2544. "__type__": "cc.CompPrefabInfo",
  2545. "fileId": "d8gdaUaapDVbqsOJuYkPce"
  2546. },
  2547. {
  2548. "__type__": "cc.PrefabInfo",
  2549. "root": {
  2550. "__id__": 1
  2551. },
  2552. "asset": {
  2553. "__id__": 0
  2554. },
  2555. "fileId": "fdFGAr7ftKB4M2c8Jz6a08",
  2556. "instance": null,
  2557. "targetOverrides": null,
  2558. "nestedPrefabInstanceRoots": null
  2559. },
  2560. {
  2561. "__type__": "cc.Node",
  2562. "_name": "BtnBack",
  2563. "_objFlags": 0,
  2564. "__editorExtras__": {},
  2565. "_parent": {
  2566. "__id__": 1
  2567. },
  2568. "_children": [
  2569. {
  2570. "__id__": 115
  2571. }
  2572. ],
  2573. "_active": true,
  2574. "_components": [
  2575. {
  2576. "__id__": 121
  2577. },
  2578. {
  2579. "__id__": 123
  2580. },
  2581. {
  2582. "__id__": 125
  2583. },
  2584. {
  2585. "__id__": 128
  2586. }
  2587. ],
  2588. "_prefab": {
  2589. "__id__": 130
  2590. },
  2591. "_lpos": {
  2592. "__type__": "cc.Vec3",
  2593. "x": 0,
  2594. "y": -207,
  2595. "z": 0
  2596. },
  2597. "_lrot": {
  2598. "__type__": "cc.Quat",
  2599. "x": 0,
  2600. "y": 0,
  2601. "z": 0,
  2602. "w": 1
  2603. },
  2604. "_lscale": {
  2605. "__type__": "cc.Vec3",
  2606. "x": 1,
  2607. "y": 1,
  2608. "z": 1
  2609. },
  2610. "_mobility": 0,
  2611. "_layer": 33554432,
  2612. "_euler": {
  2613. "__type__": "cc.Vec3",
  2614. "x": 0,
  2615. "y": 0,
  2616. "z": 0
  2617. },
  2618. "_id": ""
  2619. },
  2620. {
  2621. "__type__": "cc.Node",
  2622. "_name": "fhzy",
  2623. "_objFlags": 0,
  2624. "__editorExtras__": {},
  2625. "_parent": {
  2626. "__id__": 114
  2627. },
  2628. "_children": [],
  2629. "_active": true,
  2630. "_components": [
  2631. {
  2632. "__id__": 116
  2633. },
  2634. {
  2635. "__id__": 118
  2636. }
  2637. ],
  2638. "_prefab": {
  2639. "__id__": 120
  2640. },
  2641. "_lpos": {
  2642. "__type__": "cc.Vec3",
  2643. "x": 0,
  2644. "y": 8,
  2645. "z": 0
  2646. },
  2647. "_lrot": {
  2648. "__type__": "cc.Quat",
  2649. "x": 0,
  2650. "y": 0,
  2651. "z": 0,
  2652. "w": 1
  2653. },
  2654. "_lscale": {
  2655. "__type__": "cc.Vec3",
  2656. "x": 1,
  2657. "y": 1,
  2658. "z": 1
  2659. },
  2660. "_mobility": 0,
  2661. "_layer": 33554432,
  2662. "_euler": {
  2663. "__type__": "cc.Vec3",
  2664. "x": 0,
  2665. "y": 0,
  2666. "z": 0
  2667. },
  2668. "_id": ""
  2669. },
  2670. {
  2671. "__type__": "cc.UITransform",
  2672. "_name": "",
  2673. "_objFlags": 0,
  2674. "__editorExtras__": {},
  2675. "node": {
  2676. "__id__": 115
  2677. },
  2678. "_enabled": true,
  2679. "__prefab": {
  2680. "__id__": 117
  2681. },
  2682. "_contentSize": {
  2683. "__type__": "cc.Size",
  2684. "width": 176,
  2685. "height": 48
  2686. },
  2687. "_anchorPoint": {
  2688. "__type__": "cc.Vec2",
  2689. "x": 0.5,
  2690. "y": 0.5
  2691. },
  2692. "_id": ""
  2693. },
  2694. {
  2695. "__type__": "cc.CompPrefabInfo",
  2696. "fileId": "5dKqmXwmhISang8QX7QqZn"
  2697. },
  2698. {
  2699. "__type__": "cc.Sprite",
  2700. "_name": "",
  2701. "_objFlags": 0,
  2702. "__editorExtras__": {},
  2703. "node": {
  2704. "__id__": 115
  2705. },
  2706. "_enabled": true,
  2707. "__prefab": {
  2708. "__id__": 119
  2709. },
  2710. "_customMaterial": null,
  2711. "_srcBlendFactor": 2,
  2712. "_dstBlendFactor": 4,
  2713. "_color": {
  2714. "__type__": "cc.Color",
  2715. "r": 255,
  2716. "g": 255,
  2717. "b": 255,
  2718. "a": 255
  2719. },
  2720. "_spriteFrame": {
  2721. "__uuid__": "81f7a002-f0bd-4def-8bb4-1888e6098930@f9941",
  2722. "__expectedType__": "cc.SpriteFrame"
  2723. },
  2724. "_type": 0,
  2725. "_fillType": 0,
  2726. "_sizeMode": 1,
  2727. "_fillCenter": {
  2728. "__type__": "cc.Vec2",
  2729. "x": 0,
  2730. "y": 0
  2731. },
  2732. "_fillStart": 0,
  2733. "_fillRange": 0,
  2734. "_isTrimmedMode": true,
  2735. "_useGrayscale": false,
  2736. "_atlas": null,
  2737. "_id": ""
  2738. },
  2739. {
  2740. "__type__": "cc.CompPrefabInfo",
  2741. "fileId": "374Sa/wnBBwpvN5PmKJHfY"
  2742. },
  2743. {
  2744. "__type__": "cc.PrefabInfo",
  2745. "root": {
  2746. "__id__": 1
  2747. },
  2748. "asset": {
  2749. "__id__": 0
  2750. },
  2751. "fileId": "cb++wcMJZNFYW+m/xEX6RD",
  2752. "instance": null,
  2753. "targetOverrides": null,
  2754. "nestedPrefabInstanceRoots": null
  2755. },
  2756. {
  2757. "__type__": "cc.UITransform",
  2758. "_name": "",
  2759. "_objFlags": 0,
  2760. "__editorExtras__": {},
  2761. "node": {
  2762. "__id__": 114
  2763. },
  2764. "_enabled": true,
  2765. "__prefab": {
  2766. "__id__": 122
  2767. },
  2768. "_contentSize": {
  2769. "__type__": "cc.Size",
  2770. "width": 259,
  2771. "height": 108
  2772. },
  2773. "_anchorPoint": {
  2774. "__type__": "cc.Vec2",
  2775. "x": 0.5,
  2776. "y": 0.5
  2777. },
  2778. "_id": ""
  2779. },
  2780. {
  2781. "__type__": "cc.CompPrefabInfo",
  2782. "fileId": "f3/2Nw2JNPM7oR63pRx2K/"
  2783. },
  2784. {
  2785. "__type__": "cc.Sprite",
  2786. "_name": "",
  2787. "_objFlags": 0,
  2788. "__editorExtras__": {},
  2789. "node": {
  2790. "__id__": 114
  2791. },
  2792. "_enabled": true,
  2793. "__prefab": {
  2794. "__id__": 124
  2795. },
  2796. "_customMaterial": null,
  2797. "_srcBlendFactor": 2,
  2798. "_dstBlendFactor": 4,
  2799. "_color": {
  2800. "__type__": "cc.Color",
  2801. "r": 255,
  2802. "g": 255,
  2803. "b": 255,
  2804. "a": 255
  2805. },
  2806. "_spriteFrame": {
  2807. "__uuid__": "1cc7078a-1750-4f2a-a6b6-9f35cd8a3a4c@f9941",
  2808. "__expectedType__": "cc.SpriteFrame"
  2809. },
  2810. "_type": 1,
  2811. "_fillType": 0,
  2812. "_sizeMode": 2,
  2813. "_fillCenter": {
  2814. "__type__": "cc.Vec2",
  2815. "x": 0,
  2816. "y": 0
  2817. },
  2818. "_fillStart": 0,
  2819. "_fillRange": 0,
  2820. "_isTrimmedMode": true,
  2821. "_useGrayscale": false,
  2822. "_atlas": null,
  2823. "_id": ""
  2824. },
  2825. {
  2826. "__type__": "cc.CompPrefabInfo",
  2827. "fileId": "95lO78/hJHBb4aUL+4bU58"
  2828. },
  2829. {
  2830. "__type__": "cc.Button",
  2831. "_name": "",
  2832. "_objFlags": 0,
  2833. "__editorExtras__": {},
  2834. "node": {
  2835. "__id__": 114
  2836. },
  2837. "_enabled": true,
  2838. "__prefab": {
  2839. "__id__": 126
  2840. },
  2841. "clickEvents": [
  2842. {
  2843. "__id__": 127
  2844. }
  2845. ],
  2846. "_interactable": true,
  2847. "_transition": 3,
  2848. "_normalColor": {
  2849. "__type__": "cc.Color",
  2850. "r": 255,
  2851. "g": 255,
  2852. "b": 255,
  2853. "a": 255
  2854. },
  2855. "_hoverColor": {
  2856. "__type__": "cc.Color",
  2857. "r": 211,
  2858. "g": 211,
  2859. "b": 211,
  2860. "a": 255
  2861. },
  2862. "_pressedColor": {
  2863. "__type__": "cc.Color",
  2864. "r": 255,
  2865. "g": 255,
  2866. "b": 255,
  2867. "a": 255
  2868. },
  2869. "_disabledColor": {
  2870. "__type__": "cc.Color",
  2871. "r": 124,
  2872. "g": 124,
  2873. "b": 124,
  2874. "a": 255
  2875. },
  2876. "_normalSprite": null,
  2877. "_hoverSprite": null,
  2878. "_pressedSprite": null,
  2879. "_disabledSprite": null,
  2880. "_duration": 0.1,
  2881. "_zoomScale": 1.1,
  2882. "_target": null,
  2883. "_id": ""
  2884. },
  2885. {
  2886. "__type__": "cc.CompPrefabInfo",
  2887. "fileId": "00GAzK8Q9H3pxwIL3GXiDv"
  2888. },
  2889. {
  2890. "__type__": "cc.ClickEvent",
  2891. "target": {
  2892. "__id__": 1
  2893. },
  2894. "component": "",
  2895. "_componentId": "c45adto9B5CUrySVMJAHfZl",
  2896. "handler": "onBtnBackClick",
  2897. "customEventData": ""
  2898. },
  2899. {
  2900. "__type__": "e858boYmuRNtaUbAZS8rSGo",
  2901. "_name": "",
  2902. "_objFlags": 0,
  2903. "__editorExtras__": {},
  2904. "node": {
  2905. "__id__": 114
  2906. },
  2907. "_enabled": true,
  2908. "__prefab": {
  2909. "__id__": 129
  2910. },
  2911. "safeTime": 0.5,
  2912. "zoomScale": 1.1,
  2913. "clickSfx": "btnClick",
  2914. "openUI": "",
  2915. "closeUI": "",
  2916. "_id": ""
  2917. },
  2918. {
  2919. "__type__": "cc.CompPrefabInfo",
  2920. "fileId": "0edNTHAjdCz75H65jfK0BX"
  2921. },
  2922. {
  2923. "__type__": "cc.PrefabInfo",
  2924. "root": {
  2925. "__id__": 1
  2926. },
  2927. "asset": {
  2928. "__id__": 0
  2929. },
  2930. "fileId": "97GpJf5bFN0J47Zq/Grtjl",
  2931. "instance": null,
  2932. "targetOverrides": null,
  2933. "nestedPrefabInstanceRoots": null
  2934. },
  2935. {
  2936. "__type__": "cc.UITransform",
  2937. "_name": "",
  2938. "_objFlags": 0,
  2939. "__editorExtras__": {},
  2940. "node": {
  2941. "__id__": 1
  2942. },
  2943. "_enabled": true,
  2944. "__prefab": {
  2945. "__id__": 132
  2946. },
  2947. "_contentSize": {
  2948. "__type__": "cc.Size",
  2949. "width": 0,
  2950. "height": 0
  2951. },
  2952. "_anchorPoint": {
  2953. "__type__": "cc.Vec2",
  2954. "x": 0.5,
  2955. "y": 0.5
  2956. },
  2957. "_id": ""
  2958. },
  2959. {
  2960. "__type__": "cc.CompPrefabInfo",
  2961. "fileId": "60zHXHwxFMnZs74HGargyM"
  2962. },
  2963. {
  2964. "__type__": "cc.Widget",
  2965. "_name": "",
  2966. "_objFlags": 0,
  2967. "__editorExtras__": {},
  2968. "node": {
  2969. "__id__": 1
  2970. },
  2971. "_enabled": true,
  2972. "__prefab": {
  2973. "__id__": 134
  2974. },
  2975. "_alignFlags": 18,
  2976. "_target": null,
  2977. "_left": 0,
  2978. "_right": 0,
  2979. "_top": 0,
  2980. "_bottom": 0,
  2981. "_horizontalCenter": 0,
  2982. "_verticalCenter": 0,
  2983. "_isAbsLeft": true,
  2984. "_isAbsRight": true,
  2985. "_isAbsTop": true,
  2986. "_isAbsBottom": true,
  2987. "_isAbsHorizontalCenter": true,
  2988. "_isAbsVerticalCenter": true,
  2989. "_originalWidth": 0,
  2990. "_originalHeight": 0,
  2991. "_alignMode": 2,
  2992. "_lockFlags": 0,
  2993. "_id": ""
  2994. },
  2995. {
  2996. "__type__": "cc.CompPrefabInfo",
  2997. "fileId": "875465q/pBCroP4j//s/ZV"
  2998. },
  2999. {
  3000. "__type__": "c45adto9B5CUrySVMJAHfZl",
  3001. "_name": "",
  3002. "_objFlags": 0,
  3003. "__editorExtras__": {},
  3004. "node": {
  3005. "__id__": 1
  3006. },
  3007. "_enabled": true,
  3008. "__prefab": {
  3009. "__id__": 136
  3010. },
  3011. "uiType": 1,
  3012. "_id": ""
  3013. },
  3014. {
  3015. "__type__": "cc.CompPrefabInfo",
  3016. "fileId": "0de/YFVbFMf4codMtW8QEm"
  3017. },
  3018. {
  3019. "__type__": "cc.PrefabInfo",
  3020. "root": {
  3021. "__id__": 1
  3022. },
  3023. "asset": {
  3024. "__id__": 0
  3025. },
  3026. "fileId": "bfTvhK9ytDLZONZdJDb5/C",
  3027. "instance": null,
  3028. "targetOverrides": null
  3029. }
  3030. ]