Brand new to mod development, thanks for your patience.
I've managed to develop my new block type - a sort of glowing crystal, kind of like glowstone. I'm trying to figure out what is the best way to get the blocks to spawn during chunk generation. I've seen plenty of tutorials to get new ores to spawn, using WorldGenMinable(). I've been able to do that with no problem. The only thing is that function spawns the blocks in a typical ore vein pattern - contiguous groups of x blocks, generally arrayed 2 blocks wide. I've also stumbled on WorldGenBlockBlob(), which is neat, but also forms a standardized array (a layer of 9 or so blocks with a 1-block layer above it, etc).
I'd like my blocks to spawn in a different pattern, more like cactus - a single column of blocks. So what's the best way to achieve this? Should I override WorldGenCactus? Is there some function that spawns in a developer-assigned pattern?
I'm still finding my feet with mod development, but I'm learning a bunch. Thanks, all, for any pointers you can provide.