35
How do you "separate" or "explode" a 3D mesh in Godot?
(programming.dev)
Welcome to the programming.dev Godot community!
This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.
Make sure to follow the Godot CoC while chatting
We have a matrix room that can be used for chatting with other members of the community here
We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent
Of course it does, you can achieve that with a simple vertex shader by just moving each vertex in the direction of its normal. However, since the vertices are joined into triangles, this will just result in the model getting bigger instead of "disintegrating".
For that to work, you would need a model where each triangle is a separate surface.
Another way which might work would be to enlarge the model like I illustrated above while simultaneously making pixels which are further from an edge than a threshold value transparent.
The vertex shader is low enough level that it has no concept of shared vertices (nor really anything above triangles for the GPU), so this will work without individual meshes.
Here's a quick test project I made using a single cube mesh and the shader code
Slick!
Ah my bad, perfect, then that's the solution!