| | |
| | | |
| | | public BaseInfo baseInfo; |
| | | public BaseProperty baseProperty; |
| | | public BaseProperty petMountBaseProperty; |
| | | public SpiritWeaponProperty spiritWeaponProperty; |
| | | public ShenProperty shenProperty; |
| | | public LegendProperty legendProperty; |
| | | public SkillInfo skillInfo; |
| | | public SuitInfo suitInfo; |
| | | public StarInfo starInfo; |
| | | public StrengthenProperty strengthenProperty; |
| | | public GemInfo gemInfo; |
| | | public TrainProperty trainProperty; |
| | | public List<ItemOperateType> operates; |
| | | public WingRefineMaterials refineMaterials; |
| | | public GetWay getWay; |
| | | public bool showAll; |
| | | } |
| | | |
| | | public struct BaseInfo |
| | |
| | | } |
| | | } |
| | | |
| | | public static void Show(string guid, bool operatable = true) |
| | | // showAll 默认正常全部显示,命格点套装特殊不显示物品信息 |
| | | public static void Show(string guid, bool _showAll = true) |
| | | { |
| | | var item = PackManager.Instance.GetItemByGuid(guid); |
| | | if (item == null) |
| | |
| | | } |
| | | break; |
| | | case TipType.Mingge: |
| | | mainTipData = new TipData() { guid = guid }; |
| | | mainTipData = new TipData() |
| | | { |
| | | guid = guid, |
| | | showAll = _showAll |
| | | }; |
| | | break; |
| | | default: |
| | | mainTipData = CreateItemData(guid, operatable); |
| | | mainTipData = CreateItemData(guid); |
| | | break; |
| | | } |
| | | |
| | |
| | | // }; |
| | | // } |
| | | |
| | | static TipData CreateItemData(string guid, bool operatable) |
| | | static TipData CreateItemData(string guid) |
| | | { |
| | | var item = PackManager.Instance.GetItemByGuid(guid); |
| | | if (item == null) |