This commit is contained in:
parent
4cd46bb095
commit
9728a2de88
Binary file not shown.
|
@ -42,7 +42,7 @@ public class ScoreSubjectStep
|
||||||
{
|
{
|
||||||
isDone = true;
|
isDone = true;
|
||||||
currentScore = (AllScore ? maxScore : 0);
|
currentScore = (AllScore ? maxScore : 0);
|
||||||
Debug.Log(string.Format("打分:{0} 得分:{1}", subProcessId, currentScore));
|
Debug.LogError(string.Format("打分:{0} 得分:{1} / {2}", subProcessId, currentScore,maxScore));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -55,7 +55,7 @@ public class ScoreSubjectStep
|
||||||
{
|
{
|
||||||
isDone = true;
|
isDone = true;
|
||||||
currentScore = scaleScore*maxScore;
|
currentScore = scaleScore*maxScore;
|
||||||
Debug.Log(string.Format("打分:{0} 得分:{1}", subProcessId, currentScore));
|
Debug.LogError(string.Format("打分:{0} 得分:{1} / {2}", subProcessId, currentScore, maxScore));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
using Newtonsoft.Json;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
@ -47,6 +48,14 @@ public class Score_1002 : ScoreBase
|
||||||
currentInstallTestJieXian.Clear();
|
currentInstallTestJieXian.Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void Update()
|
||||||
|
{
|
||||||
|
if (Input.GetKeyDown(KeyCode.P))
|
||||||
|
{
|
||||||
|
Debug.Log(JsonConvert.SerializeObject(steps));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Èý²½Ñéµç˳Ðò
|
/// Èý²½Ñéµç˳Ðò
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue