epervier-old/examples/scenes/gameplay/moveplayer/actors/player.lua

36 lines
688 B
Lua
Raw Normal View History

local cwd = (...):gsub('%.player$', '') .. "."
local Parent = require(cwd .. "parent")
local Player = Parent:extend()
2019-04-29 15:27:40 +02:00
function Player:new(world, x, y, id)
Player.super.new(self, world, "player", x, y, 16, 16, true)
end
function Player:updateStart(dt)
2019-04-28 09:31:37 +02:00
self.xfrc, self.yfrc = 480*3, 480*3
2019-04-29 15:27:40 +02:00
if self.keys["up"].isDown then
self.ysp = -120
end
if self.keys["down"].isDown then
self.ysp = 120
end
if self.keys["left"].isDown then
self.xsp = -120
end
if self.keys["right"].isDown then
self.xsp = 120
end
end
2019-04-29 15:27:40 +02:00
function Player:draw()
Player.super.draw(self)
end
function Player:drawHUD(id)
love.graphics.print(id .. " test", 4, 4)
end
return Player