mirror of
https://github.com/ppy/osu
synced 2025-01-19 04:20:59 +00:00
Fix kiai not working during gameplay.
This commit is contained in:
parent
6e612bbefc
commit
ebbf381cd6
@ -41,6 +41,7 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
|
||||
Width = (float)(drumRoll.Duration / drumRoll.PreEmpt);
|
||||
|
||||
Add(circle = CreateCirclePiece());
|
||||
circle.KiaiMode = HitObject.Kiai;
|
||||
|
||||
foreach (var tick in drumRoll.Ticks)
|
||||
{
|
||||
|
@ -46,6 +46,8 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
|
||||
Circle = CreateCirclePiece()
|
||||
}
|
||||
});
|
||||
|
||||
Circle.KiaiMode = HitObject.Kiai;
|
||||
}
|
||||
|
||||
protected override void CheckJudgement(bool userTriggered)
|
||||
|
@ -128,6 +128,8 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
circlePiece.KiaiMode = HitObject.Kiai;
|
||||
}
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
|
Loading…
Reference in New Issue
Block a user