class_audioeffectpitchshift.rst 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. :github_url: hide
  2. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  3. .. DO NOT EDIT THIS FILE, but the AudioEffectPitchShift.xml source instead.
  4. .. The source is found in doc/classes or modules/<name>/doc_classes.
  5. .. _class_AudioEffectPitchShift:
  6. AudioEffectPitchShift
  7. =====================
  8. **Inherits:** :ref:`AudioEffect<class_AudioEffect>` **<** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
  9. Adds a pitch-shifting audio effect to an Audio bus.
  10. Raises or lowers the pitch of original sound.
  11. Description
  12. -----------
  13. Allows modulation of pitch independently of tempo. All frequencies can be increased/decreased with minimal effect on transients.
  14. Properties
  15. ----------
  16. +------------------------------------------------------+------------------------------------------------------------------------+---------+
  17. | :ref:`FFT_Size<enum_AudioEffectPitchShift_FFT_Size>` | :ref:`fft_size<class_AudioEffectPitchShift_property_fft_size>` | ``3`` |
  18. +------------------------------------------------------+------------------------------------------------------------------------+---------+
  19. | :ref:`int<class_int>` | :ref:`oversampling<class_AudioEffectPitchShift_property_oversampling>` | ``4`` |
  20. +------------------------------------------------------+------------------------------------------------------------------------+---------+
  21. | :ref:`float<class_float>` | :ref:`pitch_scale<class_AudioEffectPitchShift_property_pitch_scale>` | ``1.0`` |
  22. +------------------------------------------------------+------------------------------------------------------------------------+---------+
  23. Enumerations
  24. ------------
  25. .. _enum_AudioEffectPitchShift_FFT_Size:
  26. .. _class_AudioEffectPitchShift_constant_FFT_SIZE_256:
  27. .. _class_AudioEffectPitchShift_constant_FFT_SIZE_512:
  28. .. _class_AudioEffectPitchShift_constant_FFT_SIZE_1024:
  29. .. _class_AudioEffectPitchShift_constant_FFT_SIZE_2048:
  30. .. _class_AudioEffectPitchShift_constant_FFT_SIZE_4096:
  31. .. _class_AudioEffectPitchShift_constant_FFT_SIZE_MAX:
  32. enum **FFT_Size**:
  33. - **FFT_SIZE_256** = **0**
  34. - **FFT_SIZE_512** = **1**
  35. - **FFT_SIZE_1024** = **2**
  36. - **FFT_SIZE_2048** = **3**
  37. - **FFT_SIZE_4096** = **4**
  38. - **FFT_SIZE_MAX** = **5** --- Represents the size of the :ref:`FFT_Size<enum_AudioEffectPitchShift_FFT_Size>` enum.
  39. Property Descriptions
  40. ---------------------
  41. .. _class_AudioEffectPitchShift_property_fft_size:
  42. - :ref:`FFT_Size<enum_AudioEffectPitchShift_FFT_Size>` **fft_size**
  43. +-----------+---------------------+
  44. | *Default* | ``3`` |
  45. +-----------+---------------------+
  46. | *Setter* | set_fft_size(value) |
  47. +-----------+---------------------+
  48. | *Getter* | get_fft_size() |
  49. +-----------+---------------------+
  50. ----
  51. .. _class_AudioEffectPitchShift_property_oversampling:
  52. - :ref:`int<class_int>` **oversampling**
  53. +-----------+-------------------------+
  54. | *Default* | ``4`` |
  55. +-----------+-------------------------+
  56. | *Setter* | set_oversampling(value) |
  57. +-----------+-------------------------+
  58. | *Getter* | get_oversampling() |
  59. +-----------+-------------------------+
  60. ----
  61. .. _class_AudioEffectPitchShift_property_pitch_scale:
  62. - :ref:`float<class_float>` **pitch_scale**
  63. +-----------+------------------------+
  64. | *Default* | ``1.0`` |
  65. +-----------+------------------------+
  66. | *Setter* | set_pitch_scale(value) |
  67. +-----------+------------------------+
  68. | *Getter* | get_pitch_scale() |
  69. +-----------+------------------------+
  70. Pitch value. Can range from 0 (-1 octave) to 16 (+16 octaves).
  71. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  72. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  73. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`