コード例 #1
0
ファイル: BlueprintContainer.cs プロジェクト: codernaut/osu
        private void onBlueprintDeselected(SelectionBlueprint blueprint)
        {
            SelectionHandler.HandleDeselected(blueprint);
            SelectionBlueprints.ChangeChildDepth(blueprint, 0);

            Composer.Playfield.SetKeepAlive(blueprint.HitObject, false);
        }
コード例 #2
0
 private void onBlueprintDeselected(SelectionBlueprint blueprint)
 {
     SelectionHandler.HandleDeselected(blueprint);
     SelectionBlueprints.ChangeChildDepth(blueprint, 0);
 }
コード例 #3
0
 private void onBlueprintDeselected(SelectionBlueprint blueprint)
 {
     selectionHandler.HandleDeselected(blueprint);
     SelectionBlueprints.ChangeChildDepth(blueprint, 0);
     beatmap.SelectedHitObjects.Remove(blueprint.HitObject);
 }
コード例 #4
0
ファイル: BlueprintContainer.cs プロジェクト: Henry-YSLin/osu
 protected virtual void OnBlueprintDeselected(SelectionBlueprint <T> blueprint)
 {
     SelectionBlueprints.ChangeChildDepth(blueprint, 0);
     SelectionHandler.HandleDeselected(blueprint);
 }