diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-17 13:47:16 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-17 13:47:16 -0500 |
commit | 72603f1641bb400be6c9b0604273a4bd38932136 (patch) | |
tree | 50188f29a1af54d25c8fab91b3cc1ce170ca09aa /Scripts/init.lua | |
parent | 0c535a1526d725fbd242c5ce348a7f2252d1fd34 (diff) |
ui-coord mouse interacts with world-coord entity
Diffstat (limited to 'Scripts/init.lua')
-rw-r--r-- | Scripts/init.lua | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua index fde6c86..1ae2efc 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -24,12 +24,16 @@ player = { end end, JumpKeyReleased = function(self) - game.dialog(30, 50, 400, 100) - game.puts("dialog", 36, 52, "Hey. Hag?") end, MousePressed = function(self, mx, my) - if mx > 30 and mx < 430 and my > 50 and my < 150 then - game.dialogClear() + mp = game.uiToWorldCoord(mx, my) + if math.abs(mp.x - self.Position.x) < 1 and math.abs(mp.y - self.Position.y) < 1 then + game.dialog(30, 50, 400, 100) + game.puts("dialog", 36, 52, "What do you think you're doing?") + else + if mx > 30 and mx < 430 and my > 50 and my < 150 then + game.dialogClear() + end end end }, |