mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Merge branch 'master' into fix-taiko-editor-sample-mutations
This commit is contained in:
@ -61,6 +61,8 @@ namespace osu.Game.Screens.Edit.Compose.Components
|
||||
|
||||
inputManager = GetContainingInputManager();
|
||||
|
||||
Beatmap.HitObjectAdded += hitObjectAdded;
|
||||
|
||||
// updates to selected are handled for us by SelectionHandler.
|
||||
NewCombo.BindTo(SelectionHandler.SelectionNewComboState);
|
||||
|
||||
@ -259,10 +261,9 @@ namespace osu.Game.Screens.Edit.Compose.Components
|
||||
|
||||
public virtual HitObjectSelectionBlueprint CreateHitObjectBlueprintFor(HitObject hitObject) => null;
|
||||
|
||||
protected override void OnBlueprintAdded(HitObject item)
|
||||
private void hitObjectAdded(HitObject obj)
|
||||
{
|
||||
base.OnBlueprintAdded(item);
|
||||
|
||||
// refresh the tool to handle the case of placement completing.
|
||||
refreshTool();
|
||||
|
||||
// on successful placement, the new combo button should be reset as this is the most common user interaction.
|
||||
|
Reference in New Issue
Block a user