audio: add staircase descent sound as test #7

Merged
NotAShelf merged 2 commits from amr/rogged:sounds into main 2026-04-06 15:12:14 +00:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit d9c1ee9faa - Show all commits

sound: added staircase descent sound as test

A.M. Rowsell 2026-04-06 09:47:37 -04:00
Signed by: amr
GPG key ID: E0879EDBDB0CA7B1

Binary file not shown.

View file

@ -94,9 +94,8 @@ void audio_play_player_damage(void) {
void audio_play_stairs(void) { void audio_play_stairs(void) {
// Ascending stairs sound // Ascending stairs sound
play_tone(400.0f, 0.1f, 0.3f); Sound staircase = LoadSound("./assets/sounds/levelcomplete.wav");
play_tone(600.0f, 0.1f, 0.3f); PlaySound(staircase);
play_tone(800.0f, 0.15f, 0.3f);
} }
void audio_play_dodge(void) { void audio_play_dodge(void) {