From 0dddf2a0af30077feebbfcba8c76124efe7bb978 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Wed, 17 Aug 2022 18:45:35 -0700 Subject: [PATCH] fix default pitch --- src/Audio/SoundInstance.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Audio/SoundInstance.cs b/src/Audio/SoundInstance.cs index caba229..31df632 100644 --- a/src/Audio/SoundInstance.cs +++ b/src/Audio/SoundInstance.cs @@ -45,7 +45,7 @@ namespace MoonWorks.Audio } } - private float _pitch = 1; + private float _pitch = 0; public float Pitch { get => _pitch;