class_audioeffectreverb.rst 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the AudioEffectReverb.xml source instead.
  3. .. The source is found in doc/classes or modules/<name>/doc_classes.
  4. .. _class_AudioEffectReverb:
  5. AudioEffectReverb
  6. =================
  7. **Inherits:** :ref:`AudioEffect<class_audioeffect>` **<** :ref:`Resource<class_resource>` **<** :ref:`Reference<class_reference>` **<** :ref:`Object<class_object>`
  8. **Category:** Core
  9. Brief Description
  10. -----------------
  11. Adds a Reverb audio effect to an Audio bus.
  12. Simulates the sound of acoustic environments such as rooms, concert halls, caverns, or an open spaces.
  13. Member Variables
  14. ----------------
  15. .. _class_AudioEffectReverb_damping:
  16. - :ref:`float<class_float>` **damping** - Widens or narrows the stereo image of the reverb tail. 1 means fully widens. Value can range from 0 to 1. Default value: ``1``.
  17. .. _class_AudioEffectReverb_dry:
  18. - :ref:`float<class_float>` **dry** - Output percent of original sound. At 0, only modified sound is outputted. Value can range from 0 to 1. Default value: ``1``.
  19. .. _class_AudioEffectReverb_hipass:
  20. - :ref:`float<class_float>` **hipass** - High-pass filter passes signals with a frequency higher than a certain cutoff frequency and attenuates signals with frequencies lower than the cutoff frequency. Value can range from 0 to 1. Default value: ``0``.
  21. .. _class_AudioEffectReverb_predelay_feedback:
  22. - :ref:`float<class_float>` **predelay_feedback** - Output percent of predelay. Value can range from 0 to 1. Default value: ``1``.
  23. .. _class_AudioEffectReverb_predelay_msec:
  24. - :ref:`float<class_float>` **predelay_msec** - Time between the original signal and the early reflections of the reverb signal. Default value: ``150ms``.
  25. .. _class_AudioEffectReverb_room_size:
  26. - :ref:`float<class_float>` **room_size** - Dimensions of simulated room. Bigger means more echoes. Value can range from 0 to 1. Default value: ``0.8``.
  27. .. _class_AudioEffectReverb_spread:
  28. - :ref:`float<class_float>` **spread** - Defines how reflective the imaginary room's walls are. Value can range from 0 to 1. Default value: ``1``.
  29. .. _class_AudioEffectReverb_wet:
  30. - :ref:`float<class_float>` **wet** - Output percent of modified sound. At 0, only original sound is outputted. Value can range from 0 to 1. Default value: ``0.5``.
  31. Description
  32. -----------
  33. Simulates rooms of different sizes. Its parameters can be adjusted to simulate the sound of a specific room.