diff options
Diffstat (limited to 'Scripts/init.lua')
-rw-r--r-- | Scripts/init.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua index 65513ec..da9ba14 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -1,4 +1,4 @@ -game.loadFont("freepixel16", "Assets/FreePixel.ttf", 16) +game.loadFont("default", "Assets/FreePixel.ttf", 16) bird = { Player = 0, @@ -9,6 +9,7 @@ bird = { end, MoveLeftReleased = function(self) self.Velocity.x = self.Velocity.x + 100 + game.puts("default", self.Position.x, self.Position.y, "Hey.") end, MoveRightPressed = function(self) self.Velocity.x = self.Velocity.x + 100 |