diff options
author | Juan Linietsky <reduzio@gmail.com> | 2019-04-27 12:17:54 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-27 12:17:54 -0300 |
commit | 60eec47077bfe14ffe3750c1e9827f2a731d4990 (patch) | |
tree | 5042078a95cb311bcced2f8a69fac8c8e9186478 /scene/2d/audio_stream_player_2d.h | |
parent | 2931b4db5145d17da46caee1ccf4322939751707 (diff) |
Revert "Fix AudioStreams::stop possibly causing a small noise"
Diffstat (limited to 'scene/2d/audio_stream_player_2d.h')
-rw-r--r-- | scene/2d/audio_stream_player_2d.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scene/2d/audio_stream_player_2d.h b/scene/2d/audio_stream_player_2d.h index 0cd18fb93b..e9cdfa2303 100644 --- a/scene/2d/audio_stream_player_2d.h +++ b/scene/2d/audio_stream_player_2d.h @@ -73,9 +73,8 @@ private: float pitch_scale; bool autoplay; bool stream_paused; - bool stream_fade_in; - bool stream_fade_out; - bool stream_stop; + bool stream_paused_fade_in; + bool stream_paused_fade_out; StringName bus; void _mix_audio(); |