Added description to Audio Filter Effects
Also doccumented Filter member variables and methods. [ci skip]
This commit is contained in:
parent
8f382879cf
commit
bc667aeada
@ -1,8 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<class name="AudioEffectBandLimitFilter" inherits="AudioEffectFilter" category="Core" version="3.0.alpha.custom_build">
|
||||
<brief_description>
|
||||
Adds a band limit filter to the Audio Bus.
|
||||
</brief_description>
|
||||
<description>
|
||||
Limits the frequencies in a range around the [member cutoff_hz] and allows frequencies outside of this range to pass.
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
|
@ -1,8 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<class name="AudioEffectBandPassFilter" inherits="AudioEffectFilter" category="Core" version="3.0.alpha.custom_build">
|
||||
<brief_description>
|
||||
Adds a band pass filter to the Audio Bus.
|
||||
</brief_description>
|
||||
<description>
|
||||
Attenuates the frequencies inside of a range around the [member cutoff_hz] and cuts frequencies outside of this band.
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
|
@ -1,8 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<class name="AudioEffectFilter" inherits="AudioEffect" category="Core" version="3.0.alpha.custom_build">
|
||||
<brief_description>
|
||||
Adds a filter to the Audio Bus.
|
||||
</brief_description>
|
||||
<description>
|
||||
Allows frequencies other than the [member cutoff_hz] to pass.
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
@ -68,12 +70,16 @@
|
||||
</methods>
|
||||
<members>
|
||||
<member name="cutoff_hz" type="float" setter="set_cutoff" getter="get_cutoff">
|
||||
Threshold frequency for the filter.
|
||||
</member>
|
||||
<member name="dB" type="int" setter="set_db" getter="get_db" enum="AudioEffectFilter.FilterDB">
|
||||
The volume in decibels of the filter.
|
||||
</member>
|
||||
<member name="gain" type="float" setter="set_gain" getter="get_gain">
|
||||
Gain amount of the frequences after the filter.
|
||||
</member>
|
||||
<member name="resonance" type="float" setter="set_resonance" getter="get_resonance">
|
||||
Amount of boost in the overtones near the cutoff frequency.
|
||||
</member>
|
||||
</members>
|
||||
<constants>
|
||||
|
@ -1,8 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<class name="AudioEffectHighPassFilter" inherits="AudioEffectFilter" category="Core" version="3.0.alpha.custom_build">
|
||||
<brief_description>
|
||||
Adds a high pass filter to the Audio Bus.
|
||||
</brief_description>
|
||||
<description>
|
||||
Cuts frequencies lower than the [member cutoff_hz] and allows higher frequencies to pass.
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
|
@ -1,8 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<class name="AudioEffectLowPassFilter" inherits="AudioEffectFilter" category="Core" version="3.0.alpha.custom_build">
|
||||
<brief_description>
|
||||
Adds a low pass filter to the Audio Bus.
|
||||
</brief_description>
|
||||
<description>
|
||||
Cuts frequencies higher than the [member cutoff_hz] and allows lower frequencies to pass.
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
|
@ -1,8 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<class name="AudioEffectNotchFilter" inherits="AudioEffectFilter" category="Core" version="3.0.alpha.custom_build">
|
||||
<brief_description>
|
||||
Adds a notch filter to the Audio Bus.
|
||||
</brief_description>
|
||||
<description>
|
||||
Attenuates frequencies in a narrow band around the [member cutoff_hz] and cuts frequencies outside of this range.
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
|
Loading…
Reference in New Issue
Block a user