diff options
author | Ellen Poe <ellenhp@google.com> | 2021-08-27 21:51:03 -0700 |
---|---|---|
committer | Ellen Poe <ellenhp@google.com> | 2021-09-07 09:44:39 -0700 |
commit | 0e3cab41ebac855fbf13b4c409e42d2661c5842b (patch) | |
tree | f2b0c9bd7ac718ecbf540af24208f43056650ba9 /modules/minimp3/audio_stream_mp3.cpp | |
parent | ec70295c01839be4d4d2cf8c149ff32c65e75fd9 (diff) |
Add polyphony to Audio Stream Player nodes
Diffstat (limited to 'modules/minimp3/audio_stream_mp3.cpp')
-rw-r--r-- | modules/minimp3/audio_stream_mp3.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/minimp3/audio_stream_mp3.cpp b/modules/minimp3/audio_stream_mp3.cpp index fb741f6266..7b52ef178a 100644 --- a/modules/minimp3/audio_stream_mp3.cpp +++ b/modules/minimp3/audio_stream_mp3.cpp @@ -214,6 +214,10 @@ float AudioStreamMP3::get_length() const { return length; } +bool AudioStreamMP3::is_monophonic() const { + return false; +} + void AudioStreamMP3::_bind_methods() { ClassDB::bind_method(D_METHOD("set_data", "data"), &AudioStreamMP3::set_data); ClassDB::bind_method(D_METHOD("get_data"), &AudioStreamMP3::get_data); |