1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-16 13:32:54 +08:00

Merge branch 'taiko_drumroll_base' into taiko_conversion

This commit is contained in:
smoogipooo 2017-03-20 13:12:32 +09:00
commit 962acca096
2 changed files with 0 additions and 12 deletions

View File

@ -106,15 +106,5 @@ namespace osu.Game.Modes.Taiko.Objects
first = false;
}
}
public override TaikoHitType Type
{
get
{
SampleType st = Sample?.Type ?? SampleType.None;
return TaikoHitType.DrumRoll | ((st & SampleType.Finish) > 0 ? TaikoHitType.Finisher : TaikoHitType.None);
}
}
}
}

View File

@ -15,7 +15,5 @@ namespace osu.Game.Modes.Taiko.Objects
/// <para>Half of this value is the hit window of the tick.</para>
/// </summary>
public double TickTimeDistance;
public override TaikoHitType Type => TaikoHitType.DrumRollTick;
}
}