diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-09-24 15:16:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-24 15:16:04 +0200 |
commit | a5885d69878952e606c00fa4f0d7c69cc1820006 (patch) | |
tree | 43d9730503f60ac05175f3d80485d73a91de7770 | |
parent | fc8904236bea1710eebfb80be8dcb3560209bd3e (diff) | |
parent | 75adefd4b67f1368dce0f50b24f02d2dc62d749c (diff) |
Merge pull request #42089 from skyace65/ShelfFilters
Add documentation for shelf filters
-rw-r--r-- | doc/classes/AudioEffectHighShelfFilter.xml | 2 | ||||
-rw-r--r-- | doc/classes/AudioEffectLowShelfFilter.xml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/doc/classes/AudioEffectHighShelfFilter.xml b/doc/classes/AudioEffectHighShelfFilter.xml index cf620e4417..4ba31f9fc8 100644 --- a/doc/classes/AudioEffectHighShelfFilter.xml +++ b/doc/classes/AudioEffectHighShelfFilter.xml @@ -1,10 +1,12 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="AudioEffectHighShelfFilter" inherits="AudioEffectFilter" version="4.0"> <brief_description> + Reduces all frequencies above the [member AudioEffectFilter.cutoff_hz]. </brief_description> <description> </description> <tutorials> + <link title="Audio buses">https://docs.godotengine.org/en/latest/tutorials/audio/audio_buses.html</link> </tutorials> <methods> </methods> diff --git a/doc/classes/AudioEffectLowShelfFilter.xml b/doc/classes/AudioEffectLowShelfFilter.xml index 7cf09b0f05..078e7bf1a1 100644 --- a/doc/classes/AudioEffectLowShelfFilter.xml +++ b/doc/classes/AudioEffectLowShelfFilter.xml @@ -1,10 +1,12 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="AudioEffectLowShelfFilter" inherits="AudioEffectFilter" version="4.0"> <brief_description> + Reduces all frequencies below the [member AudioEffectFilter.cutoff_hz]. </brief_description> <description> </description> <tutorials> + <link title="Audio buses">https://docs.godotengine.org/en/latest/tutorials/audio/audio_buses.html</link> </tutorials> <methods> </methods> |