mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Use more suffixes.
This commit is contained in:
@ -79,7 +79,7 @@ namespace osu.Game.Modes.Taiko.UI
|
||||
|
||||
barLine.ApplyDefaults(Beatmap.TimingInfo, Beatmap.BeatmapInfo.Difficulty);
|
||||
|
||||
taikoPlayfield.AddBarLine(isMajor ? new DrawableMajorBarLine(barLine) : new DrawableBarLine(barLine));
|
||||
taikoPlayfield.AddBarLine(isMajor ? new DrawableBarLineMajor(barLine) : new DrawableBarLine(barLine));
|
||||
|
||||
currentBeat++;
|
||||
}
|
||||
@ -118,7 +118,7 @@ namespace osu.Game.Modes.Taiko.UI
|
||||
if (centreHit != null)
|
||||
{
|
||||
if (h.IsStrong)
|
||||
return new DrawableStrongCentreHit(centreHit);
|
||||
return new DrawableCentreHitStrong(centreHit);
|
||||
return new DrawableCentreHit(centreHit);
|
||||
}
|
||||
|
||||
@ -126,7 +126,7 @@ namespace osu.Game.Modes.Taiko.UI
|
||||
if (rimHit != null)
|
||||
{
|
||||
if (h.IsStrong)
|
||||
return new DrawableStrongRimHit(rimHit);
|
||||
return new DrawableRimHitStrong(rimHit);
|
||||
return new DrawableRimHit(rimHit);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user