diff --git a/lua/app/ui/common/component/hero_formation_comp.lua b/lua/app/ui/common/component/hero_formation_comp.lua index 6b0a242c..6e6a6dc4 100644 --- a/lua/app/ui/common/component/hero_formation_comp.lua +++ b/lua/app/ui/common/component/hero_formation_comp.lua @@ -21,7 +21,7 @@ function HeroFormationComp:refresh() if formation[i] then local heroEntity = DataManager.HeroData:getHeroById(formation[i]) if heroEntity then - heroCell:setVisible(true, 1) + heroCell:setVisible(true, 0.6) heroCell:refresh(heroEntity) heroCell:addClickListener(function() ModuleManager.HeroManager:showHeroDetailUI(heroEntity:getCfgId()) @@ -40,7 +40,7 @@ function HeroFormationComp:refreshByFormation(formation) if formation[i] then local heroEntity = DataManager.HeroData:getHeroById(formation[i]) if heroEntity then - heroCell:setVisible(true, 1) + heroCell:setVisible(true, 0.6) heroCell:refresh(heroEntity) heroCell:addClickListener(function() ModuleManager.HeroManager:showHeroDetailUI(heroEntity:getCfgId()) @@ -58,7 +58,7 @@ function HeroFormationComp:refreshByEntitys(formation) for i, heroCell in ipairs(self.heroCells) do local heroEntity = formation[i] if heroEntity then - heroCell:setVisible(true, 1) + heroCell:setVisible(true, 0.6) heroCell:refreshBriefInfo(heroEntity) heroCell:addClickListener(function() ModuleManager.HeroManager:showHeroDetailUI(heroEntity:getCfgId(), true, heroEntity)