7d166ecc50
- shorten play cone in attempt to achieve more accurate scrolling
21 lines
507 B
C#
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);
|
|
}
|
|
} |