1.向判定效果IInteraction中增强, 支持Hold类型判定, 这将是除Tap以外唯二的判定模式\n2.GameController现在能够打开带有Helper的项目根目录

This commit is contained in:
2025-10-02 11:11:42 +08:00
parent 8e08e3630d
commit a77faec0fa
5 changed files with 138 additions and 58 deletions

View File

@@ -138,7 +138,16 @@ namespace Demo.Game
return DurationStats.After;
}
public abstract bool JudgementBehaviour(float timePoint);
public enum JudgementLevel
{
None = -2,//No Judge
Default = -1,
BestLevel = 0,//Level0
ScoreLevel = 1,//Level1
Bad = 128,
}
public abstract JudgementLevel JudgementBehaviour(float timePoint);
protected override void UpdateTicks(float currentTime, float deltaTime, TickType tickType)
{