mirror of https://github.com/ppy/osu
Add back incompatibility marker
This commit is contained in:
parent
cfdac956c2
commit
aa1a625643
|
@ -23,7 +23,7 @@ internal class OsuModTraceable : Mod, IReadFromConfig, IApplicableToDrawableHitO
|
|||
public override string Description => "Put your faith in the approach circles...";
|
||||
public override double ScoreMultiplier => 1;
|
||||
|
||||
public override Type[] IncompatibleMods => new[] { typeof(OsuModHidden), typeof(OsuModSpinIn) };
|
||||
public override Type[] IncompatibleMods => new[] { typeof(OsuModHidden), typeof(OsuModSpinIn), typeof(OsuModeObjectScaleTween) };
|
||||
private Bindable<bool> increaseFirstObjectVisibility = new Bindable<bool>();
|
||||
|
||||
public void ReadFromConfig(OsuConfigManager config)
|
||||
|
@ -65,7 +65,6 @@ protected void ApplyTraceableState(DrawableHitObject drawable, ArmedState state)
|
|||
|
||||
case DrawableSpinner spinner:
|
||||
spinner.Disc.Hide();
|
||||
//spinner.Ticks.Hide(); // do they contribute to the theme? debatable
|
||||
spinner.Background.Hide();
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ public abstract class OsuModeObjectScaleTween : Mod, IReadFromConfig, IApplicabl
|
|||
|
||||
private Bindable<bool> increaseFirstObjectVisibility = new Bindable<bool>();
|
||||
|
||||
public override Type[] IncompatibleMods => new[] { typeof(OsuModSpinIn) };
|
||||
public override Type[] IncompatibleMods => new[] { typeof(OsuModSpinIn), typeof(OsuModTraceable) };
|
||||
|
||||
public void ReadFromConfig(OsuConfigManager config)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue