显示fix

This commit is contained in:
Fang 2023-07-25 21:01:32 +08:00
parent 01c2ed492c
commit 3dbb432b51
3 changed files with 13 additions and 2 deletions

View File

@ -7,6 +7,7 @@ function WeaponInfoComp:init()
self.txName = uiMap["weapon_info.name.tx_name"]
self.imgWeapon = uiMap["weapon_info.img_weapon"]
self.rootEffect = uiMap["weapon_info.root_effect"]
self.txLevel = uiMap["weapon_info.level.tx_level"]
self.txDesc1 = uiMap["weapon_info.tx_desc_1"]
self.txDesc2 = uiMap["weapon_info.tx_desc_2"]
@ -151,6 +152,12 @@ function WeaponInfoComp:refresh()
self.btnUp:removeRedPoint()
self.btnUp:setSprite(GConst.ATLAS_PATH.COMMON, BTN_ICON[2])
end
-- 特效
-- EffectManager:loadUIEffectAsync("assets/prefabs/effects/ui/vfs_ui_wuqi_changzhu_b01".. DataManager.ArenaData:getGradingIconName(gradingId) ..".prefab", self, self.rootEffect, GConst.UI_EFFECT_ORDER.LEVEL5, function(obj)
-- obj:play()
-- end)
end
return WeaponInfoComp

View File

@ -402,7 +402,7 @@ end
-- 基金是否有红点
function DungeonArmorEntity:isHasFundRedDot()
return self:isCanWatchFundAd() or self:hasCanGetFundReward()
return self:isCanWatchFundAd() or (self:isBoughtFundStage(self:getCurFundStage()) and self:hasCanGetFundReward())
end
-- 基金阶段是否已购买

View File

@ -187,8 +187,12 @@ end
-- 获取属性描述
function EquipEntity:getAttrDesc()
local strAttr = ""
local stage = self:getStage()
if self:getPart() ~= GConst.EquipConst.PART_TYPE.WEAPON then
stage = DataManager.EquipData:getMinArmorStage(self:getHeroId())
end
local strAttr = ""
for i = 1, stage + 1 do
if i > #self.cfg.features_level or i > #self.cfg.features_attr then
break