diff options
author | Silc Renew <tokage.it.lab@gmail.com> | 2023-01-28 03:25:49 +0900 |
---|---|---|
committer | Silc Renew <tokage.it.lab@gmail.com> | 2023-01-28 20:08:29 +0900 |
commit | 75330887d72ea94562226442f854092327f68fa0 (patch) | |
tree | e311a77529b4e4eb622ef9ba058f7cb1863f17f8 /scene/2d/audio_stream_player_2d.h | |
parent | a43db5afa4bbec4772be2f296931a6d44bb4cbb3 (diff) | |
download | redot-engine-75330887d72ea94562226442f854092327f68fa0.tar.gz |
Implement blending audio feature to AnimationTree
Diffstat (limited to 'scene/2d/audio_stream_player_2d.h')
-rw-r--r-- | scene/2d/audio_stream_player_2d.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/2d/audio_stream_player_2d.h b/scene/2d/audio_stream_player_2d.h index a5fd584513..79a026fed2 100644 --- a/scene/2d/audio_stream_player_2d.h +++ b/scene/2d/audio_stream_player_2d.h @@ -56,6 +56,7 @@ private: SafeFlag active{ false }; SafeNumeric<float> setplay{ -1.0 }; + Ref<AudioStreamPlayback> setplayback; Vector<AudioFrame> volume_vector; @@ -129,6 +130,7 @@ public: void set_panning_strength(float p_panning_strength); float get_panning_strength() const; + bool has_stream_playback(); Ref<AudioStreamPlayback> get_stream_playback(); AudioStreamPlayer2D(); |