I have been developing my world-building game Wubby for some time now, and the worst problem I stumbled upon was getting the proper grid calculations when the player had to place down blocks. With this open-source module, I want everyone to have a perfectly calculated, lightweight, and intuitive experience to avoid more people from descending into the rabbit hole I went through.
Every other grid module I found is either very limiting, too complex to use, or just not what Iâm looking for. I swear, I wouldâve loved that a module like this existed while I was first developing Wubby.
LibreGrid emulates surface-based placement (like the one that Roblox Studio offers), getting rid of all the math-related headaches that would take coding it yourself, with support for both BaseParts and Models. Moreover, it allows for more customizations that developers can change in real-time to their liking. This means that, using LibreGrid, you can achieve a block-placing system (like Minecraftâs), a furniture placement system (2D placement), or a Roblox Studio-like experience.
This module is the result from months, if not years, of trial and error while developing Wubby.
hey there, iâm sorry if you didnât like this resource. however, thereâs a lot of reasons to use this module:
developers would use this module because it was meant to get rid of all the math-related issues that coding a grid system conveys. modules are made to avoid coding again what someone already did, specially if the task in question is a tedious one. trust me, itâs not âreally simpleâ math if youâre coding a complicated system, like Studioâs.
LibreGrid is super good at customization and itâs intended to adapt to any workflow. moreover, it allows you to input your own custom RaycastParams when running the function, which allows developers to whitelist/blacklist certain parts. LibreGrid even returns a RaycastResult after an operation is done if you want to customize it even further.
a placement system requires raycasts. you cannot make a grid system w/out raycastsâŚ
Of course, I never said it didnât require raycasts â rather, my point was that the grid math was minimal, so your module is 70% raycasting rather than the actual grid system.
On the positive side, itâs well made, has a good post, and is useful to numerous people. Keep going!
A placement system does not ârequireâ raycasts as it does not only happen on the client. Your module fails to account for the developerâs need to validate and ensure the position the client has provided is grid-aligned. The functions to grid-align & perform raycasts should be decoupled for this reason.
Correcting this since I did not realize that your module does actually have separate methods for raycasting and grid alignment. Though I still stand by the opinion that raycasts are not a requirement for a grid system.
Also as an FYI, this resource would be a bit more useful to developers if the Github repository was properly setup to work with Rojo.
thanks for your suggestions! ill try setting up rojo although i have never tried it before :3
also, if youâre worried about the grid alignment server-side, instead of sending the cframe over, you could send every parameter needed to replicate the function there. although it might be a little bit complicated to figure out the ray if youâre using GetCFrameAtMousePosition, iâll probably add better support for this in the future. thank you! :3
you could use the NormalBased configuration (as explained in the documentation) which makes placement relative to normals instead of the ray hit for this use case :3
though, now that iâm realizing it, i forgot to add support for smaller sizes while this is turned on. i will try to add support for it asap!
How would I disable the overlapping of the block? like, if I aim at the front area of the wedge, itâll clip into the white wedge [or the top], but any other area itâd build below.
Also this:
Whenever I rotate my block, it offsets now.