From d43b8282ec1d480ce4e5f677d39b491be464c22a Mon Sep 17 00:00:00 2001 From: gaoxin Date: Tue, 2 Nov 2021 16:57:19 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90ID1010611=E3=80=91=E3=80=90=E8=A3=85?= =?UTF-8?q?=E5=A4=87=E5=90=88=E6=88=90=E4=BC=98=E5=8C=96=E3=80=91=E5=90=88?= =?UTF-8?q?=E6=88=90=E8=A3=85=E5=A4=87=E5=90=8E=EF=BC=8C=E4=B8=8B=E6=96=B9?= =?UTF-8?q?=E7=9A=84=E8=A3=85=E5=A4=87=E5=88=97=E8=A1=A8=E4=B8=8D=E5=86=8D?= =?UTF-8?q?=E9=87=8D=E7=BD=AE=E5=9B=9E=E9=BB=98=E8=AE=A4=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/Compound/view/CompoundPanel_Equip.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_Equip.lua b/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_Equip.lua index b33598f0fe..e75ec2ed27 100644 --- a/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_Equip.lua +++ b/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_Equip.lua @@ -112,7 +112,7 @@ function this:OnSortingOrderChange(_sortingOrder) Util.AddParticleSortLayer(v, _sortingOrder - sortingOrder ) end end -function this.OnClickTabBtn(_curIndex) +function this.OnClickTabBtn(_curIndex, isNotTop,isNotAni) curIndex = _curIndex bagPosEquips = EquipManager.GetEquipCompoundDataByEquipPosition1(curIndex) local equipDatas = EquipManager.GetAllSEquipsByPosition(curIndex) @@ -123,7 +123,7 @@ function this.OnClickTabBtn(_curIndex) this.ScrollView:SetData(equipDatas, function (index, go) this.SingleItemDataShow(go, equipDatas[index],equipStarsConfig[equipDatas[index].Star]) - end) + end, isNotTop, isNotAni) this.ShowTitleData(equipStarsConfig[curSelectEquip.Star]) end @@ -306,7 +306,7 @@ function this.Compound() SoundManager.PlaySound(SoundConfig.UI_Duanzao) -- SoundManager.PlaySound(SoundConfig.UI_Baoqi) UIManager.OpenPanel(UIName.RewardItemPopup,msg.drop,1,function() - this.OnClickTabBtn(curIndex) + this.OnClickTabBtn(curIndex, true, true) end) end) end @@ -398,7 +398,7 @@ function this.AutoCompound(_position) NetManager.ComplexEquipRequest(curIndex,0,0,function(msg) SoundManager.PlaySound(SoundConfig.UI_Duanzao) SoundManager.PlaySound(SoundConfig.UI_Baoqi) - this.OnClickTabBtn(curIndex) + this.OnClickTabBtn(curIndex, true, true) UIManager.OpenPanel(UIName.RewardItemPopup,msg.drop,1,function() end) end)