From ec0ab456cf869f2daa6dea41158c54da745626d8 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Wed, 18 Sep 2019 12:07:48 -0400 Subject: Added basic UI shaders --- Scripts/init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Scripts') diff --git a/Scripts/init.lua b/Scripts/init.lua index 84d2073..d76a402 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -2,18 +2,18 @@ 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) - 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 -- cgit v1.2.3