skillBuyAlert.prefab 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133
  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. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "skillBuyAlert",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 6
  24. }
  25. ],
  26. "_active": true,
  27. "_level": 1,
  28. "_components": [
  29. {
  30. "__id__": 61
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 62
  35. },
  36. "_opacity": 255,
  37. "_color": {
  38. "__type__": "cc.Color",
  39. "r": 255,
  40. "g": 255,
  41. "b": 255,
  42. "a": 255
  43. },
  44. "_contentSize": {
  45. "__type__": "cc.Size",
  46. "width": 0,
  47. "height": 0
  48. },
  49. "_anchorPoint": {
  50. "__type__": "cc.Vec2",
  51. "x": 0.5,
  52. "y": 0.5
  53. },
  54. "_position": {
  55. "__type__": "cc.Vec3",
  56. "x": 0,
  57. "y": 0,
  58. "z": 0
  59. },
  60. "_scale": {
  61. "__type__": "cc.Vec3",
  62. "x": 1,
  63. "y": 1,
  64. "z": 1
  65. },
  66. "_rotationX": 0,
  67. "_rotationY": 0,
  68. "_quat": {
  69. "__type__": "cc.Quat",
  70. "x": 0,
  71. "y": 0,
  72. "z": 0,
  73. "w": 1
  74. },
  75. "_skewX": 0,
  76. "_skewY": 0,
  77. "_zIndex": 0,
  78. "groupIndex": 0,
  79. "_id": ""
  80. },
  81. {
  82. "__type__": "cc.Node",
  83. "_name": "star_mask",
  84. "_objFlags": 0,
  85. "_parent": {
  86. "__id__": 1
  87. },
  88. "_children": [],
  89. "_active": true,
  90. "_level": 2,
  91. "_components": [
  92. {
  93. "__id__": 3
  94. },
  95. {
  96. "__id__": 4
  97. }
  98. ],
  99. "_prefab": {
  100. "__id__": 5
  101. },
  102. "_opacity": 153,
  103. "_color": {
  104. "__type__": "cc.Color",
  105. "r": 0,
  106. "g": 0,
  107. "b": 0,
  108. "a": 255
  109. },
  110. "_contentSize": {
  111. "__type__": "cc.Size",
  112. "width": 1000,
  113. "height": 2500
  114. },
  115. "_anchorPoint": {
  116. "__type__": "cc.Vec2",
  117. "x": 0.5,
  118. "y": 0.5
  119. },
  120. "_position": {
  121. "__type__": "cc.Vec3",
  122. "x": 0,
  123. "y": 0,
  124. "z": 0
  125. },
  126. "_scale": {
  127. "__type__": "cc.Vec3",
  128. "x": 1,
  129. "y": 1,
  130. "z": 1
  131. },
  132. "_rotationX": 0,
  133. "_rotationY": 0,
  134. "_quat": {
  135. "__type__": "cc.Quat",
  136. "x": 0,
  137. "y": 0,
  138. "z": 0,
  139. "w": 1
  140. },
  141. "_skewX": 0,
  142. "_skewY": 0,
  143. "_zIndex": 0,
  144. "groupIndex": 0,
  145. "_id": ""
  146. },
  147. {
  148. "__type__": "cc.Sprite",
  149. "_name": "",
  150. "_objFlags": 0,
  151. "node": {
  152. "__id__": 2
  153. },
  154. "_enabled": true,
  155. "_srcBlendFactor": 770,
  156. "_dstBlendFactor": 771,
  157. "_spriteFrame": {
  158. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  159. },
  160. "_type": 0,
  161. "_sizeMode": 0,
  162. "_fillType": 0,
  163. "_fillCenter": {
  164. "__type__": "cc.Vec2",
  165. "x": 0,
  166. "y": 0
  167. },
  168. "_fillStart": 0,
  169. "_fillRange": 0,
  170. "_isTrimmedMode": true,
  171. "_state": 0,
  172. "_atlas": null,
  173. "_id": "90EVBCd7FPYIcPEmY9fbR3"
  174. },
  175. {
  176. "__type__": "cc.BlockInputEvents",
  177. "_name": "",
  178. "_objFlags": 0,
  179. "node": {
  180. "__id__": 2
  181. },
  182. "_enabled": true,
  183. "_id": "acY3dJov9JZqRxgKAChtO3"
  184. },
  185. {
  186. "__type__": "cc.PrefabInfo",
  187. "root": {
  188. "__id__": 1
  189. },
  190. "asset": {
  191. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  192. },
  193. "fileId": "660A8PWy5DFKHKVtyHVlsb",
  194. "sync": false
  195. },
  196. {
  197. "__type__": "cc.Node",
  198. "_name": "content",
  199. "_objFlags": 0,
  200. "_parent": {
  201. "__id__": 1
  202. },
  203. "_children": [
  204. {
  205. "__id__": 7
  206. },
  207. {
  208. "__id__": 10
  209. },
  210. {
  211. "__id__": 16
  212. },
  213. {
  214. "__id__": 22
  215. },
  216. {
  217. "__id__": 25
  218. },
  219. {
  220. "__id__": 43
  221. },
  222. {
  223. "__id__": 46
  224. },
  225. {
  226. "__id__": 54
  227. }
  228. ],
  229. "_active": true,
  230. "_level": 2,
  231. "_components": [],
  232. "_prefab": {
  233. "__id__": 60
  234. },
  235. "_opacity": 255,
  236. "_color": {
  237. "__type__": "cc.Color",
  238. "r": 255,
  239. "g": 255,
  240. "b": 255,
  241. "a": 255
  242. },
  243. "_contentSize": {
  244. "__type__": "cc.Size",
  245. "width": 460,
  246. "height": 600
  247. },
  248. "_anchorPoint": {
  249. "__type__": "cc.Vec2",
  250. "x": 0.5,
  251. "y": 0.5
  252. },
  253. "_position": {
  254. "__type__": "cc.Vec3",
  255. "x": 0,
  256. "y": 0,
  257. "z": 0
  258. },
  259. "_scale": {
  260. "__type__": "cc.Vec3",
  261. "x": 1,
  262. "y": 1,
  263. "z": 1
  264. },
  265. "_rotationX": 0,
  266. "_rotationY": 0,
  267. "_quat": {
  268. "__type__": "cc.Quat",
  269. "x": 0,
  270. "y": 0,
  271. "z": 0,
  272. "w": 1
  273. },
  274. "_skewX": 0,
  275. "_skewY": 0,
  276. "_zIndex": 0,
  277. "groupIndex": 0,
  278. "_id": ""
  279. },
  280. {
  281. "__type__": "cc.Node",
  282. "_name": "draw_bg",
  283. "_objFlags": 0,
  284. "_parent": {
  285. "__id__": 6
  286. },
  287. "_children": [],
  288. "_active": true,
  289. "_level": 3,
  290. "_components": [
  291. {
  292. "__id__": 8
  293. }
  294. ],
  295. "_prefab": {
  296. "__id__": 9
  297. },
  298. "_opacity": 255,
  299. "_color": {
  300. "__type__": "cc.Color",
  301. "r": 255,
  302. "g": 255,
  303. "b": 255,
  304. "a": 255
  305. },
  306. "_contentSize": {
  307. "__type__": "cc.Size",
  308. "width": 460,
  309. "height": 600
  310. },
  311. "_anchorPoint": {
  312. "__type__": "cc.Vec2",
  313. "x": 0.5,
  314. "y": 0.5
  315. },
  316. "_position": {
  317. "__type__": "cc.Vec3",
  318. "x": 0,
  319. "y": 0,
  320. "z": 0
  321. },
  322. "_scale": {
  323. "__type__": "cc.Vec3",
  324. "x": 1,
  325. "y": 1,
  326. "z": 1
  327. },
  328. "_rotationX": 0,
  329. "_rotationY": 0,
  330. "_quat": {
  331. "__type__": "cc.Quat",
  332. "x": 0,
  333. "y": 0,
  334. "z": 0,
  335. "w": 1
  336. },
  337. "_skewX": 0,
  338. "_skewY": 0,
  339. "_zIndex": 0,
  340. "groupIndex": 0,
  341. "_id": ""
  342. },
  343. {
  344. "__type__": "cc.Sprite",
  345. "_name": "",
  346. "_objFlags": 0,
  347. "node": {
  348. "__id__": 7
  349. },
  350. "_enabled": true,
  351. "_srcBlendFactor": 770,
  352. "_dstBlendFactor": 771,
  353. "_spriteFrame": {
  354. "__uuid__": "46fff2fd-a06a-4b3d-a835-547c67766224"
  355. },
  356. "_type": 1,
  357. "_sizeMode": 0,
  358. "_fillType": 0,
  359. "_fillCenter": {
  360. "__type__": "cc.Vec2",
  361. "x": 0,
  362. "y": 0
  363. },
  364. "_fillStart": 0,
  365. "_fillRange": 0,
  366. "_isTrimmedMode": true,
  367. "_state": 0,
  368. "_atlas": null,
  369. "_id": "be8sZe+f9KpbwICdXISbZe"
  370. },
  371. {
  372. "__type__": "cc.PrefabInfo",
  373. "root": {
  374. "__id__": 1
  375. },
  376. "asset": {
  377. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  378. },
  379. "fileId": "193NwcnfdP+KWB7HAgwKwO",
  380. "sync": false
  381. },
  382. {
  383. "__type__": "cc.Node",
  384. "_name": "richtext",
  385. "_objFlags": 0,
  386. "_parent": {
  387. "__id__": 6
  388. },
  389. "_children": [
  390. {
  391. "__id__": 11
  392. }
  393. ],
  394. "_active": true,
  395. "_level": 3,
  396. "_components": [
  397. {
  398. "__id__": 14
  399. }
  400. ],
  401. "_prefab": {
  402. "__id__": 15
  403. },
  404. "_opacity": 255,
  405. "_color": {
  406. "__type__": "cc.Color",
  407. "r": 255,
  408. "g": 255,
  409. "b": 255,
  410. "a": 255
  411. },
  412. "_contentSize": {
  413. "__type__": "cc.Size",
  414. "width": 300,
  415. "height": 32
  416. },
  417. "_anchorPoint": {
  418. "__type__": "cc.Vec2",
  419. "x": 0.5,
  420. "y": 0.5
  421. },
  422. "_position": {
  423. "__type__": "cc.Vec3",
  424. "x": 0,
  425. "y": 161,
  426. "z": 0
  427. },
  428. "_scale": {
  429. "__type__": "cc.Vec3",
  430. "x": 1,
  431. "y": 1,
  432. "z": 1
  433. },
  434. "_rotationX": 0,
  435. "_rotationY": 0,
  436. "_quat": {
  437. "__type__": "cc.Quat",
  438. "x": 0,
  439. "y": 0,
  440. "z": 0,
  441. "w": 1
  442. },
  443. "_skewX": 0,
  444. "_skewY": 0,
  445. "_zIndex": 0,
  446. "groupIndex": 0,
  447. "_id": ""
  448. },
  449. {
  450. "__type__": "cc.PrivateNode",
  451. "_name": "RICHTEXT_CHILD",
  452. "_objFlags": 0,
  453. "_parent": {
  454. "__id__": 10
  455. },
  456. "_children": [],
  457. "_active": true,
  458. "_level": 4,
  459. "_components": [
  460. {
  461. "__id__": 12
  462. }
  463. ],
  464. "_prefab": {
  465. "__id__": 13
  466. },
  467. "_opacity": 255,
  468. "_color": {
  469. "__type__": "cc.Color",
  470. "r": 0,
  471. "g": 255,
  472. "b": 0,
  473. "a": 255
  474. },
  475. "_contentSize": {
  476. "__type__": "cc.Size",
  477. "width": 60.01,
  478. "height": 32
  479. },
  480. "_anchorPoint": {
  481. "__type__": "cc.Vec2",
  482. "x": 0,
  483. "y": 0
  484. },
  485. "_position": {
  486. "__type__": "cc.Vec3",
  487. "x": -30.005,
  488. "y": -16,
  489. "z": 0
  490. },
  491. "_scale": {
  492. "__type__": "cc.Vec3",
  493. "x": 1,
  494. "y": 1,
  495. "z": 1
  496. },
  497. "_rotationX": 0,
  498. "_rotationY": 0,
  499. "_quat": {
  500. "__type__": "cc.Quat",
  501. "x": 0,
  502. "y": 0,
  503. "z": 0,
  504. "w": 1
  505. },
  506. "_skewX": 0,
  507. "_skewY": 0,
  508. "_zIndex": -32768,
  509. "groupIndex": 0,
  510. "_id": ""
  511. },
  512. {
  513. "__type__": "cc.Label",
  514. "_name": "",
  515. "_objFlags": 0,
  516. "node": {
  517. "__id__": 11
  518. },
  519. "_enabled": true,
  520. "_srcBlendFactor": 1,
  521. "_dstBlendFactor": 771,
  522. "_useOriginalSize": true,
  523. "_string": "Rich",
  524. "_N$string": "Rich",
  525. "_fontSize": 30,
  526. "_lineHeight": 32,
  527. "_enableWrapText": true,
  528. "_N$file": null,
  529. "_isSystemFontUsed": true,
  530. "_spacingX": 0,
  531. "_N$horizontalAlign": 0,
  532. "_N$verticalAlign": 1,
  533. "_N$fontFamily": "Arial",
  534. "_N$overflow": 0,
  535. "_id": "303MJjksZLy78nwXmmCMgZ"
  536. },
  537. {
  538. "__type__": "cc.PrefabInfo",
  539. "root": {
  540. "__id__": 1
  541. },
  542. "asset": {
  543. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  544. },
  545. "fileId": "b8Ix80R/xHUo55ZfWca5CY",
  546. "sync": false
  547. },
  548. {
  549. "__type__": "cc.RichText",
  550. "_name": "",
  551. "_objFlags": 0,
  552. "node": {
  553. "__id__": 10
  554. },
  555. "_enabled": true,
  556. "_N$string": "<color=#00ff00>Rich</c>",
  557. "_N$horizontalAlign": 1,
  558. "_N$fontSize": 30,
  559. "_N$font": null,
  560. "_N$maxWidth": 300,
  561. "_N$lineHeight": 32,
  562. "_N$imageAtlas": null,
  563. "_N$handleTouchEvent": true,
  564. "_id": "94wRmznKhCG52pM2MdvlMt"
  565. },
  566. {
  567. "__type__": "cc.PrefabInfo",
  568. "root": {
  569. "__id__": 1
  570. },
  571. "asset": {
  572. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  573. },
  574. "fileId": "c9hwkGMsBK665Kwaaf+CEL",
  575. "sync": false
  576. },
  577. {
  578. "__type__": "cc.Node",
  579. "_name": "richtext",
  580. "_objFlags": 0,
  581. "_parent": {
  582. "__id__": 6
  583. },
  584. "_children": [
  585. {
  586. "__id__": 17
  587. }
  588. ],
  589. "_active": true,
  590. "_level": 3,
  591. "_components": [
  592. {
  593. "__id__": 20
  594. }
  595. ],
  596. "_prefab": {
  597. "__id__": 21
  598. },
  599. "_opacity": 255,
  600. "_color": {
  601. "__type__": "cc.Color",
  602. "r": 38,
  603. "g": 36,
  604. "b": 36,
  605. "a": 255
  606. },
  607. "_contentSize": {
  608. "__type__": "cc.Size",
  609. "width": 300,
  610. "height": 35
  611. },
  612. "_anchorPoint": {
  613. "__type__": "cc.Vec2",
  614. "x": 0.5,
  615. "y": 0.5
  616. },
  617. "_position": {
  618. "__type__": "cc.Vec3",
  619. "x": 0,
  620. "y": 90,
  621. "z": 0
  622. },
  623. "_scale": {
  624. "__type__": "cc.Vec3",
  625. "x": 1,
  626. "y": 1,
  627. "z": 1
  628. },
  629. "_rotationX": 0,
  630. "_rotationY": 0,
  631. "_quat": {
  632. "__type__": "cc.Quat",
  633. "x": 0,
  634. "y": 0,
  635. "z": 0,
  636. "w": 1
  637. },
  638. "_skewX": 0,
  639. "_skewY": 0,
  640. "_zIndex": 0,
  641. "groupIndex": 0,
  642. "_id": ""
  643. },
  644. {
  645. "__type__": "cc.PrivateNode",
  646. "_name": "RICHTEXT_CHILD",
  647. "_objFlags": 0,
  648. "_parent": {
  649. "__id__": 16
  650. },
  651. "_children": [],
  652. "_active": true,
  653. "_level": 4,
  654. "_components": [
  655. {
  656. "__id__": 18
  657. }
  658. ],
  659. "_prefab": {
  660. "__id__": 19
  661. },
  662. "_opacity": 255,
  663. "_color": {
  664. "__type__": "cc.Color",
  665. "r": 0,
  666. "g": 255,
  667. "b": 0,
  668. "a": 255
  669. },
  670. "_contentSize": {
  671. "__type__": "cc.Size",
  672. "width": 48.01,
  673. "height": 35
  674. },
  675. "_anchorPoint": {
  676. "__type__": "cc.Vec2",
  677. "x": 0,
  678. "y": 0
  679. },
  680. "_position": {
  681. "__type__": "cc.Vec3",
  682. "x": -24.005,
  683. "y": -17.5,
  684. "z": 0
  685. },
  686. "_scale": {
  687. "__type__": "cc.Vec3",
  688. "x": 1,
  689. "y": 1,
  690. "z": 1
  691. },
  692. "_rotationX": 0,
  693. "_rotationY": 0,
  694. "_quat": {
  695. "__type__": "cc.Quat",
  696. "x": 0,
  697. "y": 0,
  698. "z": 0,
  699. "w": 1
  700. },
  701. "_skewX": 0,
  702. "_skewY": 0,
  703. "_zIndex": -32768,
  704. "groupIndex": 0,
  705. "_id": ""
  706. },
  707. {
  708. "__type__": "cc.Label",
  709. "_name": "",
  710. "_objFlags": 0,
  711. "node": {
  712. "__id__": 17
  713. },
  714. "_enabled": true,
  715. "_srcBlendFactor": 1,
  716. "_dstBlendFactor": 771,
  717. "_useOriginalSize": true,
  718. "_string": "Rich",
  719. "_N$string": "Rich",
  720. "_fontSize": 24,
  721. "_lineHeight": 35,
  722. "_enableWrapText": true,
  723. "_N$file": null,
  724. "_isSystemFontUsed": true,
  725. "_spacingX": 0,
  726. "_N$horizontalAlign": 0,
  727. "_N$verticalAlign": 1,
  728. "_N$fontFamily": "Arial",
  729. "_N$overflow": 0,
  730. "_id": "d18zU77xxHMYAjZZcCaP+j"
  731. },
  732. {
  733. "__type__": "cc.PrefabInfo",
  734. "root": {
  735. "__id__": 1
  736. },
  737. "asset": {
  738. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  739. },
  740. "fileId": "55iN7KvrFN9aY4wg+C5ziT",
  741. "sync": false
  742. },
  743. {
  744. "__type__": "cc.RichText",
  745. "_name": "",
  746. "_objFlags": 0,
  747. "node": {
  748. "__id__": 16
  749. },
  750. "_enabled": true,
  751. "_N$string": "<color=#00ff00>Rich</c>",
  752. "_N$horizontalAlign": 1,
  753. "_N$fontSize": 24,
  754. "_N$font": null,
  755. "_N$maxWidth": 300,
  756. "_N$lineHeight": 35,
  757. "_N$imageAtlas": null,
  758. "_N$handleTouchEvent": true,
  759. "_id": "35+FeonUNFsL1FuOdArCpc"
  760. },
  761. {
  762. "__type__": "cc.PrefabInfo",
  763. "root": {
  764. "__id__": 1
  765. },
  766. "asset": {
  767. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  768. },
  769. "fileId": "f7HhRCJJ9KXptpHYVIDIPG",
  770. "sync": false
  771. },
  772. {
  773. "__type__": "cc.Node",
  774. "_name": "skill_buy_bg",
  775. "_objFlags": 0,
  776. "_parent": {
  777. "__id__": 6
  778. },
  779. "_children": [],
  780. "_active": true,
  781. "_level": 3,
  782. "_components": [
  783. {
  784. "__id__": 23
  785. }
  786. ],
  787. "_prefab": {
  788. "__id__": 24
  789. },
  790. "_opacity": 255,
  791. "_color": {
  792. "__type__": "cc.Color",
  793. "r": 255,
  794. "g": 255,
  795. "b": 255,
  796. "a": 255
  797. },
  798. "_contentSize": {
  799. "__type__": "cc.Size",
  800. "width": 449,
  801. "height": 78
  802. },
  803. "_anchorPoint": {
  804. "__type__": "cc.Vec2",
  805. "x": 0.5,
  806. "y": 0.5
  807. },
  808. "_position": {
  809. "__type__": "cc.Vec3",
  810. "x": 0,
  811. "y": 243,
  812. "z": 0
  813. },
  814. "_scale": {
  815. "__type__": "cc.Vec3",
  816. "x": 1,
  817. "y": 1,
  818. "z": 1
  819. },
  820. "_rotationX": 0,
  821. "_rotationY": 0,
  822. "_quat": {
  823. "__type__": "cc.Quat",
  824. "x": 0,
  825. "y": 0,
  826. "z": 0,
  827. "w": 1
  828. },
  829. "_skewX": 0,
  830. "_skewY": 0,
  831. "_zIndex": 0,
  832. "groupIndex": 0,
  833. "_id": ""
  834. },
  835. {
  836. "__type__": "cc.Sprite",
  837. "_name": "",
  838. "_objFlags": 0,
  839. "node": {
  840. "__id__": 22
  841. },
  842. "_enabled": true,
  843. "_srcBlendFactor": 770,
  844. "_dstBlendFactor": 771,
  845. "_spriteFrame": {
  846. "__uuid__": "704ce098-4b12-46c5-a671-26a75691725d"
  847. },
  848. "_type": 0,
  849. "_sizeMode": 1,
  850. "_fillType": 0,
  851. "_fillCenter": {
  852. "__type__": "cc.Vec2",
  853. "x": 0,
  854. "y": 0
  855. },
  856. "_fillStart": 0,
  857. "_fillRange": 0,
  858. "_isTrimmedMode": true,
  859. "_state": 0,
  860. "_atlas": null,
  861. "_id": "37p7jo8eVNhrZjcf7iECve"
  862. },
  863. {
  864. "__type__": "cc.PrefabInfo",
  865. "root": {
  866. "__id__": 1
  867. },
  868. "asset": {
  869. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  870. },
  871. "fileId": "16weX9+sNPMbq0qrC5OX/R",
  872. "sync": false
  873. },
  874. {
  875. "__type__": "cc.Node",
  876. "_name": "button",
  877. "_objFlags": 0,
  878. "_parent": {
  879. "__id__": 6
  880. },
  881. "_children": [
  882. {
  883. "__id__": 26
  884. },
  885. {
  886. "__id__": 29
  887. }
  888. ],
  889. "_active": true,
  890. "_level": 3,
  891. "_components": [
  892. {
  893. "__id__": 39
  894. },
  895. {
  896. "__id__": 40
  897. }
  898. ],
  899. "_prefab": {
  900. "__id__": 42
  901. },
  902. "_opacity": 255,
  903. "_color": {
  904. "__type__": "cc.Color",
  905. "r": 255,
  906. "g": 255,
  907. "b": 255,
  908. "a": 255
  909. },
  910. "_contentSize": {
  911. "__type__": "cc.Size",
  912. "width": 200,
  913. "height": 100
  914. },
  915. "_anchorPoint": {
  916. "__type__": "cc.Vec2",
  917. "x": 0.5,
  918. "y": 0.5
  919. },
  920. "_position": {
  921. "__type__": "cc.Vec3",
  922. "x": 0,
  923. "y": -210,
  924. "z": 0
  925. },
  926. "_scale": {
  927. "__type__": "cc.Vec3",
  928. "x": 1,
  929. "y": 1,
  930. "z": 1
  931. },
  932. "_rotationX": 0,
  933. "_rotationY": 0,
  934. "_quat": {
  935. "__type__": "cc.Quat",
  936. "x": 0,
  937. "y": 0,
  938. "z": 0,
  939. "w": 1
  940. },
  941. "_skewX": 0,
  942. "_skewY": 0,
  943. "_zIndex": 0,
  944. "groupIndex": 0,
  945. "_id": ""
  946. },
  947. {
  948. "__type__": "cc.Node",
  949. "_name": "button_sprite",
  950. "_objFlags": 0,
  951. "_parent": {
  952. "__id__": 25
  953. },
  954. "_children": [],
  955. "_active": true,
  956. "_level": 2,
  957. "_components": [
  958. {
  959. "__id__": 27
  960. }
  961. ],
  962. "_prefab": {
  963. "__id__": 28
  964. },
  965. "_opacity": 255,
  966. "_color": {
  967. "__type__": "cc.Color",
  968. "r": 255,
  969. "g": 255,
  970. "b": 255,
  971. "a": 255
  972. },
  973. "_contentSize": {
  974. "__type__": "cc.Size",
  975. "width": 200,
  976. "height": 100
  977. },
  978. "_anchorPoint": {
  979. "__type__": "cc.Vec2",
  980. "x": 0.5,
  981. "y": 0.5
  982. },
  983. "_position": {
  984. "__type__": "cc.Vec3",
  985. "x": 0,
  986. "y": 0,
  987. "z": 0
  988. },
  989. "_scale": {
  990. "__type__": "cc.Vec3",
  991. "x": 1,
  992. "y": 1,
  993. "z": 1
  994. },
  995. "_rotationX": 0,
  996. "_rotationY": 0,
  997. "_quat": {
  998. "__type__": "cc.Quat",
  999. "x": 0,
  1000. "y": 0,
  1001. "z": 0,
  1002. "w": 1
  1003. },
  1004. "_skewX": 0,
  1005. "_skewY": 0,
  1006. "_zIndex": 0,
  1007. "groupIndex": 0,
  1008. "_id": ""
  1009. },
  1010. {
  1011. "__type__": "cc.Sprite",
  1012. "_name": "",
  1013. "_objFlags": 0,
  1014. "node": {
  1015. "__id__": 26
  1016. },
  1017. "_enabled": true,
  1018. "_srcBlendFactor": 770,
  1019. "_dstBlendFactor": 771,
  1020. "_spriteFrame": {
  1021. "__uuid__": "ee2ec630-d472-45d3-9fd9-fabc38903c23"
  1022. },
  1023. "_type": 0,
  1024. "_sizeMode": 1,
  1025. "_fillType": 0,
  1026. "_fillCenter": {
  1027. "__type__": "cc.Vec2",
  1028. "x": 0,
  1029. "y": 0
  1030. },
  1031. "_fillStart": 0,
  1032. "_fillRange": 0,
  1033. "_isTrimmedMode": true,
  1034. "_state": 0,
  1035. "_atlas": null,
  1036. "_id": "5ev8BstAFFq4qrZJjzsSxe"
  1037. },
  1038. {
  1039. "__type__": "cc.PrefabInfo",
  1040. "root": {
  1041. "__id__": 1
  1042. },
  1043. "asset": {
  1044. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  1045. },
  1046. "fileId": "a6TlhjvGRIRYSZ1oCEjbmj",
  1047. "sync": false
  1048. },
  1049. {
  1050. "__type__": "cc.Node",
  1051. "_name": "skill_use_title",
  1052. "_objFlags": 0,
  1053. "_parent": {
  1054. "__id__": 25
  1055. },
  1056. "_children": [
  1057. {
  1058. "__id__": 30
  1059. },
  1060. {
  1061. "__id__": 33
  1062. }
  1063. ],
  1064. "_active": true,
  1065. "_level": 2,
  1066. "_components": [
  1067. {
  1068. "__id__": 36
  1069. },
  1070. {
  1071. "__id__": 37
  1072. }
  1073. ],
  1074. "_prefab": {
  1075. "__id__": 38
  1076. },
  1077. "_opacity": 255,
  1078. "_color": {
  1079. "__type__": "cc.Color",
  1080. "r": 255,
  1081. "g": 255,
  1082. "b": 255,
  1083. "a": 255
  1084. },
  1085. "_contentSize": {
  1086. "__type__": "cc.Size",
  1087. "width": 78.67,
  1088. "height": 52
  1089. },
  1090. "_anchorPoint": {
  1091. "__type__": "cc.Vec2",
  1092. "x": 0.5,
  1093. "y": 0.5
  1094. },
  1095. "_position": {
  1096. "__type__": "cc.Vec3",
  1097. "x": 0,
  1098. "y": 0,
  1099. "z": 0
  1100. },
  1101. "_scale": {
  1102. "__type__": "cc.Vec3",
  1103. "x": 1,
  1104. "y": 1,
  1105. "z": 1
  1106. },
  1107. "_rotationX": 0,
  1108. "_rotationY": 0,
  1109. "_quat": {
  1110. "__type__": "cc.Quat",
  1111. "x": 0,
  1112. "y": 0,
  1113. "z": 0,
  1114. "w": 1
  1115. },
  1116. "_skewX": 0,
  1117. "_skewY": 0,
  1118. "_zIndex": 0,
  1119. "groupIndex": 0,
  1120. "_id": ""
  1121. },
  1122. {
  1123. "__type__": "cc.PrivateNode",
  1124. "_name": "RICHTEXT_Image_CHILD",
  1125. "_objFlags": 0,
  1126. "_parent": {
  1127. "__id__": 29
  1128. },
  1129. "_children": [],
  1130. "_active": true,
  1131. "_level": 3,
  1132. "_components": [
  1133. {
  1134. "__id__": 31
  1135. }
  1136. ],
  1137. "_prefab": {
  1138. "__id__": 32
  1139. },
  1140. "_opacity": 255,
  1141. "_color": {
  1142. "__type__": "cc.Color",
  1143. "r": 255,
  1144. "g": 255,
  1145. "b": 255,
  1146. "a": 255
  1147. },
  1148. "_contentSize": {
  1149. "__type__": "cc.Size",
  1150. "width": 19.675675675675677,
  1151. "height": 26
  1152. },
  1153. "_anchorPoint": {
  1154. "__type__": "cc.Vec2",
  1155. "x": 0,
  1156. "y": 0
  1157. },
  1158. "_position": {
  1159. "__type__": "cc.Vec3",
  1160. "x": -9.837837837837839,
  1161. "y": 0,
  1162. "z": 0
  1163. },
  1164. "_scale": {
  1165. "__type__": "cc.Vec3",
  1166. "x": 1,
  1167. "y": 1,
  1168. "z": 1
  1169. },
  1170. "_rotationX": 0,
  1171. "_rotationY": 0,
  1172. "_quat": {
  1173. "__type__": "cc.Quat",
  1174. "x": 0,
  1175. "y": 0,
  1176. "z": 0,
  1177. "w": 1
  1178. },
  1179. "_skewX": 0,
  1180. "_skewY": 0,
  1181. "_zIndex": -32768,
  1182. "groupIndex": 0,
  1183. "_id": ""
  1184. },
  1185. {
  1186. "__type__": "cc.Sprite",
  1187. "_name": "",
  1188. "_objFlags": 0,
  1189. "node": {
  1190. "__id__": 30
  1191. },
  1192. "_enabled": true,
  1193. "_srcBlendFactor": 770,
  1194. "_dstBlendFactor": 771,
  1195. "_spriteFrame": {
  1196. "__uuid__": "5d154584-b538-4b94-b2e6-62c23fd05a24"
  1197. },
  1198. "_type": 1,
  1199. "_sizeMode": 0,
  1200. "_fillType": 0,
  1201. "_fillCenter": {
  1202. "__type__": "cc.Vec2",
  1203. "x": 0,
  1204. "y": 0
  1205. },
  1206. "_fillStart": 0,
  1207. "_fillRange": 0,
  1208. "_isTrimmedMode": true,
  1209. "_state": 0,
  1210. "_atlas": {
  1211. "__uuid__": "9a199f9b-2e79-467b-85f6-b6ebe5f54f18"
  1212. },
  1213. "_id": "9aEZJQb01Eh4GfKbBtfoxf"
  1214. },
  1215. {
  1216. "__type__": "cc.PrefabInfo",
  1217. "root": {
  1218. "__id__": 1
  1219. },
  1220. "asset": {
  1221. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  1222. },
  1223. "fileId": "64pDaHXrhGSokkqM1Rg/We",
  1224. "sync": false
  1225. },
  1226. {
  1227. "__type__": "cc.PrivateNode",
  1228. "_name": "RICHTEXT_CHILD",
  1229. "_objFlags": 0,
  1230. "_parent": {
  1231. "__id__": 29
  1232. },
  1233. "_children": [],
  1234. "_active": true,
  1235. "_level": 3,
  1236. "_components": [
  1237. {
  1238. "__id__": 34
  1239. }
  1240. ],
  1241. "_prefab": {
  1242. "__id__": 35
  1243. },
  1244. "_opacity": 255,
  1245. "_color": {
  1246. "__type__": "cc.Color",
  1247. "r": 255,
  1248. "g": 255,
  1249. "b": 255,
  1250. "a": 255
  1251. },
  1252. "_contentSize": {
  1253. "__type__": "cc.Size",
  1254. "width": 78.67,
  1255. "height": 26
  1256. },
  1257. "_anchorPoint": {
  1258. "__type__": "cc.Vec2",
  1259. "x": 0,
  1260. "y": 0
  1261. },
  1262. "_position": {
  1263. "__type__": "cc.Vec3",
  1264. "x": -39.335,
  1265. "y": -26,
  1266. "z": 0
  1267. },
  1268. "_scale": {
  1269. "__type__": "cc.Vec3",
  1270. "x": 1,
  1271. "y": 1,
  1272. "z": 1
  1273. },
  1274. "_rotationX": 0,
  1275. "_rotationY": 0,
  1276. "_quat": {
  1277. "__type__": "cc.Quat",
  1278. "x": 0,
  1279. "y": 0,
  1280. "z": 0,
  1281. "w": 1
  1282. },
  1283. "_skewX": 0,
  1284. "_skewY": 0,
  1285. "_zIndex": -32768,
  1286. "groupIndex": 0,
  1287. "_id": ""
  1288. },
  1289. {
  1290. "__type__": "cc.Label",
  1291. "_name": "",
  1292. "_objFlags": 0,
  1293. "node": {
  1294. "__id__": 33
  1295. },
  1296. "_enabled": true,
  1297. "_srcBlendFactor": 1,
  1298. "_dstBlendFactor": 771,
  1299. "_useOriginalSize": true,
  1300. "_string": " 未解锁",
  1301. "_N$string": " 未解锁",
  1302. "_fontSize": 24,
  1303. "_lineHeight": 26,
  1304. "_enableWrapText": true,
  1305. "_N$file": null,
  1306. "_isSystemFontUsed": true,
  1307. "_spacingX": 0,
  1308. "_N$horizontalAlign": 0,
  1309. "_N$verticalAlign": 1,
  1310. "_N$fontFamily": "Arial",
  1311. "_N$overflow": 0,
  1312. "_id": "47kevKvUVGHbrhalX68yEU"
  1313. },
  1314. {
  1315. "__type__": "cc.PrefabInfo",
  1316. "root": {
  1317. "__id__": 1
  1318. },
  1319. "asset": {
  1320. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  1321. },
  1322. "fileId": "86RywM5ARGMrgfBvxo64MJ",
  1323. "sync": false
  1324. },
  1325. {
  1326. "__type__": "cc.RichText",
  1327. "_name": "",
  1328. "_objFlags": 0,
  1329. "node": {
  1330. "__id__": 29
  1331. },
  1332. "_enabled": true,
  1333. "_N$string": "<img src='skill_lock'/><br /><color=#ffffff> 未解锁</c>",
  1334. "_N$horizontalAlign": 1,
  1335. "_N$fontSize": 24,
  1336. "_N$font": null,
  1337. "_N$maxWidth": 0,
  1338. "_N$lineHeight": 26,
  1339. "_N$imageAtlas": {
  1340. "__uuid__": "9a199f9b-2e79-467b-85f6-b6ebe5f54f18"
  1341. },
  1342. "_N$handleTouchEvent": true,
  1343. "_id": "4detKuXStE7JIe6zETGFW4"
  1344. },
  1345. {
  1346. "__type__": "cc.Widget",
  1347. "_name": "",
  1348. "_objFlags": 0,
  1349. "node": {
  1350. "__id__": 29
  1351. },
  1352. "_enabled": true,
  1353. "alignMode": 1,
  1354. "_target": null,
  1355. "_alignFlags": 18,
  1356. "_left": 0,
  1357. "_right": 0,
  1358. "_top": 0,
  1359. "_bottom": 0,
  1360. "_verticalCenter": 0,
  1361. "_horizontalCenter": 0,
  1362. "_isAbsLeft": true,
  1363. "_isAbsRight": true,
  1364. "_isAbsTop": true,
  1365. "_isAbsBottom": true,
  1366. "_isAbsHorizontalCenter": true,
  1367. "_isAbsVerticalCenter": true,
  1368. "_originalWidth": 0,
  1369. "_originalHeight": 0,
  1370. "_id": "410+aknhdId7U5DJ9oWODP"
  1371. },
  1372. {
  1373. "__type__": "cc.PrefabInfo",
  1374. "root": {
  1375. "__id__": 1
  1376. },
  1377. "asset": {
  1378. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  1379. },
  1380. "fileId": "e749DP0TpDzLT0QEUA3eub",
  1381. "sync": false
  1382. },
  1383. {
  1384. "__type__": "cc.Sprite",
  1385. "_name": "",
  1386. "_objFlags": 0,
  1387. "node": {
  1388. "__id__": 25
  1389. },
  1390. "_enabled": true,
  1391. "_srcBlendFactor": 770,
  1392. "_dstBlendFactor": 771,
  1393. "_spriteFrame": null,
  1394. "_type": 1,
  1395. "_sizeMode": 0,
  1396. "_fillType": 0,
  1397. "_fillCenter": {
  1398. "__type__": "cc.Vec2",
  1399. "x": 0,
  1400. "y": 0
  1401. },
  1402. "_fillStart": 0,
  1403. "_fillRange": 0,
  1404. "_isTrimmedMode": true,
  1405. "_state": 0,
  1406. "_atlas": null,
  1407. "_id": "44F1VJhAxO04EO8PvSgeg9"
  1408. },
  1409. {
  1410. "__type__": "cc.Button",
  1411. "_name": "",
  1412. "_objFlags": 0,
  1413. "node": {
  1414. "__id__": 25
  1415. },
  1416. "_enabled": true,
  1417. "transition": 1,
  1418. "pressedColor": {
  1419. "__type__": "cc.Color",
  1420. "r": 120,
  1421. "g": 120,
  1422. "b": 120,
  1423. "a": 255
  1424. },
  1425. "hoverColor": {
  1426. "__type__": "cc.Color",
  1427. "r": 255,
  1428. "g": 255,
  1429. "b": 255,
  1430. "a": 255
  1431. },
  1432. "duration": 0.1,
  1433. "zoomScale": 1.2,
  1434. "clickEvents": [
  1435. {
  1436. "__id__": 41
  1437. }
  1438. ],
  1439. "_N$interactable": true,
  1440. "_N$enableAutoGrayEffect": false,
  1441. "_N$normalColor": {
  1442. "__type__": "cc.Color",
  1443. "r": 255,
  1444. "g": 255,
  1445. "b": 255,
  1446. "a": 255
  1447. },
  1448. "_N$disabledColor": {
  1449. "__type__": "cc.Color",
  1450. "r": 255,
  1451. "g": 255,
  1452. "b": 255,
  1453. "a": 255
  1454. },
  1455. "_N$normalSprite": {
  1456. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1457. },
  1458. "_N$pressedSprite": {
  1459. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1460. },
  1461. "pressedSprite": {
  1462. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1463. },
  1464. "_N$hoverSprite": {
  1465. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1466. },
  1467. "hoverSprite": {
  1468. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1469. },
  1470. "_N$disabledSprite": {
  1471. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1472. },
  1473. "_N$target": {
  1474. "__id__": 26
  1475. },
  1476. "_id": "26t9xovDtGV5N7yAu1myUb"
  1477. },
  1478. {
  1479. "__type__": "cc.ClickEvent",
  1480. "target": {
  1481. "__id__": 1
  1482. },
  1483. "component": "SkillBuyAlert",
  1484. "handler": "buyAction",
  1485. "customEventData": ""
  1486. },
  1487. {
  1488. "__type__": "cc.PrefabInfo",
  1489. "root": {
  1490. "__id__": 1
  1491. },
  1492. "asset": {
  1493. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  1494. },
  1495. "fileId": "c8I3THasVJPLb5RrBS/MhT",
  1496. "sync": false
  1497. },
  1498. {
  1499. "__type__": "cc.Node",
  1500. "_name": "skill_buy_alert",
  1501. "_objFlags": 0,
  1502. "_parent": {
  1503. "__id__": 6
  1504. },
  1505. "_children": [],
  1506. "_active": true,
  1507. "_level": 3,
  1508. "_components": [
  1509. {
  1510. "__id__": 44
  1511. }
  1512. ],
  1513. "_prefab": {
  1514. "__id__": 45
  1515. },
  1516. "_opacity": 255,
  1517. "_color": {
  1518. "__type__": "cc.Color",
  1519. "r": 255,
  1520. "g": 255,
  1521. "b": 255,
  1522. "a": 255
  1523. },
  1524. "_contentSize": {
  1525. "__type__": "cc.Size",
  1526. "width": 62,
  1527. "height": 70
  1528. },
  1529. "_anchorPoint": {
  1530. "__type__": "cc.Vec2",
  1531. "x": 0.5,
  1532. "y": 0.5
  1533. },
  1534. "_position": {
  1535. "__type__": "cc.Vec3",
  1536. "x": 0,
  1537. "y": 0,
  1538. "z": 0
  1539. },
  1540. "_scale": {
  1541. "__type__": "cc.Vec3",
  1542. "x": 1,
  1543. "y": 1,
  1544. "z": 1
  1545. },
  1546. "_rotationX": 0,
  1547. "_rotationY": 0,
  1548. "_quat": {
  1549. "__type__": "cc.Quat",
  1550. "x": 0,
  1551. "y": 0,
  1552. "z": 0,
  1553. "w": 1
  1554. },
  1555. "_skewX": 0,
  1556. "_skewY": 0,
  1557. "_zIndex": 0,
  1558. "groupIndex": 0,
  1559. "_id": ""
  1560. },
  1561. {
  1562. "__type__": "cc.Sprite",
  1563. "_name": "",
  1564. "_objFlags": 0,
  1565. "node": {
  1566. "__id__": 43
  1567. },
  1568. "_enabled": true,
  1569. "_srcBlendFactor": 770,
  1570. "_dstBlendFactor": 771,
  1571. "_spriteFrame": {
  1572. "__uuid__": "62e03b0f-f727-4e4b-bce2-8e47f244d263"
  1573. },
  1574. "_type": 0,
  1575. "_sizeMode": 1,
  1576. "_fillType": 0,
  1577. "_fillCenter": {
  1578. "__type__": "cc.Vec2",
  1579. "x": 0,
  1580. "y": 0
  1581. },
  1582. "_fillStart": 0,
  1583. "_fillRange": 0,
  1584. "_isTrimmedMode": true,
  1585. "_state": 0,
  1586. "_atlas": null,
  1587. "_id": "9dipwoPPdE263DCjhtWeC0"
  1588. },
  1589. {
  1590. "__type__": "cc.PrefabInfo",
  1591. "root": {
  1592. "__id__": 1
  1593. },
  1594. "asset": {
  1595. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  1596. },
  1597. "fileId": "7czt6BhkdEH72gEFLhXvYr",
  1598. "sync": false
  1599. },
  1600. {
  1601. "__type__": "cc.Node",
  1602. "_name": "strore_close_btn",
  1603. "_objFlags": 0,
  1604. "_parent": {
  1605. "__id__": 6
  1606. },
  1607. "_children": [
  1608. {
  1609. "__id__": 47
  1610. }
  1611. ],
  1612. "_active": true,
  1613. "_level": 3,
  1614. "_components": [
  1615. {
  1616. "__id__": 50
  1617. },
  1618. {
  1619. "__id__": 52
  1620. }
  1621. ],
  1622. "_prefab": {
  1623. "__id__": 53
  1624. },
  1625. "_opacity": 255,
  1626. "_color": {
  1627. "__type__": "cc.Color",
  1628. "r": 255,
  1629. "g": 255,
  1630. "b": 255,
  1631. "a": 255
  1632. },
  1633. "_contentSize": {
  1634. "__type__": "cc.Size",
  1635. "width": 99,
  1636. "height": 114
  1637. },
  1638. "_anchorPoint": {
  1639. "__type__": "cc.Vec2",
  1640. "x": 0.5,
  1641. "y": 0.5
  1642. },
  1643. "_position": {
  1644. "__type__": "cc.Vec3",
  1645. "x": 190,
  1646. "y": 274,
  1647. "z": 0
  1648. },
  1649. "_scale": {
  1650. "__type__": "cc.Vec3",
  1651. "x": 1,
  1652. "y": 1,
  1653. "z": 1
  1654. },
  1655. "_rotationX": 0,
  1656. "_rotationY": 0,
  1657. "_quat": {
  1658. "__type__": "cc.Quat",
  1659. "x": 0,
  1660. "y": 0,
  1661. "z": 0,
  1662. "w": 1
  1663. },
  1664. "_skewX": 0,
  1665. "_skewY": 0,
  1666. "_zIndex": 0,
  1667. "groupIndex": 0,
  1668. "_id": ""
  1669. },
  1670. {
  1671. "__type__": "cc.Node",
  1672. "_name": "store_close",
  1673. "_objFlags": 0,
  1674. "_parent": {
  1675. "__id__": 46
  1676. },
  1677. "_children": [],
  1678. "_active": true,
  1679. "_level": 4,
  1680. "_components": [
  1681. {
  1682. "__id__": 48
  1683. }
  1684. ],
  1685. "_prefab": {
  1686. "__id__": 49
  1687. },
  1688. "_opacity": 255,
  1689. "_color": {
  1690. "__type__": "cc.Color",
  1691. "r": 255,
  1692. "g": 255,
  1693. "b": 255,
  1694. "a": 255
  1695. },
  1696. "_contentSize": {
  1697. "__type__": "cc.Size",
  1698. "width": 66,
  1699. "height": 71
  1700. },
  1701. "_anchorPoint": {
  1702. "__type__": "cc.Vec2",
  1703. "x": 0.5,
  1704. "y": 0.5
  1705. },
  1706. "_position": {
  1707. "__type__": "cc.Vec3",
  1708. "x": 16,
  1709. "y": -1,
  1710. "z": 0
  1711. },
  1712. "_scale": {
  1713. "__type__": "cc.Vec3",
  1714. "x": 1,
  1715. "y": 1,
  1716. "z": 1
  1717. },
  1718. "_rotationX": 0,
  1719. "_rotationY": 0,
  1720. "_quat": {
  1721. "__type__": "cc.Quat",
  1722. "x": 0,
  1723. "y": 0,
  1724. "z": 0,
  1725. "w": 1
  1726. },
  1727. "_skewX": 0,
  1728. "_skewY": 0,
  1729. "_zIndex": 0,
  1730. "groupIndex": 0,
  1731. "_id": ""
  1732. },
  1733. {
  1734. "__type__": "cc.Sprite",
  1735. "_name": "",
  1736. "_objFlags": 0,
  1737. "node": {
  1738. "__id__": 47
  1739. },
  1740. "_enabled": true,
  1741. "_srcBlendFactor": 770,
  1742. "_dstBlendFactor": 771,
  1743. "_spriteFrame": {
  1744. "__uuid__": "3b53aea6-e62a-4433-9e69-df03a3a718a7"
  1745. },
  1746. "_type": 0,
  1747. "_sizeMode": 1,
  1748. "_fillType": 0,
  1749. "_fillCenter": {
  1750. "__type__": "cc.Vec2",
  1751. "x": 0,
  1752. "y": 0
  1753. },
  1754. "_fillStart": 0,
  1755. "_fillRange": 0,
  1756. "_isTrimmedMode": true,
  1757. "_state": 0,
  1758. "_atlas": null,
  1759. "_id": "59BTxckINO8r+eZWaYF3mf"
  1760. },
  1761. {
  1762. "__type__": "cc.PrefabInfo",
  1763. "root": {
  1764. "__id__": 1
  1765. },
  1766. "asset": {
  1767. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  1768. },
  1769. "fileId": "60NcZ36hdDeLporEn+sIY+",
  1770. "sync": false
  1771. },
  1772. {
  1773. "__type__": "cc.Button",
  1774. "_name": "",
  1775. "_objFlags": 0,
  1776. "node": {
  1777. "__id__": 46
  1778. },
  1779. "_enabled": true,
  1780. "transition": 1,
  1781. "pressedColor": {
  1782. "__type__": "cc.Color",
  1783. "r": 120,
  1784. "g": 120,
  1785. "b": 120,
  1786. "a": 255
  1787. },
  1788. "hoverColor": {
  1789. "__type__": "cc.Color",
  1790. "r": 255,
  1791. "g": 255,
  1792. "b": 255,
  1793. "a": 255
  1794. },
  1795. "duration": 0.1,
  1796. "zoomScale": 1.2,
  1797. "clickEvents": [
  1798. {
  1799. "__id__": 51
  1800. }
  1801. ],
  1802. "_N$interactable": true,
  1803. "_N$enableAutoGrayEffect": false,
  1804. "_N$normalColor": {
  1805. "__type__": "cc.Color",
  1806. "r": 255,
  1807. "g": 255,
  1808. "b": 255,
  1809. "a": 255
  1810. },
  1811. "_N$disabledColor": {
  1812. "__type__": "cc.Color",
  1813. "r": 255,
  1814. "g": 255,
  1815. "b": 255,
  1816. "a": 255
  1817. },
  1818. "_N$normalSprite": {
  1819. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1820. },
  1821. "_N$pressedSprite": {
  1822. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1823. },
  1824. "pressedSprite": {
  1825. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1826. },
  1827. "_N$hoverSprite": {
  1828. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1829. },
  1830. "hoverSprite": {
  1831. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1832. },
  1833. "_N$disabledSprite": {
  1834. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1835. },
  1836. "_N$target": {
  1837. "__id__": 47
  1838. },
  1839. "_id": "ab6rKfCNdDirln+sHxxd86"
  1840. },
  1841. {
  1842. "__type__": "cc.ClickEvent",
  1843. "target": {
  1844. "__id__": 1
  1845. },
  1846. "component": "SkillBuyAlert",
  1847. "handler": "closeAction",
  1848. "customEventData": ""
  1849. },
  1850. {
  1851. "__type__": "cc.Widget",
  1852. "_name": "",
  1853. "_objFlags": 0,
  1854. "node": {
  1855. "__id__": 46
  1856. },
  1857. "_enabled": true,
  1858. "alignMode": 1,
  1859. "_target": null,
  1860. "_alignFlags": 33,
  1861. "_left": 0,
  1862. "_right": -9.5,
  1863. "_top": -31,
  1864. "_bottom": 0,
  1865. "_verticalCenter": 0,
  1866. "_horizontalCenter": 0,
  1867. "_isAbsLeft": true,
  1868. "_isAbsRight": true,
  1869. "_isAbsTop": true,
  1870. "_isAbsBottom": true,
  1871. "_isAbsHorizontalCenter": true,
  1872. "_isAbsVerticalCenter": true,
  1873. "_originalWidth": 0,
  1874. "_originalHeight": 0,
  1875. "_id": "d5c4Xe+VhC6ooJMjCJkjql"
  1876. },
  1877. {
  1878. "__type__": "cc.PrefabInfo",
  1879. "root": {
  1880. "__id__": 1
  1881. },
  1882. "asset": {
  1883. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  1884. },
  1885. "fileId": "15kzeCCDNJ960ajT9eaKkQ",
  1886. "sync": false
  1887. },
  1888. {
  1889. "__type__": "cc.Node",
  1890. "_name": "richtext",
  1891. "_objFlags": 0,
  1892. "_parent": {
  1893. "__id__": 6
  1894. },
  1895. "_children": [
  1896. {
  1897. "__id__": 55
  1898. }
  1899. ],
  1900. "_active": true,
  1901. "_level": 3,
  1902. "_components": [
  1903. {
  1904. "__id__": 58
  1905. }
  1906. ],
  1907. "_prefab": {
  1908. "__id__": 59
  1909. },
  1910. "_opacity": 255,
  1911. "_color": {
  1912. "__type__": "cc.Color",
  1913. "r": 253,
  1914. "g": 71,
  1915. "b": 0,
  1916. "a": 255
  1917. },
  1918. "_contentSize": {
  1919. "__type__": "cc.Size",
  1920. "width": 300,
  1921. "height": 35
  1922. },
  1923. "_anchorPoint": {
  1924. "__type__": "cc.Vec2",
  1925. "x": 0.5,
  1926. "y": 0.5
  1927. },
  1928. "_position": {
  1929. "__type__": "cc.Vec3",
  1930. "x": 0,
  1931. "y": -99,
  1932. "z": 0
  1933. },
  1934. "_scale": {
  1935. "__type__": "cc.Vec3",
  1936. "x": 1,
  1937. "y": 1,
  1938. "z": 1
  1939. },
  1940. "_rotationX": 0,
  1941. "_rotationY": 0,
  1942. "_quat": {
  1943. "__type__": "cc.Quat",
  1944. "x": 0,
  1945. "y": 0,
  1946. "z": 0,
  1947. "w": 1
  1948. },
  1949. "_skewX": 0,
  1950. "_skewY": 0,
  1951. "_zIndex": 0,
  1952. "groupIndex": 0,
  1953. "_id": ""
  1954. },
  1955. {
  1956. "__type__": "cc.PrivateNode",
  1957. "_name": "RICHTEXT_CHILD",
  1958. "_objFlags": 0,
  1959. "_parent": {
  1960. "__id__": 54
  1961. },
  1962. "_children": [],
  1963. "_active": true,
  1964. "_level": 4,
  1965. "_components": [
  1966. {
  1967. "__id__": 56
  1968. }
  1969. ],
  1970. "_prefab": {
  1971. "__id__": 57
  1972. },
  1973. "_opacity": 255,
  1974. "_color": {
  1975. "__type__": "cc.Color",
  1976. "r": 0,
  1977. "g": 255,
  1978. "b": 0,
  1979. "a": 255
  1980. },
  1981. "_contentSize": {
  1982. "__type__": "cc.Size",
  1983. "width": 48.01,
  1984. "height": 35
  1985. },
  1986. "_anchorPoint": {
  1987. "__type__": "cc.Vec2",
  1988. "x": 0,
  1989. "y": 0
  1990. },
  1991. "_position": {
  1992. "__type__": "cc.Vec3",
  1993. "x": -24.005,
  1994. "y": -17.5,
  1995. "z": 0
  1996. },
  1997. "_scale": {
  1998. "__type__": "cc.Vec3",
  1999. "x": 1,
  2000. "y": 1,
  2001. "z": 1
  2002. },
  2003. "_rotationX": 0,
  2004. "_rotationY": 0,
  2005. "_quat": {
  2006. "__type__": "cc.Quat",
  2007. "x": 0,
  2008. "y": 0,
  2009. "z": 0,
  2010. "w": 1
  2011. },
  2012. "_skewX": 0,
  2013. "_skewY": 0,
  2014. "_zIndex": -32768,
  2015. "groupIndex": 0,
  2016. "_id": ""
  2017. },
  2018. {
  2019. "__type__": "cc.Label",
  2020. "_name": "",
  2021. "_objFlags": 0,
  2022. "node": {
  2023. "__id__": 55
  2024. },
  2025. "_enabled": true,
  2026. "_srcBlendFactor": 1,
  2027. "_dstBlendFactor": 771,
  2028. "_useOriginalSize": true,
  2029. "_string": "Rich",
  2030. "_N$string": "Rich",
  2031. "_fontSize": 24,
  2032. "_lineHeight": 35,
  2033. "_enableWrapText": true,
  2034. "_N$file": null,
  2035. "_isSystemFontUsed": true,
  2036. "_spacingX": 0,
  2037. "_N$horizontalAlign": 0,
  2038. "_N$verticalAlign": 1,
  2039. "_N$fontFamily": "Arial",
  2040. "_N$overflow": 0,
  2041. "_id": "de50BF91ZE/7/9ydys7uie"
  2042. },
  2043. {
  2044. "__type__": "cc.PrefabInfo",
  2045. "root": {
  2046. "__id__": 1
  2047. },
  2048. "asset": {
  2049. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  2050. },
  2051. "fileId": "e1+X/rQvlDuaEeInd1zNBZ",
  2052. "sync": false
  2053. },
  2054. {
  2055. "__type__": "cc.RichText",
  2056. "_name": "",
  2057. "_objFlags": 0,
  2058. "node": {
  2059. "__id__": 54
  2060. },
  2061. "_enabled": true,
  2062. "_N$string": "<color=#00ff00>Rich</c>",
  2063. "_N$horizontalAlign": 1,
  2064. "_N$fontSize": 24,
  2065. "_N$font": null,
  2066. "_N$maxWidth": 300,
  2067. "_N$lineHeight": 35,
  2068. "_N$imageAtlas": null,
  2069. "_N$handleTouchEvent": true,
  2070. "_id": "ffTw27CahBmYy1h5/oZb3r"
  2071. },
  2072. {
  2073. "__type__": "cc.PrefabInfo",
  2074. "root": {
  2075. "__id__": 1
  2076. },
  2077. "asset": {
  2078. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  2079. },
  2080. "fileId": "88ImTS8udIKb4RXYJmdsny",
  2081. "sync": false
  2082. },
  2083. {
  2084. "__type__": "cc.PrefabInfo",
  2085. "root": {
  2086. "__id__": 1
  2087. },
  2088. "asset": {
  2089. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  2090. },
  2091. "fileId": "63qgnYyNxHBJ1udZqkA1ZK",
  2092. "sync": false
  2093. },
  2094. {
  2095. "__type__": "b7080Tg+thIZ7yxlkzcoLzH",
  2096. "_name": "",
  2097. "_objFlags": 0,
  2098. "node": {
  2099. "__id__": 1
  2100. },
  2101. "_enabled": true,
  2102. "skillNameRichText": {
  2103. "__id__": 14
  2104. },
  2105. "desc1RichText": {
  2106. "__id__": 20
  2107. },
  2108. "desc2RichText": {
  2109. "__id__": 58
  2110. },
  2111. "buyButton": {
  2112. "__id__": 40
  2113. },
  2114. "buySprite": {
  2115. "__id__": 27
  2116. },
  2117. "buyRichText": {
  2118. "__id__": 36
  2119. },
  2120. "_id": "27KvOLOudIjb+eMm8HfE6G"
  2121. },
  2122. {
  2123. "__type__": "cc.PrefabInfo",
  2124. "root": {
  2125. "__id__": 1
  2126. },
  2127. "asset": {
  2128. "__uuid__": "2c4b425f-1f88-4b8f-8aa4-6deb8d8945bf"
  2129. },
  2130. "fileId": "16I9xyF2hGNpUDO17OuDk9",
  2131. "sync": false
  2132. }
  2133. ]