diff options
author | MrCdK <contact@mrcdk.com> | 2018-01-01 22:23:16 +0100 |
---|---|---|
committer | MrCdK <contact@mrcdk.com> | 2018-01-01 22:23:16 +0100 |
commit | 5bc010e8eeef71ad9a9034bd16df454a9933592a (patch) | |
tree | 2f92afd3d831b10712945283505225077173ed1b /scene/2d/audio_stream_player_2d.h | |
parent | b50a9114b105dafafdda8248a38653bca314a6f3 (diff) | |
download | redot-engine-5bc010e8eeef71ad9a9034bd16df454a9933592a.tar.gz |
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.h | 4 |
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 85104fce21..93cf26ae03 100644 --- a/scene/2d/audio_stream_player_2d.h +++ b/scene/2d/audio_stream_player_2d.h @@ -40,6 +40,7 @@ private: volatile float setplay; float volume_db; + float pitch_scale; bool autoplay; StringName bus; @@ -68,6 +69,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(); |