хочу сделать процедурную генерацию
function generateGround()
local points = {
-GROUND_WIDTH / 2, GROUND_HEIGHT / 2,
-GROUND_WIDTH / 2, -GROUND_HEIGHT / 2
}
local lastX, lastY = -GROUND_WIDTH / 2, GROUND_HEIGHT / 2
for i = 1, GROUND_WIDTH / 20 do
local height = love.math.random(50, 200)
local width = love.math.random(10, 30)
lastX = lastX + width
lastY = lastY - height
table.insert(points, lastX)
table.insert(points, lastY)
end
table.insert(points, GROUND_WIDTH / 2)
table.insert(points, GROUND_HEIGHT / 2)
ground = world:newPolygonCollider(unpack(points))
ground:setType('static')
end
и получаю такой warning
Deprecated.(Defined in Lua 5.1/LuaJIT, current is Lua 5.4.)Lua Diagnostics.(deprecated)
function unpack(list: <T>[], i?: integer, j?: integer)
-> ...<T>
Returns the elements from the given list. This function is equivalent to
return list[i], list[i+1], ···, list[j]
как это исправить?
У тебя какая версия ловки?
Обсуждают сегодня