Lv2.prefab 35 KB

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