setting.prefab 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "setting",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "setting",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 12
  26. }
  27. ],
  28. "_active": true,
  29. "_components": [
  30. {
  31. "__id__": 116
  32. },
  33. {
  34. "__id__": 118
  35. },
  36. {
  37. "__id__": 120
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 122
  42. },
  43. "_lpos": {
  44. "__type__": "cc.Vec3",
  45. "x": 0,
  46. "y": 0,
  47. "z": 0
  48. },
  49. "_lrot": {
  50. "__type__": "cc.Quat",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0,
  54. "w": 1
  55. },
  56. "_lscale": {
  57. "__type__": "cc.Vec3",
  58. "x": 1,
  59. "y": 1,
  60. "z": 1
  61. },
  62. "_mobility": 0,
  63. "_layer": 33554432,
  64. "_euler": {
  65. "__type__": "cc.Vec3",
  66. "x": 0,
  67. "y": 0,
  68. "z": 0
  69. },
  70. "_id": ""
  71. },
  72. {
  73. "__type__": "cc.Node",
  74. "_name": "mask",
  75. "_objFlags": 0,
  76. "__editorExtras__": {},
  77. "_parent": {
  78. "__id__": 1
  79. },
  80. "_children": [],
  81. "_active": true,
  82. "_components": [
  83. {
  84. "__id__": 3
  85. },
  86. {
  87. "__id__": 5
  88. },
  89. {
  90. "__id__": 7
  91. },
  92. {
  93. "__id__": 9
  94. }
  95. ],
  96. "_prefab": {
  97. "__id__": 11
  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": 720,
  143. "height": 1280
  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": "64wpxVOM9JspLeDYE7RHVX"
  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": 2,
  174. "g": 2,
  175. "b": 2,
  176. "a": 187
  177. },
  178. "_spriteFrame": {
  179. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  180. "__expectedType__": "cc.SpriteFrame"
  181. },
  182. "_type": 0,
  183. "_fillType": 0,
  184. "_sizeMode": 0,
  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": "e9TGv7+8RLmZ0VPHkzA0rN"
  200. },
  201. {
  202. "__type__": "cc.Widget",
  203. "_name": "",
  204. "_objFlags": 0,
  205. "__editorExtras__": {},
  206. "node": {
  207. "__id__": 2
  208. },
  209. "_enabled": true,
  210. "__prefab": {
  211. "__id__": 8
  212. },
  213. "_alignFlags": 45,
  214. "_target": null,
  215. "_left": 0,
  216. "_right": 0,
  217. "_top": 0,
  218. "_bottom": 0,
  219. "_horizontalCenter": 0,
  220. "_verticalCenter": 0,
  221. "_isAbsLeft": true,
  222. "_isAbsRight": true,
  223. "_isAbsTop": true,
  224. "_isAbsBottom": true,
  225. "_isAbsHorizontalCenter": true,
  226. "_isAbsVerticalCenter": true,
  227. "_originalWidth": 100,
  228. "_originalHeight": 100,
  229. "_alignMode": 2,
  230. "_lockFlags": 0,
  231. "_id": ""
  232. },
  233. {
  234. "__type__": "cc.CompPrefabInfo",
  235. "fileId": "42otxXASZB2KUQulNkv5Bi"
  236. },
  237. {
  238. "__type__": "cc.BlockInputEvents",
  239. "_name": "",
  240. "_objFlags": 0,
  241. "__editorExtras__": {},
  242. "node": {
  243. "__id__": 2
  244. },
  245. "_enabled": true,
  246. "__prefab": {
  247. "__id__": 10
  248. },
  249. "_id": ""
  250. },
  251. {
  252. "__type__": "cc.CompPrefabInfo",
  253. "fileId": "b60UMKt1lLrZQIsk4FXS0Y"
  254. },
  255. {
  256. "__type__": "cc.PrefabInfo",
  257. "root": {
  258. "__id__": 1
  259. },
  260. "asset": {
  261. "__id__": 0
  262. },
  263. "fileId": "84zkbVl6JFuKjpMpMMWMV1",
  264. "instance": null,
  265. "targetOverrides": null,
  266. "nestedPrefabInstanceRoots": null
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "BG",
  271. "_objFlags": 0,
  272. "__editorExtras__": {},
  273. "_parent": {
  274. "__id__": 1
  275. },
  276. "_children": [
  277. {
  278. "__id__": 13
  279. },
  280. {
  281. "__id__": 19
  282. },
  283. {
  284. "__id__": 25
  285. },
  286. {
  287. "__id__": 31
  288. },
  289. {
  290. "__id__": 37
  291. },
  292. {
  293. "__id__": 43
  294. },
  295. {
  296. "__id__": 49
  297. },
  298. {
  299. "__id__": 55
  300. },
  301. {
  302. "__id__": 61
  303. },
  304. {
  305. "__id__": 77
  306. },
  307. {
  308. "__id__": 93
  309. }
  310. ],
  311. "_active": true,
  312. "_components": [
  313. {
  314. "__id__": 109
  315. },
  316. {
  317. "__id__": 111
  318. },
  319. {
  320. "__id__": 113
  321. }
  322. ],
  323. "_prefab": {
  324. "__id__": 115
  325. },
  326. "_lpos": {
  327. "__type__": "cc.Vec3",
  328. "x": 0,
  329. "y": 0,
  330. "z": 0
  331. },
  332. "_lrot": {
  333. "__type__": "cc.Quat",
  334. "x": 0,
  335. "y": 0,
  336. "z": 0,
  337. "w": 1
  338. },
  339. "_lscale": {
  340. "__type__": "cc.Vec3",
  341. "x": 0.5,
  342. "y": 0.5,
  343. "z": 1
  344. },
  345. "_mobility": 0,
  346. "_layer": 33554432,
  347. "_euler": {
  348. "__type__": "cc.Vec3",
  349. "x": 0,
  350. "y": 0,
  351. "z": 0
  352. },
  353. "_id": ""
  354. },
  355. {
  356. "__type__": "cc.Node",
  357. "_name": "btn_close",
  358. "_objFlags": 0,
  359. "__editorExtras__": {},
  360. "_parent": {
  361. "__id__": 12
  362. },
  363. "_children": [],
  364. "_active": true,
  365. "_components": [
  366. {
  367. "__id__": 14
  368. },
  369. {
  370. "__id__": 16
  371. }
  372. ],
  373. "_prefab": {
  374. "__id__": 18
  375. },
  376. "_lpos": {
  377. "__type__": "cc.Vec3",
  378. "x": 408,
  379. "y": 378.244,
  380. "z": 0
  381. },
  382. "_lrot": {
  383. "__type__": "cc.Quat",
  384. "x": 0,
  385. "y": 0,
  386. "z": 0,
  387. "w": 1
  388. },
  389. "_lscale": {
  390. "__type__": "cc.Vec3",
  391. "x": 1,
  392. "y": 1,
  393. "z": 1
  394. },
  395. "_mobility": 0,
  396. "_layer": 33554432,
  397. "_euler": {
  398. "__type__": "cc.Vec3",
  399. "x": 0,
  400. "y": 0,
  401. "z": 0
  402. },
  403. "_id": ""
  404. },
  405. {
  406. "__type__": "cc.UITransform",
  407. "_name": "",
  408. "_objFlags": 0,
  409. "__editorExtras__": {},
  410. "node": {
  411. "__id__": 13
  412. },
  413. "_enabled": true,
  414. "__prefab": {
  415. "__id__": 15
  416. },
  417. "_contentSize": {
  418. "__type__": "cc.Size",
  419. "width": 117,
  420. "height": 123
  421. },
  422. "_anchorPoint": {
  423. "__type__": "cc.Vec2",
  424. "x": 0.5,
  425. "y": 0.5
  426. },
  427. "_id": ""
  428. },
  429. {
  430. "__type__": "cc.CompPrefabInfo",
  431. "fileId": "93wwQmTWJNmpo0x8TFkHNo"
  432. },
  433. {
  434. "__type__": "cc.Sprite",
  435. "_name": "",
  436. "_objFlags": 0,
  437. "__editorExtras__": {},
  438. "node": {
  439. "__id__": 13
  440. },
  441. "_enabled": true,
  442. "__prefab": {
  443. "__id__": 17
  444. },
  445. "_customMaterial": null,
  446. "_srcBlendFactor": 2,
  447. "_dstBlendFactor": 4,
  448. "_color": {
  449. "__type__": "cc.Color",
  450. "r": 255,
  451. "g": 255,
  452. "b": 255,
  453. "a": 255
  454. },
  455. "_spriteFrame": {
  456. "__uuid__": "f9e8f675-1d92-486e-ad39-e8999a70b151@f9941",
  457. "__expectedType__": "cc.SpriteFrame"
  458. },
  459. "_type": 0,
  460. "_fillType": 0,
  461. "_sizeMode": 1,
  462. "_fillCenter": {
  463. "__type__": "cc.Vec2",
  464. "x": 0,
  465. "y": 0
  466. },
  467. "_fillStart": 0,
  468. "_fillRange": 0,
  469. "_isTrimmedMode": true,
  470. "_useGrayscale": false,
  471. "_atlas": null,
  472. "_id": ""
  473. },
  474. {
  475. "__type__": "cc.CompPrefabInfo",
  476. "fileId": "1bN6A1LppHyq0uRYKRXt5R"
  477. },
  478. {
  479. "__type__": "cc.PrefabInfo",
  480. "root": {
  481. "__id__": 1
  482. },
  483. "asset": {
  484. "__id__": 0
  485. },
  486. "fileId": "d7P7xUvyNBErPJSKoV47Mw",
  487. "instance": null,
  488. "targetOverrides": null,
  489. "nestedPrefabInstanceRoots": null
  490. },
  491. {
  492. "__type__": "cc.Node",
  493. "_name": "btn_restart",
  494. "_objFlags": 0,
  495. "__editorExtras__": {},
  496. "_parent": {
  497. "__id__": 12
  498. },
  499. "_children": [],
  500. "_active": true,
  501. "_components": [
  502. {
  503. "__id__": 20
  504. },
  505. {
  506. "__id__": 22
  507. }
  508. ],
  509. "_prefab": {
  510. "__id__": 24
  511. },
  512. "_lpos": {
  513. "__type__": "cc.Vec3",
  514. "x": 10.49,
  515. "y": -315.062,
  516. "z": 0
  517. },
  518. "_lrot": {
  519. "__type__": "cc.Quat",
  520. "x": 0,
  521. "y": 0,
  522. "z": 0,
  523. "w": 1
  524. },
  525. "_lscale": {
  526. "__type__": "cc.Vec3",
  527. "x": 1,
  528. "y": 1,
  529. "z": 1
  530. },
  531. "_mobility": 0,
  532. "_layer": 33554432,
  533. "_euler": {
  534. "__type__": "cc.Vec3",
  535. "x": 0,
  536. "y": 0,
  537. "z": 0
  538. },
  539. "_id": ""
  540. },
  541. {
  542. "__type__": "cc.UITransform",
  543. "_name": "",
  544. "_objFlags": 0,
  545. "__editorExtras__": {},
  546. "node": {
  547. "__id__": 19
  548. },
  549. "_enabled": true,
  550. "__prefab": {
  551. "__id__": 21
  552. },
  553. "_contentSize": {
  554. "__type__": "cc.Size",
  555. "width": 353,
  556. "height": 152
  557. },
  558. "_anchorPoint": {
  559. "__type__": "cc.Vec2",
  560. "x": 0.5,
  561. "y": 0.5
  562. },
  563. "_id": ""
  564. },
  565. {
  566. "__type__": "cc.CompPrefabInfo",
  567. "fileId": "c89ZLrbYJL3Lpc17NIe7wo"
  568. },
  569. {
  570. "__type__": "cc.Sprite",
  571. "_name": "",
  572. "_objFlags": 0,
  573. "__editorExtras__": {},
  574. "node": {
  575. "__id__": 19
  576. },
  577. "_enabled": true,
  578. "__prefab": {
  579. "__id__": 23
  580. },
  581. "_customMaterial": null,
  582. "_srcBlendFactor": 2,
  583. "_dstBlendFactor": 4,
  584. "_color": {
  585. "__type__": "cc.Color",
  586. "r": 255,
  587. "g": 255,
  588. "b": 255,
  589. "a": 255
  590. },
  591. "_spriteFrame": {
  592. "__uuid__": "b29b09fa-fc3f-4caa-b899-f55741457f45@f9941",
  593. "__expectedType__": "cc.SpriteFrame"
  594. },
  595. "_type": 0,
  596. "_fillType": 0,
  597. "_sizeMode": 1,
  598. "_fillCenter": {
  599. "__type__": "cc.Vec2",
  600. "x": 0,
  601. "y": 0
  602. },
  603. "_fillStart": 0,
  604. "_fillRange": 0,
  605. "_isTrimmedMode": true,
  606. "_useGrayscale": false,
  607. "_atlas": null,
  608. "_id": ""
  609. },
  610. {
  611. "__type__": "cc.CompPrefabInfo",
  612. "fileId": "e6JjOcW+NI1IhF81WVftPb"
  613. },
  614. {
  615. "__type__": "cc.PrefabInfo",
  616. "root": {
  617. "__id__": 1
  618. },
  619. "asset": {
  620. "__id__": 0
  621. },
  622. "fileId": "faHArFzh5GI6L/H/y/YP7f",
  623. "instance": null,
  624. "targetOverrides": null,
  625. "nestedPrefabInstanceRoots": null
  626. },
  627. {
  628. "__type__": "cc.Node",
  629. "_name": "sound",
  630. "_objFlags": 0,
  631. "__editorExtras__": {},
  632. "_parent": {
  633. "__id__": 12
  634. },
  635. "_children": [],
  636. "_active": true,
  637. "_components": [
  638. {
  639. "__id__": 26
  640. },
  641. {
  642. "__id__": 28
  643. }
  644. ],
  645. "_prefab": {
  646. "__id__": 30
  647. },
  648. "_lpos": {
  649. "__type__": "cc.Vec3",
  650. "x": -255.26599999999996,
  651. "y": -85.51199999999994,
  652. "z": 0
  653. },
  654. "_lrot": {
  655. "__type__": "cc.Quat",
  656. "x": 0,
  657. "y": 0,
  658. "z": 0,
  659. "w": 1
  660. },
  661. "_lscale": {
  662. "__type__": "cc.Vec3",
  663. "x": 1,
  664. "y": 1,
  665. "z": 1
  666. },
  667. "_mobility": 0,
  668. "_layer": 33554432,
  669. "_euler": {
  670. "__type__": "cc.Vec3",
  671. "x": 0,
  672. "y": 0,
  673. "z": 0
  674. },
  675. "_id": ""
  676. },
  677. {
  678. "__type__": "cc.UITransform",
  679. "_name": "",
  680. "_objFlags": 0,
  681. "__editorExtras__": {},
  682. "node": {
  683. "__id__": 25
  684. },
  685. "_enabled": true,
  686. "__prefab": {
  687. "__id__": 27
  688. },
  689. "_contentSize": {
  690. "__type__": "cc.Size",
  691. "width": 81,
  692. "height": 77
  693. },
  694. "_anchorPoint": {
  695. "__type__": "cc.Vec2",
  696. "x": 0.5,
  697. "y": 0.5
  698. },
  699. "_id": ""
  700. },
  701. {
  702. "__type__": "cc.CompPrefabInfo",
  703. "fileId": "19XTyG4UJEzbY3wGvsPIXI"
  704. },
  705. {
  706. "__type__": "cc.Sprite",
  707. "_name": "",
  708. "_objFlags": 0,
  709. "__editorExtras__": {},
  710. "node": {
  711. "__id__": 25
  712. },
  713. "_enabled": true,
  714. "__prefab": {
  715. "__id__": 29
  716. },
  717. "_customMaterial": null,
  718. "_srcBlendFactor": 2,
  719. "_dstBlendFactor": 4,
  720. "_color": {
  721. "__type__": "cc.Color",
  722. "r": 255,
  723. "g": 255,
  724. "b": 255,
  725. "a": 255
  726. },
  727. "_spriteFrame": {
  728. "__uuid__": "5d9c3539-d78b-4f05-93e3-a6182089a3c6@f9941",
  729. "__expectedType__": "cc.SpriteFrame"
  730. },
  731. "_type": 0,
  732. "_fillType": 0,
  733. "_sizeMode": 1,
  734. "_fillCenter": {
  735. "__type__": "cc.Vec2",
  736. "x": 0,
  737. "y": 0
  738. },
  739. "_fillStart": 0,
  740. "_fillRange": 0,
  741. "_isTrimmedMode": true,
  742. "_useGrayscale": false,
  743. "_atlas": null,
  744. "_id": ""
  745. },
  746. {
  747. "__type__": "cc.CompPrefabInfo",
  748. "fileId": "90IjtygRZOULTlKX9bjhRM"
  749. },
  750. {
  751. "__type__": "cc.PrefabInfo",
  752. "root": {
  753. "__id__": 1
  754. },
  755. "asset": {
  756. "__id__": 0
  757. },
  758. "fileId": "e0vZgeWkhHA69ixUZyn8hI",
  759. "instance": null,
  760. "targetOverrides": null,
  761. "nestedPrefabInstanceRoots": null
  762. },
  763. {
  764. "__type__": "cc.Node",
  765. "_name": "sound effects",
  766. "_objFlags": 0,
  767. "__editorExtras__": {},
  768. "_parent": {
  769. "__id__": 12
  770. },
  771. "_children": [],
  772. "_active": true,
  773. "_components": [
  774. {
  775. "__id__": 32
  776. },
  777. {
  778. "__id__": 34
  779. }
  780. ],
  781. "_prefab": {
  782. "__id__": 36
  783. },
  784. "_lpos": {
  785. "__type__": "cc.Vec3",
  786. "x": -255.26599999999996,
  787. "y": 80.24400000000014,
  788. "z": 0
  789. },
  790. "_lrot": {
  791. "__type__": "cc.Quat",
  792. "x": 0,
  793. "y": 0,
  794. "z": 0,
  795. "w": 1
  796. },
  797. "_lscale": {
  798. "__type__": "cc.Vec3",
  799. "x": 1,
  800. "y": 1,
  801. "z": 1
  802. },
  803. "_mobility": 0,
  804. "_layer": 33554432,
  805. "_euler": {
  806. "__type__": "cc.Vec3",
  807. "x": 0,
  808. "y": 0,
  809. "z": 0
  810. },
  811. "_id": ""
  812. },
  813. {
  814. "__type__": "cc.UITransform",
  815. "_name": "",
  816. "_objFlags": 0,
  817. "__editorExtras__": {},
  818. "node": {
  819. "__id__": 31
  820. },
  821. "_enabled": true,
  822. "__prefab": {
  823. "__id__": 33
  824. },
  825. "_contentSize": {
  826. "__type__": "cc.Size",
  827. "width": 81,
  828. "height": 90
  829. },
  830. "_anchorPoint": {
  831. "__type__": "cc.Vec2",
  832. "x": 0.5,
  833. "y": 0.5
  834. },
  835. "_id": ""
  836. },
  837. {
  838. "__type__": "cc.CompPrefabInfo",
  839. "fileId": "71JDEUhytKRanlDfK6i+r+"
  840. },
  841. {
  842. "__type__": "cc.Sprite",
  843. "_name": "",
  844. "_objFlags": 0,
  845. "__editorExtras__": {},
  846. "node": {
  847. "__id__": 31
  848. },
  849. "_enabled": true,
  850. "__prefab": {
  851. "__id__": 35
  852. },
  853. "_customMaterial": null,
  854. "_srcBlendFactor": 2,
  855. "_dstBlendFactor": 4,
  856. "_color": {
  857. "__type__": "cc.Color",
  858. "r": 255,
  859. "g": 255,
  860. "b": 255,
  861. "a": 255
  862. },
  863. "_spriteFrame": {
  864. "__uuid__": "02e647fe-cef3-4086-9164-3c4636924486@f9941",
  865. "__expectedType__": "cc.SpriteFrame"
  866. },
  867. "_type": 0,
  868. "_fillType": 0,
  869. "_sizeMode": 1,
  870. "_fillCenter": {
  871. "__type__": "cc.Vec2",
  872. "x": 0,
  873. "y": 0
  874. },
  875. "_fillStart": 0,
  876. "_fillRange": 0,
  877. "_isTrimmedMode": true,
  878. "_useGrayscale": false,
  879. "_atlas": null,
  880. "_id": ""
  881. },
  882. {
  883. "__type__": "cc.CompPrefabInfo",
  884. "fileId": "d1nEhyyGxBp6CB3rDEhsd8"
  885. },
  886. {
  887. "__type__": "cc.PrefabInfo",
  888. "root": {
  889. "__id__": 1
  890. },
  891. "asset": {
  892. "__id__": 0
  893. },
  894. "fileId": "11lLx/f2RACIMeihf5mO8u",
  895. "instance": null,
  896. "targetOverrides": null,
  897. "nestedPrefabInstanceRoots": null
  898. },
  899. {
  900. "__type__": "cc.Node",
  901. "_name": "vibrate",
  902. "_objFlags": 0,
  903. "__editorExtras__": {},
  904. "_parent": {
  905. "__id__": 12
  906. },
  907. "_children": [],
  908. "_active": true,
  909. "_components": [
  910. {
  911. "__id__": 38
  912. },
  913. {
  914. "__id__": 40
  915. }
  916. ],
  917. "_prefab": {
  918. "__id__": 42
  919. },
  920. "_lpos": {
  921. "__type__": "cc.Vec3",
  922. "x": -241.26599999999996,
  923. "y": 246,
  924. "z": 0
  925. },
  926. "_lrot": {
  927. "__type__": "cc.Quat",
  928. "x": 0,
  929. "y": 0,
  930. "z": 0,
  931. "w": 1
  932. },
  933. "_lscale": {
  934. "__type__": "cc.Vec3",
  935. "x": 1,
  936. "y": 1,
  937. "z": 1
  938. },
  939. "_mobility": 0,
  940. "_layer": 33554432,
  941. "_euler": {
  942. "__type__": "cc.Vec3",
  943. "x": 0,
  944. "y": 0,
  945. "z": 0
  946. },
  947. "_id": ""
  948. },
  949. {
  950. "__type__": "cc.UITransform",
  951. "_name": "",
  952. "_objFlags": 0,
  953. "__editorExtras__": {},
  954. "node": {
  955. "__id__": 37
  956. },
  957. "_enabled": true,
  958. "__prefab": {
  959. "__id__": 39
  960. },
  961. "_contentSize": {
  962. "__type__": "cc.Size",
  963. "width": 109,
  964. "height": 97
  965. },
  966. "_anchorPoint": {
  967. "__type__": "cc.Vec2",
  968. "x": 0.5,
  969. "y": 0.5
  970. },
  971. "_id": ""
  972. },
  973. {
  974. "__type__": "cc.CompPrefabInfo",
  975. "fileId": "c2W9cp+ThG06h8uWZIOhPi"
  976. },
  977. {
  978. "__type__": "cc.Sprite",
  979. "_name": "",
  980. "_objFlags": 0,
  981. "__editorExtras__": {},
  982. "node": {
  983. "__id__": 37
  984. },
  985. "_enabled": true,
  986. "__prefab": {
  987. "__id__": 41
  988. },
  989. "_customMaterial": null,
  990. "_srcBlendFactor": 2,
  991. "_dstBlendFactor": 4,
  992. "_color": {
  993. "__type__": "cc.Color",
  994. "r": 255,
  995. "g": 255,
  996. "b": 255,
  997. "a": 255
  998. },
  999. "_spriteFrame": {
  1000. "__uuid__": "94a7f8e2-db0f-45e9-8969-2dbb30f44bd6@f9941",
  1001. "__expectedType__": "cc.SpriteFrame"
  1002. },
  1003. "_type": 0,
  1004. "_fillType": 0,
  1005. "_sizeMode": 1,
  1006. "_fillCenter": {
  1007. "__type__": "cc.Vec2",
  1008. "x": 0,
  1009. "y": 0
  1010. },
  1011. "_fillStart": 0,
  1012. "_fillRange": 0,
  1013. "_isTrimmedMode": true,
  1014. "_useGrayscale": false,
  1015. "_atlas": null,
  1016. "_id": ""
  1017. },
  1018. {
  1019. "__type__": "cc.CompPrefabInfo",
  1020. "fileId": "e2gWZuQcxAva6oUk3LJ/27"
  1021. },
  1022. {
  1023. "__type__": "cc.PrefabInfo",
  1024. "root": {
  1025. "__id__": 1
  1026. },
  1027. "asset": {
  1028. "__id__": 0
  1029. },
  1030. "fileId": "06CpKyqcVF/IYBZQYjghJW",
  1031. "instance": null,
  1032. "targetOverrides": null,
  1033. "nestedPrefabInstanceRoots": null
  1034. },
  1035. {
  1036. "__type__": "cc.Node",
  1037. "_name": "Label",
  1038. "_objFlags": 0,
  1039. "__editorExtras__": {},
  1040. "_parent": {
  1041. "__id__": 12
  1042. },
  1043. "_children": [],
  1044. "_active": true,
  1045. "_components": [
  1046. {
  1047. "__id__": 44
  1048. },
  1049. {
  1050. "__id__": 46
  1051. }
  1052. ],
  1053. "_prefab": {
  1054. "__id__": 48
  1055. },
  1056. "_lpos": {
  1057. "__type__": "cc.Vec3",
  1058. "x": -90.818,
  1059. "y": 247.022,
  1060. "z": 0
  1061. },
  1062. "_lrot": {
  1063. "__type__": "cc.Quat",
  1064. "x": 0,
  1065. "y": 0,
  1066. "z": 0,
  1067. "w": 1
  1068. },
  1069. "_lscale": {
  1070. "__type__": "cc.Vec3",
  1071. "x": 1,
  1072. "y": 1,
  1073. "z": 1
  1074. },
  1075. "_mobility": 0,
  1076. "_layer": 33554432,
  1077. "_euler": {
  1078. "__type__": "cc.Vec3",
  1079. "x": 0,
  1080. "y": 0,
  1081. "z": 0
  1082. },
  1083. "_id": ""
  1084. },
  1085. {
  1086. "__type__": "cc.UITransform",
  1087. "_name": "",
  1088. "_objFlags": 0,
  1089. "__editorExtras__": {},
  1090. "node": {
  1091. "__id__": 43
  1092. },
  1093. "_enabled": true,
  1094. "__prefab": {
  1095. "__id__": 45
  1096. },
  1097. "_contentSize": {
  1098. "__type__": "cc.Size",
  1099. "width": 120,
  1100. "height": 75.6
  1101. },
  1102. "_anchorPoint": {
  1103. "__type__": "cc.Vec2",
  1104. "x": 0.5,
  1105. "y": 0.5
  1106. },
  1107. "_id": ""
  1108. },
  1109. {
  1110. "__type__": "cc.CompPrefabInfo",
  1111. "fileId": "b6ncYfmFtLUrZFCkyd1SeQ"
  1112. },
  1113. {
  1114. "__type__": "cc.Label",
  1115. "_name": "",
  1116. "_objFlags": 0,
  1117. "__editorExtras__": {},
  1118. "node": {
  1119. "__id__": 43
  1120. },
  1121. "_enabled": true,
  1122. "__prefab": {
  1123. "__id__": 47
  1124. },
  1125. "_customMaterial": null,
  1126. "_srcBlendFactor": 2,
  1127. "_dstBlendFactor": 4,
  1128. "_color": {
  1129. "__type__": "cc.Color",
  1130. "r": 121,
  1131. "g": 187,
  1132. "b": 121,
  1133. "a": 255
  1134. },
  1135. "_string": "震动",
  1136. "_horizontalAlign": 1,
  1137. "_verticalAlign": 1,
  1138. "_actualFontSize": 60,
  1139. "_fontSize": 60,
  1140. "_fontFamily": "Arial",
  1141. "_lineHeight": 60,
  1142. "_overflow": 0,
  1143. "_enableWrapText": true,
  1144. "_font": null,
  1145. "_isSystemFontUsed": true,
  1146. "_spacingX": 0,
  1147. "_isItalic": false,
  1148. "_isBold": true,
  1149. "_isUnderline": false,
  1150. "_underlineHeight": 2,
  1151. "_cacheMode": 0,
  1152. "_id": ""
  1153. },
  1154. {
  1155. "__type__": "cc.CompPrefabInfo",
  1156. "fileId": "f11/F/CeZHXLdzyTMQRX4a"
  1157. },
  1158. {
  1159. "__type__": "cc.PrefabInfo",
  1160. "root": {
  1161. "__id__": 1
  1162. },
  1163. "asset": {
  1164. "__id__": 0
  1165. },
  1166. "fileId": "abD3OcCN1MGb4GLknqaaT9",
  1167. "instance": null,
  1168. "targetOverrides": null,
  1169. "nestedPrefabInstanceRoots": null
  1170. },
  1171. {
  1172. "__type__": "cc.Node",
  1173. "_name": "Label-001",
  1174. "_objFlags": 0,
  1175. "__editorExtras__": {},
  1176. "_parent": {
  1177. "__id__": 12
  1178. },
  1179. "_children": [],
  1180. "_active": true,
  1181. "_components": [
  1182. {
  1183. "__id__": 50
  1184. },
  1185. {
  1186. "__id__": 52
  1187. }
  1188. ],
  1189. "_prefab": {
  1190. "__id__": 54
  1191. },
  1192. "_lpos": {
  1193. "__type__": "cc.Vec3",
  1194. "x": -90.818,
  1195. "y": 90.818,
  1196. "z": 0
  1197. },
  1198. "_lrot": {
  1199. "__type__": "cc.Quat",
  1200. "x": 0,
  1201. "y": 0,
  1202. "z": 0,
  1203. "w": 1
  1204. },
  1205. "_lscale": {
  1206. "__type__": "cc.Vec3",
  1207. "x": 1,
  1208. "y": 1,
  1209. "z": 1
  1210. },
  1211. "_mobility": 0,
  1212. "_layer": 33554432,
  1213. "_euler": {
  1214. "__type__": "cc.Vec3",
  1215. "x": 0,
  1216. "y": 0,
  1217. "z": 0
  1218. },
  1219. "_id": ""
  1220. },
  1221. {
  1222. "__type__": "cc.UITransform",
  1223. "_name": "",
  1224. "_objFlags": 0,
  1225. "__editorExtras__": {},
  1226. "node": {
  1227. "__id__": 49
  1228. },
  1229. "_enabled": true,
  1230. "__prefab": {
  1231. "__id__": 51
  1232. },
  1233. "_contentSize": {
  1234. "__type__": "cc.Size",
  1235. "width": 120,
  1236. "height": 75.6
  1237. },
  1238. "_anchorPoint": {
  1239. "__type__": "cc.Vec2",
  1240. "x": 0.5,
  1241. "y": 0.5
  1242. },
  1243. "_id": ""
  1244. },
  1245. {
  1246. "__type__": "cc.CompPrefabInfo",
  1247. "fileId": "13VJExkvdFkplTy9odFtbI"
  1248. },
  1249. {
  1250. "__type__": "cc.Label",
  1251. "_name": "",
  1252. "_objFlags": 0,
  1253. "__editorExtras__": {},
  1254. "node": {
  1255. "__id__": 49
  1256. },
  1257. "_enabled": true,
  1258. "__prefab": {
  1259. "__id__": 53
  1260. },
  1261. "_customMaterial": null,
  1262. "_srcBlendFactor": 2,
  1263. "_dstBlendFactor": 4,
  1264. "_color": {
  1265. "__type__": "cc.Color",
  1266. "r": 121,
  1267. "g": 187,
  1268. "b": 121,
  1269. "a": 255
  1270. },
  1271. "_string": "音效",
  1272. "_horizontalAlign": 1,
  1273. "_verticalAlign": 1,
  1274. "_actualFontSize": 60,
  1275. "_fontSize": 60,
  1276. "_fontFamily": "Arial",
  1277. "_lineHeight": 60,
  1278. "_overflow": 0,
  1279. "_enableWrapText": true,
  1280. "_font": null,
  1281. "_isSystemFontUsed": true,
  1282. "_spacingX": 0,
  1283. "_isItalic": false,
  1284. "_isBold": true,
  1285. "_isUnderline": false,
  1286. "_underlineHeight": 2,
  1287. "_cacheMode": 0,
  1288. "_id": ""
  1289. },
  1290. {
  1291. "__type__": "cc.CompPrefabInfo",
  1292. "fileId": "348DlQrS5Oh58bNPg0vqUI"
  1293. },
  1294. {
  1295. "__type__": "cc.PrefabInfo",
  1296. "root": {
  1297. "__id__": 1
  1298. },
  1299. "asset": {
  1300. "__id__": 0
  1301. },
  1302. "fileId": "28yCPoVLJJ978tqdEcdxRt",
  1303. "instance": null,
  1304. "targetOverrides": null,
  1305. "nestedPrefabInstanceRoots": null
  1306. },
  1307. {
  1308. "__type__": "cc.Node",
  1309. "_name": "Label-002",
  1310. "_objFlags": 0,
  1311. "__editorExtras__": {},
  1312. "_parent": {
  1313. "__id__": 12
  1314. },
  1315. "_children": [],
  1316. "_active": true,
  1317. "_components": [
  1318. {
  1319. "__id__": 56
  1320. },
  1321. {
  1322. "__id__": 58
  1323. }
  1324. ],
  1325. "_prefab": {
  1326. "__id__": 60
  1327. },
  1328. "_lpos": {
  1329. "__type__": "cc.Vec3",
  1330. "x": -90.818,
  1331. "y": -83.55,
  1332. "z": 0
  1333. },
  1334. "_lrot": {
  1335. "__type__": "cc.Quat",
  1336. "x": 0,
  1337. "y": 0,
  1338. "z": 0,
  1339. "w": 1
  1340. },
  1341. "_lscale": {
  1342. "__type__": "cc.Vec3",
  1343. "x": 1,
  1344. "y": 1,
  1345. "z": 1
  1346. },
  1347. "_mobility": 0,
  1348. "_layer": 33554432,
  1349. "_euler": {
  1350. "__type__": "cc.Vec3",
  1351. "x": 0,
  1352. "y": 0,
  1353. "z": 0
  1354. },
  1355. "_id": ""
  1356. },
  1357. {
  1358. "__type__": "cc.UITransform",
  1359. "_name": "",
  1360. "_objFlags": 0,
  1361. "__editorExtras__": {},
  1362. "node": {
  1363. "__id__": 55
  1364. },
  1365. "_enabled": true,
  1366. "__prefab": {
  1367. "__id__": 57
  1368. },
  1369. "_contentSize": {
  1370. "__type__": "cc.Size",
  1371. "width": 120,
  1372. "height": 75.6
  1373. },
  1374. "_anchorPoint": {
  1375. "__type__": "cc.Vec2",
  1376. "x": 0.5,
  1377. "y": 0.5
  1378. },
  1379. "_id": ""
  1380. },
  1381. {
  1382. "__type__": "cc.CompPrefabInfo",
  1383. "fileId": "06oBguSnhEALVUQubpyh7T"
  1384. },
  1385. {
  1386. "__type__": "cc.Label",
  1387. "_name": "",
  1388. "_objFlags": 0,
  1389. "__editorExtras__": {},
  1390. "node": {
  1391. "__id__": 55
  1392. },
  1393. "_enabled": true,
  1394. "__prefab": {
  1395. "__id__": 59
  1396. },
  1397. "_customMaterial": null,
  1398. "_srcBlendFactor": 2,
  1399. "_dstBlendFactor": 4,
  1400. "_color": {
  1401. "__type__": "cc.Color",
  1402. "r": 121,
  1403. "g": 187,
  1404. "b": 121,
  1405. "a": 255
  1406. },
  1407. "_string": "声音",
  1408. "_horizontalAlign": 1,
  1409. "_verticalAlign": 1,
  1410. "_actualFontSize": 60,
  1411. "_fontSize": 60,
  1412. "_fontFamily": "Arial",
  1413. "_lineHeight": 60,
  1414. "_overflow": 0,
  1415. "_enableWrapText": true,
  1416. "_font": null,
  1417. "_isSystemFontUsed": true,
  1418. "_spacingX": 0,
  1419. "_isItalic": false,
  1420. "_isBold": true,
  1421. "_isUnderline": false,
  1422. "_underlineHeight": 2,
  1423. "_cacheMode": 0,
  1424. "_id": ""
  1425. },
  1426. {
  1427. "__type__": "cc.CompPrefabInfo",
  1428. "fileId": "adsr5syJNLpJtl10LvbKCK"
  1429. },
  1430. {
  1431. "__type__": "cc.PrefabInfo",
  1432. "root": {
  1433. "__id__": 1
  1434. },
  1435. "asset": {
  1436. "__id__": 0
  1437. },
  1438. "fileId": "a8T+0rGLJHWpCdibeK25hZ",
  1439. "instance": null,
  1440. "targetOverrides": null,
  1441. "nestedPrefabInstanceRoots": null
  1442. },
  1443. {
  1444. "__type__": "cc.Node",
  1445. "_name": "btn_effect",
  1446. "_objFlags": 0,
  1447. "__editorExtras__": {},
  1448. "_parent": {
  1449. "__id__": 12
  1450. },
  1451. "_children": [
  1452. {
  1453. "__id__": 62
  1454. }
  1455. ],
  1456. "_active": true,
  1457. "_components": [
  1458. {
  1459. "__id__": 68
  1460. },
  1461. {
  1462. "__id__": 70
  1463. },
  1464. {
  1465. "__id__": 72
  1466. },
  1467. {
  1468. "__id__": 74
  1469. }
  1470. ],
  1471. "_prefab": {
  1472. "__id__": 76
  1473. },
  1474. "_lpos": {
  1475. "__type__": "cc.Vec3",
  1476. "x": 238.9,
  1477. "y": 90.7,
  1478. "z": 0
  1479. },
  1480. "_lrot": {
  1481. "__type__": "cc.Quat",
  1482. "x": 0,
  1483. "y": 0,
  1484. "z": 0,
  1485. "w": 1
  1486. },
  1487. "_lscale": {
  1488. "__type__": "cc.Vec3",
  1489. "x": 1,
  1490. "y": 1,
  1491. "z": 1
  1492. },
  1493. "_mobility": 0,
  1494. "_layer": 33554432,
  1495. "_euler": {
  1496. "__type__": "cc.Vec3",
  1497. "x": 0,
  1498. "y": 0,
  1499. "z": 0
  1500. },
  1501. "_id": ""
  1502. },
  1503. {
  1504. "__type__": "cc.Node",
  1505. "_name": "Checkmark",
  1506. "_objFlags": 0,
  1507. "__editorExtras__": {},
  1508. "_parent": {
  1509. "__id__": 61
  1510. },
  1511. "_children": [],
  1512. "_active": true,
  1513. "_components": [
  1514. {
  1515. "__id__": 63
  1516. },
  1517. {
  1518. "__id__": 65
  1519. }
  1520. ],
  1521. "_prefab": {
  1522. "__id__": 67
  1523. },
  1524. "_lpos": {
  1525. "__type__": "cc.Vec3",
  1526. "x": 0,
  1527. "y": 0,
  1528. "z": 0
  1529. },
  1530. "_lrot": {
  1531. "__type__": "cc.Quat",
  1532. "x": 0,
  1533. "y": 0,
  1534. "z": 0,
  1535. "w": 1
  1536. },
  1537. "_lscale": {
  1538. "__type__": "cc.Vec3",
  1539. "x": 1,
  1540. "y": 1,
  1541. "z": 1
  1542. },
  1543. "_mobility": 0,
  1544. "_layer": 33554432,
  1545. "_euler": {
  1546. "__type__": "cc.Vec3",
  1547. "x": 0,
  1548. "y": 0,
  1549. "z": 0
  1550. },
  1551. "_id": ""
  1552. },
  1553. {
  1554. "__type__": "cc.UITransform",
  1555. "_name": "",
  1556. "_objFlags": 0,
  1557. "__editorExtras__": {},
  1558. "node": {
  1559. "__id__": 62
  1560. },
  1561. "_enabled": true,
  1562. "__prefab": {
  1563. "__id__": 64
  1564. },
  1565. "_contentSize": {
  1566. "__type__": "cc.Size",
  1567. "width": 177,
  1568. "height": 73
  1569. },
  1570. "_anchorPoint": {
  1571. "__type__": "cc.Vec2",
  1572. "x": 0.5,
  1573. "y": 0.5
  1574. },
  1575. "_id": ""
  1576. },
  1577. {
  1578. "__type__": "cc.CompPrefabInfo",
  1579. "fileId": "c1l477y11EUZ0qHzOMEtKF"
  1580. },
  1581. {
  1582. "__type__": "cc.Sprite",
  1583. "_name": "",
  1584. "_objFlags": 0,
  1585. "__editorExtras__": {},
  1586. "node": {
  1587. "__id__": 62
  1588. },
  1589. "_enabled": true,
  1590. "__prefab": {
  1591. "__id__": 66
  1592. },
  1593. "_customMaterial": null,
  1594. "_srcBlendFactor": 2,
  1595. "_dstBlendFactor": 4,
  1596. "_color": {
  1597. "__type__": "cc.Color",
  1598. "r": 255,
  1599. "g": 255,
  1600. "b": 255,
  1601. "a": 255
  1602. },
  1603. "_spriteFrame": {
  1604. "__uuid__": "c5ede2a4-27f0-4752-a042-4bfb4e2de990@f9941",
  1605. "__expectedType__": "cc.SpriteFrame"
  1606. },
  1607. "_type": 0,
  1608. "_fillType": 0,
  1609. "_sizeMode": 0,
  1610. "_fillCenter": {
  1611. "__type__": "cc.Vec2",
  1612. "x": 0,
  1613. "y": 0
  1614. },
  1615. "_fillStart": 0,
  1616. "_fillRange": 0,
  1617. "_isTrimmedMode": true,
  1618. "_useGrayscale": false,
  1619. "_atlas": null,
  1620. "_id": ""
  1621. },
  1622. {
  1623. "__type__": "cc.CompPrefabInfo",
  1624. "fileId": "0eXBa9nLtAH5CR4SX9IHFn"
  1625. },
  1626. {
  1627. "__type__": "cc.PrefabInfo",
  1628. "root": {
  1629. "__id__": 1
  1630. },
  1631. "asset": {
  1632. "__id__": 0
  1633. },
  1634. "fileId": "866zfmFvFLl7AI88GltP0V",
  1635. "instance": null,
  1636. "targetOverrides": null,
  1637. "nestedPrefabInstanceRoots": null
  1638. },
  1639. {
  1640. "__type__": "cc.UITransform",
  1641. "_name": "",
  1642. "_objFlags": 0,
  1643. "__editorExtras__": {},
  1644. "node": {
  1645. "__id__": 61
  1646. },
  1647. "_enabled": true,
  1648. "__prefab": {
  1649. "__id__": 69
  1650. },
  1651. "_contentSize": {
  1652. "__type__": "cc.Size",
  1653. "width": 177,
  1654. "height": 73
  1655. },
  1656. "_anchorPoint": {
  1657. "__type__": "cc.Vec2",
  1658. "x": 0.5,
  1659. "y": 0.5
  1660. },
  1661. "_id": ""
  1662. },
  1663. {
  1664. "__type__": "cc.CompPrefabInfo",
  1665. "fileId": "edi82R+HRKJYLfwvVSqGHa"
  1666. },
  1667. {
  1668. "__type__": "cc.Sprite",
  1669. "_name": "",
  1670. "_objFlags": 0,
  1671. "__editorExtras__": {},
  1672. "node": {
  1673. "__id__": 61
  1674. },
  1675. "_enabled": true,
  1676. "__prefab": {
  1677. "__id__": 71
  1678. },
  1679. "_customMaterial": null,
  1680. "_srcBlendFactor": 2,
  1681. "_dstBlendFactor": 4,
  1682. "_color": {
  1683. "__type__": "cc.Color",
  1684. "r": 255,
  1685. "g": 255,
  1686. "b": 255,
  1687. "a": 255
  1688. },
  1689. "_spriteFrame": {
  1690. "__uuid__": "6d31ac9b-4330-4fc1-b422-44235daa77cf@f9941",
  1691. "__expectedType__": "cc.SpriteFrame"
  1692. },
  1693. "_type": 0,
  1694. "_fillType": 0,
  1695. "_sizeMode": 0,
  1696. "_fillCenter": {
  1697. "__type__": "cc.Vec2",
  1698. "x": 0,
  1699. "y": 0
  1700. },
  1701. "_fillStart": 0,
  1702. "_fillRange": 0,
  1703. "_isTrimmedMode": true,
  1704. "_useGrayscale": false,
  1705. "_atlas": null,
  1706. "_id": ""
  1707. },
  1708. {
  1709. "__type__": "cc.CompPrefabInfo",
  1710. "fileId": "91EaUgoL9GArh4w+yzEQdL"
  1711. },
  1712. {
  1713. "__type__": "cc.Toggle",
  1714. "_name": "",
  1715. "_objFlags": 0,
  1716. "__editorExtras__": {},
  1717. "node": {
  1718. "__id__": 61
  1719. },
  1720. "_enabled": true,
  1721. "__prefab": {
  1722. "__id__": 73
  1723. },
  1724. "clickEvents": [],
  1725. "_interactable": true,
  1726. "_transition": 0,
  1727. "_normalColor": {
  1728. "__type__": "cc.Color",
  1729. "r": 214,
  1730. "g": 214,
  1731. "b": 214,
  1732. "a": 255
  1733. },
  1734. "_hoverColor": {
  1735. "__type__": "cc.Color",
  1736. "r": 211,
  1737. "g": 211,
  1738. "b": 211,
  1739. "a": 255
  1740. },
  1741. "_pressedColor": {
  1742. "__type__": "cc.Color",
  1743. "r": 255,
  1744. "g": 255,
  1745. "b": 255,
  1746. "a": 255
  1747. },
  1748. "_disabledColor": {
  1749. "__type__": "cc.Color",
  1750. "r": 124,
  1751. "g": 124,
  1752. "b": 124,
  1753. "a": 255
  1754. },
  1755. "_normalSprite": {
  1756. "__uuid__": "11bdc4b0-64a8-4eb7-a2a7-9fb9e233e977@f9941",
  1757. "__expectedType__": "cc.SpriteFrame"
  1758. },
  1759. "_hoverSprite": null,
  1760. "_pressedSprite": null,
  1761. "_disabledSprite": null,
  1762. "_duration": 0.1,
  1763. "_zoomScale": 1.2,
  1764. "_target": {
  1765. "__id__": 61
  1766. },
  1767. "checkEvents": [],
  1768. "_isChecked": true,
  1769. "_checkMark": {
  1770. "__id__": 65
  1771. },
  1772. "_id": ""
  1773. },
  1774. {
  1775. "__type__": "cc.CompPrefabInfo",
  1776. "fileId": "d3ovcrx1xND7tnBpP0kPy0"
  1777. },
  1778. {
  1779. "__type__": "ce662fwsSVPLKpmHx+KocFu",
  1780. "_name": "",
  1781. "_objFlags": 0,
  1782. "__editorExtras__": {},
  1783. "node": {
  1784. "__id__": 61
  1785. },
  1786. "_enabled": false,
  1787. "__prefab": {
  1788. "__id__": 75
  1789. },
  1790. "controller": false,
  1791. "watchPath": "AccountSetting.effectOn",
  1792. "componentName": "",
  1793. "componentProperty": "",
  1794. "refreshRate": 0.1,
  1795. "_id": ""
  1796. },
  1797. {
  1798. "__type__": "cc.CompPrefabInfo",
  1799. "fileId": "09sy2l53BESJY5EhZ4J1L0"
  1800. },
  1801. {
  1802. "__type__": "cc.PrefabInfo",
  1803. "root": {
  1804. "__id__": 1
  1805. },
  1806. "asset": {
  1807. "__id__": 0
  1808. },
  1809. "fileId": "be0VkUtpRDYbfnvX6gkAH9",
  1810. "instance": null,
  1811. "targetOverrides": null,
  1812. "nestedPrefabInstanceRoots": null
  1813. },
  1814. {
  1815. "__type__": "cc.Node",
  1816. "_name": "btn_vibrate",
  1817. "_objFlags": 0,
  1818. "__editorExtras__": {},
  1819. "_parent": {
  1820. "__id__": 12
  1821. },
  1822. "_children": [
  1823. {
  1824. "__id__": 78
  1825. }
  1826. ],
  1827. "_active": true,
  1828. "_components": [
  1829. {
  1830. "__id__": 84
  1831. },
  1832. {
  1833. "__id__": 86
  1834. },
  1835. {
  1836. "__id__": 88
  1837. },
  1838. {
  1839. "__id__": 90
  1840. }
  1841. ],
  1842. "_prefab": {
  1843. "__id__": 92
  1844. },
  1845. "_lpos": {
  1846. "__type__": "cc.Vec3",
  1847. "x": 238.9,
  1848. "y": 254.8,
  1849. "z": 0
  1850. },
  1851. "_lrot": {
  1852. "__type__": "cc.Quat",
  1853. "x": 0,
  1854. "y": 0,
  1855. "z": 0,
  1856. "w": 1
  1857. },
  1858. "_lscale": {
  1859. "__type__": "cc.Vec3",
  1860. "x": 1,
  1861. "y": 1,
  1862. "z": 1
  1863. },
  1864. "_mobility": 0,
  1865. "_layer": 33554432,
  1866. "_euler": {
  1867. "__type__": "cc.Vec3",
  1868. "x": 0,
  1869. "y": 0,
  1870. "z": 0
  1871. },
  1872. "_id": ""
  1873. },
  1874. {
  1875. "__type__": "cc.Node",
  1876. "_name": "Checkmark",
  1877. "_objFlags": 0,
  1878. "__editorExtras__": {},
  1879. "_parent": {
  1880. "__id__": 77
  1881. },
  1882. "_children": [],
  1883. "_active": true,
  1884. "_components": [
  1885. {
  1886. "__id__": 79
  1887. },
  1888. {
  1889. "__id__": 81
  1890. }
  1891. ],
  1892. "_prefab": {
  1893. "__id__": 83
  1894. },
  1895. "_lpos": {
  1896. "__type__": "cc.Vec3",
  1897. "x": 0,
  1898. "y": 0,
  1899. "z": 0
  1900. },
  1901. "_lrot": {
  1902. "__type__": "cc.Quat",
  1903. "x": 0,
  1904. "y": 0,
  1905. "z": 0,
  1906. "w": 1
  1907. },
  1908. "_lscale": {
  1909. "__type__": "cc.Vec3",
  1910. "x": 1,
  1911. "y": 1,
  1912. "z": 1
  1913. },
  1914. "_mobility": 0,
  1915. "_layer": 33554432,
  1916. "_euler": {
  1917. "__type__": "cc.Vec3",
  1918. "x": 0,
  1919. "y": 0,
  1920. "z": 0
  1921. },
  1922. "_id": ""
  1923. },
  1924. {
  1925. "__type__": "cc.UITransform",
  1926. "_name": "",
  1927. "_objFlags": 0,
  1928. "__editorExtras__": {},
  1929. "node": {
  1930. "__id__": 78
  1931. },
  1932. "_enabled": true,
  1933. "__prefab": {
  1934. "__id__": 80
  1935. },
  1936. "_contentSize": {
  1937. "__type__": "cc.Size",
  1938. "width": 177,
  1939. "height": 73
  1940. },
  1941. "_anchorPoint": {
  1942. "__type__": "cc.Vec2",
  1943. "x": 0.5,
  1944. "y": 0.5
  1945. },
  1946. "_id": ""
  1947. },
  1948. {
  1949. "__type__": "cc.CompPrefabInfo",
  1950. "fileId": "8eisNoQmdOgpEE/Isc7V0N"
  1951. },
  1952. {
  1953. "__type__": "cc.Sprite",
  1954. "_name": "",
  1955. "_objFlags": 0,
  1956. "__editorExtras__": {},
  1957. "node": {
  1958. "__id__": 78
  1959. },
  1960. "_enabled": true,
  1961. "__prefab": {
  1962. "__id__": 82
  1963. },
  1964. "_customMaterial": null,
  1965. "_srcBlendFactor": 2,
  1966. "_dstBlendFactor": 4,
  1967. "_color": {
  1968. "__type__": "cc.Color",
  1969. "r": 255,
  1970. "g": 255,
  1971. "b": 255,
  1972. "a": 255
  1973. },
  1974. "_spriteFrame": {
  1975. "__uuid__": "c5ede2a4-27f0-4752-a042-4bfb4e2de990@f9941",
  1976. "__expectedType__": "cc.SpriteFrame"
  1977. },
  1978. "_type": 0,
  1979. "_fillType": 0,
  1980. "_sizeMode": 0,
  1981. "_fillCenter": {
  1982. "__type__": "cc.Vec2",
  1983. "x": 0,
  1984. "y": 0
  1985. },
  1986. "_fillStart": 0,
  1987. "_fillRange": 0,
  1988. "_isTrimmedMode": true,
  1989. "_useGrayscale": false,
  1990. "_atlas": null,
  1991. "_id": ""
  1992. },
  1993. {
  1994. "__type__": "cc.CompPrefabInfo",
  1995. "fileId": "ac/Vopu3FKHLl5W9CP6+/4"
  1996. },
  1997. {
  1998. "__type__": "cc.PrefabInfo",
  1999. "root": {
  2000. "__id__": 1
  2001. },
  2002. "asset": {
  2003. "__id__": 0
  2004. },
  2005. "fileId": "d51MurmS9LQI6aWTTlDNYX",
  2006. "instance": null,
  2007. "targetOverrides": null,
  2008. "nestedPrefabInstanceRoots": null
  2009. },
  2010. {
  2011. "__type__": "cc.UITransform",
  2012. "_name": "",
  2013. "_objFlags": 0,
  2014. "__editorExtras__": {},
  2015. "node": {
  2016. "__id__": 77
  2017. },
  2018. "_enabled": true,
  2019. "__prefab": {
  2020. "__id__": 85
  2021. },
  2022. "_contentSize": {
  2023. "__type__": "cc.Size",
  2024. "width": 177,
  2025. "height": 73
  2026. },
  2027. "_anchorPoint": {
  2028. "__type__": "cc.Vec2",
  2029. "x": 0.5,
  2030. "y": 0.5
  2031. },
  2032. "_id": ""
  2033. },
  2034. {
  2035. "__type__": "cc.CompPrefabInfo",
  2036. "fileId": "e9o5ChlZNFXaVC3MU9QMJd"
  2037. },
  2038. {
  2039. "__type__": "cc.Sprite",
  2040. "_name": "",
  2041. "_objFlags": 0,
  2042. "__editorExtras__": {},
  2043. "node": {
  2044. "__id__": 77
  2045. },
  2046. "_enabled": true,
  2047. "__prefab": {
  2048. "__id__": 87
  2049. },
  2050. "_customMaterial": null,
  2051. "_srcBlendFactor": 2,
  2052. "_dstBlendFactor": 4,
  2053. "_color": {
  2054. "__type__": "cc.Color",
  2055. "r": 255,
  2056. "g": 255,
  2057. "b": 255,
  2058. "a": 255
  2059. },
  2060. "_spriteFrame": {
  2061. "__uuid__": "6d31ac9b-4330-4fc1-b422-44235daa77cf@f9941",
  2062. "__expectedType__": "cc.SpriteFrame"
  2063. },
  2064. "_type": 0,
  2065. "_fillType": 0,
  2066. "_sizeMode": 0,
  2067. "_fillCenter": {
  2068. "__type__": "cc.Vec2",
  2069. "x": 0,
  2070. "y": 0
  2071. },
  2072. "_fillStart": 0,
  2073. "_fillRange": 0,
  2074. "_isTrimmedMode": true,
  2075. "_useGrayscale": false,
  2076. "_atlas": null,
  2077. "_id": ""
  2078. },
  2079. {
  2080. "__type__": "cc.CompPrefabInfo",
  2081. "fileId": "8cnNt/nP9KNYltxDjBS4D1"
  2082. },
  2083. {
  2084. "__type__": "cc.Toggle",
  2085. "_name": "",
  2086. "_objFlags": 0,
  2087. "__editorExtras__": {},
  2088. "node": {
  2089. "__id__": 77
  2090. },
  2091. "_enabled": true,
  2092. "__prefab": {
  2093. "__id__": 89
  2094. },
  2095. "clickEvents": [],
  2096. "_interactable": true,
  2097. "_transition": 0,
  2098. "_normalColor": {
  2099. "__type__": "cc.Color",
  2100. "r": 214,
  2101. "g": 214,
  2102. "b": 214,
  2103. "a": 255
  2104. },
  2105. "_hoverColor": {
  2106. "__type__": "cc.Color",
  2107. "r": 211,
  2108. "g": 211,
  2109. "b": 211,
  2110. "a": 255
  2111. },
  2112. "_pressedColor": {
  2113. "__type__": "cc.Color",
  2114. "r": 255,
  2115. "g": 255,
  2116. "b": 255,
  2117. "a": 255
  2118. },
  2119. "_disabledColor": {
  2120. "__type__": "cc.Color",
  2121. "r": 124,
  2122. "g": 124,
  2123. "b": 124,
  2124. "a": 255
  2125. },
  2126. "_normalSprite": {
  2127. "__uuid__": "11bdc4b0-64a8-4eb7-a2a7-9fb9e233e977@f9941",
  2128. "__expectedType__": "cc.SpriteFrame"
  2129. },
  2130. "_hoverSprite": null,
  2131. "_pressedSprite": null,
  2132. "_disabledSprite": null,
  2133. "_duration": 0.1,
  2134. "_zoomScale": 1.2,
  2135. "_target": {
  2136. "__id__": 77
  2137. },
  2138. "checkEvents": [],
  2139. "_isChecked": true,
  2140. "_checkMark": {
  2141. "__id__": 81
  2142. },
  2143. "_id": ""
  2144. },
  2145. {
  2146. "__type__": "cc.CompPrefabInfo",
  2147. "fileId": "b4kfhKEEtG6JlE22O4QKDJ"
  2148. },
  2149. {
  2150. "__type__": "ce662fwsSVPLKpmHx+KocFu",
  2151. "_name": "",
  2152. "_objFlags": 0,
  2153. "__editorExtras__": {},
  2154. "node": {
  2155. "__id__": 77
  2156. },
  2157. "_enabled": false,
  2158. "__prefab": {
  2159. "__id__": 91
  2160. },
  2161. "controller": false,
  2162. "watchPath": "AccountSetting.vibrationOn",
  2163. "componentName": "",
  2164. "componentProperty": "",
  2165. "refreshRate": 0.1,
  2166. "_id": ""
  2167. },
  2168. {
  2169. "__type__": "cc.CompPrefabInfo",
  2170. "fileId": "40TcW0pqhJuIW1v70iHzOC"
  2171. },
  2172. {
  2173. "__type__": "cc.PrefabInfo",
  2174. "root": {
  2175. "__id__": 1
  2176. },
  2177. "asset": {
  2178. "__id__": 0
  2179. },
  2180. "fileId": "e6e+Vh0xdCQbhngl9J1pbv",
  2181. "instance": null,
  2182. "targetOverrides": null,
  2183. "nestedPrefabInstanceRoots": null
  2184. },
  2185. {
  2186. "__type__": "cc.Node",
  2187. "_name": "btn_sound",
  2188. "_objFlags": 0,
  2189. "__editorExtras__": {},
  2190. "_parent": {
  2191. "__id__": 12
  2192. },
  2193. "_children": [
  2194. {
  2195. "__id__": 94
  2196. }
  2197. ],
  2198. "_active": true,
  2199. "_components": [
  2200. {
  2201. "__id__": 100
  2202. },
  2203. {
  2204. "__id__": 102
  2205. },
  2206. {
  2207. "__id__": 104
  2208. },
  2209. {
  2210. "__id__": 106
  2211. }
  2212. ],
  2213. "_prefab": {
  2214. "__id__": 108
  2215. },
  2216. "_lpos": {
  2217. "__type__": "cc.Vec3",
  2218. "x": 238.9,
  2219. "y": -80.3,
  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": "Checkmark",
  2248. "_objFlags": 0,
  2249. "__editorExtras__": {},
  2250. "_parent": {
  2251. "__id__": 93
  2252. },
  2253. "_children": [],
  2254. "_active": true,
  2255. "_components": [
  2256. {
  2257. "__id__": 95
  2258. },
  2259. {
  2260. "__id__": 97
  2261. }
  2262. ],
  2263. "_prefab": {
  2264. "__id__": 99
  2265. },
  2266. "_lpos": {
  2267. "__type__": "cc.Vec3",
  2268. "x": 0,
  2269. "y": 0,
  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__": 94
  2302. },
  2303. "_enabled": true,
  2304. "__prefab": {
  2305. "__id__": 96
  2306. },
  2307. "_contentSize": {
  2308. "__type__": "cc.Size",
  2309. "width": 177,
  2310. "height": 73
  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": "952JeFUhNDdJGVlcOrLDVx"
  2322. },
  2323. {
  2324. "__type__": "cc.Sprite",
  2325. "_name": "",
  2326. "_objFlags": 0,
  2327. "__editorExtras__": {},
  2328. "node": {
  2329. "__id__": 94
  2330. },
  2331. "_enabled": true,
  2332. "__prefab": {
  2333. "__id__": 98
  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__": "c5ede2a4-27f0-4752-a042-4bfb4e2de990@f9941",
  2347. "__expectedType__": "cc.SpriteFrame"
  2348. },
  2349. "_type": 0,
  2350. "_fillType": 0,
  2351. "_sizeMode": 0,
  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": "96C4ZmDthBd4e3jW7l99bE"
  2367. },
  2368. {
  2369. "__type__": "cc.PrefabInfo",
  2370. "root": {
  2371. "__id__": 1
  2372. },
  2373. "asset": {
  2374. "__id__": 0
  2375. },
  2376. "fileId": "5bFeH/KvZDx7a1J3FyZJFb",
  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__": 93
  2388. },
  2389. "_enabled": true,
  2390. "__prefab": {
  2391. "__id__": 101
  2392. },
  2393. "_contentSize": {
  2394. "__type__": "cc.Size",
  2395. "width": 177,
  2396. "height": 73
  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": "03MTtKorNLOafH6hVrjlDC"
  2408. },
  2409. {
  2410. "__type__": "cc.Sprite",
  2411. "_name": "",
  2412. "_objFlags": 0,
  2413. "__editorExtras__": {},
  2414. "node": {
  2415. "__id__": 93
  2416. },
  2417. "_enabled": true,
  2418. "__prefab": {
  2419. "__id__": 103
  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__": "6d31ac9b-4330-4fc1-b422-44235daa77cf@f9941",
  2433. "__expectedType__": "cc.SpriteFrame"
  2434. },
  2435. "_type": 0,
  2436. "_fillType": 0,
  2437. "_sizeMode": 0,
  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": "14xUVrkPdNdp4r/l3EQeik"
  2453. },
  2454. {
  2455. "__type__": "cc.Toggle",
  2456. "_name": "",
  2457. "_objFlags": 0,
  2458. "__editorExtras__": {},
  2459. "node": {
  2460. "__id__": 93
  2461. },
  2462. "_enabled": true,
  2463. "__prefab": {
  2464. "__id__": 105
  2465. },
  2466. "clickEvents": [],
  2467. "_interactable": true,
  2468. "_transition": 0,
  2469. "_normalColor": {
  2470. "__type__": "cc.Color",
  2471. "r": 214,
  2472. "g": 214,
  2473. "b": 214,
  2474. "a": 255
  2475. },
  2476. "_hoverColor": {
  2477. "__type__": "cc.Color",
  2478. "r": 211,
  2479. "g": 211,
  2480. "b": 211,
  2481. "a": 255
  2482. },
  2483. "_pressedColor": {
  2484. "__type__": "cc.Color",
  2485. "r": 255,
  2486. "g": 255,
  2487. "b": 255,
  2488. "a": 255
  2489. },
  2490. "_disabledColor": {
  2491. "__type__": "cc.Color",
  2492. "r": 124,
  2493. "g": 124,
  2494. "b": 124,
  2495. "a": 255
  2496. },
  2497. "_normalSprite": {
  2498. "__uuid__": "11bdc4b0-64a8-4eb7-a2a7-9fb9e233e977@f9941",
  2499. "__expectedType__": "cc.SpriteFrame"
  2500. },
  2501. "_hoverSprite": null,
  2502. "_pressedSprite": null,
  2503. "_disabledSprite": null,
  2504. "_duration": 0.1,
  2505. "_zoomScale": 1.2,
  2506. "_target": {
  2507. "__id__": 93
  2508. },
  2509. "checkEvents": [],
  2510. "_isChecked": true,
  2511. "_checkMark": {
  2512. "__id__": 97
  2513. },
  2514. "_id": ""
  2515. },
  2516. {
  2517. "__type__": "cc.CompPrefabInfo",
  2518. "fileId": "a3C7i6S3FPMIXmcFmE2A2w"
  2519. },
  2520. {
  2521. "__type__": "ce662fwsSVPLKpmHx+KocFu",
  2522. "_name": "",
  2523. "_objFlags": 0,
  2524. "__editorExtras__": {},
  2525. "node": {
  2526. "__id__": 93
  2527. },
  2528. "_enabled": false,
  2529. "__prefab": {
  2530. "__id__": 107
  2531. },
  2532. "controller": false,
  2533. "watchPath": "AccountSetting.musicOn",
  2534. "componentName": "cc.Toggle",
  2535. "componentProperty": "isChecked",
  2536. "refreshRate": 0.1,
  2537. "_id": ""
  2538. },
  2539. {
  2540. "__type__": "cc.CompPrefabInfo",
  2541. "fileId": "28QtkYaBhB5YvtJ1SvmigI"
  2542. },
  2543. {
  2544. "__type__": "cc.PrefabInfo",
  2545. "root": {
  2546. "__id__": 1
  2547. },
  2548. "asset": {
  2549. "__id__": 0
  2550. },
  2551. "fileId": "10AJoHBR5FopQH70DV4tr2",
  2552. "instance": null,
  2553. "targetOverrides": null,
  2554. "nestedPrefabInstanceRoots": null
  2555. },
  2556. {
  2557. "__type__": "cc.UITransform",
  2558. "_name": "",
  2559. "_objFlags": 0,
  2560. "__editorExtras__": {},
  2561. "node": {
  2562. "__id__": 12
  2563. },
  2564. "_enabled": true,
  2565. "__prefab": {
  2566. "__id__": 110
  2567. },
  2568. "_contentSize": {
  2569. "__type__": "cc.Size",
  2570. "width": 935,
  2571. "height": 996
  2572. },
  2573. "_anchorPoint": {
  2574. "__type__": "cc.Vec2",
  2575. "x": 0.5,
  2576. "y": 0.5
  2577. },
  2578. "_id": ""
  2579. },
  2580. {
  2581. "__type__": "cc.CompPrefabInfo",
  2582. "fileId": "8e4Zm7oAVCNIrFZFe53fcA"
  2583. },
  2584. {
  2585. "__type__": "cc.Sprite",
  2586. "_name": "",
  2587. "_objFlags": 0,
  2588. "__editorExtras__": {},
  2589. "node": {
  2590. "__id__": 12
  2591. },
  2592. "_enabled": true,
  2593. "__prefab": {
  2594. "__id__": 112
  2595. },
  2596. "_customMaterial": null,
  2597. "_srcBlendFactor": 2,
  2598. "_dstBlendFactor": 4,
  2599. "_color": {
  2600. "__type__": "cc.Color",
  2601. "r": 255,
  2602. "g": 255,
  2603. "b": 255,
  2604. "a": 255
  2605. },
  2606. "_spriteFrame": {
  2607. "__uuid__": "6a31d0b4-26a6-4251-9418-b4f9e44f7401@f9941",
  2608. "__expectedType__": "cc.SpriteFrame"
  2609. },
  2610. "_type": 0,
  2611. "_fillType": 0,
  2612. "_sizeMode": 0,
  2613. "_fillCenter": {
  2614. "__type__": "cc.Vec2",
  2615. "x": 0,
  2616. "y": 0
  2617. },
  2618. "_fillStart": 0,
  2619. "_fillRange": 0,
  2620. "_isTrimmedMode": true,
  2621. "_useGrayscale": false,
  2622. "_atlas": null,
  2623. "_id": ""
  2624. },
  2625. {
  2626. "__type__": "cc.CompPrefabInfo",
  2627. "fileId": "4c++0TpsFOwoEzlBfHGP+K"
  2628. },
  2629. {
  2630. "__type__": "cc.Widget",
  2631. "_name": "",
  2632. "_objFlags": 0,
  2633. "__editorExtras__": {},
  2634. "node": {
  2635. "__id__": 12
  2636. },
  2637. "_enabled": true,
  2638. "__prefab": {
  2639. "__id__": 114
  2640. },
  2641. "_alignFlags": 18,
  2642. "_target": null,
  2643. "_left": 134.26,
  2644. "_right": 118.24,
  2645. "_top": 32.494,
  2646. "_bottom": 251.506,
  2647. "_horizontalCenter": 0,
  2648. "_verticalCenter": 0,
  2649. "_isAbsLeft": true,
  2650. "_isAbsRight": true,
  2651. "_isAbsTop": true,
  2652. "_isAbsBottom": true,
  2653. "_isAbsHorizontalCenter": true,
  2654. "_isAbsVerticalCenter": true,
  2655. "_originalWidth": 935,
  2656. "_originalHeight": 996,
  2657. "_alignMode": 2,
  2658. "_lockFlags": 0,
  2659. "_id": ""
  2660. },
  2661. {
  2662. "__type__": "cc.CompPrefabInfo",
  2663. "fileId": "02OeHtf2tCnb+hCbW222pH"
  2664. },
  2665. {
  2666. "__type__": "cc.PrefabInfo",
  2667. "root": {
  2668. "__id__": 1
  2669. },
  2670. "asset": {
  2671. "__id__": 0
  2672. },
  2673. "fileId": "baB5peP0pBWJIVeIb+iPnm",
  2674. "instance": null,
  2675. "targetOverrides": null,
  2676. "nestedPrefabInstanceRoots": null
  2677. },
  2678. {
  2679. "__type__": "cc.UITransform",
  2680. "_name": "",
  2681. "_objFlags": 0,
  2682. "__editorExtras__": {},
  2683. "node": {
  2684. "__id__": 1
  2685. },
  2686. "_enabled": true,
  2687. "__prefab": {
  2688. "__id__": 117
  2689. },
  2690. "_contentSize": {
  2691. "__type__": "cc.Size",
  2692. "width": 720,
  2693. "height": 1280
  2694. },
  2695. "_anchorPoint": {
  2696. "__type__": "cc.Vec2",
  2697. "x": 0.5,
  2698. "y": 0.5
  2699. },
  2700. "_id": ""
  2701. },
  2702. {
  2703. "__type__": "cc.CompPrefabInfo",
  2704. "fileId": "5464A4aApGvZPn52yhIkGT"
  2705. },
  2706. {
  2707. "__type__": "cc.Widget",
  2708. "_name": "",
  2709. "_objFlags": 0,
  2710. "__editorExtras__": {},
  2711. "node": {
  2712. "__id__": 1
  2713. },
  2714. "_enabled": true,
  2715. "__prefab": {
  2716. "__id__": 119
  2717. },
  2718. "_alignFlags": 45,
  2719. "_target": null,
  2720. "_left": 0,
  2721. "_right": 0,
  2722. "_top": 0,
  2723. "_bottom": 0,
  2724. "_horizontalCenter": 0,
  2725. "_verticalCenter": 0,
  2726. "_isAbsLeft": true,
  2727. "_isAbsRight": true,
  2728. "_isAbsTop": true,
  2729. "_isAbsBottom": true,
  2730. "_isAbsHorizontalCenter": true,
  2731. "_isAbsVerticalCenter": true,
  2732. "_originalWidth": 100,
  2733. "_originalHeight": 100,
  2734. "_alignMode": 2,
  2735. "_lockFlags": 0,
  2736. "_id": ""
  2737. },
  2738. {
  2739. "__type__": "cc.CompPrefabInfo",
  2740. "fileId": "0auOxws/5ANJdMeT92YPV1"
  2741. },
  2742. {
  2743. "__type__": "d07a7y63yVEiKG9ylYxBU+a",
  2744. "_name": "",
  2745. "_objFlags": 0,
  2746. "__editorExtras__": {},
  2747. "node": {
  2748. "__id__": 1
  2749. },
  2750. "_enabled": true,
  2751. "__prefab": {
  2752. "__id__": 121
  2753. },
  2754. "_id": ""
  2755. },
  2756. {
  2757. "__type__": "cc.CompPrefabInfo",
  2758. "fileId": "9c5nWm+59BgK/IY0440/y5"
  2759. },
  2760. {
  2761. "__type__": "cc.PrefabInfo",
  2762. "root": {
  2763. "__id__": 1
  2764. },
  2765. "asset": {
  2766. "__id__": 0
  2767. },
  2768. "fileId": "72lz5NW1xCBqssndVrmaO+",
  2769. "instance": null,
  2770. "targetOverrides": null
  2771. }
  2772. ]