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
Gamma linked that shader as well, but that doesn't look like the proper tool/shader for exploding/disintegrating the faces
From the looks of it, I'll probably need to copy most of the mesh data into an ArrayMesh and do magic from there
Usually modern shader displacement attempt to create a continuous mesh, to not have to deal with backfaces or unnatural vertex breaks, but this technique can also be used (funny enough much simpler) to break meshes apart.
Linking a screenshot here I made for another comment in this post, this test project I used the shader code in the vertex shader
(Should be noted the mesh breaks apart into squares not triangles because the normal of the two triangles in a square is equal)