Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/ElasticSea/unity-fracture

Fracture any mesh at runtime
https://github.com/ElasticSea/unity-fracture

blast fracture nvidia rigidbody unity

Last synced: 3 months ago
JSON representation

Fracture any mesh at runtime

Lists

README

        

# Unity Fracture
https://user-images.githubusercontent.com/36990593/118142411-a53f6500-b40a-11eb-9942-4a6b0c1c1a42.mp4

`FractureThis.cs` script takes all meshes in its gameobject and merges them. This global mesh is send to `nvblast` for fracturing into chunks. The inside part of the chunk has new UVs generated for material to be applied. Original gameobject is hidden and each chunk mesh is converted to gameobject with rigibody. Neighboring chunks are tethered with fixedjoints.

### Requirements
- Unity 2020.3 (Any previous version should work too)
- Only x64 version of `nvblast` library is included in the repo, for other platform please visit https://forum.unity.com/threads/nvidia-blast.472623

### How does this work?
1) Cut the mesh into smaller meshes chunks
2) Add rigidbody component to each chunk
3) Connect chunks with fixed joints that break with force

#### 1) Cut the mesh into smaller meshes chunks
I stumbled upon this forum thread https://forum.unity.com/threads/nvidia-blast.472623 where someone figured out how to use Nvidia blast library in the Unity. Feed the library with mesh (must have vertices, triangles, uvs and closed without missing any faces) to this library and receive mesh chunks.

#### 2) Add rigidbody component to each chunk
Convert each mesh chunk into a gameobject with rigidbody. Without anything holding the chunks together they crumble to the ground. Connect the chunks with fixed joints, so they stay in place. Take each chunk and its neighbors (chunks that are in close proximity or in touch) and connect them with fixed joints.

##### Issue #1 - Structure is wobbly
This is not ideal, the joints are not 100% fixed in place due to how PhysX resolves collisions. There is a big deal of springiness within the joints. The structure ripples when force is applied and acts like a it is made out of jello.

##### Solution #1 - Freeze rigidbodies
https://answers.unity.com/questions/230995/fixed-joint-not-really-fixed.html advised to freeze the rigidbody. Freezing the rigidbodies makes them stay in place (they drift apart after some time [#1](https://github.com/ElasticSea/unity-fracture/pull/8)) and the rigidbodies still register impact and the joints can be broken.

##### Issue #2 - Rigidbodies float in the air
Rigidbodies will stay in place even though there is no support under them. They will only resume movement when all joints are broken.

##### Solution #2 - Introduce anchors
Let's create a graph of connected chunks. Traverse graph each frame and unfreeze chunks disconnected from anchors (kinematic body)

![Chunk Graph](https://user-images.githubusercontent.com/36990593/118148705-21d54200-b411-11eb-94f6-5c654f420df9.png)
*Anchored chunks are red*