Skip to content

Commit

Permalink
Raised volume limit
Browse files Browse the repository at this point in the history
  • Loading branch information
adamd3v committed Jan 23, 2022
1 parent fd783af commit 7b701b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HitmarkersMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public override void OnApplicationStart()
sub_Visuals.CreateFloatElement("Distance Until Scale", Color.white, 5, (num) => HitmarkerManager._instance.hitmarkerDistanceUntilScale = num, 1, 1, float.PositiveInfinity, true);
sub_Visuals.CreateFloatElement("Animation Speed", Color.white, 1f, (num) => HitmarkerManager._instance.animationSpeed = num, 0.25f, 0.25f, 2f, true);

sub_Audio.CreateFloatElement("Volume", Color.white, 1f, (num) => HitmarkerManager._instance.hitmarkerAudio = num, 0.25f, 0f, 2f, true);
sub_Audio.CreateFloatElement("Volume", Color.white, 1f, (num) => HitmarkerManager._instance.hitmarkerAudio = num, 0.25f, 0f, 3f, true);

Audio.AudioUtilities.Intitialize();
}
Expand Down

0 comments on commit 7b701b8

Please sign in to comment.