From 19a19538c205fce74550c20d648fb239e26f0cf3 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 23 Sep 2017 14:08:32 +0200 Subject: Hero walking moved from Player, separated into methods --- not/Player.lua | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'not/Player.lua') diff --git a/not/Player.lua b/not/Player.lua index b0dac75..6996c9d 100644 --- a/not/Player.lua +++ b/not/Player.lua @@ -38,20 +38,10 @@ function Player:update (dt) -- Walking. if self:isControlDown("left") then - self.facing = -1 - self:applyForce(-250, 0) - -- Controlled speed limit - if x < -self.MAX_VELOCITY then - self:applyForce(250, 0) - end + self:walkLeft() end if self:isControlDown("right") then - self.facing = 1 - self:applyForce(250, 0) - -- Controlled speed limit - if x > self.MAX_VELOCITY then - self:applyForce(-250, 0) - end + self:walkRight() end end -- cgit v1.1