Move storyboard outro logic to DrawableStoryboard

This commit is contained in:
Christine Chen
2021-04-16 00:59:10 -04:00
parent 0e545e1ed9
commit b15838b220
10 changed files with 57 additions and 49 deletions

View File

@ -21,13 +21,8 @@ namespace osu.Game.Screens.Play
public bool AllowRestart { get; set; } = true;
/// <summary>
/// Whether the player should be allowed to skip the intro, advancing to the start of gameplay.
/// Whether the player should be allowed to skip intros/outros, advancing to the start of gameplay or the end of a storyboard.
/// </summary>
public bool AllowSkippingIntro { get; set; } = true;
/// <summary>
/// Whether the player should be allowed to skip the outro, advancing to the end of a storyboard.
/// </summary>
public bool AllowSkippingOutro { get; set; } = true;
public bool AllowSkipping { get; set; } = true;
}
}