class_audioserver.rst 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioServer.xml.
  6. .. _class_AudioServer:
  7. AudioServer
  8. ===========
  9. **Inherits:** :ref:`Object<class_Object>`
  10. Server interface for low-level audio access.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. **AudioServer** is a low-level server interface for audio access. It is in charge of creating sample data (playable audio) as well as its playback via a voice interface.
  15. .. rst-class:: classref-introduction-group
  16. Tutorials
  17. ---------
  18. - :doc:`Audio buses <../tutorials/audio/audio_buses>`
  19. - `Audio Device Changer Demo <https://godotengine.org/asset-library/asset/2758>`__
  20. - `Audio Microphone Record Demo <https://godotengine.org/asset-library/asset/2760>`__
  21. - `Audio Spectrum Visualizer Demo <https://godotengine.org/asset-library/asset/2762>`__
  22. .. rst-class:: classref-reftable-group
  23. Properties
  24. ----------
  25. .. table::
  26. :widths: auto
  27. +-----------------------------+------------------------------------------------------------------------------+---------------+
  28. | :ref:`int<class_int>` | :ref:`bus_count<class_AudioServer_property_bus_count>` | ``1`` |
  29. +-----------------------------+------------------------------------------------------------------------------+---------------+
  30. | :ref:`String<class_String>` | :ref:`input_device<class_AudioServer_property_input_device>` | ``"Default"`` |
  31. +-----------------------------+------------------------------------------------------------------------------+---------------+
  32. | :ref:`String<class_String>` | :ref:`output_device<class_AudioServer_property_output_device>` | ``"Default"`` |
  33. +-----------------------------+------------------------------------------------------------------------------+---------------+
  34. | :ref:`float<class_float>` | :ref:`playback_speed_scale<class_AudioServer_property_playback_speed_scale>` | ``1.0`` |
  35. +-----------------------------+------------------------------------------------------------------------------+---------------+
  36. .. rst-class:: classref-reftable-group
  37. Methods
  38. -------
  39. .. table::
  40. :widths: auto
  41. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  42. | |void| | :ref:`add_bus<class_AudioServer_method_add_bus>`\ (\ at_position\: :ref:`int<class_int>` = -1\ ) |
  43. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  44. | |void| | :ref:`add_bus_effect<class_AudioServer_method_add_bus_effect>`\ (\ bus_idx\: :ref:`int<class_int>`, effect\: :ref:`AudioEffect<class_AudioEffect>`, at_position\: :ref:`int<class_int>` = -1\ ) |
  45. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`AudioBusLayout<class_AudioBusLayout>` | :ref:`generate_bus_layout<class_AudioServer_method_generate_bus_layout>`\ (\ ) |const| |
  47. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`int<class_int>` | :ref:`get_bus_channels<class_AudioServer_method_get_bus_channels>`\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| |
  49. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`AudioEffect<class_AudioEffect>` | :ref:`get_bus_effect<class_AudioServer_method_get_bus_effect>`\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`\ ) |
  51. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`int<class_int>` | :ref:`get_bus_effect_count<class_AudioServer_method_get_bus_effect_count>`\ (\ bus_idx\: :ref:`int<class_int>`\ ) |
  53. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`AudioEffectInstance<class_AudioEffectInstance>` | :ref:`get_bus_effect_instance<class_AudioServer_method_get_bus_effect_instance>`\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`, channel\: :ref:`int<class_int>` = 0\ ) |
  55. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`int<class_int>` | :ref:`get_bus_index<class_AudioServer_method_get_bus_index>`\ (\ bus_name\: :ref:`StringName<class_StringName>`\ ) |const| |
  57. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`String<class_String>` | :ref:`get_bus_name<class_AudioServer_method_get_bus_name>`\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| |
  59. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | :ref:`float<class_float>` | :ref:`get_bus_peak_volume_left_db<class_AudioServer_method_get_bus_peak_volume_left_db>`\ (\ bus_idx\: :ref:`int<class_int>`, channel\: :ref:`int<class_int>`\ ) |const| |
  61. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`float<class_float>` | :ref:`get_bus_peak_volume_right_db<class_AudioServer_method_get_bus_peak_volume_right_db>`\ (\ bus_idx\: :ref:`int<class_int>`, channel\: :ref:`int<class_int>`\ ) |const| |
  63. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | :ref:`StringName<class_StringName>` | :ref:`get_bus_send<class_AudioServer_method_get_bus_send>`\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| |
  65. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`float<class_float>` | :ref:`get_bus_volume_db<class_AudioServer_method_get_bus_volume_db>`\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| |
  67. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | :ref:`float<class_float>` | :ref:`get_bus_volume_linear<class_AudioServer_method_get_bus_volume_linear>`\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| |
  69. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | :ref:`String<class_String>` | :ref:`get_driver_name<class_AudioServer_method_get_driver_name>`\ (\ ) |const| |
  71. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`get_input_device_list<class_AudioServer_method_get_input_device_list>`\ (\ ) |
  73. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | :ref:`float<class_float>` | :ref:`get_input_mix_rate<class_AudioServer_method_get_input_mix_rate>`\ (\ ) |const| |
  75. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | :ref:`float<class_float>` | :ref:`get_mix_rate<class_AudioServer_method_get_mix_rate>`\ (\ ) |const| |
  77. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  78. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`get_output_device_list<class_AudioServer_method_get_output_device_list>`\ (\ ) |
  79. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | :ref:`float<class_float>` | :ref:`get_output_latency<class_AudioServer_method_get_output_latency>`\ (\ ) |const| |
  81. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  82. | :ref:`SpeakerMode<enum_AudioServer_SpeakerMode>` | :ref:`get_speaker_mode<class_AudioServer_method_get_speaker_mode>`\ (\ ) |const| |
  83. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | :ref:`float<class_float>` | :ref:`get_time_since_last_mix<class_AudioServer_method_get_time_since_last_mix>`\ (\ ) |const| |
  85. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | :ref:`float<class_float>` | :ref:`get_time_to_next_mix<class_AudioServer_method_get_time_to_next_mix>`\ (\ ) |const| |
  87. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | :ref:`bool<class_bool>` | :ref:`is_bus_bypassing_effects<class_AudioServer_method_is_bus_bypassing_effects>`\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| |
  89. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  90. | :ref:`bool<class_bool>` | :ref:`is_bus_effect_enabled<class_AudioServer_method_is_bus_effect_enabled>`\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`\ ) |const| |
  91. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  92. | :ref:`bool<class_bool>` | :ref:`is_bus_mute<class_AudioServer_method_is_bus_mute>`\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| |
  93. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  94. | :ref:`bool<class_bool>` | :ref:`is_bus_solo<class_AudioServer_method_is_bus_solo>`\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| |
  95. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  96. | :ref:`bool<class_bool>` | :ref:`is_stream_registered_as_sample<class_AudioServer_method_is_stream_registered_as_sample>`\ (\ stream\: :ref:`AudioStream<class_AudioStream>`\ ) |
  97. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  98. | |void| | :ref:`lock<class_AudioServer_method_lock>`\ (\ ) |
  99. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  100. | |void| | :ref:`move_bus<class_AudioServer_method_move_bus>`\ (\ index\: :ref:`int<class_int>`, to_index\: :ref:`int<class_int>`\ ) |
  101. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  102. | |void| | :ref:`register_stream_as_sample<class_AudioServer_method_register_stream_as_sample>`\ (\ stream\: :ref:`AudioStream<class_AudioStream>`\ ) |
  103. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  104. | |void| | :ref:`remove_bus<class_AudioServer_method_remove_bus>`\ (\ index\: :ref:`int<class_int>`\ ) |
  105. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  106. | |void| | :ref:`remove_bus_effect<class_AudioServer_method_remove_bus_effect>`\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`\ ) |
  107. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  108. | |void| | :ref:`set_bus_bypass_effects<class_AudioServer_method_set_bus_bypass_effects>`\ (\ bus_idx\: :ref:`int<class_int>`, enable\: :ref:`bool<class_bool>`\ ) |
  109. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  110. | |void| | :ref:`set_bus_effect_enabled<class_AudioServer_method_set_bus_effect_enabled>`\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`, enabled\: :ref:`bool<class_bool>`\ ) |
  111. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  112. | |void| | :ref:`set_bus_layout<class_AudioServer_method_set_bus_layout>`\ (\ bus_layout\: :ref:`AudioBusLayout<class_AudioBusLayout>`\ ) |
  113. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  114. | |void| | :ref:`set_bus_mute<class_AudioServer_method_set_bus_mute>`\ (\ bus_idx\: :ref:`int<class_int>`, enable\: :ref:`bool<class_bool>`\ ) |
  115. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  116. | |void| | :ref:`set_bus_name<class_AudioServer_method_set_bus_name>`\ (\ bus_idx\: :ref:`int<class_int>`, name\: :ref:`String<class_String>`\ ) |
  117. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  118. | |void| | :ref:`set_bus_send<class_AudioServer_method_set_bus_send>`\ (\ bus_idx\: :ref:`int<class_int>`, send\: :ref:`StringName<class_StringName>`\ ) |
  119. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  120. | |void| | :ref:`set_bus_solo<class_AudioServer_method_set_bus_solo>`\ (\ bus_idx\: :ref:`int<class_int>`, enable\: :ref:`bool<class_bool>`\ ) |
  121. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  122. | |void| | :ref:`set_bus_volume_db<class_AudioServer_method_set_bus_volume_db>`\ (\ bus_idx\: :ref:`int<class_int>`, volume_db\: :ref:`float<class_float>`\ ) |
  123. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  124. | |void| | :ref:`set_bus_volume_linear<class_AudioServer_method_set_bus_volume_linear>`\ (\ bus_idx\: :ref:`int<class_int>`, volume_linear\: :ref:`float<class_float>`\ ) |
  125. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  126. | |void| | :ref:`set_enable_tagging_used_audio_streams<class_AudioServer_method_set_enable_tagging_used_audio_streams>`\ (\ enable\: :ref:`bool<class_bool>`\ ) |
  127. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  128. | |void| | :ref:`swap_bus_effects<class_AudioServer_method_swap_bus_effects>`\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`, by_effect_idx\: :ref:`int<class_int>`\ ) |
  129. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  130. | |void| | :ref:`unlock<class_AudioServer_method_unlock>`\ (\ ) |
  131. +-------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  132. .. rst-class:: classref-section-separator
  133. ----
  134. .. rst-class:: classref-descriptions-group
  135. Signals
  136. -------
  137. .. _class_AudioServer_signal_bus_layout_changed:
  138. .. rst-class:: classref-signal
  139. **bus_layout_changed**\ (\ ) :ref:`🔗<class_AudioServer_signal_bus_layout_changed>`
  140. Emitted when an audio bus is added, deleted, or moved.
  141. .. rst-class:: classref-item-separator
  142. ----
  143. .. _class_AudioServer_signal_bus_renamed:
  144. .. rst-class:: classref-signal
  145. **bus_renamed**\ (\ bus_index\: :ref:`int<class_int>`, old_name\: :ref:`StringName<class_StringName>`, new_name\: :ref:`StringName<class_StringName>`\ ) :ref:`🔗<class_AudioServer_signal_bus_renamed>`
  146. Emitted when the audio bus at ``bus_index`` is renamed from ``old_name`` to ``new_name``.
  147. .. rst-class:: classref-section-separator
  148. ----
  149. .. rst-class:: classref-descriptions-group
  150. Enumerations
  151. ------------
  152. .. _enum_AudioServer_SpeakerMode:
  153. .. rst-class:: classref-enumeration
  154. enum **SpeakerMode**: :ref:`🔗<enum_AudioServer_SpeakerMode>`
  155. .. _class_AudioServer_constant_SPEAKER_MODE_STEREO:
  156. .. rst-class:: classref-enumeration-constant
  157. :ref:`SpeakerMode<enum_AudioServer_SpeakerMode>` **SPEAKER_MODE_STEREO** = ``0``
  158. Two or fewer speakers were detected.
  159. .. _class_AudioServer_constant_SPEAKER_SURROUND_31:
  160. .. rst-class:: classref-enumeration-constant
  161. :ref:`SpeakerMode<enum_AudioServer_SpeakerMode>` **SPEAKER_SURROUND_31** = ``1``
  162. A 3.1 channel surround setup was detected.
  163. .. _class_AudioServer_constant_SPEAKER_SURROUND_51:
  164. .. rst-class:: classref-enumeration-constant
  165. :ref:`SpeakerMode<enum_AudioServer_SpeakerMode>` **SPEAKER_SURROUND_51** = ``2``
  166. A 5.1 channel surround setup was detected.
  167. .. _class_AudioServer_constant_SPEAKER_SURROUND_71:
  168. .. rst-class:: classref-enumeration-constant
  169. :ref:`SpeakerMode<enum_AudioServer_SpeakerMode>` **SPEAKER_SURROUND_71** = ``3``
  170. A 7.1 channel surround setup was detected.
  171. .. rst-class:: classref-item-separator
  172. ----
  173. .. _enum_AudioServer_PlaybackType:
  174. .. rst-class:: classref-enumeration
  175. enum **PlaybackType**: :ref:`🔗<enum_AudioServer_PlaybackType>`
  176. .. _class_AudioServer_constant_PLAYBACK_TYPE_DEFAULT:
  177. .. rst-class:: classref-enumeration-constant
  178. :ref:`PlaybackType<enum_AudioServer_PlaybackType>` **PLAYBACK_TYPE_DEFAULT** = ``0``
  179. **Experimental:** This constant may be changed or removed in future versions.
  180. The playback will be considered of the type declared at :ref:`ProjectSettings.audio/general/default_playback_type<class_ProjectSettings_property_audio/general/default_playback_type>`.
  181. .. _class_AudioServer_constant_PLAYBACK_TYPE_STREAM:
  182. .. rst-class:: classref-enumeration-constant
  183. :ref:`PlaybackType<enum_AudioServer_PlaybackType>` **PLAYBACK_TYPE_STREAM** = ``1``
  184. **Experimental:** This constant may be changed or removed in future versions.
  185. Force the playback to be considered as a stream.
  186. .. _class_AudioServer_constant_PLAYBACK_TYPE_SAMPLE:
  187. .. rst-class:: classref-enumeration-constant
  188. :ref:`PlaybackType<enum_AudioServer_PlaybackType>` **PLAYBACK_TYPE_SAMPLE** = ``2``
  189. **Experimental:** This constant may be changed or removed in future versions.
  190. Force the playback to be considered as a sample. This can provide lower latency and more stable playback (with less risk of audio crackling), at the cost of having less flexibility.
  191. \ **Note:** Only currently supported on the web platform.
  192. \ **Note:** :ref:`AudioEffect<class_AudioEffect>`\ s are not supported when playback is considered as a sample.
  193. .. _class_AudioServer_constant_PLAYBACK_TYPE_MAX:
  194. .. rst-class:: classref-enumeration-constant
  195. :ref:`PlaybackType<enum_AudioServer_PlaybackType>` **PLAYBACK_TYPE_MAX** = ``3``
  196. **Experimental:** This constant may be changed or removed in future versions.
  197. Represents the size of the :ref:`PlaybackType<enum_AudioServer_PlaybackType>` enum.
  198. .. rst-class:: classref-section-separator
  199. ----
  200. .. rst-class:: classref-descriptions-group
  201. Property Descriptions
  202. ---------------------
  203. .. _class_AudioServer_property_bus_count:
  204. .. rst-class:: classref-property
  205. :ref:`int<class_int>` **bus_count** = ``1`` :ref:`🔗<class_AudioServer_property_bus_count>`
  206. .. rst-class:: classref-property-setget
  207. - |void| **set_bus_count**\ (\ value\: :ref:`int<class_int>`\ )
  208. - :ref:`int<class_int>` **get_bus_count**\ (\ )
  209. Number of available audio buses.
  210. .. rst-class:: classref-item-separator
  211. ----
  212. .. _class_AudioServer_property_input_device:
  213. .. rst-class:: classref-property
  214. :ref:`String<class_String>` **input_device** = ``"Default"`` :ref:`🔗<class_AudioServer_property_input_device>`
  215. .. rst-class:: classref-property-setget
  216. - |void| **set_input_device**\ (\ value\: :ref:`String<class_String>`\ )
  217. - :ref:`String<class_String>` **get_input_device**\ (\ )
  218. Name of the current device for audio input (see :ref:`get_input_device_list()<class_AudioServer_method_get_input_device_list>`). On systems with multiple audio inputs (such as analog, USB and HDMI audio), this can be used to select the audio input device. The value ``"Default"`` will record audio on the system-wide default audio input. If an invalid device name is set, the value will be reverted back to ``"Default"``.
  219. \ **Note:** :ref:`ProjectSettings.audio/driver/enable_input<class_ProjectSettings_property_audio/driver/enable_input>` must be ``true`` for audio input to work. See also that setting's description for caveats related to permissions and operating system privacy settings.
  220. .. rst-class:: classref-item-separator
  221. ----
  222. .. _class_AudioServer_property_output_device:
  223. .. rst-class:: classref-property
  224. :ref:`String<class_String>` **output_device** = ``"Default"`` :ref:`🔗<class_AudioServer_property_output_device>`
  225. .. rst-class:: classref-property-setget
  226. - |void| **set_output_device**\ (\ value\: :ref:`String<class_String>`\ )
  227. - :ref:`String<class_String>` **get_output_device**\ (\ )
  228. Name of the current device for audio output (see :ref:`get_output_device_list()<class_AudioServer_method_get_output_device_list>`). On systems with multiple audio outputs (such as analog, USB and HDMI audio), this can be used to select the audio output device. The value ``"Default"`` will play audio on the system-wide default audio output. If an invalid device name is set, the value will be reverted back to ``"Default"``.
  229. .. rst-class:: classref-item-separator
  230. ----
  231. .. _class_AudioServer_property_playback_speed_scale:
  232. .. rst-class:: classref-property
  233. :ref:`float<class_float>` **playback_speed_scale** = ``1.0`` :ref:`🔗<class_AudioServer_property_playback_speed_scale>`
  234. .. rst-class:: classref-property-setget
  235. - |void| **set_playback_speed_scale**\ (\ value\: :ref:`float<class_float>`\ )
  236. - :ref:`float<class_float>` **get_playback_speed_scale**\ (\ )
  237. Scales the rate at which audio is played (i.e. setting it to ``0.5`` will make the audio be played at half its speed). See also :ref:`Engine.time_scale<class_Engine_property_time_scale>` to affect the general simulation speed, which is independent from :ref:`playback_speed_scale<class_AudioServer_property_playback_speed_scale>`.
  238. .. rst-class:: classref-section-separator
  239. ----
  240. .. rst-class:: classref-descriptions-group
  241. Method Descriptions
  242. -------------------
  243. .. _class_AudioServer_method_add_bus:
  244. .. rst-class:: classref-method
  245. |void| **add_bus**\ (\ at_position\: :ref:`int<class_int>` = -1\ ) :ref:`🔗<class_AudioServer_method_add_bus>`
  246. Adds a bus at ``at_position``.
  247. .. rst-class:: classref-item-separator
  248. ----
  249. .. _class_AudioServer_method_add_bus_effect:
  250. .. rst-class:: classref-method
  251. |void| **add_bus_effect**\ (\ bus_idx\: :ref:`int<class_int>`, effect\: :ref:`AudioEffect<class_AudioEffect>`, at_position\: :ref:`int<class_int>` = -1\ ) :ref:`🔗<class_AudioServer_method_add_bus_effect>`
  252. Adds an :ref:`AudioEffect<class_AudioEffect>` effect to the bus ``bus_idx`` at ``at_position``.
  253. .. rst-class:: classref-item-separator
  254. ----
  255. .. _class_AudioServer_method_generate_bus_layout:
  256. .. rst-class:: classref-method
  257. :ref:`AudioBusLayout<class_AudioBusLayout>` **generate_bus_layout**\ (\ ) |const| :ref:`🔗<class_AudioServer_method_generate_bus_layout>`
  258. Generates an :ref:`AudioBusLayout<class_AudioBusLayout>` using the available buses and effects.
  259. .. rst-class:: classref-item-separator
  260. ----
  261. .. _class_AudioServer_method_get_bus_channels:
  262. .. rst-class:: classref-method
  263. :ref:`int<class_int>` **get_bus_channels**\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_AudioServer_method_get_bus_channels>`
  264. Returns the number of channels of the bus at index ``bus_idx``.
  265. .. rst-class:: classref-item-separator
  266. ----
  267. .. _class_AudioServer_method_get_bus_effect:
  268. .. rst-class:: classref-method
  269. :ref:`AudioEffect<class_AudioEffect>` **get_bus_effect**\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`\ ) :ref:`🔗<class_AudioServer_method_get_bus_effect>`
  270. Returns the :ref:`AudioEffect<class_AudioEffect>` at position ``effect_idx`` in bus ``bus_idx``.
  271. .. rst-class:: classref-item-separator
  272. ----
  273. .. _class_AudioServer_method_get_bus_effect_count:
  274. .. rst-class:: classref-method
  275. :ref:`int<class_int>` **get_bus_effect_count**\ (\ bus_idx\: :ref:`int<class_int>`\ ) :ref:`🔗<class_AudioServer_method_get_bus_effect_count>`
  276. Returns the number of effects on the bus at ``bus_idx``.
  277. .. rst-class:: classref-item-separator
  278. ----
  279. .. _class_AudioServer_method_get_bus_effect_instance:
  280. .. rst-class:: classref-method
  281. :ref:`AudioEffectInstance<class_AudioEffectInstance>` **get_bus_effect_instance**\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`, channel\: :ref:`int<class_int>` = 0\ ) :ref:`🔗<class_AudioServer_method_get_bus_effect_instance>`
  282. Returns the :ref:`AudioEffectInstance<class_AudioEffectInstance>` assigned to the given bus and effect indices (and optionally channel).
  283. .. rst-class:: classref-item-separator
  284. ----
  285. .. _class_AudioServer_method_get_bus_index:
  286. .. rst-class:: classref-method
  287. :ref:`int<class_int>` **get_bus_index**\ (\ bus_name\: :ref:`StringName<class_StringName>`\ ) |const| :ref:`🔗<class_AudioServer_method_get_bus_index>`
  288. Returns the index of the bus with the name ``bus_name``. Returns ``-1`` if no bus with the specified name exist.
  289. .. rst-class:: classref-item-separator
  290. ----
  291. .. _class_AudioServer_method_get_bus_name:
  292. .. rst-class:: classref-method
  293. :ref:`String<class_String>` **get_bus_name**\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_AudioServer_method_get_bus_name>`
  294. Returns the name of the bus with the index ``bus_idx``.
  295. .. rst-class:: classref-item-separator
  296. ----
  297. .. _class_AudioServer_method_get_bus_peak_volume_left_db:
  298. .. rst-class:: classref-method
  299. :ref:`float<class_float>` **get_bus_peak_volume_left_db**\ (\ bus_idx\: :ref:`int<class_int>`, channel\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_AudioServer_method_get_bus_peak_volume_left_db>`
  300. Returns the peak volume of the left speaker at bus index ``bus_idx`` and channel index ``channel``.
  301. .. rst-class:: classref-item-separator
  302. ----
  303. .. _class_AudioServer_method_get_bus_peak_volume_right_db:
  304. .. rst-class:: classref-method
  305. :ref:`float<class_float>` **get_bus_peak_volume_right_db**\ (\ bus_idx\: :ref:`int<class_int>`, channel\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_AudioServer_method_get_bus_peak_volume_right_db>`
  306. Returns the peak volume of the right speaker at bus index ``bus_idx`` and channel index ``channel``.
  307. .. rst-class:: classref-item-separator
  308. ----
  309. .. _class_AudioServer_method_get_bus_send:
  310. .. rst-class:: classref-method
  311. :ref:`StringName<class_StringName>` **get_bus_send**\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_AudioServer_method_get_bus_send>`
  312. Returns the name of the bus that the bus at index ``bus_idx`` sends to.
  313. .. rst-class:: classref-item-separator
  314. ----
  315. .. _class_AudioServer_method_get_bus_volume_db:
  316. .. rst-class:: classref-method
  317. :ref:`float<class_float>` **get_bus_volume_db**\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_AudioServer_method_get_bus_volume_db>`
  318. Returns the volume of the bus at index ``bus_idx`` in dB.
  319. .. rst-class:: classref-item-separator
  320. ----
  321. .. _class_AudioServer_method_get_bus_volume_linear:
  322. .. rst-class:: classref-method
  323. :ref:`float<class_float>` **get_bus_volume_linear**\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_AudioServer_method_get_bus_volume_linear>`
  324. Returns the volume of the bus at index ``bus_idx`` as a linear value.
  325. \ **Note:** The returned value is equivalent to the result of :ref:`@GlobalScope.db_to_linear()<class_@GlobalScope_method_db_to_linear>` on the result of :ref:`get_bus_volume_db()<class_AudioServer_method_get_bus_volume_db>`.
  326. .. rst-class:: classref-item-separator
  327. ----
  328. .. _class_AudioServer_method_get_driver_name:
  329. .. rst-class:: classref-method
  330. :ref:`String<class_String>` **get_driver_name**\ (\ ) |const| :ref:`🔗<class_AudioServer_method_get_driver_name>`
  331. Returns the name of the current audio driver. The default usually depends on the operating system, but may be overridden via the ``--audio-driver`` :doc:`command line argument <../tutorials/editor/command_line_tutorial>`. ``--headless`` also automatically sets the audio driver to ``Dummy``. See also :ref:`ProjectSettings.audio/driver/driver<class_ProjectSettings_property_audio/driver/driver>`.
  332. .. rst-class:: classref-item-separator
  333. ----
  334. .. _class_AudioServer_method_get_input_device_list:
  335. .. rst-class:: classref-method
  336. :ref:`PackedStringArray<class_PackedStringArray>` **get_input_device_list**\ (\ ) :ref:`🔗<class_AudioServer_method_get_input_device_list>`
  337. Returns the names of all audio input devices detected on the system.
  338. \ **Note:** :ref:`ProjectSettings.audio/driver/enable_input<class_ProjectSettings_property_audio/driver/enable_input>` must be ``true`` for audio input to work. See also that setting's description for caveats related to permissions and operating system privacy settings.
  339. .. rst-class:: classref-item-separator
  340. ----
  341. .. _class_AudioServer_method_get_input_mix_rate:
  342. .. rst-class:: classref-method
  343. :ref:`float<class_float>` **get_input_mix_rate**\ (\ ) |const| :ref:`🔗<class_AudioServer_method_get_input_mix_rate>`
  344. Returns the sample rate at the input of the **AudioServer**.
  345. .. rst-class:: classref-item-separator
  346. ----
  347. .. _class_AudioServer_method_get_mix_rate:
  348. .. rst-class:: classref-method
  349. :ref:`float<class_float>` **get_mix_rate**\ (\ ) |const| :ref:`🔗<class_AudioServer_method_get_mix_rate>`
  350. Returns the sample rate at the output of the **AudioServer**.
  351. .. rst-class:: classref-item-separator
  352. ----
  353. .. _class_AudioServer_method_get_output_device_list:
  354. .. rst-class:: classref-method
  355. :ref:`PackedStringArray<class_PackedStringArray>` **get_output_device_list**\ (\ ) :ref:`🔗<class_AudioServer_method_get_output_device_list>`
  356. Returns the names of all audio output devices detected on the system.
  357. .. rst-class:: classref-item-separator
  358. ----
  359. .. _class_AudioServer_method_get_output_latency:
  360. .. rst-class:: classref-method
  361. :ref:`float<class_float>` **get_output_latency**\ (\ ) |const| :ref:`🔗<class_AudioServer_method_get_output_latency>`
  362. Returns the audio driver's effective output latency. This is based on :ref:`ProjectSettings.audio/driver/output_latency<class_ProjectSettings_property_audio/driver/output_latency>`, but the exact returned value will differ depending on the operating system and audio driver.
  363. \ **Note:** This can be expensive; it is not recommended to call :ref:`get_output_latency()<class_AudioServer_method_get_output_latency>` every frame.
  364. .. rst-class:: classref-item-separator
  365. ----
  366. .. _class_AudioServer_method_get_speaker_mode:
  367. .. rst-class:: classref-method
  368. :ref:`SpeakerMode<enum_AudioServer_SpeakerMode>` **get_speaker_mode**\ (\ ) |const| :ref:`🔗<class_AudioServer_method_get_speaker_mode>`
  369. Returns the speaker configuration.
  370. .. rst-class:: classref-item-separator
  371. ----
  372. .. _class_AudioServer_method_get_time_since_last_mix:
  373. .. rst-class:: classref-method
  374. :ref:`float<class_float>` **get_time_since_last_mix**\ (\ ) |const| :ref:`🔗<class_AudioServer_method_get_time_since_last_mix>`
  375. Returns the relative time since the last mix occurred.
  376. .. rst-class:: classref-item-separator
  377. ----
  378. .. _class_AudioServer_method_get_time_to_next_mix:
  379. .. rst-class:: classref-method
  380. :ref:`float<class_float>` **get_time_to_next_mix**\ (\ ) |const| :ref:`🔗<class_AudioServer_method_get_time_to_next_mix>`
  381. Returns the relative time until the next mix occurs.
  382. .. rst-class:: classref-item-separator
  383. ----
  384. .. _class_AudioServer_method_is_bus_bypassing_effects:
  385. .. rst-class:: classref-method
  386. :ref:`bool<class_bool>` **is_bus_bypassing_effects**\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_AudioServer_method_is_bus_bypassing_effects>`
  387. If ``true``, the bus at index ``bus_idx`` is bypassing effects.
  388. .. rst-class:: classref-item-separator
  389. ----
  390. .. _class_AudioServer_method_is_bus_effect_enabled:
  391. .. rst-class:: classref-method
  392. :ref:`bool<class_bool>` **is_bus_effect_enabled**\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_AudioServer_method_is_bus_effect_enabled>`
  393. If ``true``, the effect at index ``effect_idx`` on the bus at index ``bus_idx`` is enabled.
  394. .. rst-class:: classref-item-separator
  395. ----
  396. .. _class_AudioServer_method_is_bus_mute:
  397. .. rst-class:: classref-method
  398. :ref:`bool<class_bool>` **is_bus_mute**\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_AudioServer_method_is_bus_mute>`
  399. If ``true``, the bus at index ``bus_idx`` is muted.
  400. .. rst-class:: classref-item-separator
  401. ----
  402. .. _class_AudioServer_method_is_bus_solo:
  403. .. rst-class:: classref-method
  404. :ref:`bool<class_bool>` **is_bus_solo**\ (\ bus_idx\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_AudioServer_method_is_bus_solo>`
  405. If ``true``, the bus at index ``bus_idx`` is in solo mode.
  406. .. rst-class:: classref-item-separator
  407. ----
  408. .. _class_AudioServer_method_is_stream_registered_as_sample:
  409. .. rst-class:: classref-method
  410. :ref:`bool<class_bool>` **is_stream_registered_as_sample**\ (\ stream\: :ref:`AudioStream<class_AudioStream>`\ ) :ref:`🔗<class_AudioServer_method_is_stream_registered_as_sample>`
  411. **Experimental:** This method may be changed or removed in future versions.
  412. If ``true``, the stream is registered as a sample. The engine will not have to register it before playing the sample.
  413. If ``false``, the stream will have to be registered before playing it. To prevent lag spikes, register the stream as sample with :ref:`register_stream_as_sample()<class_AudioServer_method_register_stream_as_sample>`.
  414. .. rst-class:: classref-item-separator
  415. ----
  416. .. _class_AudioServer_method_lock:
  417. .. rst-class:: classref-method
  418. |void| **lock**\ (\ ) :ref:`🔗<class_AudioServer_method_lock>`
  419. Locks the audio driver's main loop.
  420. \ **Note:** Remember to unlock it afterwards.
  421. .. rst-class:: classref-item-separator
  422. ----
  423. .. _class_AudioServer_method_move_bus:
  424. .. rst-class:: classref-method
  425. |void| **move_bus**\ (\ index\: :ref:`int<class_int>`, to_index\: :ref:`int<class_int>`\ ) :ref:`🔗<class_AudioServer_method_move_bus>`
  426. Moves the bus from index ``index`` to index ``to_index``.
  427. .. rst-class:: classref-item-separator
  428. ----
  429. .. _class_AudioServer_method_register_stream_as_sample:
  430. .. rst-class:: classref-method
  431. |void| **register_stream_as_sample**\ (\ stream\: :ref:`AudioStream<class_AudioStream>`\ ) :ref:`🔗<class_AudioServer_method_register_stream_as_sample>`
  432. **Experimental:** This method may be changed or removed in future versions.
  433. Forces the registration of a stream as a sample.
  434. \ **Note:** Lag spikes may occur when calling this method, especially on single-threaded builds. It is suggested to call this method while loading assets, where the lag spike could be masked, instead of registering the sample right before it needs to be played.
  435. .. rst-class:: classref-item-separator
  436. ----
  437. .. _class_AudioServer_method_remove_bus:
  438. .. rst-class:: classref-method
  439. |void| **remove_bus**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`🔗<class_AudioServer_method_remove_bus>`
  440. Removes the bus at index ``index``.
  441. .. rst-class:: classref-item-separator
  442. ----
  443. .. _class_AudioServer_method_remove_bus_effect:
  444. .. rst-class:: classref-method
  445. |void| **remove_bus_effect**\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`\ ) :ref:`🔗<class_AudioServer_method_remove_bus_effect>`
  446. Removes the effect at index ``effect_idx`` from the bus at index ``bus_idx``.
  447. .. rst-class:: classref-item-separator
  448. ----
  449. .. _class_AudioServer_method_set_bus_bypass_effects:
  450. .. rst-class:: classref-method
  451. |void| **set_bus_bypass_effects**\ (\ bus_idx\: :ref:`int<class_int>`, enable\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_AudioServer_method_set_bus_bypass_effects>`
  452. If ``true``, the bus at index ``bus_idx`` is bypassing effects.
  453. .. rst-class:: classref-item-separator
  454. ----
  455. .. _class_AudioServer_method_set_bus_effect_enabled:
  456. .. rst-class:: classref-method
  457. |void| **set_bus_effect_enabled**\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`, enabled\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_AudioServer_method_set_bus_effect_enabled>`
  458. If ``true``, the effect at index ``effect_idx`` on the bus at index ``bus_idx`` is enabled.
  459. .. rst-class:: classref-item-separator
  460. ----
  461. .. _class_AudioServer_method_set_bus_layout:
  462. .. rst-class:: classref-method
  463. |void| **set_bus_layout**\ (\ bus_layout\: :ref:`AudioBusLayout<class_AudioBusLayout>`\ ) :ref:`🔗<class_AudioServer_method_set_bus_layout>`
  464. Overwrites the currently used :ref:`AudioBusLayout<class_AudioBusLayout>`.
  465. .. rst-class:: classref-item-separator
  466. ----
  467. .. _class_AudioServer_method_set_bus_mute:
  468. .. rst-class:: classref-method
  469. |void| **set_bus_mute**\ (\ bus_idx\: :ref:`int<class_int>`, enable\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_AudioServer_method_set_bus_mute>`
  470. If ``true``, the bus at index ``bus_idx`` is muted.
  471. .. rst-class:: classref-item-separator
  472. ----
  473. .. _class_AudioServer_method_set_bus_name:
  474. .. rst-class:: classref-method
  475. |void| **set_bus_name**\ (\ bus_idx\: :ref:`int<class_int>`, name\: :ref:`String<class_String>`\ ) :ref:`🔗<class_AudioServer_method_set_bus_name>`
  476. Sets the name of the bus at index ``bus_idx`` to ``name``.
  477. .. rst-class:: classref-item-separator
  478. ----
  479. .. _class_AudioServer_method_set_bus_send:
  480. .. rst-class:: classref-method
  481. |void| **set_bus_send**\ (\ bus_idx\: :ref:`int<class_int>`, send\: :ref:`StringName<class_StringName>`\ ) :ref:`🔗<class_AudioServer_method_set_bus_send>`
  482. Connects the output of the bus at ``bus_idx`` to the bus named ``send``.
  483. .. rst-class:: classref-item-separator
  484. ----
  485. .. _class_AudioServer_method_set_bus_solo:
  486. .. rst-class:: classref-method
  487. |void| **set_bus_solo**\ (\ bus_idx\: :ref:`int<class_int>`, enable\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_AudioServer_method_set_bus_solo>`
  488. If ``true``, the bus at index ``bus_idx`` is in solo mode.
  489. .. rst-class:: classref-item-separator
  490. ----
  491. .. _class_AudioServer_method_set_bus_volume_db:
  492. .. rst-class:: classref-method
  493. |void| **set_bus_volume_db**\ (\ bus_idx\: :ref:`int<class_int>`, volume_db\: :ref:`float<class_float>`\ ) :ref:`🔗<class_AudioServer_method_set_bus_volume_db>`
  494. Sets the volume in decibels of the bus at index ``bus_idx`` to ``volume_db``.
  495. .. rst-class:: classref-item-separator
  496. ----
  497. .. _class_AudioServer_method_set_bus_volume_linear:
  498. .. rst-class:: classref-method
  499. |void| **set_bus_volume_linear**\ (\ bus_idx\: :ref:`int<class_int>`, volume_linear\: :ref:`float<class_float>`\ ) :ref:`🔗<class_AudioServer_method_set_bus_volume_linear>`
  500. Sets the volume as a linear value of the bus at index ``bus_idx`` to ``volume_linear``.
  501. \ **Note:** Using this method is equivalent to calling :ref:`set_bus_volume_db()<class_AudioServer_method_set_bus_volume_db>` with the result of :ref:`@GlobalScope.linear_to_db()<class_@GlobalScope_method_linear_to_db>` on a value.
  502. .. rst-class:: classref-item-separator
  503. ----
  504. .. _class_AudioServer_method_set_enable_tagging_used_audio_streams:
  505. .. rst-class:: classref-method
  506. |void| **set_enable_tagging_used_audio_streams**\ (\ enable\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_AudioServer_method_set_enable_tagging_used_audio_streams>`
  507. If set to ``true``, all instances of :ref:`AudioStreamPlayback<class_AudioStreamPlayback>` will call :ref:`AudioStreamPlayback._tag_used_streams()<class_AudioStreamPlayback_private_method__tag_used_streams>` every mix step.
  508. \ **Note:** This is enabled by default in the editor, as it is used by editor plugins for the audio stream previews.
  509. .. rst-class:: classref-item-separator
  510. ----
  511. .. _class_AudioServer_method_swap_bus_effects:
  512. .. rst-class:: classref-method
  513. |void| **swap_bus_effects**\ (\ bus_idx\: :ref:`int<class_int>`, effect_idx\: :ref:`int<class_int>`, by_effect_idx\: :ref:`int<class_int>`\ ) :ref:`🔗<class_AudioServer_method_swap_bus_effects>`
  514. Swaps the position of two effects in bus ``bus_idx``.
  515. .. rst-class:: classref-item-separator
  516. ----
  517. .. _class_AudioServer_method_unlock:
  518. .. rst-class:: classref-method
  519. |void| **unlock**\ (\ ) :ref:`🔗<class_AudioServer_method_unlock>`
  520. Unlocks the audio driver's main loop. (After locking it, you should always unlock it.)
  521. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  522. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  523. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  524. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  525. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  526. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  527. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  528. .. |void| replace:: :abbr:`void (No return value.)`