From 6997606584369107c890d7ff7ab154a8e4815972 Mon Sep 17 00:00:00 2001 From: Aki Date: Wed, 3 Aug 2016 08:09:09 +0200 Subject: Sounds moved to assets --- assets/sounds/attack.ogg | Bin 0 -> 4487 bytes assets/sounds/death.ogg | Bin 0 -> 12111 bytes assets/sounds/hit.ogg | Bin 0 -> 5877 bytes assets/sounds/land.ogg | Bin 0 -> 4733 bytes sounds.lua | 8 ++++---- sounds/attack.ogg | Bin 4487 -> 0 bytes sounds/death.ogg | Bin 12111 -> 0 bytes sounds/hit.ogg | Bin 5877 -> 0 bytes sounds/land.ogg | Bin 4733 -> 0 bytes 9 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 assets/sounds/attack.ogg create mode 100644 assets/sounds/death.ogg create mode 100644 assets/sounds/hit.ogg create mode 100644 assets/sounds/land.ogg delete mode 100644 sounds/attack.ogg delete mode 100644 sounds/death.ogg delete mode 100644 sounds/hit.ogg delete mode 100644 sounds/land.ogg diff --git a/assets/sounds/attack.ogg b/assets/sounds/attack.ogg new file mode 100644 index 0000000..c4e1123 Binary files /dev/null and b/assets/sounds/attack.ogg differ diff --git a/assets/sounds/death.ogg b/assets/sounds/death.ogg new file mode 100644 index 0000000..64c717f Binary files /dev/null and b/assets/sounds/death.ogg differ diff --git a/assets/sounds/hit.ogg b/assets/sounds/hit.ogg new file mode 100644 index 0000000..f44ad06 Binary files /dev/null and b/assets/sounds/hit.ogg differ diff --git a/assets/sounds/land.ogg b/assets/sounds/land.ogg new file mode 100644 index 0000000..2804476 Binary files /dev/null and b/assets/sounds/land.ogg differ diff --git a/sounds.lua b/sounds.lua index 431fd42..9c32d24 100644 --- a/sounds.lua +++ b/sounds.lua @@ -1,6 +1,6 @@ return { - love.sound.newSoundData("sounds/death.ogg"), - love.sound.newSoundData("sounds/hit.ogg"), - love.sound.newSoundData("sounds/land.ogg"), - love.sound.newSoundData("sounds/attack.ogg") + love.sound.newSoundData("assets/sounds/death.ogg"), + love.sound.newSoundData("assets/sounds/hit.ogg"), + love.sound.newSoundData("assets/sounds/land.ogg"), + love.sound.newSoundData("assets/sounds/attack.ogg") } \ No newline at end of file diff --git a/sounds/attack.ogg b/sounds/attack.ogg deleted file mode 100644 index c4e1123..0000000 Binary files a/sounds/attack.ogg and /dev/null differ diff --git a/sounds/death.ogg b/sounds/death.ogg deleted file mode 100644 index 64c717f..0000000 Binary files a/sounds/death.ogg and /dev/null differ diff --git a/sounds/hit.ogg b/sounds/hit.ogg deleted file mode 100644 index f44ad06..0000000 Binary files a/sounds/hit.ogg and /dev/null differ diff --git a/sounds/land.ogg b/sounds/land.ogg deleted file mode 100644 index 2804476..0000000 Binary files a/sounds/land.ogg and /dev/null differ -- cgit v1.1