How to check if i need to generate more land?
Posted: Mon Feb 10, 2014 9:19 pm
Okay heres the deal, trying to create a simple parallax game.
Currently i have it if u click left it goes left and when your in 300px of the edge of the box its moves the background instead of the player. How can i detect if i need to generate more land?
https://love2d.org/imgmirrur/Ds8q2yR.gif
player.lua
ground.lua
Currently i have it if u click left it goes left and when your in 300px of the edge of the box its moves the background instead of the player. How can i detect if i need to generate more land?
https://love2d.org/imgmirrur/Ds8q2yR.gif
player.lua
Code: Select all
function InitPlayer()
player = love.graphics.newImage("images/player.png")
playerwidth = 32
playerheight = 32
playerx = 500
playery = 359
end
function UpdatePlayer(dt, map_w)
if love.keyboard.isDown("left") then
if playerx+playerwidth <= 300 then
for i = 1, map_w/64 do
GroundMap[i] = GroundMap[i] + 75 * dt
end
for i = 1, #TreeMap do
TreeMap[i][2] = TreeMap[i][2] + 75 * dt
end
else
player = love.graphics.newImage("images/playerl.png")
playerx = playerx - 75 * dt
end
end
if love.keyboard.isDown("right") then
if playerx+playerwidth >= map_w-300 then
for i = 1, map_w/64 do
GroundMap[i] = GroundMap[i] - 75 * dt
end
for i = 1, #TreeMap do
TreeMap[i][2] = TreeMap[i][2] - 75 * dt
end
else
player = love.graphics.newImage("images/playerr.png")
playerx = playerx + 75 * dt
end
end
if love.keyboard.isDown("down") then
player = love.graphics.newImage("images/player.png")
end
end
function DrawPlayer()
love.graphics.draw(player, playerx, playery)
end
Code: Select all
function InitGround(map_w)
grass = love.graphics.newImage("images/grass.png")
GroundMap = {}
for i = 1, map_w/64 do
GroundMap[i] = i*64-64
end
end
function UpdateGround()
end
function DrawGround(map_w)
for x = 1, map_w/64 do
love.graphics.draw(grass, GroundMap[x], 388)
end
end