diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-16 08:11:00 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-16 08:19:53 -0500 |
commit | 034c802edd39be537a626c1961272a6137b5980e (patch) | |
tree | d9b042878d8a8f573cf09744814270a32b920b89 /Scripts | |
parent | f892f3c3afb4a3795dc3ba5c26cacd1f8088b902 (diff) |
text clears with dialog box
Diffstat (limited to 'Scripts')
-rw-r--r-- | Scripts/init.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua index 7ac9160..370fc0e 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -1,4 +1,5 @@ game.loadFont("default", "Assets/FreePixel.ttf", 16) +game.loadFont("dialog", "Assets/FreePixel.ttf", 16) player = { Player = 0, @@ -7,6 +8,7 @@ player = { self.Velocity.x = self.Velocity.x - 3.0 --self.Velocity.y = self.Velocity.y - 1.0 self.Render.flipx = true; + game.dialogClear() end, MoveLeftReleased = function(self) self.Velocity.x = self.Velocity.x + 3.0 @@ -29,7 +31,7 @@ player = { end, JumpKeyReleased = function(self) game.dialog(30, 150, 400, 100) - game.puts("default", 36, 52, "Hey. Hag?") + game.puts("dialog", 36, 52, "Hey. Hag?") end }, Position = { |