Fix GDExtension compatibility breakage in removed getter

This commit is contained in:
Jan Haller 2026-02-06 12:15:29 +01:00
parent 60638c93fb
commit 9dc1a82900
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@ void AudioEffectSpectrumAnalyzer::_set_tap_back_pos_bind_compat_114355(float p_s
WARN_PRINT_ONCE("AudioEffectSpectrumAnalyzer.set_tap_back_pos() is deprecated and the value will be discarded.");
}
float AudioEffectSpectrumAnalyzer::_get_tap_back_pos_bind_compat_114355() {
float AudioEffectSpectrumAnalyzer::_get_tap_back_pos_bind_compat_114355() const {
WARN_PRINT_ONCE("AudioEffectSpectrumAnalyzer.get_tap_back_pos() is deprecated and will only return the original default value.");
return 0.01;
}

View file

@ -88,7 +88,7 @@ protected:
#ifndef DISABLE_DEPRECATED
void _set_tap_back_pos_bind_compat_114355(float p_seconds);
float _get_tap_back_pos_bind_compat_114355();
float _get_tap_back_pos_bind_compat_114355() const;
static void _bind_compatibility_methods();
#endif