diff --git a/doc/classes/AudioEffectBandLimitFilter.xml b/doc/classes/AudioEffectBandLimitFilter.xml index 96f95fbffda..d4b251fc8e4 100644 --- a/doc/classes/AudioEffectBandLimitFilter.xml +++ b/doc/classes/AudioEffectBandLimitFilter.xml @@ -1,8 +1,10 @@ + Adds a band limit filter to the Audio Bus. + Limits the frequencies in a range around the [member cutoff_hz] and allows frequencies outside of this range to pass. diff --git a/doc/classes/AudioEffectBandPassFilter.xml b/doc/classes/AudioEffectBandPassFilter.xml index 4437961cc63..b5c6ae3c200 100644 --- a/doc/classes/AudioEffectBandPassFilter.xml +++ b/doc/classes/AudioEffectBandPassFilter.xml @@ -1,8 +1,10 @@ + Adds a band pass filter to the Audio Bus. + Attenuates the frequencies inside of a range around the [member cutoff_hz] and cuts frequencies outside of this band. diff --git a/doc/classes/AudioEffectFilter.xml b/doc/classes/AudioEffectFilter.xml index 17aa01d60ab..dc547c9fe5d 100644 --- a/doc/classes/AudioEffectFilter.xml +++ b/doc/classes/AudioEffectFilter.xml @@ -1,8 +1,10 @@ + Adds a filter to the Audio Bus. + Allows frequencies other than the [member cutoff_hz] to pass. @@ -68,12 +70,16 @@ + Threshold frequency for the filter. + The volume in decibels of the filter. + Gain amount of the frequences after the filter. + Amount of boost in the overtones near the cutoff frequency. diff --git a/doc/classes/AudioEffectHighPassFilter.xml b/doc/classes/AudioEffectHighPassFilter.xml index 641f7cfee26..c5e24af5100 100644 --- a/doc/classes/AudioEffectHighPassFilter.xml +++ b/doc/classes/AudioEffectHighPassFilter.xml @@ -1,8 +1,10 @@ + Adds a high pass filter to the Audio Bus. + Cuts frequencies lower than the [member cutoff_hz] and allows higher frequencies to pass. diff --git a/doc/classes/AudioEffectLowPassFilter.xml b/doc/classes/AudioEffectLowPassFilter.xml index fcaf32d761b..f102dda03e0 100644 --- a/doc/classes/AudioEffectLowPassFilter.xml +++ b/doc/classes/AudioEffectLowPassFilter.xml @@ -1,8 +1,10 @@ + Adds a low pass filter to the Audio Bus. + Cuts frequencies higher than the [member cutoff_hz] and allows lower frequencies to pass. diff --git a/doc/classes/AudioEffectNotchFilter.xml b/doc/classes/AudioEffectNotchFilter.xml index f90577fa5a0..8ec9a4bc7cc 100644 --- a/doc/classes/AudioEffectNotchFilter.xml +++ b/doc/classes/AudioEffectNotchFilter.xml @@ -1,8 +1,10 @@ + Adds a notch filter to the Audio Bus. + Attenuates frequencies in a narrow band around the [member cutoff_hz] and cuts frequencies outside of this range.