I currently have a grid placement system that works with 1x1x1 blocks. I would like to modify it to work with other sizes, for instance I would like to be able to have a 1x2x1 block that functions as a door, or a 2x2x2 armor block. All of these blocks will be rectangular prisms so there is no need to account for odd geometry but I can’t figure out how to make it work.
here is what I have:
local mouseLocation = UserInputService:GetMouseLocation()
local unitRay = camera:ViewportPointToRay(mouseLocation.X, mouseLocation.Y)
local cast = workspace:Raycast(unitRay.Origin, unitRay.Direction * 1000, castParams)
if cast and preview then
local snappedPosition = BuildFunctions.SnapToGrid(cast.Position)
local normalCF = CFrame.lookAlong(cast.Position, cast.Normal)
local relativeSnapped = normalCF:PointToObjectSpace(snappedPosition)
local xVector = normalCF:VectorToWorldSpace(Vector3.xAxis * -math.sign(relativeSnapped.X))
local yVector = normalCF:VectorToWorldSpace(Vector3.yAxis * -math.sign(relativeSnapped.Y))
local cf = CFrame.fromMatrix(snappedPosition, xVector, yVector, cast.Normal)
preview.Parent = workspace
preview.Position = cf:PointToWorldSpace(block.Size/2)
end
as for the BuildFunctions.SnapToGrid()
function being called, it looks like this (GRID_SIZE
is just the number of studs per grid tile, in this case 2):
function BuildFunctions.SnapToGrid(pos)
return Vector3.new(math.round(pos.X / GRID_SIZE), math.round(pos.Y/ GRID_SIZE), math.round(pos.Z / GRID_SIZE)) * GRID_SIZE
end
this system is pretty basic, all it does is find the nearest grid position to your mouse position and then use the normal of whatever you are hovering on to compensate for the preview of the block’s position so the preview isnt inside of whatever surface you are trying to place on. The issue is making this work for all cuboids, I have absolutely no clue where to even start. Compensating for cuboid size shouldn’t be terribly hard but I’m struggling on a number of things, namely keeping the snapping working (say you have a 1x2x1 cuboid, snapping its position to where a 1x1x1 would normally go will cause a 0.5 GRID_UNIT misalignment), checking to make sure the bigger cuboids don’t overlap with any other blocks, and also figuring out how to align faces.
has anyone done anything like this before? I’d love any advice or help I can get.