diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-05-09 09:42:18 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-05-09 09:42:18 -0400 |
commit | da0913771538fd9b1ca538615fd9aa0388608466 (patch) | |
tree | 18b23720b0a9c24e05a8f3eceb6b03b0b858fcb2 /Scripts | |
parent | f461087223a80cd06619517e355690654f406d63 (diff) |
Merge audio; handle mouse events
Diffstat (limited to 'Scripts')
-rw-r--r-- | Scripts/init.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua index 572f722..66fbcb1 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -111,6 +111,11 @@ npc = { b = 1.0, strength = 0.5 }, + EventListeners = { + MousePressed = function(self, x, y, button) + self.Velocity.y = 3.0; + end + }, Idle = function(self) if (self.visibleTick == 0) then self.visibleTick = math.random(40, 60) |