Android Destructable Mesh collision

I have a small scene with destructable meshes set up, it works fine when playing on pc but once it’s on my nexus 10 there is no collision with the destructable meshes. Is this not supported, not yet implemented or a bug? If there is anyway to get it working or a workaround id be very appreciative!

Hey,

did you have any luck solving this issue? I’m currently facing the same, and so far i haven’t been able to get collisions from a destructable as well (using ue4.5 on android 4.4).

I stopped working with Android a while ago but if I remember correctly I believe I ended up using a static mesh for the collision and then swapping it for the destructible mesh on hit and applying the damage manually.

Since destructable meshes are not supported on mobile, the best course of action would be to have a box surround the destructable mesh and detect collisions on that. Furthermore, the destruction itself doesn’t work on mobile as well, so you would have to choose for a completely different solution on mobile.

In my scenario, i created a particle system as a component of the (formerly) destructable actor and activate that when collision is detected. It doesn’t even come close to what destructables look like, but it’s better than nothing at all.

Hi, I’m thinking of using a similar solution to this and I’m wondering, is it possible to export the chunks of a destructible mesh result to use in a particle system?