From a1da8cacf3ee3f580b056f82a7e724cf359a332c Mon Sep 17 00:00:00 2001 From: "DESKTOP-SAJ6RKV\\Administrator" Date: Thu, 29 May 2025 02:32:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=96=E7=95=8C=E5=85=A5=E5=9C=BA=E6=8E=92?= =?UTF-8?q?=E5=90=8D=E9=9F=B3=E9=A2=91=E8=A7=84=E5=88=99=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../HotFix/GameLogic/UI/UIVipItem_Old.cs | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIVipItem_Old.cs b/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIVipItem_Old.cs index 31dc6664..b5724280 100644 --- a/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIVipItem_Old.cs +++ b/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIVipItem_Old.cs @@ -47,34 +47,34 @@ namespace GameLogic if (giftItemData.m_RankNum == 1) { videoName = "Rank1"; - GameModule.Audio.Play(TEngine.AudioType.UISound, "01"); + GameModule.Audio.Play(TEngine.AudioType.UISound, "SJ01"); } else if (giftItemData.m_RankNum == 2) { videoName = "Rank2"; - GameModule.Audio.Play(TEngine.AudioType.UISound, "02"); + GameModule.Audio.Play(TEngine.AudioType.UISound, "SJ02"); } else if (giftItemData.m_RankNum == 3) { videoName = "Rank3"; - GameModule.Audio.Play(TEngine.AudioType.UISound, "03"); + GameModule.Audio.Play(TEngine.AudioType.UISound, "SJ03"); } else if (giftItemData.m_RankNum > 3 && giftItemData.m_RankNum <= 10) { videoName = "Rank4"; - GameModule.Audio.Play(TEngine.AudioType.UISound, "04"); + GameModule.Audio.Play(TEngine.AudioType.UISound, "SJ04"); } - else if (giftItemData.m_RankNum > 10 && giftItemData.m_RankNum <= 50) + else if (giftItemData.m_RankNum > 10 && giftItemData.m_RankNum <= 100) { videoName = "Rank5"; - GameModule.Audio.Play(TEngine.AudioType.UISound, "05"); - } - else if (giftItemData.m_RankNum > 50 && giftItemData.m_RankNum <= 100) - { - videoName = "Rank6"; - GameModule.Audio.Play(TEngine.AudioType.UISound, "06"); + GameModule.Audio.Play(TEngine.AudioType.UISound, "SJ05"); } + //else if (giftItemData.m_RankNum > 50 && giftItemData.m_RankNum <= 100) + //{ + // videoName = "Rank6"; + // GameModule.Audio.Play(TEngine.AudioType.UISound, "06"); + //} else { GameModule.UI.CloseUI();