Files
WacK/Scripts/Configuration/PlaySettings.cs
T
msk 7d166ecc50 it's not the length that matters
- shorten play cone in attempt to achieve more accurate scrolling
2023-10-11 23:57:44 -07:00

21 lines
507 B
C#

namespace WacK.Configuration
{
/// <summary>
/// Player-configured settings that affect gameplay mechanics.
/// Can
/// </summary>
public class PlaySettings
{
/// <summary>
/// Scroll speed multiplier.
/// </summary>
public static Config<float> playSpeedMultiplier =
new("PlaySettings", "playSpeedMultiplier", 4f);
/// <summary>
/// How much to shift song audio by in seconds.
/// </summary>
public static Config<float> audioOffset =
new("PlaySettings", "audioOffset", 0f);
}
}