I have the destructible mesh good as I want it.
But now, when it enters a box collision I want to trigger an event that stops is from fracturing.
And another event that can turn ON fracturing.
Any help is appreciated thanks you
I have the destructible mesh good as I want it.
But now, when it enters a box collision I want to trigger an event that stops is from fracturing.
And another event that can turn ON fracturing.
Any help is appreciated thanks you
Hello there @ddave104!
Assuming you are working with Chaos destruction, controlling the fracture would be a matter of how the mesh is breaking.
Since you mention collision, you are probably using “Enable Damage From Collision”. Your blueprint should read the event, and disable damage from collision before the mesh shatters.
On the other hand, if you are working with Damage Threshold, then you can manipulate it’s value during the trigger. When your mesh collides (On Component Begin Overlap), raise the damage threshold to a very high ammount (lie 99999). And once the overlap ends, you can set it back to it’s original value. You can use a variable to store/swap the damage numbers.