mirror of
https://github.com/ppy/osu.git
synced 2025-01-08 22:02:56 +08:00
Allow Autopilot and Grow/Deflate compatibility
This commit is contained in:
parent
46f5990731
commit
ef9296f3ad
@ -32,8 +32,7 @@ namespace osu.Game.Rulesets.Osu.Mods
|
|||||||
typeof(ModAutoplay),
|
typeof(ModAutoplay),
|
||||||
typeof(OsuModMagnetised),
|
typeof(OsuModMagnetised),
|
||||||
typeof(OsuModRepel),
|
typeof(OsuModRepel),
|
||||||
typeof(ModTouchDevice),
|
typeof(ModTouchDevice)
|
||||||
typeof(OsuModBloom)
|
|
||||||
};
|
};
|
||||||
|
|
||||||
private OsuInputManager inputManager = null!;
|
private OsuInputManager inputManager = null!;
|
||||||
|
@ -26,7 +26,7 @@ namespace osu.Game.Rulesets.Osu.Mods
|
|||||||
public override double ScoreMultiplier => 1;
|
public override double ScoreMultiplier => 1;
|
||||||
protected const float MIN_SIZE = 1;
|
protected const float MIN_SIZE = 1;
|
||||||
protected const float TRANSITION_DURATION = 100;
|
protected const float TRANSITION_DURATION = 100;
|
||||||
public override Type[] IncompatibleMods => new[] { typeof(OsuModFlashlight), typeof(OsuModNoScope), typeof(OsuModObjectScaleTween), typeof(ModTouchDevice), typeof(OsuModAutopilot) };
|
public override Type[] IncompatibleMods => new[] { typeof(OsuModFlashlight), typeof(OsuModNoScope), typeof(ModTouchDevice) };
|
||||||
|
|
||||||
protected readonly BindableNumber<int> CurrentCombo = new BindableInt();
|
protected readonly BindableNumber<int> CurrentCombo = new BindableInt();
|
||||||
protected readonly IBindable<bool> IsBreakTime = new Bindable<bool>();
|
protected readonly IBindable<bool> IsBreakTime = new Bindable<bool>();
|
||||||
|
@ -26,7 +26,7 @@ namespace osu.Game.Rulesets.Osu.Mods
|
|||||||
|
|
||||||
protected virtual float EndScale => 1;
|
protected virtual float EndScale => 1;
|
||||||
|
|
||||||
public override Type[] IncompatibleMods => new[] { typeof(IRequiresApproachCircles), typeof(OsuModSpinIn), typeof(OsuModObjectScaleTween), typeof(OsuModDepth), typeof(OsuModBloom) };
|
public override Type[] IncompatibleMods => new[] { typeof(IRequiresApproachCircles), typeof(OsuModSpinIn), typeof(OsuModObjectScaleTween), typeof(OsuModDepth) };
|
||||||
|
|
||||||
protected override void ApplyIncreasedVisibilityState(DrawableHitObject hitObject, ArmedState state)
|
protected override void ApplyIncreasedVisibilityState(DrawableHitObject hitObject, ArmedState state)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user