level: adjusted plane starting heights

This commit is contained in:
Erkki Seppälä 2014-10-20 20:42:42 +03:00
parent 9a0b5abc7a
commit 9765ae8daa

View file

@ -25,10 +25,10 @@ Level = Class{
love.graphics.setCanvas()
self.makePlanes = { [1] = function()
return Plane(100, 100, INITIAL_PLANE_SPEED, 0, self)
return Plane(100, 300, INITIAL_PLANE_SPEED, 0, self)
end,
[2] = function()
return Plane(love.window.getWidth() - 100 - 100, 100, -INITIAL_PLANE_SPEED, 0, self)
return Plane(love.window.getWidth() - 100 - 100, 300, -INITIAL_PLANE_SPEED, 0, self)
end }
self.planes = { [1] = self.makePlanes[1](),