diff --git a/Assets/ArtRes/Excel/Config.xlsx b/Assets/ArtRes/Excel/Config.xlsx index 06f9c1f..9a56f30 100644 Binary files a/Assets/ArtRes/Excel/Config.xlsx and b/Assets/ArtRes/Excel/Config.xlsx differ diff --git a/Assets/Scripts/CXX/Score/ScoreSubjectStep.cs b/Assets/Scripts/CXX/Score/ScoreSubjectStep.cs index ed67efb..80bc9f2 100644 --- a/Assets/Scripts/CXX/Score/ScoreSubjectStep.cs +++ b/Assets/Scripts/CXX/Score/ScoreSubjectStep.cs @@ -42,7 +42,7 @@ public class ScoreSubjectStep { isDone = true; currentScore = (AllScore ? maxScore : 0); - Debug.Log(string.Format("打分:{0} 得分:{1}", subProcessId, currentScore)); + Debug.LogError(string.Format("打分:{0} 得分:{1} / {2}", subProcessId, currentScore,maxScore)); } } /// @@ -55,7 +55,7 @@ public class ScoreSubjectStep { isDone = true; currentScore = scaleScore*maxScore; - Debug.Log(string.Format("打分:{0} 得分:{1}", subProcessId, currentScore)); + Debug.LogError(string.Format("打分:{0} 得分:{1} / {2}", subProcessId, currentScore, maxScore)); } } } diff --git a/Assets/Scripts/CXX/Score/Score_1002.cs b/Assets/Scripts/CXX/Score/Score_1002.cs index 168e5d6..445a6a1 100644 --- a/Assets/Scripts/CXX/Score/Score_1002.cs +++ b/Assets/Scripts/CXX/Score/Score_1002.cs @@ -1,3 +1,4 @@ +using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -47,6 +48,14 @@ public class Score_1002 : ScoreBase currentInstallTestJieXian.Clear(); } + private void Update() + { + if (Input.GetKeyDown(KeyCode.P)) + { + Debug.Log(JsonConvert.SerializeObject(steps)); + } + } + /// /// 三步验电顺序 /// diff --git a/Assets/StreamingAssets/BinaryData/TB_SubProcessStep.binary b/Assets/StreamingAssets/BinaryData/TB_SubProcessStep.binary index 4f23be1..98750f0 100644 Binary files a/Assets/StreamingAssets/BinaryData/TB_SubProcessStep.binary and b/Assets/StreamingAssets/BinaryData/TB_SubProcessStep.binary differ