From 16a29df61f6cbc546123c91a0b72d1bfb68d6de2 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 2 Oct 2019 13:51:26 -0400 Subject: beautiful ball bounce sound --- Scripts/init.lua | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Scripts') diff --git a/Scripts/init.lua b/Scripts/init.lua index d09fb14..96e031a 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -80,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" + }, } -- Create the world -- cgit v1.2.3