From 448bab5f03a20f18f833fc2bb74d242375181729 Mon Sep 17 00:00:00 2001 From: shenjianxing <”315615051@qq.com“> Date: Tue, 31 Dec 2024 16:41:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=A6=E4=B9=A0=E6=A8=A1=E5=BC=8F=20?= =?UTF-8?q?=E5=8F=AA=E9=AB=98=E4=BA=AE=E5=BD=93=E5=89=8D=20=E8=80=83?= =?UTF-8?q?=E6=A0=B8=E6=A8=A1=E5=BC=8F=20=E9=AB=98=E4=BA=AE=E5=81=9A?= =?UTF-8?q?=E8=BF=87=E7=9A=84=E6=AD=A5=E9=AA=A4=20=E5=AE=9E=E7=8E=B0?= =?UTF-8?q?=E8=BF=87=E4=BA=8E=E8=80=A6=E5=90=88=20=E5=90=8E=E6=9C=9F?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/UI/UIOperationList.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/UI/UIOperationList.cs b/Assets/Scripts/UI/UIOperationList.cs index 76d40ae5..7e4a9d18 100644 --- a/Assets/Scripts/UI/UIOperationList.cs +++ b/Assets/Scripts/UI/UIOperationList.cs @@ -66,7 +66,15 @@ namespace QFramework.Example btn.transform.parent.gameObject.SetActive(true); break; case StepStatus.Finished: - stepLabel.color = highColor; + // TODOʵַʽ Ż + if (Global.Instance.curModule.type=="Exam") + { + stepLabel.color = highColor; + } + else + { + stepLabel.color = Color.white; + } break; } }