Skip to content

Commit

Permalink
remove unused sound
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonho1308 committed Aug 2, 2021
1 parent 868f8ac commit 9d4222b
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/maze_gitb/core/sound.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
bgm = oalOpen(os.path.join(dirname, "..", "sound/bgm.wav"))
start_screen_music = oalOpen(os.path.join(dirname, "..", "sound/start.wav"))
wind_sound = oalOpen(os.path.join(dirname, "..", "sound/wind.wav"))
build_sound = oalOpen(os.path.join(dirname, "..", "sound/build.wav"))

echo = oalOpen(os.path.join(dirname, "..", "sound/first_echo.wav"))
echo_2 = oalOpen(os.path.join(dirname, "..", "sound/second_echo.wav"))
Expand Down Expand Up @@ -92,9 +91,3 @@ def play_echo_2(direction: Vec, distance: int) -> None:
logging.info(f"{k.x}, {k.y}")
echo_2.set_position((k.x, 0, k.y))
echo_2.play()


def play_build_sound() -> None:
"""Play sound effect for maze_generation once"""
# https://mixkit.co/free-sound-effects/
build_sound.play()

0 comments on commit 9d4222b

Please sign in to comment.