1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 15:27:24 +08:00

Fix offsets

This commit is contained in:
Dean Herbert 2020-05-25 22:36:49 +09:00
parent 90acba8c36
commit 4b1a2b5bc2

View File

@ -61,7 +61,11 @@ namespace osu.Game.Rulesets.Taiko
{
RelativeSizeAxes = Axes.None;
AddInternal(new HitPiece { RelativeSizeAxes = Axes.Both });
AddInternal(new HitPiece
{
RelativeSizeAxes = Axes.Both,
Origin = Anchor.TopLeft
});
}
protected override void Update()