2023-07-30 00:22:03 -07:00
|
|
|
namespace WacK.Configuration
|
|
|
|
|
{
|
2023-09-17 23:51:50 -07:00
|
|
|
/// <summary>
|
|
|
|
|
/// Player-configured settings that affect gameplay mechanics.
|
|
|
|
|
/// Can
|
|
|
|
|
/// </summary>
|
2023-07-30 00:22:03 -07:00
|
|
|
public class PlaySettings
|
|
|
|
|
{
|
2023-09-17 23:51:50 -07:00
|
|
|
/// <summary>
|
|
|
|
|
/// Scroll speed multiplier.
|
|
|
|
|
/// </summary>
|
2023-07-30 00:22:03 -07:00
|
|
|
public static float playSpeedMultiplier = 2f;
|
2023-09-17 23:51:50 -07:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// How much to shift song audio by in seconds.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static float audioOffset = 0f;
|
2023-07-30 00:22:03 -07:00
|
|
|
}
|
|
|
|
|
}
|