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 /scene/2d/audio_stream_player_2d.h | |
parent | ec70295c01839be4d4d2cf8c149ff32c65e75fd9 (diff) | |
download | redot-engine-0e3cab41ebac855fbf13b4c409e42d2661c5842b.tar.gz |
Add polyphony to Audio Stream Player nodes
Diffstat (limited to 'scene/2d/audio_stream_player_2d.h')
-rw-r--r-- | scene/2d/audio_stream_player_2d.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/scene/2d/audio_stream_player_2d.h b/scene/2d/audio_stream_player_2d.h index 6428fbe017..5360fd4934 100644 --- a/scene/2d/audio_stream_player_2d.h +++ b/scene/2d/audio_stream_player_2d.h @@ -51,10 +51,10 @@ private: Viewport *viewport = nullptr; //pointer only used for reference to previous mix }; - Ref<AudioStreamPlayback> stream_playback; + Vector<Ref<AudioStreamPlayback>> stream_playbacks; Ref<AudioStream> stream; - SafeFlag active; + SafeFlag active{ false }; SafeNumeric<float> setplay{ -1.0 }; Vector<AudioFrame> volume_vector; @@ -64,7 +64,8 @@ private: float volume_db = 0.0; float pitch_scale = 1.0; bool autoplay = false; - StringName default_bus = "Master"; + StringName default_bus = SNAME("Master"); + int max_polyphony = 1; void _set_playing(bool p_enable); bool _is_active() const; @@ -119,6 +120,9 @@ public: void set_stream_paused(bool p_pause); bool get_stream_paused() const; + void set_max_polyphony(int p_max_polyphony); + int get_max_polyphony() const; + Ref<AudioStreamPlayback> get_stream_playback(); AudioStreamPlayer2D(); |