aboutsummaryrefslogtreecommitdiff
path: root/core/ambience.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/ambience.lua')
-rw-r--r--core/ambience.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/ambience.lua b/core/ambience.lua
new file mode 100644
index 0000000..13919d9
--- /dev/null
+++ b/core/ambience.lua
@@ -0,0 +1,15 @@
+Class = require("libs.hump.class")
+
+Ambience = Class {
+ init = function(self, ambienceTypes)
+ if ambienceTypes then
+ for i,ambience in pairs(ambienceTypes) do
+ local ambientSound = love.audio.newSource("assets/sfx/"..ambience..".ogg", "static")
+ ambientSound:setLooping(true)
+ ambientSound:play()
+ end
+ end
+ end
+}
+
+return Ambience \ No newline at end of file