From 5855e6e1cfd74de9edb367984f3db0cb38b5d740 Mon Sep 17 00:00:00 2001 From: wangzhenxing <1545929779@qq.com> Date: Fri, 30 Jun 2023 18:19:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=98=E8=BA=AB=E5=8D=A1=E5=8D=87=E7=BA=A7?= =?UTF-8?q?=E5=8D=87=E6=98=9F=E5=B1=8F=E8=94=BD=E5=8C=96=E8=BA=AB=E4=B9=8B?= =?UTF-8?q?=E5=8A=9B=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/Incarnation/IncarnationUpPopup.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/Incarnation/IncarnationUpPopup.lua b/Assets/ManagedResources/~Lua/Modules/Incarnation/IncarnationUpPopup.lua index a497f3b352..5588af7cd2 100644 --- a/Assets/ManagedResources/~Lua/Modules/Incarnation/IncarnationUpPopup.lua +++ b/Assets/ManagedResources/~Lua/Modules/Incarnation/IncarnationUpPopup.lua @@ -143,13 +143,14 @@ function this.UpdateWin() this.nextProp.gameObject:SetActive(false) this.costGrid.gameObject:SetActive(false) this.nextDrop.gameObject:SetActive(false) + --屏蔽化身之力加成属性显示 this.forceLayout.gameObject:SetActive(false) this.upLvText.text="已达上限" else this.nextProp.gameObject:SetActive(true) this.costGrid.gameObject:SetActive(true) this.nextDrop.gameObject:SetActive(true) - this.forceLayout.gameObject:SetActive(true) + this.forceLayout.gameObject:SetActive(false) local nextPropData=IncarnationManager.GetChangeCardProperty(curCardId,true,false) this.SetPropInfo(this.nextProp,nextPropData) this.SetCostItem(cardLvConfig.Exp) @@ -195,7 +196,8 @@ function this.UpdateWin() this.nextProp.gameObject:SetActive(true) this.costGrid.gameObject:SetActive(true) this.nextDrop.gameObject:SetActive(true) - this.forceLayout.gameObject:SetActive(true) + --屏蔽化身之力加成属性显示 + this.forceLayout.gameObject:SetActive(false) local nextPropData=IncarnationManager.GetChangeCardProperty(curCardId,false,true) this.nextLvText.text=curStar+1 this.SetPropInfo(this.nextProp,nextPropData)