lutro-iyfct/tunnel.lua
2014-07-10 14:25:09 -04:00

38 lines
705 B
Lua

Tunnel = {}
Tunnel.__index = Tunnel
tunnel_start_back = love.graphics.newQuad(0,0,58,100,512,512)
tunnel_end = love.graphics.newQuad(58,0,133,100,512,512)
function Tunnel.create()
local self = {}
setmetatable(self,Tunnel)
self.x = WIDTH+58
self.alive = true
return self
end
function Tunnel:update(dt)
if self.alive == false then
return
end
self.x = self.x - global_speed * dt * TRACK_SPEED
if self.x < -150 then
self.alive = false
end
end
function Tunnel:drawBack()
if self.alive == true then
love.graphics.draw(imgTerrain,tunnel_start_back,self.x-58,0)
end
end
function Tunnel:drawFront()
if self.alive == true then
love.graphics.draw(imgTerrain,tunnel_end,self.x,0)
end
end