From 3c9271c559053ec4afd277f68fc099d95a48dd6a Mon Sep 17 00:00:00 2001 From: yuanshuai <243578945@qq.com> Date: Thu, 3 Nov 2022 18:31:56 +0800 Subject: [PATCH] =?UTF-8?q?=20=20=20=E7=A5=9E=E5=B0=8A=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/NewShenZun/NewShenZunPanel.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/NewShenZun/NewShenZunPanel.lua b/Assets/ManagedResources/~Lua/Modules/NewShenZun/NewShenZunPanel.lua index bfc35fa206..55f82ab4ee 100644 --- a/Assets/ManagedResources/~Lua/Modules/NewShenZun/NewShenZunPanel.lua +++ b/Assets/ManagedResources/~Lua/Modules/NewShenZun/NewShenZunPanel.lua @@ -27,7 +27,7 @@ function this:InitComponent() this.buyBtnText=Util.GetGameObject(this.buyBtn, "Text"):GetComponent("Text") for i = 2, #prestigeConfigList do local tabBtn = newObjToParent(this.tabBtnPre, this.tabGrid) - Util.GetGameObject(tabBtn, "Text"):GetComponent("Text").text=string.format("特权%s",prestigeConfigList[i].Level) + Util.GetGameObject(tabBtn, "Text"):GetComponent("Text").text=string.format("神尊特权%s",prestigeConfigList[i].Level) Util.AddClick(tabBtn,function () this.TabBtnOnClick(prestigeConfigList[i].Level) end) @@ -103,7 +103,7 @@ function this.TabBtnOnClick(_privilegeLv) this.selectBtn.transform:SetParent(clickBtn) this.selectBtn.transform.localScale = Vector3.one this.selectBtn.transform.localPosition = Vector3.zero - this.selectBtnText.text=string.format("特权%s",_level) + this.selectBtnText.text=string.format("神尊特权%s",_level) this.UpdateLayout(_level) end