diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-18 14:40:23 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-18 14:40:23 -0400 |
commit | 0869328b12ff9b77000915f37443dcf2468d881e (patch) | |
tree | 1e9e4d5ca43661a4aca8f5052f1ba67d23b9d955 /Scripts/init.lua | |
parent | 0e7f7791fd592f0240a30168a9a570c57b0f5880 (diff) | |
parent | 8b834d0440f85a452694fb5cbb2cd9f4dae07aa2 (diff) |
Added UI rendering support to render loop, although fonts don't render yet
Diffstat (limited to 'Scripts/init.lua')
-rw-r--r-- | Scripts/init.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua index d2abb00..9e6848e 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -4,19 +4,19 @@ player = { Player = 0, EventListeners = { MoveLeftPressed = function(self) - self.Velocity.x = self.Velocity.x - 3 + self.Velocity.x = self.Velocity.x - 3.0 self.Render.flipx = true; end, MoveLeftReleased = function(self) game.puts("default", self.Position.x, self.Position.y, "Hey.") - self.Velocity.x = self.Velocity.x + 3 + self.Velocity.x = self.Velocity.x + 3.0 end, MoveRightPressed = function(self) - self.Velocity.x = self.Velocity.x + 3 + self.Velocity.x = self.Velocity.x + 3.0 self.Render.flipx = false; end, MoveRightReleased = function(self) - self.Velocity.x = self.Velocity.x - 3 + self.Velocity.x = self.Velocity.x - 3.0 end, JumpKeyPressed = function(self) if self.Physics.standing == true then |