summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2016-08-03 08:09:09 +0200
committerAki <nthirtyone@gmail.com>2016-08-03 08:09:09 +0200
commit6997606584369107c890d7ff7ab154a8e4815972 (patch)
treea62e151de4ea2e057a614851cff2ece353c08890
parent1b9b0193c00e0d54cf1b50635d33b3bbce60e872 (diff)
downloadroflnauts-6997606584369107c890d7ff7ab154a8e4815972.zip
roflnauts-6997606584369107c890d7ff7ab154a8e4815972.tar.gz
roflnauts-6997606584369107c890d7ff7ab154a8e4815972.tar.bz2
Sounds moved to assets
-rw-r--r--assets/sounds/attack.ogg (renamed from sounds/attack.ogg)bin4487 -> 4487 bytes
-rw-r--r--assets/sounds/death.ogg (renamed from sounds/death.ogg)bin12111 -> 12111 bytes
-rw-r--r--assets/sounds/hit.ogg (renamed from sounds/hit.ogg)bin5877 -> 5877 bytes
-rw-r--r--assets/sounds/land.ogg (renamed from sounds/land.ogg)bin4733 -> 4733 bytes
-rw-r--r--sounds.lua8
5 files changed, 4 insertions, 4 deletions
diff --git a/sounds/attack.ogg b/assets/sounds/attack.ogg
index c4e1123..c4e1123 100644
--- a/sounds/attack.ogg
+++ b/assets/sounds/attack.ogg
Binary files differ
diff --git a/sounds/death.ogg b/assets/sounds/death.ogg
index 64c717f..64c717f 100644
--- a/sounds/death.ogg
+++ b/assets/sounds/death.ogg
Binary files differ
diff --git a/sounds/hit.ogg b/assets/sounds/hit.ogg
index f44ad06..f44ad06 100644
--- a/sounds/hit.ogg
+++ b/assets/sounds/hit.ogg
Binary files differ
diff --git a/sounds/land.ogg b/assets/sounds/land.ogg
index 2804476..2804476 100644
--- a/sounds/land.ogg
+++ b/assets/sounds/land.ogg
Binary files 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