1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:57:36 +08:00

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

This commit is contained in:
Aaron Hong 2022-03-12 07:51:40 -08:00
parent 9db80c3335
commit 2de6bb033b

View File

@ -23,7 +23,7 @@ namespace osu.Game.Rulesets.Taiko.UI
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)
private const float offscreenPercent = 0.35f;
private const float offscreenPercent = 0.4f;
private InputDrum touchInputDrum;
private Circle drumBackground;
@ -62,6 +62,7 @@ namespace osu.Game.Rulesets.Taiko.UI
touchInputDrum = new InputDrum() {
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
centre_size = 0.8f,
},
}
},