diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-23 22:14:13 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-23 22:14:13 -0400 |
commit | f6a0e340bc82cb5fb96f836686bd59aaffd5db97 (patch) | |
tree | 8d7e96bbd997be9d0a1e9bf088689366aeaae96e /Scripts/init.lua | |
parent | 0869328b12ff9b77000915f37443dcf2468d881e (diff) |
Fixed text rendering
Diffstat (limited to 'Scripts/init.lua')
-rw-r--r-- | Scripts/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua index 9e6848e..8559f7c 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -8,7 +8,7 @@ player = { self.Render.flipx = true; end, MoveLeftReleased = function(self) - game.puts("default", self.Position.x, self.Position.y, "Hey.") + game.puts("default", self.Position.x, self.Position.y+100, "Hey. Hag?") self.Velocity.x = self.Velocity.x + 3.0 end, MoveRightPressed = function(self) |