card_huode.prefab 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "card_huode",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 8
  25. },
  26. {
  27. "__id__": 11
  28. },
  29. {
  30. "__id__": 15
  31. },
  32. {
  33. "__id__": 19
  34. }
  35. ],
  36. "_active": true,
  37. "_components": [],
  38. "_prefab": {
  39. "__id__": 49
  40. },
  41. "_opacity": 255,
  42. "_color": {
  43. "__type__": "cc.Color",
  44. "r": 255,
  45. "g": 255,
  46. "b": 255,
  47. "a": 255
  48. },
  49. "_contentSize": {
  50. "__type__": "cc.Size",
  51. "width": 0,
  52. "height": 0
  53. },
  54. "_anchorPoint": {
  55. "__type__": "cc.Vec2",
  56. "x": 0.5,
  57. "y": 0.5
  58. },
  59. "_trs": {
  60. "__type__": "TypedArray",
  61. "ctor": "Float64Array",
  62. "array": [
  63. 0,
  64. 0,
  65. 0,
  66. 0,
  67. 0,
  68. 0,
  69. 1,
  70. 1,
  71. 1,
  72. 1
  73. ]
  74. },
  75. "_eulerAngles": {
  76. "__type__": "cc.Vec3",
  77. "x": 0,
  78. "y": 0,
  79. "z": 0
  80. },
  81. "_skewX": 0,
  82. "_skewY": 0,
  83. "_is3DNode": false,
  84. "_groupIndex": 0,
  85. "groupIndex": 0,
  86. "_id": ""
  87. },
  88. {
  89. "__type__": "cc.Node",
  90. "_name": "New Sprite",
  91. "_objFlags": 0,
  92. "_parent": {
  93. "__id__": 1
  94. },
  95. "_children": [],
  96. "_active": true,
  97. "_components": [
  98. {
  99. "__id__": 3
  100. },
  101. {
  102. "__id__": 4
  103. },
  104. {
  105. "__id__": 5
  106. }
  107. ],
  108. "_prefab": {
  109. "__id__": 7
  110. },
  111. "_opacity": 150,
  112. "_color": {
  113. "__type__": "cc.Color",
  114. "r": 0,
  115. "g": 0,
  116. "b": 0,
  117. "a": 255
  118. },
  119. "_contentSize": {
  120. "__type__": "cc.Size",
  121. "width": 1280,
  122. "height": 720
  123. },
  124. "_anchorPoint": {
  125. "__type__": "cc.Vec2",
  126. "x": 0.5,
  127. "y": 0.5
  128. },
  129. "_trs": {
  130. "__type__": "TypedArray",
  131. "ctor": "Float64Array",
  132. "array": [
  133. 0,
  134. 0,
  135. 0,
  136. 0,
  137. 0,
  138. 0,
  139. 1,
  140. 1,
  141. 1,
  142. 1
  143. ]
  144. },
  145. "_eulerAngles": {
  146. "__type__": "cc.Vec3",
  147. "x": 0,
  148. "y": 0,
  149. "z": 0
  150. },
  151. "_skewX": 0,
  152. "_skewY": 0,
  153. "_is3DNode": false,
  154. "_groupIndex": 0,
  155. "groupIndex": 0,
  156. "_id": ""
  157. },
  158. {
  159. "__type__": "cc.Sprite",
  160. "_name": "",
  161. "_objFlags": 0,
  162. "node": {
  163. "__id__": 2
  164. },
  165. "_enabled": true,
  166. "_materials": [
  167. {
  168. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  169. }
  170. ],
  171. "_srcBlendFactor": 770,
  172. "_dstBlendFactor": 771,
  173. "_spriteFrame": {
  174. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  175. },
  176. "_type": 0,
  177. "_sizeMode": 0,
  178. "_fillType": 0,
  179. "_fillCenter": {
  180. "__type__": "cc.Vec2",
  181. "x": 0,
  182. "y": 0
  183. },
  184. "_fillStart": 0,
  185. "_fillRange": 0,
  186. "_isTrimmedMode": true,
  187. "_atlas": null,
  188. "_id": ""
  189. },
  190. {
  191. "__type__": "50926/BsyZKHYMN6tib9fNS",
  192. "_name": "",
  193. "_objFlags": 0,
  194. "node": {
  195. "__id__": 2
  196. },
  197. "_enabled": true,
  198. "_id": ""
  199. },
  200. {
  201. "__type__": "cc.Button",
  202. "_name": "",
  203. "_objFlags": 0,
  204. "node": {
  205. "__id__": 2
  206. },
  207. "_enabled": true,
  208. "_normalMaterial": null,
  209. "_grayMaterial": null,
  210. "duration": 0.1,
  211. "zoomScale": 1.2,
  212. "clickEvents": [
  213. {
  214. "__id__": 6
  215. }
  216. ],
  217. "_N$interactable": true,
  218. "_N$enableAutoGrayEffect": false,
  219. "_N$transition": 0,
  220. "transition": 0,
  221. "_N$normalColor": {
  222. "__type__": "cc.Color",
  223. "r": 255,
  224. "g": 255,
  225. "b": 255,
  226. "a": 255
  227. },
  228. "_N$pressedColor": {
  229. "__type__": "cc.Color",
  230. "r": 211,
  231. "g": 211,
  232. "b": 211,
  233. "a": 255
  234. },
  235. "pressedColor": {
  236. "__type__": "cc.Color",
  237. "r": 211,
  238. "g": 211,
  239. "b": 211,
  240. "a": 255
  241. },
  242. "_N$hoverColor": {
  243. "__type__": "cc.Color",
  244. "r": 255,
  245. "g": 255,
  246. "b": 255,
  247. "a": 255
  248. },
  249. "hoverColor": {
  250. "__type__": "cc.Color",
  251. "r": 255,
  252. "g": 255,
  253. "b": 255,
  254. "a": 255
  255. },
  256. "_N$disabledColor": {
  257. "__type__": "cc.Color",
  258. "r": 124,
  259. "g": 124,
  260. "b": 124,
  261. "a": 255
  262. },
  263. "_N$normalSprite": null,
  264. "_N$pressedSprite": null,
  265. "pressedSprite": null,
  266. "_N$hoverSprite": null,
  267. "hoverSprite": null,
  268. "_N$disabledSprite": null,
  269. "_N$target": null,
  270. "_id": ""
  271. },
  272. {
  273. "__type__": "cc.ClickEvent",
  274. "target": {
  275. "__id__": 1
  276. },
  277. "component": "",
  278. "_componentId": "338b5cedzdI9o1CEe0eo4ZO",
  279. "handler": "exitDistroy",
  280. "customEventData": ""
  281. },
  282. {
  283. "__type__": "cc.PrefabInfo",
  284. "root": {
  285. "__id__": 1
  286. },
  287. "asset": {
  288. "__uuid__": "2c02ea65-8868-4914-a903-4eca5c70babd"
  289. },
  290. "fileId": "d28dhUAW9N9o4HxN8BFTNa",
  291. "sync": false
  292. },
  293. {
  294. "__type__": "cc.Node",
  295. "_name": "box_twinkle",
  296. "_objFlags": 0,
  297. "_parent": {
  298. "__id__": 1
  299. },
  300. "_children": [],
  301. "_active": true,
  302. "_components": [
  303. {
  304. "__id__": 9
  305. }
  306. ],
  307. "_prefab": {
  308. "__id__": 10
  309. },
  310. "_opacity": 100,
  311. "_color": {
  312. "__type__": "cc.Color",
  313. "r": 255,
  314. "g": 255,
  315. "b": 255,
  316. "a": 255
  317. },
  318. "_contentSize": {
  319. "__type__": "cc.Size",
  320. "width": 0,
  321. "height": 0
  322. },
  323. "_anchorPoint": {
  324. "__type__": "cc.Vec2",
  325. "x": 0.5,
  326. "y": 0.5
  327. },
  328. "_trs": {
  329. "__type__": "TypedArray",
  330. "ctor": "Float64Array",
  331. "array": [
  332. 0,
  333. 0,
  334. 0,
  335. 0,
  336. 0,
  337. 0,
  338. 1,
  339. 2,
  340. 2,
  341. 2
  342. ]
  343. },
  344. "_eulerAngles": {
  345. "__type__": "cc.Vec3",
  346. "x": 0,
  347. "y": 0,
  348. "z": 0
  349. },
  350. "_skewX": 0,
  351. "_skewY": 0,
  352. "_is3DNode": false,
  353. "_groupIndex": 0,
  354. "groupIndex": 0,
  355. "_id": ""
  356. },
  357. {
  358. "__type__": "sp.Skeleton",
  359. "_name": "",
  360. "_objFlags": 0,
  361. "node": {
  362. "__id__": 8
  363. },
  364. "_enabled": true,
  365. "_materials": [
  366. {
  367. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  368. }
  369. ],
  370. "paused": false,
  371. "defaultSkin": "default",
  372. "defaultAnimation": "animation_30105_down",
  373. "_preCacheMode": 0,
  374. "_cacheMode": 0,
  375. "loop": true,
  376. "premultipliedAlpha": true,
  377. "timeScale": 1,
  378. "_accTime": 0,
  379. "_playCount": 0,
  380. "_frameCache": null,
  381. "_curFrame": null,
  382. "_skeletonCache": null,
  383. "_animationName": "animation_30105_down",
  384. "_animationQueue": [],
  385. "_headAniInfo": null,
  386. "_playTimes": 0,
  387. "_isAniComplete": true,
  388. "_N$skeletonData": {
  389. "__uuid__": "f9c7ce20-f628-4eaf-86ae-63ae2c0cd30f"
  390. },
  391. "_N$_defaultCacheMode": 0,
  392. "_N$debugSlots": false,
  393. "_N$debugBones": false,
  394. "_N$debugMesh": false,
  395. "_N$useTint": false,
  396. "_N$enableBatch": false,
  397. "_id": ""
  398. },
  399. {
  400. "__type__": "cc.PrefabInfo",
  401. "root": {
  402. "__id__": 1
  403. },
  404. "asset": {
  405. "__uuid__": "2c02ea65-8868-4914-a903-4eca5c70babd"
  406. },
  407. "fileId": "b1FWUTbdFL0LhAQAJqRnF7",
  408. "sync": false
  409. },
  410. {
  411. "__type__": "cc.Node",
  412. "_name": "New Label",
  413. "_objFlags": 0,
  414. "_parent": {
  415. "__id__": 1
  416. },
  417. "_children": [],
  418. "_active": true,
  419. "_components": [
  420. {
  421. "__id__": 12
  422. },
  423. {
  424. "__id__": 13
  425. }
  426. ],
  427. "_prefab": {
  428. "__id__": 14
  429. },
  430. "_opacity": 255,
  431. "_color": {
  432. "__type__": "cc.Color",
  433. "r": 255,
  434. "g": 251,
  435. "b": 202,
  436. "a": 255
  437. },
  438. "_contentSize": {
  439. "__type__": "cc.Size",
  440. "width": 204,
  441. "height": 67
  442. },
  443. "_anchorPoint": {
  444. "__type__": "cc.Vec2",
  445. "x": 0.5,
  446. "y": 0.5
  447. },
  448. "_trs": {
  449. "__type__": "TypedArray",
  450. "ctor": "Float64Array",
  451. "array": [
  452. 0,
  453. 292.817,
  454. 0,
  455. 0,
  456. 0,
  457. 0,
  458. 1,
  459. 1,
  460. 1,
  461. 1
  462. ]
  463. },
  464. "_eulerAngles": {
  465. "__type__": "cc.Vec3",
  466. "x": 0,
  467. "y": 0,
  468. "z": 0
  469. },
  470. "_skewX": 0,
  471. "_skewY": 0,
  472. "_is3DNode": false,
  473. "_groupIndex": 0,
  474. "groupIndex": 0,
  475. "_id": ""
  476. },
  477. {
  478. "__type__": "cc.Label",
  479. "_name": "",
  480. "_objFlags": 0,
  481. "node": {
  482. "__id__": 11
  483. },
  484. "_enabled": true,
  485. "_materials": [
  486. {
  487. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  488. }
  489. ],
  490. "_srcBlendFactor": 770,
  491. "_dstBlendFactor": 771,
  492. "_string": "获得神卡",
  493. "_N$string": "获得神卡",
  494. "_fontSize": 50,
  495. "_lineHeight": 50,
  496. "_enableWrapText": true,
  497. "_N$file": {
  498. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  499. },
  500. "_isSystemFontUsed": false,
  501. "_spacingX": 0,
  502. "_batchAsBitmap": false,
  503. "_styleFlags": 0,
  504. "_underlineHeight": 0,
  505. "_N$horizontalAlign": 1,
  506. "_N$verticalAlign": 1,
  507. "_N$fontFamily": "Arial",
  508. "_N$overflow": 0,
  509. "_N$cacheMode": 0,
  510. "_id": ""
  511. },
  512. {
  513. "__type__": "cc.LabelOutline",
  514. "_name": "",
  515. "_objFlags": 0,
  516. "node": {
  517. "__id__": 11
  518. },
  519. "_enabled": true,
  520. "_color": {
  521. "__type__": "cc.Color",
  522. "r": 80,
  523. "g": 64,
  524. "b": 0,
  525. "a": 255
  526. },
  527. "_width": 2,
  528. "_id": ""
  529. },
  530. {
  531. "__type__": "cc.PrefabInfo",
  532. "root": {
  533. "__id__": 1
  534. },
  535. "asset": {
  536. "__uuid__": "2c02ea65-8868-4914-a903-4eca5c70babd"
  537. },
  538. "fileId": "559x1fP+hFa5VMEZsihFyA",
  539. "sync": false
  540. },
  541. {
  542. "__type__": "cc.Node",
  543. "_name": "New Label",
  544. "_objFlags": 0,
  545. "_parent": {
  546. "__id__": 1
  547. },
  548. "_children": [],
  549. "_active": true,
  550. "_components": [
  551. {
  552. "__id__": 16
  553. },
  554. {
  555. "__id__": 17
  556. }
  557. ],
  558. "_prefab": {
  559. "__id__": 18
  560. },
  561. "_opacity": 255,
  562. "_color": {
  563. "__type__": "cc.Color",
  564. "r": 255,
  565. "g": 255,
  566. "b": 255,
  567. "a": 255
  568. },
  569. "_contentSize": {
  570. "__type__": "cc.Size",
  571. "width": 141.93,
  572. "height": 67
  573. },
  574. "_anchorPoint": {
  575. "__type__": "cc.Vec2",
  576. "x": 0.5,
  577. "y": 0.5
  578. },
  579. "_trs": {
  580. "__type__": "TypedArray",
  581. "ctor": "Float64Array",
  582. "array": [
  583. 0,
  584. 232.313,
  585. 0,
  586. 0,
  587. 0,
  588. 0,
  589. 1,
  590. 1,
  591. 1,
  592. 1
  593. ]
  594. },
  595. "_eulerAngles": {
  596. "__type__": "cc.Vec3",
  597. "x": 0,
  598. "y": 0,
  599. "z": 0
  600. },
  601. "_skewX": 0,
  602. "_skewY": 0,
  603. "_is3DNode": false,
  604. "_groupIndex": 0,
  605. "groupIndex": 0,
  606. "_id": ""
  607. },
  608. {
  609. "__type__": "cc.Label",
  610. "_name": "",
  611. "_objFlags": 0,
  612. "node": {
  613. "__id__": 15
  614. },
  615. "_enabled": true,
  616. "_materials": [
  617. {
  618. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  619. }
  620. ],
  621. "_srcBlendFactor": 770,
  622. "_dstBlendFactor": 771,
  623. "_string": "雷神-托尔",
  624. "_N$string": "雷神-托尔",
  625. "_fontSize": 30,
  626. "_lineHeight": 50,
  627. "_enableWrapText": true,
  628. "_N$file": {
  629. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  630. },
  631. "_isSystemFontUsed": false,
  632. "_spacingX": 0,
  633. "_batchAsBitmap": false,
  634. "_styleFlags": 0,
  635. "_underlineHeight": 0,
  636. "_N$horizontalAlign": 1,
  637. "_N$verticalAlign": 1,
  638. "_N$fontFamily": "Arial",
  639. "_N$overflow": 0,
  640. "_N$cacheMode": 0,
  641. "_id": ""
  642. },
  643. {
  644. "__type__": "cc.LabelOutline",
  645. "_name": "",
  646. "_objFlags": 0,
  647. "node": {
  648. "__id__": 15
  649. },
  650. "_enabled": true,
  651. "_color": {
  652. "__type__": "cc.Color",
  653. "r": 80,
  654. "g": 64,
  655. "b": 0,
  656. "a": 255
  657. },
  658. "_width": 2,
  659. "_id": ""
  660. },
  661. {
  662. "__type__": "cc.PrefabInfo",
  663. "root": {
  664. "__id__": 1
  665. },
  666. "asset": {
  667. "__uuid__": "2c02ea65-8868-4914-a903-4eca5c70babd"
  668. },
  669. "fileId": "84yJjJaXtPRpbwAt0BbFBH",
  670. "sync": false
  671. },
  672. {
  673. "__type__": "cc.Node",
  674. "_name": "card_view",
  675. "_objFlags": 0,
  676. "_parent": {
  677. "__id__": 1
  678. },
  679. "_children": [
  680. {
  681. "__id__": 20
  682. },
  683. {
  684. "__id__": 26
  685. }
  686. ],
  687. "_active": true,
  688. "_components": [
  689. {
  690. "__id__": 44
  691. },
  692. {
  693. "__id__": 45
  694. },
  695. {
  696. "__id__": 47
  697. }
  698. ],
  699. "_prefab": {
  700. "__id__": 48
  701. },
  702. "_opacity": 255,
  703. "_color": {
  704. "__type__": "cc.Color",
  705. "r": 255,
  706. "g": 255,
  707. "b": 255,
  708. "a": 255
  709. },
  710. "_contentSize": {
  711. "__type__": "cc.Size",
  712. "width": 210,
  713. "height": 370
  714. },
  715. "_anchorPoint": {
  716. "__type__": "cc.Vec2",
  717. "x": 0.5,
  718. "y": 0.5
  719. },
  720. "_trs": {
  721. "__type__": "TypedArray",
  722. "ctor": "Float64Array",
  723. "array": [
  724. 0,
  725. 27.943,
  726. 0,
  727. 0,
  728. 0,
  729. 0,
  730. 1,
  731. 1,
  732. 1,
  733. 0
  734. ]
  735. },
  736. "_eulerAngles": {
  737. "__type__": "cc.Vec3",
  738. "x": 0,
  739. "y": 0,
  740. "z": 0
  741. },
  742. "_skewX": 0,
  743. "_skewY": 0,
  744. "_is3DNode": false,
  745. "_groupIndex": 0,
  746. "groupIndex": 0,
  747. "_id": ""
  748. },
  749. {
  750. "__type__": "cc.Node",
  751. "_name": "New Sprite",
  752. "_objFlags": 0,
  753. "_parent": {
  754. "__id__": 19
  755. },
  756. "_children": [
  757. {
  758. "__id__": 21
  759. }
  760. ],
  761. "_active": true,
  762. "_components": [
  763. {
  764. "__id__": 24
  765. }
  766. ],
  767. "_prefab": {
  768. "__id__": 25
  769. },
  770. "_opacity": 255,
  771. "_color": {
  772. "__type__": "cc.Color",
  773. "r": 255,
  774. "g": 255,
  775. "b": 255,
  776. "a": 255
  777. },
  778. "_contentSize": {
  779. "__type__": "cc.Size",
  780. "width": 210,
  781. "height": 371
  782. },
  783. "_anchorPoint": {
  784. "__type__": "cc.Vec2",
  785. "x": 0.5,
  786. "y": 0.5
  787. },
  788. "_trs": {
  789. "__type__": "TypedArray",
  790. "ctor": "Float64Array",
  791. "array": [
  792. 0,
  793. 0,
  794. 0,
  795. 0,
  796. 0,
  797. 0,
  798. 1,
  799. 1,
  800. 1,
  801. 1
  802. ]
  803. },
  804. "_eulerAngles": {
  805. "__type__": "cc.Vec3",
  806. "x": 0,
  807. "y": 0,
  808. "z": 0
  809. },
  810. "_skewX": 0,
  811. "_skewY": 0,
  812. "_is3DNode": false,
  813. "_groupIndex": 0,
  814. "groupIndex": 0,
  815. "_id": ""
  816. },
  817. {
  818. "__type__": "cc.Node",
  819. "_name": "New Sprite",
  820. "_objFlags": 0,
  821. "_parent": {
  822. "__id__": 20
  823. },
  824. "_children": [],
  825. "_active": true,
  826. "_components": [
  827. {
  828. "__id__": 22
  829. }
  830. ],
  831. "_prefab": {
  832. "__id__": 23
  833. },
  834. "_opacity": 255,
  835. "_color": {
  836. "__type__": "cc.Color",
  837. "r": 255,
  838. "g": 255,
  839. "b": 255,
  840. "a": 255
  841. },
  842. "_contentSize": {
  843. "__type__": "cc.Size",
  844. "width": 66,
  845. "height": 92
  846. },
  847. "_anchorPoint": {
  848. "__type__": "cc.Vec2",
  849. "x": 0.5,
  850. "y": 0.5
  851. },
  852. "_trs": {
  853. "__type__": "TypedArray",
  854. "ctor": "Float64Array",
  855. "array": [
  856. 0,
  857. -13.071,
  858. 0,
  859. 0,
  860. 0,
  861. 0,
  862. 1,
  863. 2,
  864. 2,
  865. 1
  866. ]
  867. },
  868. "_eulerAngles": {
  869. "__type__": "cc.Vec3",
  870. "x": 0,
  871. "y": 0,
  872. "z": 0
  873. },
  874. "_skewX": 0,
  875. "_skewY": 0,
  876. "_is3DNode": false,
  877. "_groupIndex": 0,
  878. "groupIndex": 0,
  879. "_id": ""
  880. },
  881. {
  882. "__type__": "cc.Sprite",
  883. "_name": "",
  884. "_objFlags": 0,
  885. "node": {
  886. "__id__": 21
  887. },
  888. "_enabled": true,
  889. "_materials": [
  890. {
  891. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  892. }
  893. ],
  894. "_srcBlendFactor": 770,
  895. "_dstBlendFactor": 771,
  896. "_spriteFrame": {
  897. "__uuid__": "f35f0d4c-5a82-4a1d-b93f-623c73a787ee"
  898. },
  899. "_type": 0,
  900. "_sizeMode": 1,
  901. "_fillType": 0,
  902. "_fillCenter": {
  903. "__type__": "cc.Vec2",
  904. "x": 0,
  905. "y": 0
  906. },
  907. "_fillStart": 0,
  908. "_fillRange": 0,
  909. "_isTrimmedMode": true,
  910. "_atlas": null,
  911. "_id": ""
  912. },
  913. {
  914. "__type__": "cc.PrefabInfo",
  915. "root": {
  916. "__id__": 19
  917. },
  918. "asset": {
  919. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  920. },
  921. "fileId": "01dCNRkoJFY6NwS/hyJzmL",
  922. "sync": false
  923. },
  924. {
  925. "__type__": "cc.Sprite",
  926. "_name": "",
  927. "_objFlags": 0,
  928. "node": {
  929. "__id__": 20
  930. },
  931. "_enabled": true,
  932. "_materials": [
  933. {
  934. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  935. }
  936. ],
  937. "_srcBlendFactor": 770,
  938. "_dstBlendFactor": 771,
  939. "_spriteFrame": {
  940. "__uuid__": "7341c8cf-b9c6-4327-9eaa-3cfed214b82a"
  941. },
  942. "_type": 0,
  943. "_sizeMode": 1,
  944. "_fillType": 0,
  945. "_fillCenter": {
  946. "__type__": "cc.Vec2",
  947. "x": 0,
  948. "y": 0
  949. },
  950. "_fillStart": 0,
  951. "_fillRange": 0,
  952. "_isTrimmedMode": true,
  953. "_atlas": null,
  954. "_id": ""
  955. },
  956. {
  957. "__type__": "cc.PrefabInfo",
  958. "root": {
  959. "__id__": 19
  960. },
  961. "asset": {
  962. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  963. },
  964. "fileId": "17D9LAN3tLmIdetPvPXr+D",
  965. "sync": false
  966. },
  967. {
  968. "__type__": "cc.Node",
  969. "_name": "New Node",
  970. "_objFlags": 0,
  971. "_parent": {
  972. "__id__": 19
  973. },
  974. "_children": [
  975. {
  976. "__id__": 27
  977. },
  978. {
  979. "__id__": 30
  980. },
  981. {
  982. "__id__": 33
  983. },
  984. {
  985. "__id__": 36
  986. },
  987. {
  988. "__id__": 39
  989. }
  990. ],
  991. "_active": true,
  992. "_components": [
  993. {
  994. "__id__": 42
  995. }
  996. ],
  997. "_prefab": {
  998. "__id__": 43
  999. },
  1000. "_opacity": 255,
  1001. "_color": {
  1002. "__type__": "cc.Color",
  1003. "r": 255,
  1004. "g": 255,
  1005. "b": 255,
  1006. "a": 255
  1007. },
  1008. "_contentSize": {
  1009. "__type__": "cc.Size",
  1010. "width": 180,
  1011. "height": 30
  1012. },
  1013. "_anchorPoint": {
  1014. "__type__": "cc.Vec2",
  1015. "x": 0.5,
  1016. "y": 0.5
  1017. },
  1018. "_trs": {
  1019. "__type__": "TypedArray",
  1020. "ctor": "Float64Array",
  1021. "array": [
  1022. 0,
  1023. -133.425,
  1024. 0,
  1025. 0,
  1026. 0,
  1027. 0,
  1028. 1,
  1029. 0.8,
  1030. 0.8,
  1031. 1
  1032. ]
  1033. },
  1034. "_eulerAngles": {
  1035. "__type__": "cc.Vec3",
  1036. "x": 0,
  1037. "y": 0,
  1038. "z": 0
  1039. },
  1040. "_skewX": 0,
  1041. "_skewY": 0,
  1042. "_is3DNode": false,
  1043. "_groupIndex": 0,
  1044. "groupIndex": 0,
  1045. "_id": ""
  1046. },
  1047. {
  1048. "__type__": "cc.Node",
  1049. "_name": "New Sprite",
  1050. "_objFlags": 0,
  1051. "_parent": {
  1052. "__id__": 26
  1053. },
  1054. "_children": [],
  1055. "_active": true,
  1056. "_components": [
  1057. {
  1058. "__id__": 28
  1059. }
  1060. ],
  1061. "_prefab": {
  1062. "__id__": 29
  1063. },
  1064. "_opacity": 255,
  1065. "_color": {
  1066. "__type__": "cc.Color",
  1067. "r": 255,
  1068. "g": 255,
  1069. "b": 255,
  1070. "a": 255
  1071. },
  1072. "_contentSize": {
  1073. "__type__": "cc.Size",
  1074. "width": 36,
  1075. "height": 36
  1076. },
  1077. "_anchorPoint": {
  1078. "__type__": "cc.Vec2",
  1079. "x": 0.5,
  1080. "y": 0.5
  1081. },
  1082. "_trs": {
  1083. "__type__": "TypedArray",
  1084. "ctor": "Float64Array",
  1085. "array": [
  1086. -72,
  1087. 0,
  1088. 0,
  1089. 0,
  1090. 0,
  1091. 0,
  1092. 1,
  1093. 1,
  1094. 1,
  1095. 1
  1096. ]
  1097. },
  1098. "_eulerAngles": {
  1099. "__type__": "cc.Vec3",
  1100. "x": 0,
  1101. "y": 0,
  1102. "z": 0
  1103. },
  1104. "_skewX": 0,
  1105. "_skewY": 0,
  1106. "_is3DNode": false,
  1107. "_groupIndex": 0,
  1108. "groupIndex": 0,
  1109. "_id": ""
  1110. },
  1111. {
  1112. "__type__": "cc.Sprite",
  1113. "_name": "",
  1114. "_objFlags": 0,
  1115. "node": {
  1116. "__id__": 27
  1117. },
  1118. "_enabled": true,
  1119. "_materials": [
  1120. {
  1121. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1122. }
  1123. ],
  1124. "_srcBlendFactor": 770,
  1125. "_dstBlendFactor": 771,
  1126. "_spriteFrame": {
  1127. "__uuid__": "814c247e-ec6e-4d04-a42e-9168ba96559a"
  1128. },
  1129. "_type": 0,
  1130. "_sizeMode": 1,
  1131. "_fillType": 0,
  1132. "_fillCenter": {
  1133. "__type__": "cc.Vec2",
  1134. "x": 0,
  1135. "y": 0
  1136. },
  1137. "_fillStart": 0,
  1138. "_fillRange": 0,
  1139. "_isTrimmedMode": true,
  1140. "_atlas": null,
  1141. "_id": ""
  1142. },
  1143. {
  1144. "__type__": "cc.PrefabInfo",
  1145. "root": {
  1146. "__id__": 19
  1147. },
  1148. "asset": {
  1149. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1150. },
  1151. "fileId": "71XRKCanBADIpndsE3XIX0",
  1152. "sync": false
  1153. },
  1154. {
  1155. "__type__": "cc.Node",
  1156. "_name": "New Sprite",
  1157. "_objFlags": 0,
  1158. "_parent": {
  1159. "__id__": 26
  1160. },
  1161. "_children": [],
  1162. "_active": true,
  1163. "_components": [
  1164. {
  1165. "__id__": 31
  1166. }
  1167. ],
  1168. "_prefab": {
  1169. "__id__": 32
  1170. },
  1171. "_opacity": 255,
  1172. "_color": {
  1173. "__type__": "cc.Color",
  1174. "r": 255,
  1175. "g": 255,
  1176. "b": 255,
  1177. "a": 255
  1178. },
  1179. "_contentSize": {
  1180. "__type__": "cc.Size",
  1181. "width": 36,
  1182. "height": 36
  1183. },
  1184. "_anchorPoint": {
  1185. "__type__": "cc.Vec2",
  1186. "x": 0.5,
  1187. "y": 0.5
  1188. },
  1189. "_trs": {
  1190. "__type__": "TypedArray",
  1191. "ctor": "Float64Array",
  1192. "array": [
  1193. -36,
  1194. 0,
  1195. 0,
  1196. 0,
  1197. 0,
  1198. 0,
  1199. 1,
  1200. 1,
  1201. 1,
  1202. 1
  1203. ]
  1204. },
  1205. "_eulerAngles": {
  1206. "__type__": "cc.Vec3",
  1207. "x": 0,
  1208. "y": 0,
  1209. "z": 0
  1210. },
  1211. "_skewX": 0,
  1212. "_skewY": 0,
  1213. "_is3DNode": false,
  1214. "_groupIndex": 0,
  1215. "groupIndex": 0,
  1216. "_id": ""
  1217. },
  1218. {
  1219. "__type__": "cc.Sprite",
  1220. "_name": "",
  1221. "_objFlags": 0,
  1222. "node": {
  1223. "__id__": 30
  1224. },
  1225. "_enabled": true,
  1226. "_materials": [
  1227. {
  1228. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1229. }
  1230. ],
  1231. "_srcBlendFactor": 770,
  1232. "_dstBlendFactor": 771,
  1233. "_spriteFrame": {
  1234. "__uuid__": "a3f39d56-d3b2-4c36-b0bd-22091297d952"
  1235. },
  1236. "_type": 0,
  1237. "_sizeMode": 1,
  1238. "_fillType": 0,
  1239. "_fillCenter": {
  1240. "__type__": "cc.Vec2",
  1241. "x": 0,
  1242. "y": 0
  1243. },
  1244. "_fillStart": 0,
  1245. "_fillRange": 0,
  1246. "_isTrimmedMode": true,
  1247. "_atlas": null,
  1248. "_id": ""
  1249. },
  1250. {
  1251. "__type__": "cc.PrefabInfo",
  1252. "root": {
  1253. "__id__": 19
  1254. },
  1255. "asset": {
  1256. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1257. },
  1258. "fileId": "8cVR87OIBKYYcMD5U3sbY5",
  1259. "sync": false
  1260. },
  1261. {
  1262. "__type__": "cc.Node",
  1263. "_name": "New Sprite",
  1264. "_objFlags": 0,
  1265. "_parent": {
  1266. "__id__": 26
  1267. },
  1268. "_children": [],
  1269. "_active": true,
  1270. "_components": [
  1271. {
  1272. "__id__": 34
  1273. }
  1274. ],
  1275. "_prefab": {
  1276. "__id__": 35
  1277. },
  1278. "_opacity": 255,
  1279. "_color": {
  1280. "__type__": "cc.Color",
  1281. "r": 255,
  1282. "g": 255,
  1283. "b": 255,
  1284. "a": 255
  1285. },
  1286. "_contentSize": {
  1287. "__type__": "cc.Size",
  1288. "width": 36,
  1289. "height": 36
  1290. },
  1291. "_anchorPoint": {
  1292. "__type__": "cc.Vec2",
  1293. "x": 0.5,
  1294. "y": 0.5
  1295. },
  1296. "_trs": {
  1297. "__type__": "TypedArray",
  1298. "ctor": "Float64Array",
  1299. "array": [
  1300. 0,
  1301. 0,
  1302. 0,
  1303. 0,
  1304. 0,
  1305. 0,
  1306. 1,
  1307. 1,
  1308. 1,
  1309. 1
  1310. ]
  1311. },
  1312. "_eulerAngles": {
  1313. "__type__": "cc.Vec3",
  1314. "x": 0,
  1315. "y": 0,
  1316. "z": 0
  1317. },
  1318. "_skewX": 0,
  1319. "_skewY": 0,
  1320. "_is3DNode": false,
  1321. "_groupIndex": 0,
  1322. "groupIndex": 0,
  1323. "_id": ""
  1324. },
  1325. {
  1326. "__type__": "cc.Sprite",
  1327. "_name": "",
  1328. "_objFlags": 0,
  1329. "node": {
  1330. "__id__": 33
  1331. },
  1332. "_enabled": true,
  1333. "_materials": [
  1334. {
  1335. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1336. }
  1337. ],
  1338. "_srcBlendFactor": 770,
  1339. "_dstBlendFactor": 771,
  1340. "_spriteFrame": {
  1341. "__uuid__": "a3f39d56-d3b2-4c36-b0bd-22091297d952"
  1342. },
  1343. "_type": 0,
  1344. "_sizeMode": 1,
  1345. "_fillType": 0,
  1346. "_fillCenter": {
  1347. "__type__": "cc.Vec2",
  1348. "x": 0,
  1349. "y": 0
  1350. },
  1351. "_fillStart": 0,
  1352. "_fillRange": 0,
  1353. "_isTrimmedMode": true,
  1354. "_atlas": null,
  1355. "_id": ""
  1356. },
  1357. {
  1358. "__type__": "cc.PrefabInfo",
  1359. "root": {
  1360. "__id__": 19
  1361. },
  1362. "asset": {
  1363. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1364. },
  1365. "fileId": "f8T0rncv9PmZlStp3ap2Rc",
  1366. "sync": false
  1367. },
  1368. {
  1369. "__type__": "cc.Node",
  1370. "_name": "New Sprite",
  1371. "_objFlags": 0,
  1372. "_parent": {
  1373. "__id__": 26
  1374. },
  1375. "_children": [],
  1376. "_active": true,
  1377. "_components": [
  1378. {
  1379. "__id__": 37
  1380. }
  1381. ],
  1382. "_prefab": {
  1383. "__id__": 38
  1384. },
  1385. "_opacity": 255,
  1386. "_color": {
  1387. "__type__": "cc.Color",
  1388. "r": 255,
  1389. "g": 255,
  1390. "b": 255,
  1391. "a": 255
  1392. },
  1393. "_contentSize": {
  1394. "__type__": "cc.Size",
  1395. "width": 36,
  1396. "height": 36
  1397. },
  1398. "_anchorPoint": {
  1399. "__type__": "cc.Vec2",
  1400. "x": 0.5,
  1401. "y": 0.5
  1402. },
  1403. "_trs": {
  1404. "__type__": "TypedArray",
  1405. "ctor": "Float64Array",
  1406. "array": [
  1407. 36,
  1408. 0,
  1409. 0,
  1410. 0,
  1411. 0,
  1412. 0,
  1413. 1,
  1414. 1,
  1415. 1,
  1416. 1
  1417. ]
  1418. },
  1419. "_eulerAngles": {
  1420. "__type__": "cc.Vec3",
  1421. "x": 0,
  1422. "y": 0,
  1423. "z": 0
  1424. },
  1425. "_skewX": 0,
  1426. "_skewY": 0,
  1427. "_is3DNode": false,
  1428. "_groupIndex": 0,
  1429. "groupIndex": 0,
  1430. "_id": ""
  1431. },
  1432. {
  1433. "__type__": "cc.Sprite",
  1434. "_name": "",
  1435. "_objFlags": 0,
  1436. "node": {
  1437. "__id__": 36
  1438. },
  1439. "_enabled": true,
  1440. "_materials": [
  1441. {
  1442. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1443. }
  1444. ],
  1445. "_srcBlendFactor": 770,
  1446. "_dstBlendFactor": 771,
  1447. "_spriteFrame": {
  1448. "__uuid__": "a3f39d56-d3b2-4c36-b0bd-22091297d952"
  1449. },
  1450. "_type": 0,
  1451. "_sizeMode": 1,
  1452. "_fillType": 0,
  1453. "_fillCenter": {
  1454. "__type__": "cc.Vec2",
  1455. "x": 0,
  1456. "y": 0
  1457. },
  1458. "_fillStart": 0,
  1459. "_fillRange": 0,
  1460. "_isTrimmedMode": true,
  1461. "_atlas": null,
  1462. "_id": ""
  1463. },
  1464. {
  1465. "__type__": "cc.PrefabInfo",
  1466. "root": {
  1467. "__id__": 19
  1468. },
  1469. "asset": {
  1470. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1471. },
  1472. "fileId": "97jkj8n79GNr882t5FeX74",
  1473. "sync": false
  1474. },
  1475. {
  1476. "__type__": "cc.Node",
  1477. "_name": "New Sprite",
  1478. "_objFlags": 0,
  1479. "_parent": {
  1480. "__id__": 26
  1481. },
  1482. "_children": [],
  1483. "_active": true,
  1484. "_components": [
  1485. {
  1486. "__id__": 40
  1487. }
  1488. ],
  1489. "_prefab": {
  1490. "__id__": 41
  1491. },
  1492. "_opacity": 255,
  1493. "_color": {
  1494. "__type__": "cc.Color",
  1495. "r": 255,
  1496. "g": 255,
  1497. "b": 255,
  1498. "a": 255
  1499. },
  1500. "_contentSize": {
  1501. "__type__": "cc.Size",
  1502. "width": 36,
  1503. "height": 36
  1504. },
  1505. "_anchorPoint": {
  1506. "__type__": "cc.Vec2",
  1507. "x": 0.5,
  1508. "y": 0.5
  1509. },
  1510. "_trs": {
  1511. "__type__": "TypedArray",
  1512. "ctor": "Float64Array",
  1513. "array": [
  1514. 72,
  1515. 0,
  1516. 0,
  1517. 0,
  1518. 0,
  1519. 0,
  1520. 1,
  1521. 1,
  1522. 1,
  1523. 1
  1524. ]
  1525. },
  1526. "_eulerAngles": {
  1527. "__type__": "cc.Vec3",
  1528. "x": 0,
  1529. "y": 0,
  1530. "z": 0
  1531. },
  1532. "_skewX": 0,
  1533. "_skewY": 0,
  1534. "_is3DNode": false,
  1535. "_groupIndex": 0,
  1536. "groupIndex": 0,
  1537. "_id": ""
  1538. },
  1539. {
  1540. "__type__": "cc.Sprite",
  1541. "_name": "",
  1542. "_objFlags": 0,
  1543. "node": {
  1544. "__id__": 39
  1545. },
  1546. "_enabled": true,
  1547. "_materials": [
  1548. {
  1549. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1550. }
  1551. ],
  1552. "_srcBlendFactor": 770,
  1553. "_dstBlendFactor": 771,
  1554. "_spriteFrame": {
  1555. "__uuid__": "a3f39d56-d3b2-4c36-b0bd-22091297d952"
  1556. },
  1557. "_type": 0,
  1558. "_sizeMode": 1,
  1559. "_fillType": 0,
  1560. "_fillCenter": {
  1561. "__type__": "cc.Vec2",
  1562. "x": 0,
  1563. "y": 0
  1564. },
  1565. "_fillStart": 0,
  1566. "_fillRange": 0,
  1567. "_isTrimmedMode": true,
  1568. "_atlas": null,
  1569. "_id": ""
  1570. },
  1571. {
  1572. "__type__": "cc.PrefabInfo",
  1573. "root": {
  1574. "__id__": 19
  1575. },
  1576. "asset": {
  1577. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1578. },
  1579. "fileId": "471mu+4LtLmYrTYjdptXkZ",
  1580. "sync": false
  1581. },
  1582. {
  1583. "__type__": "cc.Layout",
  1584. "_name": "",
  1585. "_objFlags": 0,
  1586. "node": {
  1587. "__id__": 26
  1588. },
  1589. "_enabled": true,
  1590. "_layoutSize": {
  1591. "__type__": "cc.Size",
  1592. "width": 180,
  1593. "height": 30
  1594. },
  1595. "_resize": 0,
  1596. "_N$layoutType": 1,
  1597. "_N$cellSize": {
  1598. "__type__": "cc.Size",
  1599. "width": 40,
  1600. "height": 40
  1601. },
  1602. "_N$startAxis": 0,
  1603. "_N$paddingLeft": 0,
  1604. "_N$paddingRight": 0,
  1605. "_N$paddingTop": 0,
  1606. "_N$paddingBottom": 0,
  1607. "_N$spacingX": 0,
  1608. "_N$spacingY": 0,
  1609. "_N$verticalDirection": 1,
  1610. "_N$horizontalDirection": 0,
  1611. "_N$affectedByScale": false,
  1612. "_id": ""
  1613. },
  1614. {
  1615. "__type__": "cc.PrefabInfo",
  1616. "root": {
  1617. "__id__": 19
  1618. },
  1619. "asset": {
  1620. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1621. },
  1622. "fileId": "57d+SufgRN865SXD7xP9+h",
  1623. "sync": false
  1624. },
  1625. {
  1626. "__type__": "cc.Button",
  1627. "_name": "",
  1628. "_objFlags": 0,
  1629. "node": {
  1630. "__id__": 19
  1631. },
  1632. "_enabled": true,
  1633. "_normalMaterial": null,
  1634. "_grayMaterial": null,
  1635. "duration": 0.1,
  1636. "zoomScale": 0.9,
  1637. "clickEvents": [],
  1638. "_N$interactable": true,
  1639. "_N$enableAutoGrayEffect": false,
  1640. "_N$transition": 3,
  1641. "transition": 3,
  1642. "_N$normalColor": {
  1643. "__type__": "cc.Color",
  1644. "r": 255,
  1645. "g": 255,
  1646. "b": 255,
  1647. "a": 255
  1648. },
  1649. "_N$pressedColor": {
  1650. "__type__": "cc.Color",
  1651. "r": 211,
  1652. "g": 211,
  1653. "b": 211,
  1654. "a": 255
  1655. },
  1656. "pressedColor": {
  1657. "__type__": "cc.Color",
  1658. "r": 211,
  1659. "g": 211,
  1660. "b": 211,
  1661. "a": 255
  1662. },
  1663. "_N$hoverColor": {
  1664. "__type__": "cc.Color",
  1665. "r": 255,
  1666. "g": 255,
  1667. "b": 255,
  1668. "a": 255
  1669. },
  1670. "hoverColor": {
  1671. "__type__": "cc.Color",
  1672. "r": 255,
  1673. "g": 255,
  1674. "b": 255,
  1675. "a": 255
  1676. },
  1677. "_N$disabledColor": {
  1678. "__type__": "cc.Color",
  1679. "r": 124,
  1680. "g": 124,
  1681. "b": 124,
  1682. "a": 255
  1683. },
  1684. "_N$normalSprite": null,
  1685. "_N$pressedSprite": null,
  1686. "pressedSprite": null,
  1687. "_N$hoverSprite": null,
  1688. "hoverSprite": null,
  1689. "_N$disabledSprite": null,
  1690. "_N$target": null,
  1691. "_id": ""
  1692. },
  1693. {
  1694. "__type__": "cc.Button",
  1695. "_name": "",
  1696. "_objFlags": 0,
  1697. "node": {
  1698. "__id__": 19
  1699. },
  1700. "_enabled": true,
  1701. "_normalMaterial": null,
  1702. "_grayMaterial": null,
  1703. "duration": 0.1,
  1704. "zoomScale": 0.95,
  1705. "clickEvents": [
  1706. {
  1707. "__id__": 46
  1708. }
  1709. ],
  1710. "_N$interactable": true,
  1711. "_N$enableAutoGrayEffect": false,
  1712. "_N$transition": 3,
  1713. "transition": 3,
  1714. "_N$normalColor": {
  1715. "__type__": "cc.Color",
  1716. "r": 255,
  1717. "g": 255,
  1718. "b": 255,
  1719. "a": 255
  1720. },
  1721. "_N$pressedColor": {
  1722. "__type__": "cc.Color",
  1723. "r": 211,
  1724. "g": 211,
  1725. "b": 211,
  1726. "a": 255
  1727. },
  1728. "pressedColor": {
  1729. "__type__": "cc.Color",
  1730. "r": 211,
  1731. "g": 211,
  1732. "b": 211,
  1733. "a": 255
  1734. },
  1735. "_N$hoverColor": {
  1736. "__type__": "cc.Color",
  1737. "r": 255,
  1738. "g": 255,
  1739. "b": 255,
  1740. "a": 255
  1741. },
  1742. "hoverColor": {
  1743. "__type__": "cc.Color",
  1744. "r": 255,
  1745. "g": 255,
  1746. "b": 255,
  1747. "a": 255
  1748. },
  1749. "_N$disabledColor": {
  1750. "__type__": "cc.Color",
  1751. "r": 124,
  1752. "g": 124,
  1753. "b": 124,
  1754. "a": 255
  1755. },
  1756. "_N$normalSprite": null,
  1757. "_N$pressedSprite": null,
  1758. "pressedSprite": null,
  1759. "_N$hoverSprite": null,
  1760. "hoverSprite": null,
  1761. "_N$disabledSprite": null,
  1762. "_N$target": null,
  1763. "_id": ""
  1764. },
  1765. {
  1766. "__type__": "cc.ClickEvent",
  1767. "target": {
  1768. "__id__": 19
  1769. },
  1770. "component": "",
  1771. "_componentId": "5b2ceOgcuRGMJHoMDMzln5F",
  1772. "handler": "onclick",
  1773. "customEventData": ""
  1774. },
  1775. {
  1776. "__type__": "5b2ceOgcuRGMJHoMDMzln5F",
  1777. "_name": "",
  1778. "_objFlags": 0,
  1779. "node": {
  1780. "__id__": 19
  1781. },
  1782. "_enabled": true,
  1783. "mName": {
  1784. "__id__": 16
  1785. },
  1786. "mIcon": {
  1787. "__id__": 22
  1788. },
  1789. "mStarNode": {
  1790. "__id__": 26
  1791. },
  1792. "mStarFrame": [
  1793. {
  1794. "__uuid__": "a3f39d56-d3b2-4c36-b0bd-22091297d952"
  1795. },
  1796. {
  1797. "__uuid__": "814c247e-ec6e-4d04-a42e-9168ba96559a"
  1798. }
  1799. ],
  1800. "_id": ""
  1801. },
  1802. {
  1803. "__type__": "cc.PrefabInfo",
  1804. "root": {
  1805. "__id__": 19
  1806. },
  1807. "asset": {
  1808. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1809. },
  1810. "fileId": "8cFWu11lJAorgGUysnttnY",
  1811. "sync": false
  1812. },
  1813. {
  1814. "__type__": "cc.PrefabInfo",
  1815. "root": {
  1816. "__id__": 1
  1817. },
  1818. "asset": {
  1819. "__uuid__": "2c02ea65-8868-4914-a903-4eca5c70babd"
  1820. },
  1821. "fileId": "",
  1822. "sync": false
  1823. }
  1824. ]