You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 19:41:11 +00:00
Fix bug with AudioStreamPlayer3D audio position
Applies 0c78a58b64 to `AudioStreamPlayer3D::play`.
This commit is contained in:
@@ -710,6 +710,11 @@ float AudioStreamPlayer3D::get_pitch_scale() const {
|
||||
|
||||
void AudioStreamPlayer3D::play(float p_from_pos) {
|
||||
|
||||
if (!is_playing()) {
|
||||
// Reset the prev_output_count if the stream is stopped
|
||||
prev_output_count = 0;
|
||||
}
|
||||
|
||||
if (stream_playback.is_valid()) {
|
||||
active = true;
|
||||
setplay = p_from_pos;
|
||||
|
||||
Reference in New Issue
Block a user