This commit is contained in:
陈向学 2024-08-29 15:42:21 +08:00
parent 4cd46bb095
commit 9728a2de88
4 changed files with 11 additions and 2 deletions

Binary file not shown.

View File

@ -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));
}
}
/// <summary>
@ -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));
}
}
}

View File

@ -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));
}
}
/// <summary>
/// Èý²½Ñéµç˳Ðò
/// </summary>