]> code.bitgloo.com Git - clyne/gamedev2.git/commitdiff
remove lua puts call
authorClyne Sullivan <clyne@bitgloo.com>
Thu, 26 Sep 2019 15:38:52 +0000 (11:38 -0400)
committerClyne Sullivan <clyne@bitgloo.com>
Thu, 26 Sep 2019 15:38:52 +0000 (11:38 -0400)
Scripts/init.lua

index cdd6ccb20d5f76f6a9cd940f50b19eaf91ea0e78..ec9e35071460ba81a74c5432e03c9289711387f8 100644 (file)
@@ -8,7 +8,8 @@ player = {
             self.Render.flipx = true;
         end,
         MoveLeftReleased = function(self)
-            game.puts("default", self.Position.x, self.Position.y+100, "Hey. Hag?")
+            -- TODO can't put text at world coordinates right now
+            --game.puts("default", self.Position.x, self.Position.y+100, "Hey. Hag?")
             self.Velocity.x = self.Velocity.x + 3.0
         end,
         MoveRightPressed = function(self)