Compare commits

..

No commits in common. "ec290eb18b0456064909c2d3acdc3755ffefb2e7" and "8ad68f914df42815d470f78e259d05eccc0dcc0f" have entirely different histories.

View File

@ -8,7 +8,7 @@ grid.__index = grid
--- adds a value to the grid
--- @param value any
function grid:add(value)
self.__grid[tostring(value.position)] = value
grid[tostring(value.position)] = value
end
--- @param position Vec3