Hello. I’m working on a procedural terrain mesh, using the Entities and Physics packages. I just updated those packages to the 0.50 version which caused the terrain colliders to stop interacting with the physics system. No collisions, no cast detections, nothing.
I’m not sure whether is correct to assume this is a bug. It’s possible that there is just some configuration I’m ignoring, but I can’t find anything about that in the docs.
So, is there a new way to create Mesh colliders at runtime or something else I’m ignoring about the new Entities / Physics packages that is affecting the colliders generation or simulation?
(This is the code I currently use to create the collider)
var colliderRef = MeshCollider.Create(verts, triangles, filter);
ECB.AddComponent(entityInQueryIndex, entity, new PhysicsCollider { Value = colliderRef });