card_star_success_view.prefab 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370
  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_star_success_view",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 8
  25. },
  26. {
  27. "__id__": 12
  28. },
  29. {
  30. "__id__": 16
  31. },
  32. {
  33. "__id__": 46
  34. }
  35. ],
  36. "_active": true,
  37. "_components": [
  38. {
  39. "__id__": 65
  40. }
  41. ],
  42. "_prefab": {
  43. "__id__": 66
  44. },
  45. "_opacity": 255,
  46. "_color": {
  47. "__type__": "cc.Color",
  48. "r": 255,
  49. "g": 255,
  50. "b": 255,
  51. "a": 255
  52. },
  53. "_contentSize": {
  54. "__type__": "cc.Size",
  55. "width": 0,
  56. "height": 0
  57. },
  58. "_anchorPoint": {
  59. "__type__": "cc.Vec2",
  60. "x": 0.5,
  61. "y": 0.5
  62. },
  63. "_trs": {
  64. "__type__": "TypedArray",
  65. "ctor": "Float64Array",
  66. "array": [
  67. 0,
  68. 0,
  69. 0,
  70. 0,
  71. 0,
  72. 0,
  73. 1,
  74. 1,
  75. 1,
  76. 1
  77. ]
  78. },
  79. "_eulerAngles": {
  80. "__type__": "cc.Vec3",
  81. "x": 0,
  82. "y": 0,
  83. "z": 0
  84. },
  85. "_skewX": 0,
  86. "_skewY": 0,
  87. "_is3DNode": false,
  88. "_groupIndex": 0,
  89. "groupIndex": 0,
  90. "_id": ""
  91. },
  92. {
  93. "__type__": "cc.Node",
  94. "_name": "New Sprite",
  95. "_objFlags": 0,
  96. "_parent": {
  97. "__id__": 1
  98. },
  99. "_children": [],
  100. "_active": true,
  101. "_components": [
  102. {
  103. "__id__": 3
  104. },
  105. {
  106. "__id__": 4
  107. },
  108. {
  109. "__id__": 5
  110. }
  111. ],
  112. "_prefab": {
  113. "__id__": 7
  114. },
  115. "_opacity": 150,
  116. "_color": {
  117. "__type__": "cc.Color",
  118. "r": 0,
  119. "g": 0,
  120. "b": 0,
  121. "a": 255
  122. },
  123. "_contentSize": {
  124. "__type__": "cc.Size",
  125. "width": 1280,
  126. "height": 720
  127. },
  128. "_anchorPoint": {
  129. "__type__": "cc.Vec2",
  130. "x": 0.5,
  131. "y": 0.5
  132. },
  133. "_trs": {
  134. "__type__": "TypedArray",
  135. "ctor": "Float64Array",
  136. "array": [
  137. 0,
  138. 0,
  139. 0,
  140. 0,
  141. 0,
  142. 0,
  143. 1,
  144. 1,
  145. 1,
  146. 1
  147. ]
  148. },
  149. "_eulerAngles": {
  150. "__type__": "cc.Vec3",
  151. "x": 0,
  152. "y": 0,
  153. "z": 0
  154. },
  155. "_skewX": 0,
  156. "_skewY": 0,
  157. "_is3DNode": false,
  158. "_groupIndex": 0,
  159. "groupIndex": 0,
  160. "_id": ""
  161. },
  162. {
  163. "__type__": "cc.Sprite",
  164. "_name": "",
  165. "_objFlags": 0,
  166. "node": {
  167. "__id__": 2
  168. },
  169. "_enabled": true,
  170. "_materials": [
  171. {
  172. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  173. }
  174. ],
  175. "_srcBlendFactor": 770,
  176. "_dstBlendFactor": 771,
  177. "_spriteFrame": {
  178. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  179. },
  180. "_type": 0,
  181. "_sizeMode": 0,
  182. "_fillType": 0,
  183. "_fillCenter": {
  184. "__type__": "cc.Vec2",
  185. "x": 0,
  186. "y": 0
  187. },
  188. "_fillStart": 0,
  189. "_fillRange": 0,
  190. "_isTrimmedMode": true,
  191. "_atlas": null,
  192. "_id": ""
  193. },
  194. {
  195. "__type__": "50926/BsyZKHYMN6tib9fNS",
  196. "_name": "",
  197. "_objFlags": 0,
  198. "node": {
  199. "__id__": 2
  200. },
  201. "_enabled": true,
  202. "_id": ""
  203. },
  204. {
  205. "__type__": "cc.Button",
  206. "_name": "",
  207. "_objFlags": 0,
  208. "node": {
  209. "__id__": 2
  210. },
  211. "_enabled": true,
  212. "_normalMaterial": null,
  213. "_grayMaterial": null,
  214. "duration": 0.1,
  215. "zoomScale": 1.2,
  216. "clickEvents": [
  217. {
  218. "__id__": 6
  219. }
  220. ],
  221. "_N$interactable": true,
  222. "_N$enableAutoGrayEffect": false,
  223. "_N$transition": 0,
  224. "transition": 0,
  225. "_N$normalColor": {
  226. "__type__": "cc.Color",
  227. "r": 255,
  228. "g": 255,
  229. "b": 255,
  230. "a": 255
  231. },
  232. "_N$pressedColor": {
  233. "__type__": "cc.Color",
  234. "r": 211,
  235. "g": 211,
  236. "b": 211,
  237. "a": 255
  238. },
  239. "pressedColor": {
  240. "__type__": "cc.Color",
  241. "r": 211,
  242. "g": 211,
  243. "b": 211,
  244. "a": 255
  245. },
  246. "_N$hoverColor": {
  247. "__type__": "cc.Color",
  248. "r": 255,
  249. "g": 255,
  250. "b": 255,
  251. "a": 255
  252. },
  253. "hoverColor": {
  254. "__type__": "cc.Color",
  255. "r": 255,
  256. "g": 255,
  257. "b": 255,
  258. "a": 255
  259. },
  260. "_N$disabledColor": {
  261. "__type__": "cc.Color",
  262. "r": 124,
  263. "g": 124,
  264. "b": 124,
  265. "a": 255
  266. },
  267. "_N$normalSprite": null,
  268. "_N$pressedSprite": null,
  269. "pressedSprite": null,
  270. "_N$hoverSprite": null,
  271. "hoverSprite": null,
  272. "_N$disabledSprite": null,
  273. "_N$target": null,
  274. "_id": ""
  275. },
  276. {
  277. "__type__": "cc.ClickEvent",
  278. "target": {
  279. "__id__": 1
  280. },
  281. "component": "",
  282. "_componentId": "338b5cedzdI9o1CEe0eo4ZO",
  283. "handler": "exitDistroy",
  284. "customEventData": ""
  285. },
  286. {
  287. "__type__": "cc.PrefabInfo",
  288. "root": {
  289. "__id__": 1
  290. },
  291. "asset": {
  292. "__uuid__": "3080661e-f7b7-4825-9f4c-67ec3ef2816c"
  293. },
  294. "fileId": "d28dhUAW9N9o4HxN8BFTNa",
  295. "sync": false
  296. },
  297. {
  298. "__type__": "cc.Node",
  299. "_name": "New Label",
  300. "_objFlags": 0,
  301. "_parent": {
  302. "__id__": 1
  303. },
  304. "_children": [],
  305. "_active": true,
  306. "_components": [
  307. {
  308. "__id__": 9
  309. },
  310. {
  311. "__id__": 10
  312. }
  313. ],
  314. "_prefab": {
  315. "__id__": 11
  316. },
  317. "_opacity": 255,
  318. "_color": {
  319. "__type__": "cc.Color",
  320. "r": 255,
  321. "g": 251,
  322. "b": 202,
  323. "a": 255
  324. },
  325. "_contentSize": {
  326. "__type__": "cc.Size",
  327. "width": 164,
  328. "height": 67
  329. },
  330. "_anchorPoint": {
  331. "__type__": "cc.Vec2",
  332. "x": 0.5,
  333. "y": 0.5
  334. },
  335. "_trs": {
  336. "__type__": "TypedArray",
  337. "ctor": "Float64Array",
  338. "array": [
  339. 0,
  340. 250.935,
  341. 0,
  342. 0,
  343. 0,
  344. 0,
  345. 1,
  346. 1,
  347. 1,
  348. 1
  349. ]
  350. },
  351. "_eulerAngles": {
  352. "__type__": "cc.Vec3",
  353. "x": 0,
  354. "y": 0,
  355. "z": 0
  356. },
  357. "_skewX": 0,
  358. "_skewY": 0,
  359. "_is3DNode": false,
  360. "_groupIndex": 0,
  361. "groupIndex": 0,
  362. "_id": ""
  363. },
  364. {
  365. "__type__": "cc.Label",
  366. "_name": "",
  367. "_objFlags": 0,
  368. "node": {
  369. "__id__": 8
  370. },
  371. "_enabled": true,
  372. "_materials": [
  373. {
  374. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  375. }
  376. ],
  377. "_srcBlendFactor": 770,
  378. "_dstBlendFactor": 771,
  379. "_string": "神像进阶",
  380. "_N$string": "神像进阶",
  381. "_fontSize": 40,
  382. "_lineHeight": 50,
  383. "_enableWrapText": true,
  384. "_N$file": {
  385. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  386. },
  387. "_isSystemFontUsed": false,
  388. "_spacingX": 0,
  389. "_batchAsBitmap": false,
  390. "_styleFlags": 0,
  391. "_underlineHeight": 0,
  392. "_N$horizontalAlign": 1,
  393. "_N$verticalAlign": 1,
  394. "_N$fontFamily": "Arial",
  395. "_N$overflow": 0,
  396. "_N$cacheMode": 0,
  397. "_id": ""
  398. },
  399. {
  400. "__type__": "cc.LabelOutline",
  401. "_name": "",
  402. "_objFlags": 0,
  403. "node": {
  404. "__id__": 8
  405. },
  406. "_enabled": true,
  407. "_color": {
  408. "__type__": "cc.Color",
  409. "r": 80,
  410. "g": 64,
  411. "b": 0,
  412. "a": 255
  413. },
  414. "_width": 2,
  415. "_id": ""
  416. },
  417. {
  418. "__type__": "cc.PrefabInfo",
  419. "root": {
  420. "__id__": 1
  421. },
  422. "asset": {
  423. "__uuid__": "3080661e-f7b7-4825-9f4c-67ec3ef2816c"
  424. },
  425. "fileId": "559x1fP+hFa5VMEZsihFyA",
  426. "sync": false
  427. },
  428. {
  429. "__type__": "cc.Node",
  430. "_name": "New Label",
  431. "_objFlags": 0,
  432. "_parent": {
  433. "__id__": 1
  434. },
  435. "_children": [],
  436. "_active": true,
  437. "_components": [
  438. {
  439. "__id__": 13
  440. },
  441. {
  442. "__id__": 14
  443. }
  444. ],
  445. "_prefab": {
  446. "__id__": 15
  447. },
  448. "_opacity": 255,
  449. "_color": {
  450. "__type__": "cc.Color",
  451. "r": 255,
  452. "g": 255,
  453. "b": 255,
  454. "a": 255
  455. },
  456. "_contentSize": {
  457. "__type__": "cc.Size",
  458. "width": 118.94,
  459. "height": 67
  460. },
  461. "_anchorPoint": {
  462. "__type__": "cc.Vec2",
  463. "x": 0.5,
  464. "y": 0.5
  465. },
  466. "_trs": {
  467. "__type__": "TypedArray",
  468. "ctor": "Float64Array",
  469. "array": [
  470. 0,
  471. 190.431,
  472. 0,
  473. 0,
  474. 0,
  475. 0,
  476. 1,
  477. 1,
  478. 1,
  479. 1
  480. ]
  481. },
  482. "_eulerAngles": {
  483. "__type__": "cc.Vec3",
  484. "x": 0,
  485. "y": 0,
  486. "z": 0
  487. },
  488. "_skewX": 0,
  489. "_skewY": 0,
  490. "_is3DNode": false,
  491. "_groupIndex": 0,
  492. "groupIndex": 0,
  493. "_id": ""
  494. },
  495. {
  496. "__type__": "cc.Label",
  497. "_name": "",
  498. "_objFlags": 0,
  499. "node": {
  500. "__id__": 12
  501. },
  502. "_enabled": true,
  503. "_materials": [
  504. {
  505. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  506. }
  507. ],
  508. "_srcBlendFactor": 770,
  509. "_dstBlendFactor": 771,
  510. "_string": "雷神-托尔",
  511. "_N$string": "雷神-托尔",
  512. "_fontSize": 25,
  513. "_lineHeight": 50,
  514. "_enableWrapText": true,
  515. "_N$file": {
  516. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  517. },
  518. "_isSystemFontUsed": false,
  519. "_spacingX": 0,
  520. "_batchAsBitmap": false,
  521. "_styleFlags": 0,
  522. "_underlineHeight": 0,
  523. "_N$horizontalAlign": 1,
  524. "_N$verticalAlign": 1,
  525. "_N$fontFamily": "Arial",
  526. "_N$overflow": 0,
  527. "_N$cacheMode": 0,
  528. "_id": ""
  529. },
  530. {
  531. "__type__": "cc.LabelOutline",
  532. "_name": "",
  533. "_objFlags": 0,
  534. "node": {
  535. "__id__": 12
  536. },
  537. "_enabled": true,
  538. "_color": {
  539. "__type__": "cc.Color",
  540. "r": 80,
  541. "g": 64,
  542. "b": 0,
  543. "a": 255
  544. },
  545. "_width": 2,
  546. "_id": ""
  547. },
  548. {
  549. "__type__": "cc.PrefabInfo",
  550. "root": {
  551. "__id__": 1
  552. },
  553. "asset": {
  554. "__uuid__": "3080661e-f7b7-4825-9f4c-67ec3ef2816c"
  555. },
  556. "fileId": "84yJjJaXtPRpbwAt0BbFBH",
  557. "sync": false
  558. },
  559. {
  560. "__type__": "cc.Node",
  561. "_name": "card_view",
  562. "_objFlags": 0,
  563. "_parent": {
  564. "__id__": 1
  565. },
  566. "_children": [
  567. {
  568. "__id__": 17
  569. },
  570. {
  571. "__id__": 23
  572. }
  573. ],
  574. "_active": true,
  575. "_components": [
  576. {
  577. "__id__": 41
  578. },
  579. {
  580. "__id__": 42
  581. },
  582. {
  583. "__id__": 44
  584. }
  585. ],
  586. "_prefab": {
  587. "__id__": 45
  588. },
  589. "_opacity": 255,
  590. "_color": {
  591. "__type__": "cc.Color",
  592. "r": 255,
  593. "g": 255,
  594. "b": 255,
  595. "a": 255
  596. },
  597. "_contentSize": {
  598. "__type__": "cc.Size",
  599. "width": 210,
  600. "height": 370
  601. },
  602. "_anchorPoint": {
  603. "__type__": "cc.Vec2",
  604. "x": 0.5,
  605. "y": 0.5
  606. },
  607. "_trs": {
  608. "__type__": "TypedArray",
  609. "ctor": "Float64Array",
  610. "array": [
  611. 0,
  612. -45.351,
  613. 0,
  614. 0,
  615. 0,
  616. 0,
  617. 1,
  618. 1,
  619. 1,
  620. 0
  621. ]
  622. },
  623. "_eulerAngles": {
  624. "__type__": "cc.Vec3",
  625. "x": 0,
  626. "y": 0,
  627. "z": 0
  628. },
  629. "_skewX": 0,
  630. "_skewY": 0,
  631. "_is3DNode": false,
  632. "_groupIndex": 0,
  633. "groupIndex": 0,
  634. "_id": ""
  635. },
  636. {
  637. "__type__": "cc.Node",
  638. "_name": "New Sprite",
  639. "_objFlags": 0,
  640. "_parent": {
  641. "__id__": 16
  642. },
  643. "_children": [
  644. {
  645. "__id__": 18
  646. }
  647. ],
  648. "_active": true,
  649. "_components": [
  650. {
  651. "__id__": 21
  652. }
  653. ],
  654. "_prefab": {
  655. "__id__": 22
  656. },
  657. "_opacity": 255,
  658. "_color": {
  659. "__type__": "cc.Color",
  660. "r": 255,
  661. "g": 255,
  662. "b": 255,
  663. "a": 255
  664. },
  665. "_contentSize": {
  666. "__type__": "cc.Size",
  667. "width": 210,
  668. "height": 371
  669. },
  670. "_anchorPoint": {
  671. "__type__": "cc.Vec2",
  672. "x": 0.5,
  673. "y": 0.5
  674. },
  675. "_trs": {
  676. "__type__": "TypedArray",
  677. "ctor": "Float64Array",
  678. "array": [
  679. 0,
  680. 0,
  681. 0,
  682. 0,
  683. 0,
  684. 0,
  685. 1,
  686. 1,
  687. 1,
  688. 1
  689. ]
  690. },
  691. "_eulerAngles": {
  692. "__type__": "cc.Vec3",
  693. "x": 0,
  694. "y": 0,
  695. "z": 0
  696. },
  697. "_skewX": 0,
  698. "_skewY": 0,
  699. "_is3DNode": false,
  700. "_groupIndex": 0,
  701. "groupIndex": 0,
  702. "_id": ""
  703. },
  704. {
  705. "__type__": "cc.Node",
  706. "_name": "New Sprite",
  707. "_objFlags": 0,
  708. "_parent": {
  709. "__id__": 17
  710. },
  711. "_children": [],
  712. "_active": true,
  713. "_components": [
  714. {
  715. "__id__": 19
  716. }
  717. ],
  718. "_prefab": {
  719. "__id__": 20
  720. },
  721. "_opacity": 255,
  722. "_color": {
  723. "__type__": "cc.Color",
  724. "r": 255,
  725. "g": 255,
  726. "b": 255,
  727. "a": 255
  728. },
  729. "_contentSize": {
  730. "__type__": "cc.Size",
  731. "width": 66,
  732. "height": 92
  733. },
  734. "_anchorPoint": {
  735. "__type__": "cc.Vec2",
  736. "x": 0.5,
  737. "y": 0.5
  738. },
  739. "_trs": {
  740. "__type__": "TypedArray",
  741. "ctor": "Float64Array",
  742. "array": [
  743. 0,
  744. -13.071,
  745. 0,
  746. 0,
  747. 0,
  748. 0,
  749. 1,
  750. 2,
  751. 2,
  752. 1
  753. ]
  754. },
  755. "_eulerAngles": {
  756. "__type__": "cc.Vec3",
  757. "x": 0,
  758. "y": 0,
  759. "z": 0
  760. },
  761. "_skewX": 0,
  762. "_skewY": 0,
  763. "_is3DNode": false,
  764. "_groupIndex": 0,
  765. "groupIndex": 0,
  766. "_id": ""
  767. },
  768. {
  769. "__type__": "cc.Sprite",
  770. "_name": "",
  771. "_objFlags": 0,
  772. "node": {
  773. "__id__": 18
  774. },
  775. "_enabled": true,
  776. "_materials": [
  777. {
  778. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  779. }
  780. ],
  781. "_srcBlendFactor": 770,
  782. "_dstBlendFactor": 771,
  783. "_spriteFrame": {
  784. "__uuid__": "f35f0d4c-5a82-4a1d-b93f-623c73a787ee"
  785. },
  786. "_type": 0,
  787. "_sizeMode": 1,
  788. "_fillType": 0,
  789. "_fillCenter": {
  790. "__type__": "cc.Vec2",
  791. "x": 0,
  792. "y": 0
  793. },
  794. "_fillStart": 0,
  795. "_fillRange": 0,
  796. "_isTrimmedMode": true,
  797. "_atlas": null,
  798. "_id": ""
  799. },
  800. {
  801. "__type__": "cc.PrefabInfo",
  802. "root": {
  803. "__id__": 16
  804. },
  805. "asset": {
  806. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  807. },
  808. "fileId": "01dCNRkoJFY6NwS/hyJzmL",
  809. "sync": false
  810. },
  811. {
  812. "__type__": "cc.Sprite",
  813. "_name": "",
  814. "_objFlags": 0,
  815. "node": {
  816. "__id__": 17
  817. },
  818. "_enabled": true,
  819. "_materials": [
  820. {
  821. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  822. }
  823. ],
  824. "_srcBlendFactor": 770,
  825. "_dstBlendFactor": 771,
  826. "_spriteFrame": {
  827. "__uuid__": "7341c8cf-b9c6-4327-9eaa-3cfed214b82a"
  828. },
  829. "_type": 0,
  830. "_sizeMode": 1,
  831. "_fillType": 0,
  832. "_fillCenter": {
  833. "__type__": "cc.Vec2",
  834. "x": 0,
  835. "y": 0
  836. },
  837. "_fillStart": 0,
  838. "_fillRange": 0,
  839. "_isTrimmedMode": true,
  840. "_atlas": null,
  841. "_id": ""
  842. },
  843. {
  844. "__type__": "cc.PrefabInfo",
  845. "root": {
  846. "__id__": 16
  847. },
  848. "asset": {
  849. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  850. },
  851. "fileId": "17D9LAN3tLmIdetPvPXr+D",
  852. "sync": false
  853. },
  854. {
  855. "__type__": "cc.Node",
  856. "_name": "New Node",
  857. "_objFlags": 0,
  858. "_parent": {
  859. "__id__": 16
  860. },
  861. "_children": [
  862. {
  863. "__id__": 24
  864. },
  865. {
  866. "__id__": 27
  867. },
  868. {
  869. "__id__": 30
  870. },
  871. {
  872. "__id__": 33
  873. },
  874. {
  875. "__id__": 36
  876. }
  877. ],
  878. "_active": true,
  879. "_components": [
  880. {
  881. "__id__": 39
  882. }
  883. ],
  884. "_prefab": {
  885. "__id__": 40
  886. },
  887. "_opacity": 255,
  888. "_color": {
  889. "__type__": "cc.Color",
  890. "r": 255,
  891. "g": 255,
  892. "b": 255,
  893. "a": 255
  894. },
  895. "_contentSize": {
  896. "__type__": "cc.Size",
  897. "width": 180,
  898. "height": 30
  899. },
  900. "_anchorPoint": {
  901. "__type__": "cc.Vec2",
  902. "x": 0.5,
  903. "y": 0.5
  904. },
  905. "_trs": {
  906. "__type__": "TypedArray",
  907. "ctor": "Float64Array",
  908. "array": [
  909. 0,
  910. -133.425,
  911. 0,
  912. 0,
  913. 0,
  914. 0,
  915. 1,
  916. 0.8,
  917. 0.8,
  918. 1
  919. ]
  920. },
  921. "_eulerAngles": {
  922. "__type__": "cc.Vec3",
  923. "x": 0,
  924. "y": 0,
  925. "z": 0
  926. },
  927. "_skewX": 0,
  928. "_skewY": 0,
  929. "_is3DNode": false,
  930. "_groupIndex": 0,
  931. "groupIndex": 0,
  932. "_id": ""
  933. },
  934. {
  935. "__type__": "cc.Node",
  936. "_name": "New Sprite",
  937. "_objFlags": 0,
  938. "_parent": {
  939. "__id__": 23
  940. },
  941. "_children": [],
  942. "_active": true,
  943. "_components": [
  944. {
  945. "__id__": 25
  946. }
  947. ],
  948. "_prefab": {
  949. "__id__": 26
  950. },
  951. "_opacity": 255,
  952. "_color": {
  953. "__type__": "cc.Color",
  954. "r": 255,
  955. "g": 255,
  956. "b": 255,
  957. "a": 255
  958. },
  959. "_contentSize": {
  960. "__type__": "cc.Size",
  961. "width": 36,
  962. "height": 36
  963. },
  964. "_anchorPoint": {
  965. "__type__": "cc.Vec2",
  966. "x": 0.5,
  967. "y": 0.5
  968. },
  969. "_trs": {
  970. "__type__": "TypedArray",
  971. "ctor": "Float64Array",
  972. "array": [
  973. -72,
  974. 0,
  975. 0,
  976. 0,
  977. 0,
  978. 0,
  979. 1,
  980. 1,
  981. 1,
  982. 1
  983. ]
  984. },
  985. "_eulerAngles": {
  986. "__type__": "cc.Vec3",
  987. "x": 0,
  988. "y": 0,
  989. "z": 0
  990. },
  991. "_skewX": 0,
  992. "_skewY": 0,
  993. "_is3DNode": false,
  994. "_groupIndex": 0,
  995. "groupIndex": 0,
  996. "_id": ""
  997. },
  998. {
  999. "__type__": "cc.Sprite",
  1000. "_name": "",
  1001. "_objFlags": 0,
  1002. "node": {
  1003. "__id__": 24
  1004. },
  1005. "_enabled": true,
  1006. "_materials": [
  1007. {
  1008. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1009. }
  1010. ],
  1011. "_srcBlendFactor": 770,
  1012. "_dstBlendFactor": 771,
  1013. "_spriteFrame": {
  1014. "__uuid__": "814c247e-ec6e-4d04-a42e-9168ba96559a"
  1015. },
  1016. "_type": 0,
  1017. "_sizeMode": 1,
  1018. "_fillType": 0,
  1019. "_fillCenter": {
  1020. "__type__": "cc.Vec2",
  1021. "x": 0,
  1022. "y": 0
  1023. },
  1024. "_fillStart": 0,
  1025. "_fillRange": 0,
  1026. "_isTrimmedMode": true,
  1027. "_atlas": null,
  1028. "_id": ""
  1029. },
  1030. {
  1031. "__type__": "cc.PrefabInfo",
  1032. "root": {
  1033. "__id__": 16
  1034. },
  1035. "asset": {
  1036. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1037. },
  1038. "fileId": "71XRKCanBADIpndsE3XIX0",
  1039. "sync": false
  1040. },
  1041. {
  1042. "__type__": "cc.Node",
  1043. "_name": "New Sprite",
  1044. "_objFlags": 0,
  1045. "_parent": {
  1046. "__id__": 23
  1047. },
  1048. "_children": [],
  1049. "_active": true,
  1050. "_components": [
  1051. {
  1052. "__id__": 28
  1053. }
  1054. ],
  1055. "_prefab": {
  1056. "__id__": 29
  1057. },
  1058. "_opacity": 255,
  1059. "_color": {
  1060. "__type__": "cc.Color",
  1061. "r": 255,
  1062. "g": 255,
  1063. "b": 255,
  1064. "a": 255
  1065. },
  1066. "_contentSize": {
  1067. "__type__": "cc.Size",
  1068. "width": 36,
  1069. "height": 36
  1070. },
  1071. "_anchorPoint": {
  1072. "__type__": "cc.Vec2",
  1073. "x": 0.5,
  1074. "y": 0.5
  1075. },
  1076. "_trs": {
  1077. "__type__": "TypedArray",
  1078. "ctor": "Float64Array",
  1079. "array": [
  1080. -36,
  1081. 0,
  1082. 0,
  1083. 0,
  1084. 0,
  1085. 0,
  1086. 1,
  1087. 1,
  1088. 1,
  1089. 1
  1090. ]
  1091. },
  1092. "_eulerAngles": {
  1093. "__type__": "cc.Vec3",
  1094. "x": 0,
  1095. "y": 0,
  1096. "z": 0
  1097. },
  1098. "_skewX": 0,
  1099. "_skewY": 0,
  1100. "_is3DNode": false,
  1101. "_groupIndex": 0,
  1102. "groupIndex": 0,
  1103. "_id": ""
  1104. },
  1105. {
  1106. "__type__": "cc.Sprite",
  1107. "_name": "",
  1108. "_objFlags": 0,
  1109. "node": {
  1110. "__id__": 27
  1111. },
  1112. "_enabled": true,
  1113. "_materials": [
  1114. {
  1115. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1116. }
  1117. ],
  1118. "_srcBlendFactor": 770,
  1119. "_dstBlendFactor": 771,
  1120. "_spriteFrame": {
  1121. "__uuid__": "a3f39d56-d3b2-4c36-b0bd-22091297d952"
  1122. },
  1123. "_type": 0,
  1124. "_sizeMode": 1,
  1125. "_fillType": 0,
  1126. "_fillCenter": {
  1127. "__type__": "cc.Vec2",
  1128. "x": 0,
  1129. "y": 0
  1130. },
  1131. "_fillStart": 0,
  1132. "_fillRange": 0,
  1133. "_isTrimmedMode": true,
  1134. "_atlas": null,
  1135. "_id": ""
  1136. },
  1137. {
  1138. "__type__": "cc.PrefabInfo",
  1139. "root": {
  1140. "__id__": 16
  1141. },
  1142. "asset": {
  1143. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1144. },
  1145. "fileId": "8cVR87OIBKYYcMD5U3sbY5",
  1146. "sync": false
  1147. },
  1148. {
  1149. "__type__": "cc.Node",
  1150. "_name": "New Sprite",
  1151. "_objFlags": 0,
  1152. "_parent": {
  1153. "__id__": 23
  1154. },
  1155. "_children": [],
  1156. "_active": true,
  1157. "_components": [
  1158. {
  1159. "__id__": 31
  1160. }
  1161. ],
  1162. "_prefab": {
  1163. "__id__": 32
  1164. },
  1165. "_opacity": 255,
  1166. "_color": {
  1167. "__type__": "cc.Color",
  1168. "r": 255,
  1169. "g": 255,
  1170. "b": 255,
  1171. "a": 255
  1172. },
  1173. "_contentSize": {
  1174. "__type__": "cc.Size",
  1175. "width": 36,
  1176. "height": 36
  1177. },
  1178. "_anchorPoint": {
  1179. "__type__": "cc.Vec2",
  1180. "x": 0.5,
  1181. "y": 0.5
  1182. },
  1183. "_trs": {
  1184. "__type__": "TypedArray",
  1185. "ctor": "Float64Array",
  1186. "array": [
  1187. 0,
  1188. 0,
  1189. 0,
  1190. 0,
  1191. 0,
  1192. 0,
  1193. 1,
  1194. 1,
  1195. 1,
  1196. 1
  1197. ]
  1198. },
  1199. "_eulerAngles": {
  1200. "__type__": "cc.Vec3",
  1201. "x": 0,
  1202. "y": 0,
  1203. "z": 0
  1204. },
  1205. "_skewX": 0,
  1206. "_skewY": 0,
  1207. "_is3DNode": false,
  1208. "_groupIndex": 0,
  1209. "groupIndex": 0,
  1210. "_id": ""
  1211. },
  1212. {
  1213. "__type__": "cc.Sprite",
  1214. "_name": "",
  1215. "_objFlags": 0,
  1216. "node": {
  1217. "__id__": 30
  1218. },
  1219. "_enabled": true,
  1220. "_materials": [
  1221. {
  1222. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1223. }
  1224. ],
  1225. "_srcBlendFactor": 770,
  1226. "_dstBlendFactor": 771,
  1227. "_spriteFrame": {
  1228. "__uuid__": "a3f39d56-d3b2-4c36-b0bd-22091297d952"
  1229. },
  1230. "_type": 0,
  1231. "_sizeMode": 1,
  1232. "_fillType": 0,
  1233. "_fillCenter": {
  1234. "__type__": "cc.Vec2",
  1235. "x": 0,
  1236. "y": 0
  1237. },
  1238. "_fillStart": 0,
  1239. "_fillRange": 0,
  1240. "_isTrimmedMode": true,
  1241. "_atlas": null,
  1242. "_id": ""
  1243. },
  1244. {
  1245. "__type__": "cc.PrefabInfo",
  1246. "root": {
  1247. "__id__": 16
  1248. },
  1249. "asset": {
  1250. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1251. },
  1252. "fileId": "f8T0rncv9PmZlStp3ap2Rc",
  1253. "sync": false
  1254. },
  1255. {
  1256. "__type__": "cc.Node",
  1257. "_name": "New Sprite",
  1258. "_objFlags": 0,
  1259. "_parent": {
  1260. "__id__": 23
  1261. },
  1262. "_children": [],
  1263. "_active": true,
  1264. "_components": [
  1265. {
  1266. "__id__": 34
  1267. }
  1268. ],
  1269. "_prefab": {
  1270. "__id__": 35
  1271. },
  1272. "_opacity": 255,
  1273. "_color": {
  1274. "__type__": "cc.Color",
  1275. "r": 255,
  1276. "g": 255,
  1277. "b": 255,
  1278. "a": 255
  1279. },
  1280. "_contentSize": {
  1281. "__type__": "cc.Size",
  1282. "width": 36,
  1283. "height": 36
  1284. },
  1285. "_anchorPoint": {
  1286. "__type__": "cc.Vec2",
  1287. "x": 0.5,
  1288. "y": 0.5
  1289. },
  1290. "_trs": {
  1291. "__type__": "TypedArray",
  1292. "ctor": "Float64Array",
  1293. "array": [
  1294. 36,
  1295. 0,
  1296. 0,
  1297. 0,
  1298. 0,
  1299. 0,
  1300. 1,
  1301. 1,
  1302. 1,
  1303. 1
  1304. ]
  1305. },
  1306. "_eulerAngles": {
  1307. "__type__": "cc.Vec3",
  1308. "x": 0,
  1309. "y": 0,
  1310. "z": 0
  1311. },
  1312. "_skewX": 0,
  1313. "_skewY": 0,
  1314. "_is3DNode": false,
  1315. "_groupIndex": 0,
  1316. "groupIndex": 0,
  1317. "_id": ""
  1318. },
  1319. {
  1320. "__type__": "cc.Sprite",
  1321. "_name": "",
  1322. "_objFlags": 0,
  1323. "node": {
  1324. "__id__": 33
  1325. },
  1326. "_enabled": true,
  1327. "_materials": [
  1328. {
  1329. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1330. }
  1331. ],
  1332. "_srcBlendFactor": 770,
  1333. "_dstBlendFactor": 771,
  1334. "_spriteFrame": {
  1335. "__uuid__": "a3f39d56-d3b2-4c36-b0bd-22091297d952"
  1336. },
  1337. "_type": 0,
  1338. "_sizeMode": 1,
  1339. "_fillType": 0,
  1340. "_fillCenter": {
  1341. "__type__": "cc.Vec2",
  1342. "x": 0,
  1343. "y": 0
  1344. },
  1345. "_fillStart": 0,
  1346. "_fillRange": 0,
  1347. "_isTrimmedMode": true,
  1348. "_atlas": null,
  1349. "_id": ""
  1350. },
  1351. {
  1352. "__type__": "cc.PrefabInfo",
  1353. "root": {
  1354. "__id__": 16
  1355. },
  1356. "asset": {
  1357. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1358. },
  1359. "fileId": "97jkj8n79GNr882t5FeX74",
  1360. "sync": false
  1361. },
  1362. {
  1363. "__type__": "cc.Node",
  1364. "_name": "New Sprite",
  1365. "_objFlags": 0,
  1366. "_parent": {
  1367. "__id__": 23
  1368. },
  1369. "_children": [],
  1370. "_active": true,
  1371. "_components": [
  1372. {
  1373. "__id__": 37
  1374. }
  1375. ],
  1376. "_prefab": {
  1377. "__id__": 38
  1378. },
  1379. "_opacity": 255,
  1380. "_color": {
  1381. "__type__": "cc.Color",
  1382. "r": 255,
  1383. "g": 255,
  1384. "b": 255,
  1385. "a": 255
  1386. },
  1387. "_contentSize": {
  1388. "__type__": "cc.Size",
  1389. "width": 36,
  1390. "height": 36
  1391. },
  1392. "_anchorPoint": {
  1393. "__type__": "cc.Vec2",
  1394. "x": 0.5,
  1395. "y": 0.5
  1396. },
  1397. "_trs": {
  1398. "__type__": "TypedArray",
  1399. "ctor": "Float64Array",
  1400. "array": [
  1401. 72,
  1402. 0,
  1403. 0,
  1404. 0,
  1405. 0,
  1406. 0,
  1407. 1,
  1408. 1,
  1409. 1,
  1410. 1
  1411. ]
  1412. },
  1413. "_eulerAngles": {
  1414. "__type__": "cc.Vec3",
  1415. "x": 0,
  1416. "y": 0,
  1417. "z": 0
  1418. },
  1419. "_skewX": 0,
  1420. "_skewY": 0,
  1421. "_is3DNode": false,
  1422. "_groupIndex": 0,
  1423. "groupIndex": 0,
  1424. "_id": ""
  1425. },
  1426. {
  1427. "__type__": "cc.Sprite",
  1428. "_name": "",
  1429. "_objFlags": 0,
  1430. "node": {
  1431. "__id__": 36
  1432. },
  1433. "_enabled": true,
  1434. "_materials": [
  1435. {
  1436. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1437. }
  1438. ],
  1439. "_srcBlendFactor": 770,
  1440. "_dstBlendFactor": 771,
  1441. "_spriteFrame": {
  1442. "__uuid__": "a3f39d56-d3b2-4c36-b0bd-22091297d952"
  1443. },
  1444. "_type": 0,
  1445. "_sizeMode": 1,
  1446. "_fillType": 0,
  1447. "_fillCenter": {
  1448. "__type__": "cc.Vec2",
  1449. "x": 0,
  1450. "y": 0
  1451. },
  1452. "_fillStart": 0,
  1453. "_fillRange": 0,
  1454. "_isTrimmedMode": true,
  1455. "_atlas": null,
  1456. "_id": ""
  1457. },
  1458. {
  1459. "__type__": "cc.PrefabInfo",
  1460. "root": {
  1461. "__id__": 16
  1462. },
  1463. "asset": {
  1464. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1465. },
  1466. "fileId": "471mu+4LtLmYrTYjdptXkZ",
  1467. "sync": false
  1468. },
  1469. {
  1470. "__type__": "cc.Layout",
  1471. "_name": "",
  1472. "_objFlags": 0,
  1473. "node": {
  1474. "__id__": 23
  1475. },
  1476. "_enabled": true,
  1477. "_layoutSize": {
  1478. "__type__": "cc.Size",
  1479. "width": 180,
  1480. "height": 30
  1481. },
  1482. "_resize": 0,
  1483. "_N$layoutType": 1,
  1484. "_N$cellSize": {
  1485. "__type__": "cc.Size",
  1486. "width": 40,
  1487. "height": 40
  1488. },
  1489. "_N$startAxis": 0,
  1490. "_N$paddingLeft": 0,
  1491. "_N$paddingRight": 0,
  1492. "_N$paddingTop": 0,
  1493. "_N$paddingBottom": 0,
  1494. "_N$spacingX": 0,
  1495. "_N$spacingY": 0,
  1496. "_N$verticalDirection": 1,
  1497. "_N$horizontalDirection": 0,
  1498. "_N$affectedByScale": false,
  1499. "_id": ""
  1500. },
  1501. {
  1502. "__type__": "cc.PrefabInfo",
  1503. "root": {
  1504. "__id__": 16
  1505. },
  1506. "asset": {
  1507. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1508. },
  1509. "fileId": "57d+SufgRN865SXD7xP9+h",
  1510. "sync": false
  1511. },
  1512. {
  1513. "__type__": "cc.Button",
  1514. "_name": "",
  1515. "_objFlags": 0,
  1516. "node": {
  1517. "__id__": 16
  1518. },
  1519. "_enabled": true,
  1520. "_normalMaterial": null,
  1521. "_grayMaterial": null,
  1522. "duration": 0.1,
  1523. "zoomScale": 0.9,
  1524. "clickEvents": [],
  1525. "_N$interactable": true,
  1526. "_N$enableAutoGrayEffect": false,
  1527. "_N$transition": 3,
  1528. "transition": 3,
  1529. "_N$normalColor": {
  1530. "__type__": "cc.Color",
  1531. "r": 255,
  1532. "g": 255,
  1533. "b": 255,
  1534. "a": 255
  1535. },
  1536. "_N$pressedColor": {
  1537. "__type__": "cc.Color",
  1538. "r": 211,
  1539. "g": 211,
  1540. "b": 211,
  1541. "a": 255
  1542. },
  1543. "pressedColor": {
  1544. "__type__": "cc.Color",
  1545. "r": 211,
  1546. "g": 211,
  1547. "b": 211,
  1548. "a": 255
  1549. },
  1550. "_N$hoverColor": {
  1551. "__type__": "cc.Color",
  1552. "r": 255,
  1553. "g": 255,
  1554. "b": 255,
  1555. "a": 255
  1556. },
  1557. "hoverColor": {
  1558. "__type__": "cc.Color",
  1559. "r": 255,
  1560. "g": 255,
  1561. "b": 255,
  1562. "a": 255
  1563. },
  1564. "_N$disabledColor": {
  1565. "__type__": "cc.Color",
  1566. "r": 124,
  1567. "g": 124,
  1568. "b": 124,
  1569. "a": 255
  1570. },
  1571. "_N$normalSprite": null,
  1572. "_N$pressedSprite": null,
  1573. "pressedSprite": null,
  1574. "_N$hoverSprite": null,
  1575. "hoverSprite": null,
  1576. "_N$disabledSprite": null,
  1577. "_N$target": null,
  1578. "_id": ""
  1579. },
  1580. {
  1581. "__type__": "cc.Button",
  1582. "_name": "",
  1583. "_objFlags": 0,
  1584. "node": {
  1585. "__id__": 16
  1586. },
  1587. "_enabled": true,
  1588. "_normalMaterial": null,
  1589. "_grayMaterial": null,
  1590. "duration": 0.1,
  1591. "zoomScale": 0.95,
  1592. "clickEvents": [
  1593. {
  1594. "__id__": 43
  1595. }
  1596. ],
  1597. "_N$interactable": true,
  1598. "_N$enableAutoGrayEffect": false,
  1599. "_N$transition": 3,
  1600. "transition": 3,
  1601. "_N$normalColor": {
  1602. "__type__": "cc.Color",
  1603. "r": 255,
  1604. "g": 255,
  1605. "b": 255,
  1606. "a": 255
  1607. },
  1608. "_N$pressedColor": {
  1609. "__type__": "cc.Color",
  1610. "r": 211,
  1611. "g": 211,
  1612. "b": 211,
  1613. "a": 255
  1614. },
  1615. "pressedColor": {
  1616. "__type__": "cc.Color",
  1617. "r": 211,
  1618. "g": 211,
  1619. "b": 211,
  1620. "a": 255
  1621. },
  1622. "_N$hoverColor": {
  1623. "__type__": "cc.Color",
  1624. "r": 255,
  1625. "g": 255,
  1626. "b": 255,
  1627. "a": 255
  1628. },
  1629. "hoverColor": {
  1630. "__type__": "cc.Color",
  1631. "r": 255,
  1632. "g": 255,
  1633. "b": 255,
  1634. "a": 255
  1635. },
  1636. "_N$disabledColor": {
  1637. "__type__": "cc.Color",
  1638. "r": 124,
  1639. "g": 124,
  1640. "b": 124,
  1641. "a": 255
  1642. },
  1643. "_N$normalSprite": null,
  1644. "_N$pressedSprite": null,
  1645. "pressedSprite": null,
  1646. "_N$hoverSprite": null,
  1647. "hoverSprite": null,
  1648. "_N$disabledSprite": null,
  1649. "_N$target": null,
  1650. "_id": ""
  1651. },
  1652. {
  1653. "__type__": "cc.ClickEvent",
  1654. "target": {
  1655. "__id__": 16
  1656. },
  1657. "component": "",
  1658. "_componentId": "5b2ceOgcuRGMJHoMDMzln5F",
  1659. "handler": "onclick",
  1660. "customEventData": ""
  1661. },
  1662. {
  1663. "__type__": "5b2ceOgcuRGMJHoMDMzln5F",
  1664. "_name": "",
  1665. "_objFlags": 0,
  1666. "node": {
  1667. "__id__": 16
  1668. },
  1669. "_enabled": true,
  1670. "mName": {
  1671. "__id__": 13
  1672. },
  1673. "mIcon": {
  1674. "__id__": 19
  1675. },
  1676. "mStarNode": {
  1677. "__id__": 23
  1678. },
  1679. "mStarFrame": [
  1680. {
  1681. "__uuid__": "a3f39d56-d3b2-4c36-b0bd-22091297d952"
  1682. },
  1683. {
  1684. "__uuid__": "814c247e-ec6e-4d04-a42e-9168ba96559a"
  1685. }
  1686. ],
  1687. "mNoNode": null,
  1688. "mCount": null,
  1689. "_id": ""
  1690. },
  1691. {
  1692. "__type__": "cc.PrefabInfo",
  1693. "root": {
  1694. "__id__": 16
  1695. },
  1696. "asset": {
  1697. "__uuid__": "a7c2507c-eec2-4a66-9abe-e09531807039"
  1698. },
  1699. "fileId": "8cFWu11lJAorgGUysnttnY",
  1700. "sync": false
  1701. },
  1702. {
  1703. "__type__": "cc.Node",
  1704. "_name": "New Node",
  1705. "_objFlags": 0,
  1706. "_parent": {
  1707. "__id__": 1
  1708. },
  1709. "_children": [
  1710. {
  1711. "__id__": 47
  1712. },
  1713. {
  1714. "__id__": 51
  1715. },
  1716. {
  1717. "__id__": 55
  1718. },
  1719. {
  1720. "__id__": 59
  1721. }
  1722. ],
  1723. "_active": false,
  1724. "_components": [
  1725. {
  1726. "__id__": 63
  1727. }
  1728. ],
  1729. "_prefab": {
  1730. "__id__": 64
  1731. },
  1732. "_opacity": 255,
  1733. "_color": {
  1734. "__type__": "cc.Color",
  1735. "r": 255,
  1736. "g": 255,
  1737. "b": 255,
  1738. "a": 255
  1739. },
  1740. "_contentSize": {
  1741. "__type__": "cc.Size",
  1742. "width": 500,
  1743. "height": 83.6
  1744. },
  1745. "_anchorPoint": {
  1746. "__type__": "cc.Vec2",
  1747. "x": 0.5,
  1748. "y": 1
  1749. },
  1750. "_trs": {
  1751. "__type__": "TypedArray",
  1752. "ctor": "Float64Array",
  1753. "array": [
  1754. 0,
  1755. -159.998,
  1756. 0,
  1757. 0,
  1758. 0,
  1759. 0,
  1760. 1,
  1761. 1,
  1762. 1,
  1763. 1
  1764. ]
  1765. },
  1766. "_eulerAngles": {
  1767. "__type__": "cc.Vec3",
  1768. "x": 0,
  1769. "y": 0,
  1770. "z": 0
  1771. },
  1772. "_skewX": 0,
  1773. "_skewY": 0,
  1774. "_is3DNode": false,
  1775. "_groupIndex": 0,
  1776. "groupIndex": 0,
  1777. "_id": ""
  1778. },
  1779. {
  1780. "__type__": "cc.Node",
  1781. "_name": "New Label",
  1782. "_objFlags": 0,
  1783. "_parent": {
  1784. "__id__": 46
  1785. },
  1786. "_children": [],
  1787. "_active": true,
  1788. "_components": [
  1789. {
  1790. "__id__": 48
  1791. },
  1792. {
  1793. "__id__": 49
  1794. }
  1795. ],
  1796. "_prefab": {
  1797. "__id__": 50
  1798. },
  1799. "_opacity": 255,
  1800. "_color": {
  1801. "__type__": "cc.Color",
  1802. "r": 255,
  1803. "g": 255,
  1804. "b": 255,
  1805. "a": 255
  1806. },
  1807. "_contentSize": {
  1808. "__type__": "cc.Size",
  1809. "width": 156.64,
  1810. "height": 41.8
  1811. },
  1812. "_anchorPoint": {
  1813. "__type__": "cc.Vec2",
  1814. "x": 0.5,
  1815. "y": 0.5
  1816. },
  1817. "_trs": {
  1818. "__type__": "TypedArray",
  1819. "ctor": "Float64Array",
  1820. "array": [
  1821. 0,
  1822. -20.9,
  1823. 0,
  1824. 0,
  1825. 0,
  1826. 0,
  1827. 1,
  1828. 1,
  1829. 1,
  1830. 1
  1831. ]
  1832. },
  1833. "_eulerAngles": {
  1834. "__type__": "cc.Vec3",
  1835. "x": 0,
  1836. "y": 0,
  1837. "z": 0
  1838. },
  1839. "_skewX": 0,
  1840. "_skewY": 0,
  1841. "_is3DNode": false,
  1842. "_groupIndex": 0,
  1843. "groupIndex": 0,
  1844. "_id": ""
  1845. },
  1846. {
  1847. "__type__": "cc.Label",
  1848. "_name": "",
  1849. "_objFlags": 0,
  1850. "node": {
  1851. "__id__": 47
  1852. },
  1853. "_enabled": true,
  1854. "_materials": [
  1855. {
  1856. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1857. }
  1858. ],
  1859. "_srcBlendFactor": 770,
  1860. "_dstBlendFactor": 771,
  1861. "_string": "射手攻击+100",
  1862. "_N$string": "射手攻击+100",
  1863. "_fontSize": 25,
  1864. "_lineHeight": 30,
  1865. "_enableWrapText": true,
  1866. "_N$file": {
  1867. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  1868. },
  1869. "_isSystemFontUsed": false,
  1870. "_spacingX": 0,
  1871. "_batchAsBitmap": false,
  1872. "_styleFlags": 0,
  1873. "_underlineHeight": 0,
  1874. "_N$horizontalAlign": 1,
  1875. "_N$verticalAlign": 1,
  1876. "_N$fontFamily": "Arial",
  1877. "_N$overflow": 0,
  1878. "_N$cacheMode": 0,
  1879. "_id": ""
  1880. },
  1881. {
  1882. "__type__": "cc.LabelOutline",
  1883. "_name": "",
  1884. "_objFlags": 0,
  1885. "node": {
  1886. "__id__": 47
  1887. },
  1888. "_enabled": true,
  1889. "_color": {
  1890. "__type__": "cc.Color",
  1891. "r": 80,
  1892. "g": 64,
  1893. "b": 0,
  1894. "a": 255
  1895. },
  1896. "_width": 2,
  1897. "_id": ""
  1898. },
  1899. {
  1900. "__type__": "cc.PrefabInfo",
  1901. "root": {
  1902. "__id__": 1
  1903. },
  1904. "asset": {
  1905. "__uuid__": "3080661e-f7b7-4825-9f4c-67ec3ef2816c"
  1906. },
  1907. "fileId": "acxtgpJ7BNS7RFRv/irUgm",
  1908. "sync": false
  1909. },
  1910. {
  1911. "__type__": "cc.Node",
  1912. "_name": "New Label",
  1913. "_objFlags": 0,
  1914. "_parent": {
  1915. "__id__": 46
  1916. },
  1917. "_children": [],
  1918. "_active": true,
  1919. "_components": [
  1920. {
  1921. "__id__": 52
  1922. },
  1923. {
  1924. "__id__": 53
  1925. }
  1926. ],
  1927. "_prefab": {
  1928. "__id__": 54
  1929. },
  1930. "_opacity": 255,
  1931. "_color": {
  1932. "__type__": "cc.Color",
  1933. "r": 255,
  1934. "g": 255,
  1935. "b": 255,
  1936. "a": 255
  1937. },
  1938. "_contentSize": {
  1939. "__type__": "cc.Size",
  1940. "width": 156.64,
  1941. "height": 41.8
  1942. },
  1943. "_anchorPoint": {
  1944. "__type__": "cc.Vec2",
  1945. "x": 0.5,
  1946. "y": 0.5
  1947. },
  1948. "_trs": {
  1949. "__type__": "TypedArray",
  1950. "ctor": "Float64Array",
  1951. "array": [
  1952. 0,
  1953. -62.699999999999996,
  1954. 0,
  1955. 0,
  1956. 0,
  1957. 0,
  1958. 1,
  1959. 1,
  1960. 1,
  1961. 1
  1962. ]
  1963. },
  1964. "_eulerAngles": {
  1965. "__type__": "cc.Vec3",
  1966. "x": 0,
  1967. "y": 0,
  1968. "z": 0
  1969. },
  1970. "_skewX": 0,
  1971. "_skewY": 0,
  1972. "_is3DNode": false,
  1973. "_groupIndex": 0,
  1974. "groupIndex": 0,
  1975. "_id": ""
  1976. },
  1977. {
  1978. "__type__": "cc.Label",
  1979. "_name": "",
  1980. "_objFlags": 0,
  1981. "node": {
  1982. "__id__": 51
  1983. },
  1984. "_enabled": true,
  1985. "_materials": [
  1986. {
  1987. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1988. }
  1989. ],
  1990. "_srcBlendFactor": 770,
  1991. "_dstBlendFactor": 771,
  1992. "_string": "射手攻击+100",
  1993. "_N$string": "射手攻击+100",
  1994. "_fontSize": 25,
  1995. "_lineHeight": 30,
  1996. "_enableWrapText": true,
  1997. "_N$file": {
  1998. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  1999. },
  2000. "_isSystemFontUsed": false,
  2001. "_spacingX": 0,
  2002. "_batchAsBitmap": false,
  2003. "_styleFlags": 0,
  2004. "_underlineHeight": 0,
  2005. "_N$horizontalAlign": 1,
  2006. "_N$verticalAlign": 1,
  2007. "_N$fontFamily": "Arial",
  2008. "_N$overflow": 0,
  2009. "_N$cacheMode": 0,
  2010. "_id": ""
  2011. },
  2012. {
  2013. "__type__": "cc.LabelOutline",
  2014. "_name": "",
  2015. "_objFlags": 0,
  2016. "node": {
  2017. "__id__": 51
  2018. },
  2019. "_enabled": true,
  2020. "_color": {
  2021. "__type__": "cc.Color",
  2022. "r": 80,
  2023. "g": 64,
  2024. "b": 0,
  2025. "a": 255
  2026. },
  2027. "_width": 2,
  2028. "_id": ""
  2029. },
  2030. {
  2031. "__type__": "cc.PrefabInfo",
  2032. "root": {
  2033. "__id__": 1
  2034. },
  2035. "asset": {
  2036. "__uuid__": "3080661e-f7b7-4825-9f4c-67ec3ef2816c"
  2037. },
  2038. "fileId": "66qag5kghBS4U9RD/jNhvG",
  2039. "sync": false
  2040. },
  2041. {
  2042. "__type__": "cc.Node",
  2043. "_name": "New Label",
  2044. "_objFlags": 0,
  2045. "_parent": {
  2046. "__id__": 46
  2047. },
  2048. "_children": [],
  2049. "_active": true,
  2050. "_components": [
  2051. {
  2052. "__id__": 56
  2053. },
  2054. {
  2055. "__id__": 57
  2056. }
  2057. ],
  2058. "_prefab": {
  2059. "__id__": 58
  2060. },
  2061. "_opacity": 255,
  2062. "_color": {
  2063. "__type__": "cc.Color",
  2064. "r": 255,
  2065. "g": 255,
  2066. "b": 255,
  2067. "a": 255
  2068. },
  2069. "_contentSize": {
  2070. "__type__": "cc.Size",
  2071. "width": 156.64,
  2072. "height": 41.8
  2073. },
  2074. "_anchorPoint": {
  2075. "__type__": "cc.Vec2",
  2076. "x": 0.5,
  2077. "y": 0.5
  2078. },
  2079. "_trs": {
  2080. "__type__": "TypedArray",
  2081. "ctor": "Float64Array",
  2082. "array": [
  2083. 0,
  2084. -104.5,
  2085. 0,
  2086. 0,
  2087. 0,
  2088. 0,
  2089. 1,
  2090. 1,
  2091. 1,
  2092. 1
  2093. ]
  2094. },
  2095. "_eulerAngles": {
  2096. "__type__": "cc.Vec3",
  2097. "x": 0,
  2098. "y": 0,
  2099. "z": 0
  2100. },
  2101. "_skewX": 0,
  2102. "_skewY": 0,
  2103. "_is3DNode": false,
  2104. "_groupIndex": 0,
  2105. "groupIndex": 0,
  2106. "_id": ""
  2107. },
  2108. {
  2109. "__type__": "cc.Label",
  2110. "_name": "",
  2111. "_objFlags": 0,
  2112. "node": {
  2113. "__id__": 55
  2114. },
  2115. "_enabled": true,
  2116. "_materials": [
  2117. {
  2118. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2119. }
  2120. ],
  2121. "_srcBlendFactor": 770,
  2122. "_dstBlendFactor": 771,
  2123. "_string": "射手攻击+100",
  2124. "_N$string": "射手攻击+100",
  2125. "_fontSize": 25,
  2126. "_lineHeight": 30,
  2127. "_enableWrapText": true,
  2128. "_N$file": {
  2129. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  2130. },
  2131. "_isSystemFontUsed": false,
  2132. "_spacingX": 0,
  2133. "_batchAsBitmap": false,
  2134. "_styleFlags": 0,
  2135. "_underlineHeight": 0,
  2136. "_N$horizontalAlign": 1,
  2137. "_N$verticalAlign": 1,
  2138. "_N$fontFamily": "Arial",
  2139. "_N$overflow": 0,
  2140. "_N$cacheMode": 0,
  2141. "_id": ""
  2142. },
  2143. {
  2144. "__type__": "cc.LabelOutline",
  2145. "_name": "",
  2146. "_objFlags": 0,
  2147. "node": {
  2148. "__id__": 55
  2149. },
  2150. "_enabled": true,
  2151. "_color": {
  2152. "__type__": "cc.Color",
  2153. "r": 80,
  2154. "g": 64,
  2155. "b": 0,
  2156. "a": 255
  2157. },
  2158. "_width": 2,
  2159. "_id": ""
  2160. },
  2161. {
  2162. "__type__": "cc.PrefabInfo",
  2163. "root": {
  2164. "__id__": 1
  2165. },
  2166. "asset": {
  2167. "__uuid__": "3080661e-f7b7-4825-9f4c-67ec3ef2816c"
  2168. },
  2169. "fileId": "29hyNx4XFDIo3mVlFg2xYK",
  2170. "sync": false
  2171. },
  2172. {
  2173. "__type__": "cc.Node",
  2174. "_name": "New Label",
  2175. "_objFlags": 0,
  2176. "_parent": {
  2177. "__id__": 46
  2178. },
  2179. "_children": [],
  2180. "_active": true,
  2181. "_components": [
  2182. {
  2183. "__id__": 60
  2184. },
  2185. {
  2186. "__id__": 61
  2187. }
  2188. ],
  2189. "_prefab": {
  2190. "__id__": 62
  2191. },
  2192. "_opacity": 255,
  2193. "_color": {
  2194. "__type__": "cc.Color",
  2195. "r": 255,
  2196. "g": 255,
  2197. "b": 255,
  2198. "a": 255
  2199. },
  2200. "_contentSize": {
  2201. "__type__": "cc.Size",
  2202. "width": 156.64,
  2203. "height": 41.8
  2204. },
  2205. "_anchorPoint": {
  2206. "__type__": "cc.Vec2",
  2207. "x": 0.5,
  2208. "y": 0.5
  2209. },
  2210. "_trs": {
  2211. "__type__": "TypedArray",
  2212. "ctor": "Float64Array",
  2213. "array": [
  2214. 0,
  2215. -146.3,
  2216. 0,
  2217. 0,
  2218. 0,
  2219. 0,
  2220. 1,
  2221. 1,
  2222. 1,
  2223. 1
  2224. ]
  2225. },
  2226. "_eulerAngles": {
  2227. "__type__": "cc.Vec3",
  2228. "x": 0,
  2229. "y": 0,
  2230. "z": 0
  2231. },
  2232. "_skewX": 0,
  2233. "_skewY": 0,
  2234. "_is3DNode": false,
  2235. "_groupIndex": 0,
  2236. "groupIndex": 0,
  2237. "_id": ""
  2238. },
  2239. {
  2240. "__type__": "cc.Label",
  2241. "_name": "",
  2242. "_objFlags": 0,
  2243. "node": {
  2244. "__id__": 59
  2245. },
  2246. "_enabled": true,
  2247. "_materials": [
  2248. {
  2249. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2250. }
  2251. ],
  2252. "_srcBlendFactor": 770,
  2253. "_dstBlendFactor": 771,
  2254. "_string": "射手攻击+100",
  2255. "_N$string": "射手攻击+100",
  2256. "_fontSize": 25,
  2257. "_lineHeight": 30,
  2258. "_enableWrapText": true,
  2259. "_N$file": {
  2260. "__uuid__": "1cdb5762-18d1-4d60-a364-c717229e08e9"
  2261. },
  2262. "_isSystemFontUsed": false,
  2263. "_spacingX": 0,
  2264. "_batchAsBitmap": false,
  2265. "_styleFlags": 0,
  2266. "_underlineHeight": 0,
  2267. "_N$horizontalAlign": 1,
  2268. "_N$verticalAlign": 1,
  2269. "_N$fontFamily": "Arial",
  2270. "_N$overflow": 0,
  2271. "_N$cacheMode": 0,
  2272. "_id": ""
  2273. },
  2274. {
  2275. "__type__": "cc.LabelOutline",
  2276. "_name": "",
  2277. "_objFlags": 0,
  2278. "node": {
  2279. "__id__": 59
  2280. },
  2281. "_enabled": true,
  2282. "_color": {
  2283. "__type__": "cc.Color",
  2284. "r": 80,
  2285. "g": 64,
  2286. "b": 0,
  2287. "a": 255
  2288. },
  2289. "_width": 2,
  2290. "_id": ""
  2291. },
  2292. {
  2293. "__type__": "cc.PrefabInfo",
  2294. "root": {
  2295. "__id__": 1
  2296. },
  2297. "asset": {
  2298. "__uuid__": "3080661e-f7b7-4825-9f4c-67ec3ef2816c"
  2299. },
  2300. "fileId": "c3ZDQSir9F0ZNyt0S1cKNN",
  2301. "sync": false
  2302. },
  2303. {
  2304. "__type__": "cc.Layout",
  2305. "_name": "",
  2306. "_objFlags": 0,
  2307. "node": {
  2308. "__id__": 46
  2309. },
  2310. "_enabled": true,
  2311. "_layoutSize": {
  2312. "__type__": "cc.Size",
  2313. "width": 500,
  2314. "height": 83.6
  2315. },
  2316. "_resize": 0,
  2317. "_N$layoutType": 2,
  2318. "_N$cellSize": {
  2319. "__type__": "cc.Size",
  2320. "width": 40,
  2321. "height": 40
  2322. },
  2323. "_N$startAxis": 0,
  2324. "_N$paddingLeft": 0,
  2325. "_N$paddingRight": 0,
  2326. "_N$paddingTop": 0,
  2327. "_N$paddingBottom": 0,
  2328. "_N$spacingX": 0,
  2329. "_N$spacingY": 0,
  2330. "_N$verticalDirection": 1,
  2331. "_N$horizontalDirection": 0,
  2332. "_N$affectedByScale": false,
  2333. "_id": ""
  2334. },
  2335. {
  2336. "__type__": "cc.PrefabInfo",
  2337. "root": {
  2338. "__id__": 1
  2339. },
  2340. "asset": {
  2341. "__uuid__": "3080661e-f7b7-4825-9f4c-67ec3ef2816c"
  2342. },
  2343. "fileId": "55kzXKGeRBL6QH1QhsuKn6",
  2344. "sync": false
  2345. },
  2346. {
  2347. "__type__": "338b5cedzdI9o1CEe0eo4ZO",
  2348. "_name": "",
  2349. "_objFlags": 0,
  2350. "node": {
  2351. "__id__": 1
  2352. },
  2353. "_enabled": true,
  2354. "mCardItem": {
  2355. "__id__": 44
  2356. },
  2357. "_id": ""
  2358. },
  2359. {
  2360. "__type__": "cc.PrefabInfo",
  2361. "root": {
  2362. "__id__": 1
  2363. },
  2364. "asset": {
  2365. "__uuid__": "3080661e-f7b7-4825-9f4c-67ec3ef2816c"
  2366. },
  2367. "fileId": "",
  2368. "sync": false
  2369. }
  2370. ]