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();