diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-23 13:04:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-23 13:04:47 +0100 |
commit | 96261838c531433b710fed29dd42b008be34b675 (patch) | |
tree | e500e9aa3f0b2190ce25e407a451d2546bab5f7e /doc | |
parent | 95783f7bfc78ad779b05ed435b981e90e87e3527 (diff) | |
parent | ded9dc1e825f1b050c95afa6be786723420e1a2b (diff) |
Merge pull request #57956 from Eoin-ONeill-Yokai/audio_stream_hotfix
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/AudioStream.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/classes/AudioStream.xml b/doc/classes/AudioStream.xml index 1e6f700c7c..6343da6eed 100644 --- a/doc/classes/AudioStream.xml +++ b/doc/classes/AudioStream.xml @@ -39,6 +39,12 @@ Returns the length of the audio stream in seconds. </description> </method> + <method name="instance_playback"> + <return type="AudioStreamPlayback" /> + <description> + Returns an AudioStreamPlayback. Useful for when you want to extend `_instance_playback` but call `instance_playback` from an internally held AudioStream subresource. An example of this can be found in the source files for `AudioStreamRandomPitch::instance_playback`. + </description> + </method> <method name="is_monophonic" qualifiers="const"> <return type="bool" /> <description> |