Voronoi Fracture

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Deniz
:warning: Old Version Published before Godot 3 was released.

Hi all, I’m new to Godot engine and I would like to simulate 2D Voronoi Fracture on Godot. Are there any plugins or tools for this ? I would like to simulate something like this but in 2D which is much easier: link

I eventually made a module for generating simplex noise, which has some basic voronoi stuff in it and can serve as base for knowing where to put cracks, but it’s just number crunching, no simulation.
I don’t know of any module to simulate that in Godot. In 2D it could be workable with an intensive script, you would have to figure out how to slice a 2D mesh into lots of parts and make them fall under physics. 2D items are mostly sprites, so their geometry are rectangles. Could work, but transparency might be a problem because rectangles don’t always represent the true shape of sprites.

Zylann | 2017-01-31 18:23