From 434aaeccff9566bd649264679c02957e8ae15504 Mon Sep 17 00:00:00 2001 From: ZhangBiao Date: Mon, 3 Aug 2020 15:20:18 +0800 Subject: [PATCH] =?UTF-8?q?=E9=AD=82=E5=8D=B0=E7=89=B9=E6=95=88=20?= =?UTF-8?q?=E6=97=A0=E7=94=A8log=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/ManagedResources/~Lua/Modules/Carbon/CarbonManager.lua | 1 - .../~Lua/Modules/Carbon/CarbonTypePanelV2.lua | 1 + Assets/ManagedResources/~Lua/Modules/Hero/HeroManager.lua | 2 +- Assets/ManagedResources/~Lua/View/ItemView.lua | 4 ++-- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonManager.lua b/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonManager.lua index 9a4ef2bc8d..79cf195c04 100644 --- a/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonManager.lua +++ b/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonManager.lua @@ -863,7 +863,6 @@ function this.GetCarBonState(index) this.dailyCarbons[index] = {} this.dailyCarbons[index].id = index + 66 end - LogPink(index) local curData=ConfigManager.GetAllConfigsDataByKey(ConfigName.DailyChallengeConfig,"Type",index) --local buyTimeId= curData[1].PrivilegeId[1] local freeTimeId=curData[1].PrivilegeId[2] diff --git a/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonTypePanelV2.lua b/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonTypePanelV2.lua index 03a556cf84..fb4533007d 100644 --- a/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonTypePanelV2.lua +++ b/Assets/ManagedResources/~Lua/Modules/Carbon/CarbonTypePanelV2.lua @@ -330,6 +330,7 @@ function this.BtnClick(id) PopupTipPanel.ShowTip(ActTimeCtrlManager.GetFuncTip(id)) end elseif id == FUNCTION_OPEN_TYPE.TRIAL then + LogGreen("CarbonTypePanelV2"..MapTrialManager.curTowerLevel) if ActTimeCtrlManager.SingleFuncState(id) then CarbonManager.difficulty = 2 local trialDataConfig = ConfigManager.GetConfig(ConfigName.TrialConfig) diff --git a/Assets/ManagedResources/~Lua/Modules/Hero/HeroManager.lua b/Assets/ManagedResources/~Lua/Modules/Hero/HeroManager.lua index ed98bcaae0..a3c048a04c 100644 --- a/Assets/ManagedResources/~Lua/Modules/Hero/HeroManager.lua +++ b/Assets/ManagedResources/~Lua/Modules/Hero/HeroManager.lua @@ -84,7 +84,7 @@ function this.UpdateHeroDatas(_msgHeroData, isFindHandBook) heroData.star = _msgHeroData.star heroData.lv = _msgHeroData.level heroData.breakId = _msgHeroData.breakId - LogGreen("heroData.id:"..heroData.id.." heroData.breakId:"..heroData.breakId) + -- LogGreen("heroData.id:"..heroData.id.." heroData.breakId:"..heroData.breakId) heroData.upStarId = _msgHeroData.starBreakId heroData.createTime = _msgHeroData.createTimelocal heroData.lockState = _msgHeroData.lockState diff --git a/Assets/ManagedResources/~Lua/View/ItemView.lua b/Assets/ManagedResources/~Lua/View/ItemView.lua index 00562ccd2c..0a8c9e2539 100644 --- a/Assets/ManagedResources/~Lua/View/ItemView.lua +++ b/Assets/ManagedResources/~Lua/View/ItemView.lua @@ -230,7 +230,7 @@ function ItemView:GetRewardShow(_itemData, effectLayer) if effectLayer > 0 then self.UI_Effect_jinkuang_Fang:SetActive(_itemData.configData.Quantity == 7) self.UI_Effect_jinkuang_Yuan:SetActive(_itemData.configData.Quantity == 7) - self.UI_Effect_Kuang_JinSe:SetActive(not _itemData.configData.Quantity == 7) + self.UI_Effect_Kuang_JinSe:SetActive(not (_itemData.configData.Quantity == 7)) end self.iconGo:SetActive(false) self.circleFrameBg:SetActive(true) @@ -487,7 +487,7 @@ function ItemView:NoGetRewardShow(_reward, effectLayer, isShowAddImage) elseif itemDataConFig.ItemType == ItemType.HunYin then self.UI_Effect_jinkuang_Fang:SetActive(itemConfig[itemSId].Quantity>=7) self.UI_Effect_jinkuang_Yuan:SetActive(itemConfig[itemSId].Quantity>=7) - self.UI_Effect_Kuang_JinSe:SetActive(not itemConfig[itemSId].Quantity>=7) + self.UI_Effect_Kuang_JinSe:SetActive(not (itemConfig[itemSId].Quantity>=7)) self.num:SetActive(true) self.frame.sprite = Util.LoadSprite(GetQuantityImageByquality(itemConfig[itemSId].Quantity)) self.iconGo:SetActive(false)