From aaa491b349153aefc4ab34b18c9a83ccaefecc65 Mon Sep 17 00:00:00 2001 From: Anthony Hall Date: Sun, 7 Sep 2025 01:52:55 -0700 Subject: [PATCH] Fix default radiation amp (thought I did it already) --- Source/audio/RadiationEffect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/audio/RadiationEffect.h b/Source/audio/RadiationEffect.h index aef90536..45a99a2f 100644 --- a/Source/audio/RadiationEffect.h +++ b/Source/audio/RadiationEffect.h @@ -26,7 +26,7 @@ public: std::vector{ new osci::EffectParameter("Radiation", "Creates a crepuscular ray effect by adding noise. This slider controls the size of the rays. Looks best with higher sample rates.", - "radiationAmp", VERSION_HINT, 1.0, 0.0, 1.0), + "radiationAmp", VERSION_HINT, 0.5, 0.0, 1.0), new osci::EffectParameter("Radiation Bias", "Controls whether the rays appear to be radiating inward or outward.", "radiationBias", VERSION_HINT, 0.8, -1.0, 1.0)