mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Beatmaps.Timing;
|
|
using osu.Game.Database;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects
|
|
{
|
|
public class Hit : TaikoHitObject
|
|
{
|
|
/// <summary>
|
|
/// The hit window that results in a "GREAT" hit.
|
|
/// </summary>
|
|
public double HitWindowGreat = 35;
|
|
|
|
/// <summary>
|
|
/// The hit window that results in a "GOOD" hit.
|
|
/// </summary>
|
|
public double HitWindowGood = 80;
|
|
|
|
/// <summary>
|
|
/// The hit window that results in a "MISS".
|
|
/// </summary>
|
|
public double HitWindowMiss = 95;
|
|
|
|
public override void ApplyDefaults(TimingInfo timing, BeatmapDifficulty difficulty)
|
|
{
|
|
base.ApplyDefaults(timing, difficulty);
|
|
|
|
HitWindowGreat = BeatmapDifficulty.DifficultyRange(difficulty.OverallDifficulty, 50, 35, 20);
|
|
HitWindowGood = BeatmapDifficulty.DifficultyRange(difficulty.OverallDifficulty, 120, 80, 50);
|
|
HitWindowMiss = BeatmapDifficulty.DifficultyRange(difficulty.OverallDifficulty, 135, 95, 70);
|
|
}
|
|
}
|
|
}
|