Merge branch 'master' into fix-taiko-swell-tick-display

This commit is contained in:
Dean Herbert
2019-09-02 13:47:04 +09:00
committed by GitHub
4 changed files with 91 additions and 3 deletions

View File

@ -17,7 +17,11 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
protected override void UpdateInitialTransforms() => this.FadeOut();
public void TriggerResult(HitResult type) => ApplyResult(r => r.Type = type);
public void TriggerResult(HitResult type)
{
HitObject.StartTime = Time.Current;
ApplyResult(r => r.Type = type);
}
protected override void CheckForResult(bool userTriggered, double timeOffset)
{