1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-02 03:59:54 +08:00

Fix silly test failures

This commit is contained in:
Dean Herbert
2025-03-11 21:28:35 +09:00
Unverified
parent 61e1234e0a
commit c994489392
@@ -135,7 +135,13 @@ namespace osu.Game.Tests.Visual.Settings
public Bindable<Vector2> AreaSize { get; } = new Bindable<Vector2>();
public Bindable<float> Rotation { get; } = new Bindable<float>();
public BindableFloat PressureThreshold { get; } = new BindableFloat();
public BindableFloat PressureThreshold { get; } = new BindableFloat
{
MinValue = 0f,
MaxValue = 1f,
Precision = 0.005f,
};
public IBindable<TabletInfo> Tablet => tablet;