Unions collisions are terrible

In roblox, the collisions created by unions are highly innacurate. I’ve developed a “bloxburg building system” plugin which creates doorways by negating a part in the walls. However, I’m experiencing that the collisions for unions are astonishingly inaccurate which leads to invisible boxes that collide when attempting to walk through my doorways.

Heres a video showing what I mean:

Expected behavior

I expect it so that it allows my character to walk through union holes. Instead the collisions are screwed up.

Have you tried setting CollisionFidelity to PreciseConvexDecomposition?

Hello, @Pokemoncraft5290. Thanks for the feedback.

Roblox, by default, automatically generates poor collisions for unions to save on preformance. However, in many cases this functionality is not desirable. You can change the properties of the union to enable more accurate collisions in your unions.

Change:

  1. RenderFidelity to Precise
  2. CollisionFidelity to PreciseConvexDecomposition

These changes will remove issues with collision boxes since roblox will compute the collision boxes with more detail.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.