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 /servers | |
parent | 95783f7bfc78ad779b05ed435b981e90e87e3527 (diff) | |
parent | ded9dc1e825f1b050c95afa6be786723420e1a2b (diff) |
Merge pull request #57956 from Eoin-ONeill-Yokai/audio_stream_hotfix
Diffstat (limited to 'servers')
-rw-r--r-- | servers/audio/audio_stream.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/servers/audio/audio_stream.cpp b/servers/audio/audio_stream.cpp index 39060286a4..a710658bff 100644 --- a/servers/audio/audio_stream.cpp +++ b/servers/audio/audio_stream.cpp @@ -200,6 +200,7 @@ bool AudioStream::is_monophonic() const { void AudioStream::_bind_methods() { ClassDB::bind_method(D_METHOD("get_length"), &AudioStream::get_length); ClassDB::bind_method(D_METHOD("is_monophonic"), &AudioStream::is_monophonic); + ClassDB::bind_method(D_METHOD("instance_playback"), &AudioStream::instance_playback); GDVIRTUAL_BIND(_instance_playback); GDVIRTUAL_BIND(_get_stream_name); GDVIRTUAL_BIND(_get_length); |