diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-05-09 09:40:59 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-05-09 09:40:59 -0400 |
commit | f461087223a80cd06619517e355690654f406d63 (patch) | |
tree | a5f5d573bec36f63284438c72157699f3a8fed98 /Scripts | |
parent | 1c52ee2e02bc3c09e7cac3b20c81c910b7151144 (diff) | |
parent | 3fb5e6b1eca24e536f8ab1130a7e4bd9c418fa41 (diff) |
Merge branch 'audio'
Diffstat (limited to 'Scripts')
-rw-r--r-- | Scripts/init.lua | 8 |
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 = { |