Revert "Adjust default touch drum overlay size to be more comfortable on phones"

This reverts commit 2de6bb033b.
This commit is contained in:
Aaron Hong 2022-03-12 08:03:24 -08:00
parent 2de6bb033b
commit b628a65cfa

View File

@ -23,7 +23,7 @@ namespace osu.Game.Rulesets.Taiko.UI
public class DrumTouchInputArea : Container public class DrumTouchInputArea : Container
{ {
// The percent of the drum that extends past the bottom of the screen (set to 0.0f to show the full drum) // The percent of the drum that extends past the bottom of the screen (set to 0.0f to show the full drum)
private const float offscreenPercent = 0.4f; private const float offscreenPercent = 0.35f;
private InputDrum touchInputDrum; private InputDrum touchInputDrum;
private Circle drumBackground; private Circle drumBackground;
@ -62,7 +62,6 @@ namespace osu.Game.Rulesets.Taiko.UI
touchInputDrum = new InputDrum() { touchInputDrum = new InputDrum() {
Anchor = Anchor.Centre, Anchor = Anchor.Centre,
Origin = Anchor.Centre, Origin = Anchor.Centre,
centre_size = 0.8f,
}, },
} }
}, },