summaryrefslogtreecommitdiffstats
path: root/scene/2d/audio_stream_player_2d.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-02-01 14:26:27 +0100
committerGitHub <noreply@github.com>2018-02-01 14:26:27 +0100
commitff287d8341774750b7141f364de1087f48b14699 (patch)
tree975d75ee3c6e54959af314b408840ca9650dc347 /scene/2d/audio_stream_player_2d.h
parent6449af9f746b6328c7791e87b70b56eb74d8a9b9 (diff)
parent5bc010e8eeef71ad9a9034bd16df454a9933592a (diff)
downloadredot-engine-ff287d8341774750b7141f364de1087f48b14699.tar.gz
Merge pull request #15254 from mrcdk/pitch_scale
Added pitch scale property to AudioStreamPlayer, AudioStreamPlayer2D and AudioStreamPlayer3D
Diffstat (limited to 'scene/2d/audio_stream_player_2d.h')
-rw-r--r--scene/2d/audio_stream_player_2d.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/2d/audio_stream_player_2d.h b/scene/2d/audio_stream_player_2d.h
index 39bc985f58..9ae8e3a518 100644
--- a/scene/2d/audio_stream_player_2d.h
+++ b/scene/2d/audio_stream_player_2d.h
@@ -70,6 +70,7 @@ private:
volatile float setplay;
float volume_db;
+ float pitch_scale;
bool autoplay;
StringName bus;
@@ -98,6 +99,9 @@ public:
void set_volume_db(float p_volume);
float get_volume_db() const;
+ void set_pitch_scale(float p_pitch_scale);
+ float get_pitch_scale() const;
+
void play(float p_from_pos = 0.0);
void seek(float p_seconds);
void stop();