From 78582255659e2d7d9fbf9330606da3c3e5bade6f Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 23 Feb 2026 17:19:14 +0100 Subject: [PATCH] Update docs for #3948 --- Source/Engine/Audio/AudioSource.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Engine/Audio/AudioSource.h b/Source/Engine/Audio/AudioSource.h index 58903912c..07762be2f 100644 --- a/Source/Engine/Audio/AudioSource.h +++ b/Source/Engine/Audio/AudioSource.h @@ -207,16 +207,16 @@ public: API_PROPERTY() void SetAttenuation(float value); /// - /// Gets the doppler effect factor. Scale for source velocity. Default is 1. + /// Gets the doppler effect factor. Scale for source velocity. Default is 1. Used by spatial sources only. Cannot scale the effect up (only dim it). /// - API_PROPERTY(Attributes="EditorOrder(75), DefaultValue(1.0f), Limit(0, float.MaxValue, 0.1f), EditorDisplay(\"Audio Source\")") + API_PROPERTY(Attributes="EditorOrder(75), DefaultValue(1.0f), Limit(0, 1.0f, 0.1f), EditorDisplay(\"Audio Source\")") FORCE_INLINE float GetDopplerFactor() const { return _dopplerFactor; } /// - /// Sets the doppler effect factor. Scale for source velocity. Default is 1. + /// Sets the doppler effect factor. Scale for source velocity. Default is 1. Used by spatial sources only. Cannot scale the effect up (only dim it). /// API_PROPERTY() void SetDopplerFactor(float value);