mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Allow BlueprintContainer to specify toggles
This commit is contained in:
@ -41,10 +41,10 @@ namespace osu.Game.Rulesets.Osu.Edit
|
||||
|
||||
private readonly BindableBool distanceSnapToggle = new BindableBool(true) { Description = "Distance Snap" };
|
||||
|
||||
protected override IEnumerable<BindableBool> Toggles => new[]
|
||||
protected override IEnumerable<Bindable<bool>> Toggles => base.Toggles.Concat(new[]
|
||||
{
|
||||
distanceSnapToggle
|
||||
};
|
||||
});
|
||||
|
||||
private BindableList<HitObject> selectedHitObjects;
|
||||
|
||||
|
Reference in New Issue
Block a user