diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-12-11 18:43:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-11 18:43:18 +0100 |
commit | 5ff403b3b0a4d19122cebae1329f46444263ae17 (patch) | |
tree | e72e1fda0761a816e271d137819b5eaefdc7bdc8 /scene/resources/audio_stream_sample.h | |
parent | 13d037b2006ed097569814f694e4ad0ccd3b7bfa (diff) | |
parent | b2bfcb53d648a2cd4c0845b696d0a96feebf68b6 (diff) |
Merge pull request #23361 from mrcdk/wav_loop_backward
Add backward looping support to AudioStreamSample (wav files)
Diffstat (limited to 'scene/resources/audio_stream_sample.h')
-rw-r--r-- | scene/resources/audio_stream_sample.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scene/resources/audio_stream_sample.h b/scene/resources/audio_stream_sample.h index a27acc92b7..2c39e0a11e 100644 --- a/scene/resources/audio_stream_sample.h +++ b/scene/resources/audio_stream_sample.h @@ -94,7 +94,8 @@ public: enum LoopMode { LOOP_DISABLED, LOOP_FORWARD, - LOOP_PING_PONG + LOOP_PING_PONG, + LOOP_BACKWARD }; private: |