user_pack.prefab 39 KB

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