1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

Add missing GDVIRTUAL_BIND() for AudioStream::_has_loop() and ::_get_bar_beats()

This commit is contained in:
David Snopek
2024-12-06 16:58:50 -06:00
parent 0f20e67d8d
commit 3866a7f818
2 changed files with 14 additions and 0 deletions

View File

@@ -352,6 +352,8 @@ void AudioStream::_bind_methods() {
GDVIRTUAL_BIND(_get_bpm)
GDVIRTUAL_BIND(_get_beat_count)
GDVIRTUAL_BIND(_get_parameter_list)
GDVIRTUAL_BIND(_has_loop);
GDVIRTUAL_BIND(_get_bar_beats);
ADD_SIGNAL(MethodInfo("parameter_list_changed"));
}