mirror of
https://github.com/veden/Rampant.git
synced 2025-01-03 22:52:20 +02:00
22 lines
511 B
Lua
22 lines
511 B
Lua
|
if queryUtilsG then
|
||
|
return queryUtilsG
|
||
|
end
|
||
|
local queryUtils = {}
|
||
|
|
||
|
function queryUtils.setPositionInQuery(query, position)
|
||
|
local point = query.position
|
||
|
point[1] = position.x
|
||
|
point[2] = position.y
|
||
|
end
|
||
|
|
||
|
function queryUtils.setAreaInQuery(query, topLeftPosition, size)
|
||
|
local area = query.area
|
||
|
area[1][1] = topLeftPosition.x
|
||
|
area[1][2] = topLeftPosition.y
|
||
|
area[2][1] = topLeftPosition.x + size
|
||
|
area[2][2] = topLeftPosition.y + size
|
||
|
end
|
||
|
|
||
|
queryUtilsG = queryUtils
|
||
|
return queryUtils
|