buttomList.prefab 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "buttomList",
  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": "buttomList",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 28
  26. },
  27. {
  28. "__id__": 54
  29. }
  30. ],
  31. "_active": true,
  32. "_components": [
  33. {
  34. "__id__": 80
  35. },
  36. {
  37. "__id__": 82
  38. },
  39. {
  40. "__id__": 84
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 86
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": -563.848,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 1073741824,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "swapcolors",
  78. "_objFlags": 0,
  79. "__editorExtras__": {},
  80. "_parent": {
  81. "__id__": 1
  82. },
  83. "_children": [
  84. {
  85. "__id__": 3
  86. },
  87. {
  88. "__id__": 9
  89. }
  90. ],
  91. "_active": true,
  92. "_components": [
  93. {
  94. "__id__": 21
  95. },
  96. {
  97. "__id__": 23
  98. },
  99. {
  100. "__id__": 25
  101. }
  102. ],
  103. "_prefab": {
  104. "__id__": 27
  105. },
  106. "_lpos": {
  107. "__type__": "cc.Vec3",
  108. "x": -218.147,
  109. "y": 0,
  110. "z": 0
  111. },
  112. "_lrot": {
  113. "__type__": "cc.Quat",
  114. "x": 0,
  115. "y": 0,
  116. "z": 0,
  117. "w": 1
  118. },
  119. "_lscale": {
  120. "__type__": "cc.Vec3",
  121. "x": 1,
  122. "y": 1,
  123. "z": 1
  124. },
  125. "_mobility": 0,
  126. "_layer": 1073741824,
  127. "_euler": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_id": ""
  134. },
  135. {
  136. "__type__": "cc.Node",
  137. "_name": "dj 加时",
  138. "_objFlags": 0,
  139. "__editorExtras__": {},
  140. "_parent": {
  141. "__id__": 2
  142. },
  143. "_children": [],
  144. "_active": true,
  145. "_components": [
  146. {
  147. "__id__": 4
  148. },
  149. {
  150. "__id__": 6
  151. }
  152. ],
  153. "_prefab": {
  154. "__id__": 8
  155. },
  156. "_lpos": {
  157. "__type__": "cc.Vec3",
  158. "x": 0,
  159. "y": 0,
  160. "z": 0
  161. },
  162. "_lrot": {
  163. "__type__": "cc.Quat",
  164. "x": 0,
  165. "y": 0,
  166. "z": 0,
  167. "w": 1
  168. },
  169. "_lscale": {
  170. "__type__": "cc.Vec3",
  171. "x": 1,
  172. "y": 1,
  173. "z": 1
  174. },
  175. "_mobility": 0,
  176. "_layer": 1073741824,
  177. "_euler": {
  178. "__type__": "cc.Vec3",
  179. "x": 0,
  180. "y": 0,
  181. "z": 0
  182. },
  183. "_id": ""
  184. },
  185. {
  186. "__type__": "cc.UITransform",
  187. "_name": "",
  188. "_objFlags": 0,
  189. "__editorExtras__": {},
  190. "node": {
  191. "__id__": 3
  192. },
  193. "_enabled": true,
  194. "__prefab": {
  195. "__id__": 5
  196. },
  197. "_contentSize": {
  198. "__type__": "cc.Size",
  199. "width": 98,
  200. "height": 105
  201. },
  202. "_anchorPoint": {
  203. "__type__": "cc.Vec2",
  204. "x": 0.5,
  205. "y": 0.5
  206. },
  207. "_id": ""
  208. },
  209. {
  210. "__type__": "cc.CompPrefabInfo",
  211. "fileId": "c1obc5niVBQ5zlxU4mqOGp"
  212. },
  213. {
  214. "__type__": "cc.Sprite",
  215. "_name": "",
  216. "_objFlags": 0,
  217. "__editorExtras__": {},
  218. "node": {
  219. "__id__": 3
  220. },
  221. "_enabled": true,
  222. "__prefab": {
  223. "__id__": 7
  224. },
  225. "_customMaterial": null,
  226. "_srcBlendFactor": 2,
  227. "_dstBlendFactor": 4,
  228. "_color": {
  229. "__type__": "cc.Color",
  230. "r": 255,
  231. "g": 255,
  232. "b": 255,
  233. "a": 255
  234. },
  235. "_spriteFrame": {
  236. "__uuid__": "d47c0ea1-d334-40a0-bde6-f960e55bd8de@f9941",
  237. "__expectedType__": "cc.SpriteFrame"
  238. },
  239. "_type": 0,
  240. "_fillType": 0,
  241. "_sizeMode": 1,
  242. "_fillCenter": {
  243. "__type__": "cc.Vec2",
  244. "x": 0,
  245. "y": 0
  246. },
  247. "_fillStart": 0,
  248. "_fillRange": 0,
  249. "_isTrimmedMode": true,
  250. "_useGrayscale": false,
  251. "_atlas": null,
  252. "_id": ""
  253. },
  254. {
  255. "__type__": "cc.CompPrefabInfo",
  256. "fileId": "d4Ivgb4+NADb/7BB0rZEFO"
  257. },
  258. {
  259. "__type__": "cc.PrefabInfo",
  260. "root": {
  261. "__id__": 1
  262. },
  263. "asset": {
  264. "__id__": 0
  265. },
  266. "fileId": "7ebUdgFglIma2MviVrJtHm",
  267. "instance": null,
  268. "targetOverrides": null,
  269. "nestedPrefabInstanceRoots": null
  270. },
  271. {
  272. "__type__": "cc.Node",
  273. "_name": "椭圆 4",
  274. "_objFlags": 0,
  275. "__editorExtras__": {},
  276. "_parent": {
  277. "__id__": 2
  278. },
  279. "_children": [
  280. {
  281. "__id__": 10
  282. }
  283. ],
  284. "_active": true,
  285. "_components": [
  286. {
  287. "__id__": 16
  288. },
  289. {
  290. "__id__": 18
  291. }
  292. ],
  293. "_prefab": {
  294. "__id__": 20
  295. },
  296. "_lpos": {
  297. "__type__": "cc.Vec3",
  298. "x": 57.143,
  299. "y": -47.14200000000001,
  300. "z": 0
  301. },
  302. "_lrot": {
  303. "__type__": "cc.Quat",
  304. "x": 0,
  305. "y": 0,
  306. "z": 0,
  307. "w": 1
  308. },
  309. "_lscale": {
  310. "__type__": "cc.Vec3",
  311. "x": 1,
  312. "y": 1,
  313. "z": 1
  314. },
  315. "_mobility": 0,
  316. "_layer": 1073741824,
  317. "_euler": {
  318. "__type__": "cc.Vec3",
  319. "x": 0,
  320. "y": 0,
  321. "z": 0
  322. },
  323. "_id": ""
  324. },
  325. {
  326. "__type__": "cc.Node",
  327. "_name": "ad",
  328. "_objFlags": 0,
  329. "__editorExtras__": {},
  330. "_parent": {
  331. "__id__": 9
  332. },
  333. "_children": [],
  334. "_active": true,
  335. "_components": [
  336. {
  337. "__id__": 11
  338. },
  339. {
  340. "__id__": 13
  341. }
  342. ],
  343. "_prefab": {
  344. "__id__": 15
  345. },
  346. "_lpos": {
  347. "__type__": "cc.Vec3",
  348. "x": 0,
  349. "y": 0,
  350. "z": 0
  351. },
  352. "_lrot": {
  353. "__type__": "cc.Quat",
  354. "x": 0,
  355. "y": 0,
  356. "z": 0,
  357. "w": 1
  358. },
  359. "_lscale": {
  360. "__type__": "cc.Vec3",
  361. "x": 1,
  362. "y": 1,
  363. "z": 1
  364. },
  365. "_mobility": 0,
  366. "_layer": 1073741824,
  367. "_euler": {
  368. "__type__": "cc.Vec3",
  369. "x": 0,
  370. "y": 0,
  371. "z": 0
  372. },
  373. "_id": ""
  374. },
  375. {
  376. "__type__": "cc.UITransform",
  377. "_name": "",
  378. "_objFlags": 0,
  379. "__editorExtras__": {},
  380. "node": {
  381. "__id__": 10
  382. },
  383. "_enabled": true,
  384. "__prefab": {
  385. "__id__": 12
  386. },
  387. "_contentSize": {
  388. "__type__": "cc.Size",
  389. "width": 36,
  390. "height": 36
  391. },
  392. "_anchorPoint": {
  393. "__type__": "cc.Vec2",
  394. "x": 0.5,
  395. "y": 0.5
  396. },
  397. "_id": ""
  398. },
  399. {
  400. "__type__": "cc.CompPrefabInfo",
  401. "fileId": "e8F1l8T4BLqIJHGBYCT6cp"
  402. },
  403. {
  404. "__type__": "cc.Sprite",
  405. "_name": "",
  406. "_objFlags": 0,
  407. "__editorExtras__": {},
  408. "node": {
  409. "__id__": 10
  410. },
  411. "_enabled": true,
  412. "__prefab": {
  413. "__id__": 14
  414. },
  415. "_customMaterial": null,
  416. "_srcBlendFactor": 2,
  417. "_dstBlendFactor": 4,
  418. "_color": {
  419. "__type__": "cc.Color",
  420. "r": 255,
  421. "g": 255,
  422. "b": 255,
  423. "a": 255
  424. },
  425. "_spriteFrame": {
  426. "__uuid__": "b9a0087f-09e6-4bd6-8623-45d294d586c3@f9941",
  427. "__expectedType__": "cc.SpriteFrame"
  428. },
  429. "_type": 0,
  430. "_fillType": 0,
  431. "_sizeMode": 1,
  432. "_fillCenter": {
  433. "__type__": "cc.Vec2",
  434. "x": 0,
  435. "y": 0
  436. },
  437. "_fillStart": 0,
  438. "_fillRange": 0,
  439. "_isTrimmedMode": true,
  440. "_useGrayscale": false,
  441. "_atlas": null,
  442. "_id": ""
  443. },
  444. {
  445. "__type__": "cc.CompPrefabInfo",
  446. "fileId": "ffbYt7er1Ly7fogecwWBcV"
  447. },
  448. {
  449. "__type__": "cc.PrefabInfo",
  450. "root": {
  451. "__id__": 1
  452. },
  453. "asset": {
  454. "__id__": 0
  455. },
  456. "fileId": "5dNTbOr5pGS5P3msMUu2TF",
  457. "instance": null,
  458. "targetOverrides": null,
  459. "nestedPrefabInstanceRoots": null
  460. },
  461. {
  462. "__type__": "cc.UITransform",
  463. "_name": "",
  464. "_objFlags": 0,
  465. "__editorExtras__": {},
  466. "node": {
  467. "__id__": 9
  468. },
  469. "_enabled": true,
  470. "__prefab": {
  471. "__id__": 17
  472. },
  473. "_contentSize": {
  474. "__type__": "cc.Size",
  475. "width": 61,
  476. "height": 61
  477. },
  478. "_anchorPoint": {
  479. "__type__": "cc.Vec2",
  480. "x": 0.5,
  481. "y": 0.5
  482. },
  483. "_id": ""
  484. },
  485. {
  486. "__type__": "cc.CompPrefabInfo",
  487. "fileId": "6cxg+RRXtNvboLFkzxAZkC"
  488. },
  489. {
  490. "__type__": "cc.Sprite",
  491. "_name": "",
  492. "_objFlags": 0,
  493. "__editorExtras__": {},
  494. "node": {
  495. "__id__": 9
  496. },
  497. "_enabled": true,
  498. "__prefab": {
  499. "__id__": 19
  500. },
  501. "_customMaterial": null,
  502. "_srcBlendFactor": 2,
  503. "_dstBlendFactor": 4,
  504. "_color": {
  505. "__type__": "cc.Color",
  506. "r": 255,
  507. "g": 255,
  508. "b": 255,
  509. "a": 255
  510. },
  511. "_spriteFrame": {
  512. "__uuid__": "cf8630e3-cfb0-4e37-ad8f-521444f430db@f9941",
  513. "__expectedType__": "cc.SpriteFrame"
  514. },
  515. "_type": 0,
  516. "_fillType": 0,
  517. "_sizeMode": 1,
  518. "_fillCenter": {
  519. "__type__": "cc.Vec2",
  520. "x": 0,
  521. "y": 0
  522. },
  523. "_fillStart": 0,
  524. "_fillRange": 0,
  525. "_isTrimmedMode": true,
  526. "_useGrayscale": false,
  527. "_atlas": null,
  528. "_id": ""
  529. },
  530. {
  531. "__type__": "cc.CompPrefabInfo",
  532. "fileId": "d2QCpsbjxAX7bCNCKBbn5h"
  533. },
  534. {
  535. "__type__": "cc.PrefabInfo",
  536. "root": {
  537. "__id__": 1
  538. },
  539. "asset": {
  540. "__id__": 0
  541. },
  542. "fileId": "b9Z8j+bwdH7rc2IEEiLaqY",
  543. "instance": null,
  544. "targetOverrides": null,
  545. "nestedPrefabInstanceRoots": null
  546. },
  547. {
  548. "__type__": "cc.UITransform",
  549. "_name": "",
  550. "_objFlags": 0,
  551. "__editorExtras__": {},
  552. "node": {
  553. "__id__": 2
  554. },
  555. "_enabled": true,
  556. "__prefab": {
  557. "__id__": 22
  558. },
  559. "_contentSize": {
  560. "__type__": "cc.Size",
  561. "width": 157,
  562. "height": 157
  563. },
  564. "_anchorPoint": {
  565. "__type__": "cc.Vec2",
  566. "x": 0.5,
  567. "y": 0.5
  568. },
  569. "_id": ""
  570. },
  571. {
  572. "__type__": "cc.CompPrefabInfo",
  573. "fileId": "ach2mVe1JIaZK8GR6Lxz8J"
  574. },
  575. {
  576. "__type__": "cc.Sprite",
  577. "_name": "",
  578. "_objFlags": 0,
  579. "__editorExtras__": {},
  580. "node": {
  581. "__id__": 2
  582. },
  583. "_enabled": true,
  584. "__prefab": {
  585. "__id__": 24
  586. },
  587. "_customMaterial": null,
  588. "_srcBlendFactor": 2,
  589. "_dstBlendFactor": 4,
  590. "_color": {
  591. "__type__": "cc.Color",
  592. "r": 255,
  593. "g": 255,
  594. "b": 255,
  595. "a": 255
  596. },
  597. "_spriteFrame": {
  598. "__uuid__": "b445a90d-3a49-43f3-92f1-d669678afcb1@f9941",
  599. "__expectedType__": "cc.SpriteFrame"
  600. },
  601. "_type": 0,
  602. "_fillType": 0,
  603. "_sizeMode": 0,
  604. "_fillCenter": {
  605. "__type__": "cc.Vec2",
  606. "x": 0,
  607. "y": 0
  608. },
  609. "_fillStart": 0,
  610. "_fillRange": 0,
  611. "_isTrimmedMode": true,
  612. "_useGrayscale": false,
  613. "_atlas": null,
  614. "_id": ""
  615. },
  616. {
  617. "__type__": "cc.CompPrefabInfo",
  618. "fileId": "4f7YY9nBtLWImypARceoHW"
  619. },
  620. {
  621. "__type__": "cc.Button",
  622. "_name": "",
  623. "_objFlags": 0,
  624. "__editorExtras__": {},
  625. "node": {
  626. "__id__": 2
  627. },
  628. "_enabled": true,
  629. "__prefab": {
  630. "__id__": 26
  631. },
  632. "clickEvents": [],
  633. "_interactable": true,
  634. "_transition": 1,
  635. "_normalColor": {
  636. "__type__": "cc.Color",
  637. "r": 255,
  638. "g": 255,
  639. "b": 255,
  640. "a": 255
  641. },
  642. "_hoverColor": {
  643. "__type__": "cc.Color",
  644. "r": 211,
  645. "g": 211,
  646. "b": 211,
  647. "a": 255
  648. },
  649. "_pressedColor": {
  650. "__type__": "cc.Color",
  651. "r": 255,
  652. "g": 255,
  653. "b": 255,
  654. "a": 255
  655. },
  656. "_disabledColor": {
  657. "__type__": "cc.Color",
  658. "r": 124,
  659. "g": 124,
  660. "b": 124,
  661. "a": 255
  662. },
  663. "_normalSprite": null,
  664. "_hoverSprite": null,
  665. "_pressedSprite": null,
  666. "_disabledSprite": null,
  667. "_duration": 0.1,
  668. "_zoomScale": 1.2,
  669. "_target": {
  670. "__id__": 2
  671. },
  672. "_id": ""
  673. },
  674. {
  675. "__type__": "cc.CompPrefabInfo",
  676. "fileId": "f2e38lbT9JG7iEpla7WBAW"
  677. },
  678. {
  679. "__type__": "cc.PrefabInfo",
  680. "root": {
  681. "__id__": 1
  682. },
  683. "asset": {
  684. "__id__": 0
  685. },
  686. "fileId": "12k0lPyPZBEoGyWGDyb6KY",
  687. "instance": null,
  688. "targetOverrides": null,
  689. "nestedPrefabInstanceRoots": null
  690. },
  691. {
  692. "__type__": "cc.Node",
  693. "_name": "withdraw",
  694. "_objFlags": 0,
  695. "__editorExtras__": {},
  696. "_parent": {
  697. "__id__": 1
  698. },
  699. "_children": [
  700. {
  701. "__id__": 29
  702. },
  703. {
  704. "__id__": 35
  705. }
  706. ],
  707. "_active": true,
  708. "_components": [
  709. {
  710. "__id__": 47
  711. },
  712. {
  713. "__id__": 49
  714. },
  715. {
  716. "__id__": 51
  717. }
  718. ],
  719. "_prefab": {
  720. "__id__": 53
  721. },
  722. "_lpos": {
  723. "__type__": "cc.Vec3",
  724. "x": 0,
  725. "y": 0,
  726. "z": 0
  727. },
  728. "_lrot": {
  729. "__type__": "cc.Quat",
  730. "x": 0,
  731. "y": 0,
  732. "z": 0,
  733. "w": 1
  734. },
  735. "_lscale": {
  736. "__type__": "cc.Vec3",
  737. "x": 1,
  738. "y": 1,
  739. "z": 1
  740. },
  741. "_mobility": 0,
  742. "_layer": 1073741824,
  743. "_euler": {
  744. "__type__": "cc.Vec3",
  745. "x": 0,
  746. "y": 0,
  747. "z": 0
  748. },
  749. "_id": ""
  750. },
  751. {
  752. "__type__": "cc.Node",
  753. "_name": "dj 查看",
  754. "_objFlags": 0,
  755. "__editorExtras__": {},
  756. "_parent": {
  757. "__id__": 28
  758. },
  759. "_children": [],
  760. "_active": true,
  761. "_components": [
  762. {
  763. "__id__": 30
  764. },
  765. {
  766. "__id__": 32
  767. }
  768. ],
  769. "_prefab": {
  770. "__id__": 34
  771. },
  772. "_lpos": {
  773. "__type__": "cc.Vec3",
  774. "x": 0,
  775. "y": 0,
  776. "z": 0
  777. },
  778. "_lrot": {
  779. "__type__": "cc.Quat",
  780. "x": 0,
  781. "y": 0,
  782. "z": 0,
  783. "w": 1
  784. },
  785. "_lscale": {
  786. "__type__": "cc.Vec3",
  787. "x": 1,
  788. "y": 1,
  789. "z": 1
  790. },
  791. "_mobility": 0,
  792. "_layer": 1073741824,
  793. "_euler": {
  794. "__type__": "cc.Vec3",
  795. "x": 0,
  796. "y": 0,
  797. "z": 0
  798. },
  799. "_id": ""
  800. },
  801. {
  802. "__type__": "cc.UITransform",
  803. "_name": "",
  804. "_objFlags": 0,
  805. "__editorExtras__": {},
  806. "node": {
  807. "__id__": 29
  808. },
  809. "_enabled": true,
  810. "__prefab": {
  811. "__id__": 31
  812. },
  813. "_contentSize": {
  814. "__type__": "cc.Size",
  815. "width": 93,
  816. "height": 93
  817. },
  818. "_anchorPoint": {
  819. "__type__": "cc.Vec2",
  820. "x": 0.5,
  821. "y": 0.5
  822. },
  823. "_id": ""
  824. },
  825. {
  826. "__type__": "cc.CompPrefabInfo",
  827. "fileId": "aeHYUekCNFUYssUi9MUekR"
  828. },
  829. {
  830. "__type__": "cc.Sprite",
  831. "_name": "",
  832. "_objFlags": 0,
  833. "__editorExtras__": {},
  834. "node": {
  835. "__id__": 29
  836. },
  837. "_enabled": true,
  838. "__prefab": {
  839. "__id__": 33
  840. },
  841. "_customMaterial": null,
  842. "_srcBlendFactor": 2,
  843. "_dstBlendFactor": 4,
  844. "_color": {
  845. "__type__": "cc.Color",
  846. "r": 255,
  847. "g": 255,
  848. "b": 255,
  849. "a": 255
  850. },
  851. "_spriteFrame": {
  852. "__uuid__": "6487ee01-3877-4630-bd97-e07f82e598aa@f9941",
  853. "__expectedType__": "cc.SpriteFrame"
  854. },
  855. "_type": 0,
  856. "_fillType": 0,
  857. "_sizeMode": 1,
  858. "_fillCenter": {
  859. "__type__": "cc.Vec2",
  860. "x": 0,
  861. "y": 0
  862. },
  863. "_fillStart": 0,
  864. "_fillRange": 0,
  865. "_isTrimmedMode": true,
  866. "_useGrayscale": false,
  867. "_atlas": null,
  868. "_id": ""
  869. },
  870. {
  871. "__type__": "cc.CompPrefabInfo",
  872. "fileId": "d04qo330JK9oIibf7+h8kC"
  873. },
  874. {
  875. "__type__": "cc.PrefabInfo",
  876. "root": {
  877. "__id__": 1
  878. },
  879. "asset": {
  880. "__id__": 0
  881. },
  882. "fileId": "a5fW0sD5NFUoHetYmPvYRJ",
  883. "instance": null,
  884. "targetOverrides": null,
  885. "nestedPrefabInstanceRoots": null
  886. },
  887. {
  888. "__type__": "cc.Node",
  889. "_name": "椭圆 5",
  890. "_objFlags": 0,
  891. "__editorExtras__": {},
  892. "_parent": {
  893. "__id__": 28
  894. },
  895. "_children": [
  896. {
  897. "__id__": 36
  898. }
  899. ],
  900. "_active": true,
  901. "_components": [
  902. {
  903. "__id__": 42
  904. },
  905. {
  906. "__id__": 44
  907. }
  908. ],
  909. "_prefab": {
  910. "__id__": 46
  911. },
  912. "_lpos": {
  913. "__type__": "cc.Vec3",
  914. "x": 65.51999999999998,
  915. "y": -47.14200000000001,
  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": 1073741824,
  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": "ad",
  944. "_objFlags": 0,
  945. "__editorExtras__": {},
  946. "_parent": {
  947. "__id__": 35
  948. },
  949. "_children": [],
  950. "_active": true,
  951. "_components": [
  952. {
  953. "__id__": 37
  954. },
  955. {
  956. "__id__": 39
  957. }
  958. ],
  959. "_prefab": {
  960. "__id__": 41
  961. },
  962. "_lpos": {
  963. "__type__": "cc.Vec3",
  964. "x": 0,
  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": 1073741824,
  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__": 36
  998. },
  999. "_enabled": true,
  1000. "__prefab": {
  1001. "__id__": 38
  1002. },
  1003. "_contentSize": {
  1004. "__type__": "cc.Size",
  1005. "width": 36,
  1006. "height": 36
  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": "e539XN9xNMa5q/QG5epJ1/"
  1018. },
  1019. {
  1020. "__type__": "cc.Sprite",
  1021. "_name": "",
  1022. "_objFlags": 0,
  1023. "__editorExtras__": {},
  1024. "node": {
  1025. "__id__": 36
  1026. },
  1027. "_enabled": true,
  1028. "__prefab": {
  1029. "__id__": 40
  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__": "b9a0087f-09e6-4bd6-8623-45d294d586c3@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": "39h9kXI/FA+KjKia+DBZt2"
  1063. },
  1064. {
  1065. "__type__": "cc.PrefabInfo",
  1066. "root": {
  1067. "__id__": 1
  1068. },
  1069. "asset": {
  1070. "__id__": 0
  1071. },
  1072. "fileId": "8eItTxSsZLsp/wLRt8cF8I",
  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__": 35
  1084. },
  1085. "_enabled": true,
  1086. "__prefab": {
  1087. "__id__": 43
  1088. },
  1089. "_contentSize": {
  1090. "__type__": "cc.Size",
  1091. "width": 61,
  1092. "height": 61
  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": "c0lFbEb5hJxpUwjcpy+93M"
  1104. },
  1105. {
  1106. "__type__": "cc.Sprite",
  1107. "_name": "",
  1108. "_objFlags": 0,
  1109. "__editorExtras__": {},
  1110. "node": {
  1111. "__id__": 35
  1112. },
  1113. "_enabled": true,
  1114. "__prefab": {
  1115. "__id__": 45
  1116. },
  1117. "_customMaterial": null,
  1118. "_srcBlendFactor": 2,
  1119. "_dstBlendFactor": 4,
  1120. "_color": {
  1121. "__type__": "cc.Color",
  1122. "r": 255,
  1123. "g": 255,
  1124. "b": 255,
  1125. "a": 255
  1126. },
  1127. "_spriteFrame": {
  1128. "__uuid__": "cf8630e3-cfb0-4e37-ad8f-521444f430db@f9941",
  1129. "__expectedType__": "cc.SpriteFrame"
  1130. },
  1131. "_type": 0,
  1132. "_fillType": 0,
  1133. "_sizeMode": 1,
  1134. "_fillCenter": {
  1135. "__type__": "cc.Vec2",
  1136. "x": 0,
  1137. "y": 0
  1138. },
  1139. "_fillStart": 0,
  1140. "_fillRange": 0,
  1141. "_isTrimmedMode": true,
  1142. "_useGrayscale": false,
  1143. "_atlas": null,
  1144. "_id": ""
  1145. },
  1146. {
  1147. "__type__": "cc.CompPrefabInfo",
  1148. "fileId": "feNyhuGLFPV6perzFaWIw/"
  1149. },
  1150. {
  1151. "__type__": "cc.PrefabInfo",
  1152. "root": {
  1153. "__id__": 1
  1154. },
  1155. "asset": {
  1156. "__id__": 0
  1157. },
  1158. "fileId": "b6ni1dkqtM06HMULwVkXgS",
  1159. "instance": null,
  1160. "targetOverrides": null,
  1161. "nestedPrefabInstanceRoots": null
  1162. },
  1163. {
  1164. "__type__": "cc.UITransform",
  1165. "_name": "",
  1166. "_objFlags": 0,
  1167. "__editorExtras__": {},
  1168. "node": {
  1169. "__id__": 28
  1170. },
  1171. "_enabled": true,
  1172. "__prefab": {
  1173. "__id__": 48
  1174. },
  1175. "_contentSize": {
  1176. "__type__": "cc.Size",
  1177. "width": 157,
  1178. "height": 157
  1179. },
  1180. "_anchorPoint": {
  1181. "__type__": "cc.Vec2",
  1182. "x": 0.5,
  1183. "y": 0.5
  1184. },
  1185. "_id": ""
  1186. },
  1187. {
  1188. "__type__": "cc.CompPrefabInfo",
  1189. "fileId": "dbCJVXjn1LDqn8CinY8GTT"
  1190. },
  1191. {
  1192. "__type__": "cc.Sprite",
  1193. "_name": "",
  1194. "_objFlags": 0,
  1195. "__editorExtras__": {},
  1196. "node": {
  1197. "__id__": 28
  1198. },
  1199. "_enabled": true,
  1200. "__prefab": {
  1201. "__id__": 50
  1202. },
  1203. "_customMaterial": null,
  1204. "_srcBlendFactor": 2,
  1205. "_dstBlendFactor": 4,
  1206. "_color": {
  1207. "__type__": "cc.Color",
  1208. "r": 255,
  1209. "g": 255,
  1210. "b": 255,
  1211. "a": 255
  1212. },
  1213. "_spriteFrame": {
  1214. "__uuid__": "b445a90d-3a49-43f3-92f1-d669678afcb1@f9941",
  1215. "__expectedType__": "cc.SpriteFrame"
  1216. },
  1217. "_type": 0,
  1218. "_fillType": 0,
  1219. "_sizeMode": 0,
  1220. "_fillCenter": {
  1221. "__type__": "cc.Vec2",
  1222. "x": 0,
  1223. "y": 0
  1224. },
  1225. "_fillStart": 0,
  1226. "_fillRange": 0,
  1227. "_isTrimmedMode": true,
  1228. "_useGrayscale": false,
  1229. "_atlas": null,
  1230. "_id": ""
  1231. },
  1232. {
  1233. "__type__": "cc.CompPrefabInfo",
  1234. "fileId": "bcXofdMvRDnIHdZnIdx7Pn"
  1235. },
  1236. {
  1237. "__type__": "cc.Button",
  1238. "_name": "",
  1239. "_objFlags": 0,
  1240. "__editorExtras__": {},
  1241. "node": {
  1242. "__id__": 28
  1243. },
  1244. "_enabled": true,
  1245. "__prefab": {
  1246. "__id__": 52
  1247. },
  1248. "clickEvents": [],
  1249. "_interactable": true,
  1250. "_transition": 1,
  1251. "_normalColor": {
  1252. "__type__": "cc.Color",
  1253. "r": 255,
  1254. "g": 255,
  1255. "b": 255,
  1256. "a": 255
  1257. },
  1258. "_hoverColor": {
  1259. "__type__": "cc.Color",
  1260. "r": 211,
  1261. "g": 211,
  1262. "b": 211,
  1263. "a": 255
  1264. },
  1265. "_pressedColor": {
  1266. "__type__": "cc.Color",
  1267. "r": 255,
  1268. "g": 255,
  1269. "b": 255,
  1270. "a": 255
  1271. },
  1272. "_disabledColor": {
  1273. "__type__": "cc.Color",
  1274. "r": 124,
  1275. "g": 124,
  1276. "b": 124,
  1277. "a": 255
  1278. },
  1279. "_normalSprite": null,
  1280. "_hoverSprite": null,
  1281. "_pressedSprite": null,
  1282. "_disabledSprite": null,
  1283. "_duration": 0.1,
  1284. "_zoomScale": 1.2,
  1285. "_target": null,
  1286. "_id": ""
  1287. },
  1288. {
  1289. "__type__": "cc.CompPrefabInfo",
  1290. "fileId": "4eQrzwymFKmYAUvSVXHG0T"
  1291. },
  1292. {
  1293. "__type__": "cc.PrefabInfo",
  1294. "root": {
  1295. "__id__": 1
  1296. },
  1297. "asset": {
  1298. "__id__": 0
  1299. },
  1300. "fileId": "48B9kweeNBB51CTgo5NaOR",
  1301. "instance": null,
  1302. "targetOverrides": null,
  1303. "nestedPrefabInstanceRoots": null
  1304. },
  1305. {
  1306. "__type__": "cc.Node",
  1307. "_name": "addbottles",
  1308. "_objFlags": 0,
  1309. "__editorExtras__": {},
  1310. "_parent": {
  1311. "__id__": 1
  1312. },
  1313. "_children": [
  1314. {
  1315. "__id__": 55
  1316. },
  1317. {
  1318. "__id__": 61
  1319. }
  1320. ],
  1321. "_active": true,
  1322. "_components": [
  1323. {
  1324. "__id__": 73
  1325. },
  1326. {
  1327. "__id__": 75
  1328. },
  1329. {
  1330. "__id__": 77
  1331. }
  1332. ],
  1333. "_prefab": {
  1334. "__id__": 79
  1335. },
  1336. "_lpos": {
  1337. "__type__": "cc.Vec3",
  1338. "x": 229.515,
  1339. "y": 0,
  1340. "z": 0
  1341. },
  1342. "_lrot": {
  1343. "__type__": "cc.Quat",
  1344. "x": 0,
  1345. "y": 0,
  1346. "z": 0,
  1347. "w": 1
  1348. },
  1349. "_lscale": {
  1350. "__type__": "cc.Vec3",
  1351. "x": 1,
  1352. "y": 1,
  1353. "z": 1
  1354. },
  1355. "_mobility": 0,
  1356. "_layer": 1073741824,
  1357. "_euler": {
  1358. "__type__": "cc.Vec3",
  1359. "x": 0,
  1360. "y": 0,
  1361. "z": 0
  1362. },
  1363. "_id": ""
  1364. },
  1365. {
  1366. "__type__": "cc.Node",
  1367. "_name": "dj 消除",
  1368. "_objFlags": 0,
  1369. "__editorExtras__": {},
  1370. "_parent": {
  1371. "__id__": 54
  1372. },
  1373. "_children": [],
  1374. "_active": true,
  1375. "_components": [
  1376. {
  1377. "__id__": 56
  1378. },
  1379. {
  1380. "__id__": 58
  1381. }
  1382. ],
  1383. "_prefab": {
  1384. "__id__": 60
  1385. },
  1386. "_lpos": {
  1387. "__type__": "cc.Vec3",
  1388. "x": 0,
  1389. "y": 0,
  1390. "z": 0
  1391. },
  1392. "_lrot": {
  1393. "__type__": "cc.Quat",
  1394. "x": 0,
  1395. "y": 0,
  1396. "z": 0,
  1397. "w": 1
  1398. },
  1399. "_lscale": {
  1400. "__type__": "cc.Vec3",
  1401. "x": 1,
  1402. "y": 1,
  1403. "z": 1
  1404. },
  1405. "_mobility": 0,
  1406. "_layer": 1073741824,
  1407. "_euler": {
  1408. "__type__": "cc.Vec3",
  1409. "x": 0,
  1410. "y": 0,
  1411. "z": 0
  1412. },
  1413. "_id": ""
  1414. },
  1415. {
  1416. "__type__": "cc.UITransform",
  1417. "_name": "",
  1418. "_objFlags": 0,
  1419. "__editorExtras__": {},
  1420. "node": {
  1421. "__id__": 55
  1422. },
  1423. "_enabled": true,
  1424. "__prefab": {
  1425. "__id__": 57
  1426. },
  1427. "_contentSize": {
  1428. "__type__": "cc.Size",
  1429. "width": 109,
  1430. "height": 106
  1431. },
  1432. "_anchorPoint": {
  1433. "__type__": "cc.Vec2",
  1434. "x": 0.5,
  1435. "y": 0.5
  1436. },
  1437. "_id": ""
  1438. },
  1439. {
  1440. "__type__": "cc.CompPrefabInfo",
  1441. "fileId": "48Htx/40FHtqQWmWxgyxXJ"
  1442. },
  1443. {
  1444. "__type__": "cc.Sprite",
  1445. "_name": "",
  1446. "_objFlags": 0,
  1447. "__editorExtras__": {},
  1448. "node": {
  1449. "__id__": 55
  1450. },
  1451. "_enabled": true,
  1452. "__prefab": {
  1453. "__id__": 59
  1454. },
  1455. "_customMaterial": null,
  1456. "_srcBlendFactor": 2,
  1457. "_dstBlendFactor": 4,
  1458. "_color": {
  1459. "__type__": "cc.Color",
  1460. "r": 255,
  1461. "g": 255,
  1462. "b": 255,
  1463. "a": 255
  1464. },
  1465. "_spriteFrame": {
  1466. "__uuid__": "73ce3eeb-1bab-447f-8046-08914e698ab0@f9941",
  1467. "__expectedType__": "cc.SpriteFrame"
  1468. },
  1469. "_type": 0,
  1470. "_fillType": 0,
  1471. "_sizeMode": 1,
  1472. "_fillCenter": {
  1473. "__type__": "cc.Vec2",
  1474. "x": 0,
  1475. "y": 0
  1476. },
  1477. "_fillStart": 0,
  1478. "_fillRange": 0,
  1479. "_isTrimmedMode": true,
  1480. "_useGrayscale": false,
  1481. "_atlas": null,
  1482. "_id": ""
  1483. },
  1484. {
  1485. "__type__": "cc.CompPrefabInfo",
  1486. "fileId": "1dQxn3aiFHeaFivFZyO4UQ"
  1487. },
  1488. {
  1489. "__type__": "cc.PrefabInfo",
  1490. "root": {
  1491. "__id__": 1
  1492. },
  1493. "asset": {
  1494. "__id__": 0
  1495. },
  1496. "fileId": "aa5hWlY0hNmqc+OdKn5GbF",
  1497. "instance": null,
  1498. "targetOverrides": null,
  1499. "nestedPrefabInstanceRoots": null
  1500. },
  1501. {
  1502. "__type__": "cc.Node",
  1503. "_name": "椭圆 6",
  1504. "_objFlags": 0,
  1505. "__editorExtras__": {},
  1506. "_parent": {
  1507. "__id__": 54
  1508. },
  1509. "_children": [
  1510. {
  1511. "__id__": 62
  1512. }
  1513. ],
  1514. "_active": true,
  1515. "_components": [
  1516. {
  1517. "__id__": 68
  1518. },
  1519. {
  1520. "__id__": 70
  1521. }
  1522. ],
  1523. "_prefab": {
  1524. "__id__": 72
  1525. },
  1526. "_lpos": {
  1527. "__type__": "cc.Vec3",
  1528. "x": 64.10000000000002,
  1529. "y": -47.14200000000001,
  1530. "z": 0
  1531. },
  1532. "_lrot": {
  1533. "__type__": "cc.Quat",
  1534. "x": 0,
  1535. "y": 0,
  1536. "z": 0,
  1537. "w": 1
  1538. },
  1539. "_lscale": {
  1540. "__type__": "cc.Vec3",
  1541. "x": 1,
  1542. "y": 1,
  1543. "z": 1
  1544. },
  1545. "_mobility": 0,
  1546. "_layer": 1073741824,
  1547. "_euler": {
  1548. "__type__": "cc.Vec3",
  1549. "x": 0,
  1550. "y": 0,
  1551. "z": 0
  1552. },
  1553. "_id": ""
  1554. },
  1555. {
  1556. "__type__": "cc.Node",
  1557. "_name": "ad",
  1558. "_objFlags": 0,
  1559. "__editorExtras__": {},
  1560. "_parent": {
  1561. "__id__": 61
  1562. },
  1563. "_children": [],
  1564. "_active": true,
  1565. "_components": [
  1566. {
  1567. "__id__": 63
  1568. },
  1569. {
  1570. "__id__": 65
  1571. }
  1572. ],
  1573. "_prefab": {
  1574. "__id__": 67
  1575. },
  1576. "_lpos": {
  1577. "__type__": "cc.Vec3",
  1578. "x": 0,
  1579. "y": 0,
  1580. "z": 0
  1581. },
  1582. "_lrot": {
  1583. "__type__": "cc.Quat",
  1584. "x": 0,
  1585. "y": 0,
  1586. "z": 0,
  1587. "w": 1
  1588. },
  1589. "_lscale": {
  1590. "__type__": "cc.Vec3",
  1591. "x": 1,
  1592. "y": 1,
  1593. "z": 1
  1594. },
  1595. "_mobility": 0,
  1596. "_layer": 1073741824,
  1597. "_euler": {
  1598. "__type__": "cc.Vec3",
  1599. "x": 0,
  1600. "y": 0,
  1601. "z": 0
  1602. },
  1603. "_id": ""
  1604. },
  1605. {
  1606. "__type__": "cc.UITransform",
  1607. "_name": "",
  1608. "_objFlags": 0,
  1609. "__editorExtras__": {},
  1610. "node": {
  1611. "__id__": 62
  1612. },
  1613. "_enabled": true,
  1614. "__prefab": {
  1615. "__id__": 64
  1616. },
  1617. "_contentSize": {
  1618. "__type__": "cc.Size",
  1619. "width": 36,
  1620. "height": 36
  1621. },
  1622. "_anchorPoint": {
  1623. "__type__": "cc.Vec2",
  1624. "x": 0.5,
  1625. "y": 0.5
  1626. },
  1627. "_id": ""
  1628. },
  1629. {
  1630. "__type__": "cc.CompPrefabInfo",
  1631. "fileId": "ebzoIZf4VJd6CcR53jVGo2"
  1632. },
  1633. {
  1634. "__type__": "cc.Sprite",
  1635. "_name": "",
  1636. "_objFlags": 0,
  1637. "__editorExtras__": {},
  1638. "node": {
  1639. "__id__": 62
  1640. },
  1641. "_enabled": true,
  1642. "__prefab": {
  1643. "__id__": 66
  1644. },
  1645. "_customMaterial": null,
  1646. "_srcBlendFactor": 2,
  1647. "_dstBlendFactor": 4,
  1648. "_color": {
  1649. "__type__": "cc.Color",
  1650. "r": 255,
  1651. "g": 255,
  1652. "b": 255,
  1653. "a": 255
  1654. },
  1655. "_spriteFrame": {
  1656. "__uuid__": "b9a0087f-09e6-4bd6-8623-45d294d586c3@f9941",
  1657. "__expectedType__": "cc.SpriteFrame"
  1658. },
  1659. "_type": 0,
  1660. "_fillType": 0,
  1661. "_sizeMode": 1,
  1662. "_fillCenter": {
  1663. "__type__": "cc.Vec2",
  1664. "x": 0,
  1665. "y": 0
  1666. },
  1667. "_fillStart": 0,
  1668. "_fillRange": 0,
  1669. "_isTrimmedMode": true,
  1670. "_useGrayscale": false,
  1671. "_atlas": null,
  1672. "_id": ""
  1673. },
  1674. {
  1675. "__type__": "cc.CompPrefabInfo",
  1676. "fileId": "e1W4CZZPtKV6T9ib/Mf5dF"
  1677. },
  1678. {
  1679. "__type__": "cc.PrefabInfo",
  1680. "root": {
  1681. "__id__": 1
  1682. },
  1683. "asset": {
  1684. "__id__": 0
  1685. },
  1686. "fileId": "68zyKrzeZDCbRqdVHF36oD",
  1687. "instance": null,
  1688. "targetOverrides": null,
  1689. "nestedPrefabInstanceRoots": null
  1690. },
  1691. {
  1692. "__type__": "cc.UITransform",
  1693. "_name": "",
  1694. "_objFlags": 0,
  1695. "__editorExtras__": {},
  1696. "node": {
  1697. "__id__": 61
  1698. },
  1699. "_enabled": true,
  1700. "__prefab": {
  1701. "__id__": 69
  1702. },
  1703. "_contentSize": {
  1704. "__type__": "cc.Size",
  1705. "width": 61,
  1706. "height": 61
  1707. },
  1708. "_anchorPoint": {
  1709. "__type__": "cc.Vec2",
  1710. "x": 0.5,
  1711. "y": 0.5
  1712. },
  1713. "_id": ""
  1714. },
  1715. {
  1716. "__type__": "cc.CompPrefabInfo",
  1717. "fileId": "08Ojknz7BMFqIXiNP3ftCa"
  1718. },
  1719. {
  1720. "__type__": "cc.Sprite",
  1721. "_name": "",
  1722. "_objFlags": 0,
  1723. "__editorExtras__": {},
  1724. "node": {
  1725. "__id__": 61
  1726. },
  1727. "_enabled": true,
  1728. "__prefab": {
  1729. "__id__": 71
  1730. },
  1731. "_customMaterial": null,
  1732. "_srcBlendFactor": 2,
  1733. "_dstBlendFactor": 4,
  1734. "_color": {
  1735. "__type__": "cc.Color",
  1736. "r": 255,
  1737. "g": 255,
  1738. "b": 255,
  1739. "a": 255
  1740. },
  1741. "_spriteFrame": {
  1742. "__uuid__": "cf8630e3-cfb0-4e37-ad8f-521444f430db@f9941",
  1743. "__expectedType__": "cc.SpriteFrame"
  1744. },
  1745. "_type": 0,
  1746. "_fillType": 0,
  1747. "_sizeMode": 1,
  1748. "_fillCenter": {
  1749. "__type__": "cc.Vec2",
  1750. "x": 0,
  1751. "y": 0
  1752. },
  1753. "_fillStart": 0,
  1754. "_fillRange": 0,
  1755. "_isTrimmedMode": true,
  1756. "_useGrayscale": false,
  1757. "_atlas": null,
  1758. "_id": ""
  1759. },
  1760. {
  1761. "__type__": "cc.CompPrefabInfo",
  1762. "fileId": "78HrRfSXRNoZz82Duc0H9T"
  1763. },
  1764. {
  1765. "__type__": "cc.PrefabInfo",
  1766. "root": {
  1767. "__id__": 1
  1768. },
  1769. "asset": {
  1770. "__id__": 0
  1771. },
  1772. "fileId": "08B7fSXPJM/qvNafxUhopF",
  1773. "instance": null,
  1774. "targetOverrides": null,
  1775. "nestedPrefabInstanceRoots": null
  1776. },
  1777. {
  1778. "__type__": "cc.UITransform",
  1779. "_name": "",
  1780. "_objFlags": 0,
  1781. "__editorExtras__": {},
  1782. "node": {
  1783. "__id__": 54
  1784. },
  1785. "_enabled": true,
  1786. "__prefab": {
  1787. "__id__": 74
  1788. },
  1789. "_contentSize": {
  1790. "__type__": "cc.Size",
  1791. "width": 157,
  1792. "height": 157
  1793. },
  1794. "_anchorPoint": {
  1795. "__type__": "cc.Vec2",
  1796. "x": 0.5,
  1797. "y": 0.5
  1798. },
  1799. "_id": ""
  1800. },
  1801. {
  1802. "__type__": "cc.CompPrefabInfo",
  1803. "fileId": "7djC3rsVJPTrtlbFJEbjoL"
  1804. },
  1805. {
  1806. "__type__": "cc.Sprite",
  1807. "_name": "",
  1808. "_objFlags": 0,
  1809. "__editorExtras__": {},
  1810. "node": {
  1811. "__id__": 54
  1812. },
  1813. "_enabled": true,
  1814. "__prefab": {
  1815. "__id__": 76
  1816. },
  1817. "_customMaterial": null,
  1818. "_srcBlendFactor": 2,
  1819. "_dstBlendFactor": 4,
  1820. "_color": {
  1821. "__type__": "cc.Color",
  1822. "r": 255,
  1823. "g": 255,
  1824. "b": 255,
  1825. "a": 255
  1826. },
  1827. "_spriteFrame": {
  1828. "__uuid__": "b445a90d-3a49-43f3-92f1-d669678afcb1@f9941",
  1829. "__expectedType__": "cc.SpriteFrame"
  1830. },
  1831. "_type": 0,
  1832. "_fillType": 0,
  1833. "_sizeMode": 0,
  1834. "_fillCenter": {
  1835. "__type__": "cc.Vec2",
  1836. "x": 0,
  1837. "y": 0
  1838. },
  1839. "_fillStart": 0,
  1840. "_fillRange": 0,
  1841. "_isTrimmedMode": true,
  1842. "_useGrayscale": false,
  1843. "_atlas": null,
  1844. "_id": ""
  1845. },
  1846. {
  1847. "__type__": "cc.CompPrefabInfo",
  1848. "fileId": "07tUpmVCpMwIpH7+lpIs0i"
  1849. },
  1850. {
  1851. "__type__": "cc.Button",
  1852. "_name": "",
  1853. "_objFlags": 0,
  1854. "__editorExtras__": {},
  1855. "node": {
  1856. "__id__": 54
  1857. },
  1858. "_enabled": true,
  1859. "__prefab": {
  1860. "__id__": 78
  1861. },
  1862. "clickEvents": [],
  1863. "_interactable": true,
  1864. "_transition": 1,
  1865. "_normalColor": {
  1866. "__type__": "cc.Color",
  1867. "r": 255,
  1868. "g": 255,
  1869. "b": 255,
  1870. "a": 255
  1871. },
  1872. "_hoverColor": {
  1873. "__type__": "cc.Color",
  1874. "r": 211,
  1875. "g": 211,
  1876. "b": 211,
  1877. "a": 255
  1878. },
  1879. "_pressedColor": {
  1880. "__type__": "cc.Color",
  1881. "r": 255,
  1882. "g": 255,
  1883. "b": 255,
  1884. "a": 255
  1885. },
  1886. "_disabledColor": {
  1887. "__type__": "cc.Color",
  1888. "r": 124,
  1889. "g": 124,
  1890. "b": 124,
  1891. "a": 255
  1892. },
  1893. "_normalSprite": null,
  1894. "_hoverSprite": null,
  1895. "_pressedSprite": null,
  1896. "_disabledSprite": null,
  1897. "_duration": 0.1,
  1898. "_zoomScale": 1.2,
  1899. "_target": null,
  1900. "_id": ""
  1901. },
  1902. {
  1903. "__type__": "cc.CompPrefabInfo",
  1904. "fileId": "9bhUQDAu5MqZo88F88twS4"
  1905. },
  1906. {
  1907. "__type__": "cc.PrefabInfo",
  1908. "root": {
  1909. "__id__": 1
  1910. },
  1911. "asset": {
  1912. "__id__": 0
  1913. },
  1914. "fileId": "359wii4RND57/ZD8t0RYH5",
  1915. "instance": null,
  1916. "targetOverrides": null,
  1917. "nestedPrefabInstanceRoots": null
  1918. },
  1919. {
  1920. "__type__": "cc.UITransform",
  1921. "_name": "",
  1922. "_objFlags": 0,
  1923. "__editorExtras__": {},
  1924. "node": {
  1925. "__id__": 1
  1926. },
  1927. "_enabled": true,
  1928. "__prefab": {
  1929. "__id__": 81
  1930. },
  1931. "_contentSize": {
  1932. "__type__": "cc.Size",
  1933. "width": 750,
  1934. "height": 116.5079999999997
  1935. },
  1936. "_anchorPoint": {
  1937. "__type__": "cc.Vec2",
  1938. "x": 0.5,
  1939. "y": 0.5
  1940. },
  1941. "_id": ""
  1942. },
  1943. {
  1944. "__type__": "cc.CompPrefabInfo",
  1945. "fileId": "f3pbz9hdBPfJ3Fj1APAIut"
  1946. },
  1947. {
  1948. "__type__": "cc.Widget",
  1949. "_name": "",
  1950. "_objFlags": 0,
  1951. "__editorExtras__": {},
  1952. "node": {
  1953. "__id__": 1
  1954. },
  1955. "_enabled": true,
  1956. "__prefab": {
  1957. "__id__": 83
  1958. },
  1959. "_alignFlags": 45,
  1960. "_target": null,
  1961. "_left": 0,
  1962. "_right": 0,
  1963. "_top": 1322.594,
  1964. "_bottom": 194.89800000000025,
  1965. "_horizontalCenter": 0,
  1966. "_verticalCenter": 0,
  1967. "_isAbsLeft": true,
  1968. "_isAbsRight": true,
  1969. "_isAbsTop": true,
  1970. "_isAbsBottom": true,
  1971. "_isAbsHorizontalCenter": true,
  1972. "_isAbsVerticalCenter": true,
  1973. "_originalWidth": 100,
  1974. "_originalHeight": 100,
  1975. "_alignMode": 2,
  1976. "_lockFlags": 0,
  1977. "_id": ""
  1978. },
  1979. {
  1980. "__type__": "cc.CompPrefabInfo",
  1981. "fileId": "7aYiy+U4ZJd5OX0DHTO0wd"
  1982. },
  1983. {
  1984. "__type__": "9cd61TT9BFI4qmi+BmKZRb/",
  1985. "_name": "",
  1986. "_objFlags": 0,
  1987. "__editorExtras__": {},
  1988. "node": {
  1989. "__id__": 1
  1990. },
  1991. "_enabled": true,
  1992. "__prefab": {
  1993. "__id__": 85
  1994. },
  1995. "swapcolors": {
  1996. "__id__": 2
  1997. },
  1998. "withdraw": {
  1999. "__id__": 28
  2000. },
  2001. "addbottles": {
  2002. "__id__": 54
  2003. },
  2004. "_id": ""
  2005. },
  2006. {
  2007. "__type__": "cc.CompPrefabInfo",
  2008. "fileId": "275xJOwCVHc4tFQJMTPBnx"
  2009. },
  2010. {
  2011. "__type__": "cc.PrefabInfo",
  2012. "root": {
  2013. "__id__": 1
  2014. },
  2015. "asset": {
  2016. "__id__": 0
  2017. },
  2018. "fileId": "d4crDzQZ5KXKE2ANz1Wat1",
  2019. "instance": null,
  2020. "targetOverrides": null
  2021. }
  2022. ]