Skip to content

Commit

Permalink
Merge pull request #46151 from ellenhp/fix_spatial_player_play
Browse files Browse the repository at this point in the history
Fix a pop on play() in AudioStreamPlayer2D and 3D
  • Loading branch information
akien-mga authored Feb 18, 2021
2 parents 81fc37b + 5e1442a commit 9d84e3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions scene/2d/audio_stream_player_2d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,6 @@ void AudioStreamPlayer2D::play(float p_from_pos) {
}

if (stream_playback.is_valid()) {
active = true;
setplay = p_from_pos;
output_ready = false;
set_physics_process_internal(true);
Expand All @@ -334,7 +333,7 @@ void AudioStreamPlayer2D::stop() {

bool AudioStreamPlayer2D::is_playing() const {
if (stream_playback.is_valid()) {
return active; // && stream_playback->is_playing();
return active || setplay >= 0;
}

return false;
Expand Down
3 changes: 1 addition & 2 deletions scene/3d/audio_stream_player_3d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,6 @@ void AudioStreamPlayer3D::play(float p_from_pos) {
}

if (stream_playback.is_valid()) {
active = true;
setplay = p_from_pos;
output_ready = false;
set_physics_process_internal(true);
Expand All @@ -706,7 +705,7 @@ void AudioStreamPlayer3D::stop() {

bool AudioStreamPlayer3D::is_playing() const {
if (stream_playback.is_valid()) {
return active; // && stream_playback->is_playing();
return active || setplay >= 0;
}

return false;
Expand Down

0 comments on commit 9d84e3b

Please sign in to comment.