Started by
Gizmodod
on
Topic category: Help with Minecraft modding (Java Edition)
Hello,
I've been looking for a way to do it for quite a while now, but I can't find it, so I'm making this post.
I'd like to pass an explosion like this:
to a more realistic explosion like this:
I thank you in advance, if you know how to help me to create this type of explosion with MCreator (I am using MCreator 2022.3).
Edited by Gizmodod on Sat, 11/26/2022 - 06:11
You won't actually be able to make a custom explosion for this, but you can do this with a custom procedure. Use the 'Search for Block in 6*6 box' procedure preset, get rid of the 'found' variable, and set the range to the desired size of the explosion. The procedure will check every block in the desired range. (The block it is currently checking is always at sx, sy, and sz, the offset from the center of where the procedure is executed.)
The basic idea is that if the block is within a certain range, and is breakable, destroy it. I don't remember the exact math you need to do for spheres; but essentially, if the sx, sy, or sz of the block is a certain distance from the center, (x, y, z), destroy it. If it's within another range, (the edge of the explosion), give it a random chance of being destroyed. This will allow you to make a roughly spherical crater.
...It isn't quite that simple; you'll need a way to determine the blast resistance of different materials, a way to shield materials behind blast resistant blocks, and a means of generating explosion particles; but that's the basic idea.