Implement basic mania hit order policy

This commit is contained in:
smoogipoo
2020-08-27 20:24:08 +09:00
parent 66fb5d4174
commit deb172bb6c
6 changed files with 215 additions and 0 deletions

View File

@ -64,6 +64,9 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
if (action != Action.Value)
return false;
if (CheckHittable?.Invoke(this, Time.Current) == false)
return false;
return UpdateResult(true);
}