aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts')
-rw-r--r--Scripts/init.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua
index dc5093b..572f722 100644
--- a/Scripts/init.lua
+++ b/Scripts/init.lua
@@ -21,6 +21,7 @@ player = {
end,
JumpKeyPressed = function(self)
if self.Physics.standing == true then
+ game.play(self.Position, self.Audio)
self.Velocity.y = self.Velocity.y + 9
end
end,
@@ -37,6 +38,9 @@ player = {
},
Physics = 0,
Name = "bord",
+ Audio = {
+ file = "Assets/jump.wav"
+ },
hellotrue = true,
hellofalse = false,
Render = {
@@ -76,10 +80,14 @@ ball = {
},
Idle = function(self)
if self.Physics.standing == true then
+ game.play(self.Position, self.Audio)
self.Velocity.y = self.Velocity.y + 15
self.Velocity.x = math.random(-1, 1);
end
end,
+ Audio = {
+ file = "Assets/boing.wav"
+ },
}
npc = {