Files
WacK/Scripts/Configuration/PlaySettings.cs
T

21 lines
507 B
C#
Raw Normal View History

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-09-18 00:28:54 -07:00
public static Config<float> playSpeedMultiplier =
new("PlaySettings", "playSpeedMultiplier", 2f);
2023-09-17 23:51:50 -07:00
/// <summary>
/// How much to shift song audio by in seconds.
/// </summary>
2023-09-18 00:28:54 -07:00
public static Config<float> audioOffset =
new("PlaySettings", "audioOffset", 0f);
2023-07-30 00:22:03 -07:00
}
}