diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2023-06-08 19:46:05 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2023-08-17 14:45:17 +0200 |
commit | 6f1152bdbe1338998b41c51c5a39dc6dac28ae31 (patch) | |
tree | 10ae7ca78b0da733070802d1108f28ca3c2c21d4 /doc/classes/AudioServer.xml | |
parent | 281b7b9fdf033f391e6a2c2b1d777e61737ccb16 (diff) | |
download | redot-engine-6f1152bdbe1338998b41c51c5a39dc6dac28ae31.tar.gz |
Add a `--audio-output-latency` command-line argument
This allows optimizing the audio output latency on higher-end CPUs,
especially in projects that do not expose a way to override this setting.
Diffstat (limited to 'doc/classes/AudioServer.xml')
-rw-r--r-- | doc/classes/AudioServer.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/AudioServer.xml b/doc/classes/AudioServer.xml index cb4fb8d5ca..5d3d7a0591 100644 --- a/doc/classes/AudioServer.xml +++ b/doc/classes/AudioServer.xml @@ -132,7 +132,8 @@ <method name="get_output_latency" qualifiers="const"> <return type="float" /> <description> - Returns the audio driver's output latency. This can be expensive, it is not recommended to call this every frame. + Returns the audio driver's effective output latency. This is based on [member ProjectSettings.audio/driver/output_latency], but the exact returned value will differ depending on the operating system and audio driver. + [b]Note:[/b] This can be expensive; it is not recommended to call [method get_output_latency] every frame. </description> </method> <method name="get_speaker_mode" qualifiers="const"> |