From d7f12f20e6a539807c42de10e6d0a43d25a67c13 Mon Sep 17 00:00:00 2001 From: "DESKTOP-SAJ6RKV\\Administrator" Date: Mon, 19 May 2025 18:15:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Assets/GameScripts/HotFix/GameLogic/UI/UIGameRankForm.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIGameRankForm.cs b/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIGameRankForm.cs index 5aea6f15..dd739a06 100644 --- a/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIGameRankForm.cs +++ b/UnityProject/Assets/GameScripts/HotFix/GameLogic/UI/UIGameRankForm.cs @@ -64,6 +64,11 @@ namespace GameLogic { base.OnCreate(); + // 获取当前获胜阵营 + var actor = DataGameSceneManager.Instance.OnCheckWinTeam(); + var str = DataGameSceneManager.Instance.GetStrs(actor.m_Index); + m_tmp_TitleName.text = str + "氏家族胜利"; + m_PlayRankDatas = UserData as List; m_loopListView_View.InitListView(m_PlayRankDatas.Count, OnGetItemByIndex);