summaryrefslogtreecommitdiffstats
path: root/platform/web/godot_audio.h
diff options
context:
space:
mode:
authorYahkub-R <62478788+Yahkub-R@users.noreply.github.com>2024-08-06 09:46:37 -0400
committerYahkub-R <62478788+Yahkub-R@users.noreply.github.com>2024-08-08 15:58:25 -0400
commitbcd776e44174677f1995a49b697f9651f1f692ec (patch)
tree736921e5807b18feee8f805678b5a299b1f4a5a6 /platform/web/godot_audio.h
parent446e7a7c228d19341392ec3b02417244fe7dfe03 (diff)
downloadredot-engine-bcd776e44174677f1995a49b697f9651f1f692ec.tar.gz
Fix AudioStreamPlayer get_playback_position() for web build
Diffstat (limited to 'platform/web/godot_audio.h')
-rw-r--r--platform/web/godot_audio.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/web/godot_audio.h b/platform/web/godot_audio.h
index 8bebbcf7de..3f1a478022 100644
--- a/platform/web/godot_audio.h
+++ b/platform/web/godot_audio.h
@@ -55,6 +55,7 @@ extern void godot_audio_sample_start(const char *p_playback_object_id, const cha
extern void godot_audio_sample_stop(const char *p_playback_object_id);
extern void godot_audio_sample_set_pause(const char *p_playback_object_id, bool p_pause);
extern int godot_audio_sample_is_active(const char *p_playback_object_id);
+extern double godot_audio_get_sample_playback_position(const char *p_playback_object_id);
extern void godot_audio_sample_update_pitch_scale(const char *p_playback_object_id, float p_pitch_scale);
extern void godot_audio_sample_set_volumes_linear(const char *p_playback_object_id, int *p_buses_buf, int p_buses_size, float *p_volumes_buf, int p_volumes_size);