diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2024-01-06 20:29:43 -0600 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2024-02-08 13:01:50 -0600 |
commit | 35c99bbcc1c6728943308fa1b867e57d096bb813 (patch) | |
tree | a819c982c9a7c9d24653b5acde49b9116deca11b /scene/2d/audio_stream_player_2d.h | |
parent | 41564aaf7708b0bf594f745dd2448a54dd687cc5 (diff) | |
download | redot-engine-35c99bbcc1c6728943308fa1b867e57d096bb813.tar.gz |
Change AudioStreamPlayer autoplay and GLTFBufferView getters to be const
Diffstat (limited to 'scene/2d/audio_stream_player_2d.h')
-rw-r--r-- | scene/2d/audio_stream_player_2d.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scene/2d/audio_stream_player_2d.h b/scene/2d/audio_stream_player_2d.h index 3552735cd7..3a3e6510c8 100644 --- a/scene/2d/audio_stream_player_2d.h +++ b/scene/2d/audio_stream_player_2d.h @@ -89,6 +89,11 @@ protected: bool _get(const StringName &p_name, Variant &r_ret) const; void _get_property_list(List<PropertyInfo> *p_list) const; +#ifndef DISABLE_DEPRECATED + bool _is_autoplay_enabled_bind_compat_86907(); + static void _bind_compatibility_methods(); +#endif // DISABLE_DEPRECATED + public: void set_stream(Ref<AudioStream> p_stream); Ref<AudioStream> get_stream() const; @@ -109,7 +114,7 @@ public: StringName get_bus() const; void set_autoplay(bool p_enable); - bool is_autoplay_enabled(); + bool is_autoplay_enabled() const; void set_max_distance(float p_pixels); float get_max_distance() const; |