From 1b0fc73ae14ff34a9238435dda0e1f56b8a90adc Mon Sep 17 00:00:00 2001 From: shihongyi Date: Mon, 14 Nov 2022 00:30:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E6=88=90=E6=B6=88=E8=80=97=E8=BF=9B?= =?UTF-8?q?=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/Compound/view/CompoundPanel_SoulPrint.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_SoulPrint.lua b/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_SoulPrint.lua index 1218fdf83d..f37d5030aa 100644 --- a/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_SoulPrint.lua +++ b/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_SoulPrint.lua @@ -107,10 +107,10 @@ function this.ShowGoldNum(equipSign) Util.GetGameObject(needGold[i],"Image"):GetComponent("Image").sprite = this.spLoader:LoadSprite(GetResourcePath(ConfigManager.GetConfigData(ConfigName.ItemConfig,equipSign.Resource[i][1]).ResourceID)) if equipSign.Resource[1][2] > BagManager.GetItemCountById(equipSign.Resource[1][1]) then materidaIsCan = false - needGold[i]:GetComponent("Text").text = string.format("%s", equipSign.Resource[i][2]) + needGold[i]:GetComponent("Text").text = PrintWanNum2(equipSign.Resource[i][2])--string.format("%s", equipSign.Resource[i][2]) else materidaIsCan = true - needGold[i]:GetComponent("Text").text =string.format("%s", equipSign.Resource[i][2]) + needGold[i]:GetComponent("Text").text =PrintWanNum2(equipSign.Resource[i][2])--string.format("%s", equipSign.Resource[i][2]) end end end