2023-06-23 01:37:25 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2020-12-23 17:39:08 +09:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
|
{
|
|
|
|
|
public class PlayerConfiguration
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether pausing should be allowed. If not allowed, attempting to pause will quit.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool AllowPause { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether results screen should be pushed on completion.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ShowResults { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the player should be allowed to trigger a restart.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool AllowRestart { get; set; } = true;
|
2020-12-24 16:29:51 +09:00
|
|
|
|
|
2021-08-16 16:16:02 +09:00
|
|
|
|
/// <summary>
|
2021-08-16 16:48:40 +09:00
|
|
|
|
/// Whether the player should be able to interact with this player instance.
|
2021-08-16 16:16:02 +09:00
|
|
|
|
/// </summary>
|
2021-08-16 16:48:40 +09:00
|
|
|
|
public bool AllowUserInteraction { get; set; } = true;
|
2021-08-16 16:16:02 +09:00
|
|
|
|
|
2020-12-24 16:29:51 +09:00
|
|
|
|
/// <summary>
|
2021-04-16 00:59:10 -04:00
|
|
|
|
/// Whether the player should be allowed to skip intros/outros, advancing to the start of gameplay or the end of a storyboard.
|
2020-12-24 16:29:51 +09:00
|
|
|
|
/// </summary>
|
2021-04-16 00:59:10 -04:00
|
|
|
|
public bool AllowSkipping { get; set; } = true;
|
2022-08-07 13:20:29 +02:00
|
|
|
|
|
2022-08-07 13:31:26 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the intro should be skipped by default.
|
|
|
|
|
/// </summary>
|
2022-08-07 13:20:29 +02:00
|
|
|
|
public bool AutomaticallySkipIntro { get; set; }
|
2022-09-13 18:12:49 +09:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the gameplay leaderboard should always be shown (usually in a contracted state).
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool AlwaysShowLeaderboard { get; set; }
|
2020-12-23 17:39:08 +09:00
|
|
|
|
}
|
|
|
|
|
}
|