Mesh collider does not respect inverted normals (to represent enclosing boundry).

Attempted to use an inverted sphere (normals flipped inside blender) as a mesh collider so I could have bodies colliding with the inside wall of a sphere but does not seem to work (falls straight through); this hack was reported to work for the old physics system (see the discussion at Can you Invert a Sphere or Box Collider?? among others) - is there an alternative solution or am I going to need to implement a custom job to account for the boundary collisions?

OH! Sorry, please ignore this reply. I didn’t realize I was in the ECS forum.

For that to work, the inverted sphere collider must not be associated to a Rigidbody (no Rigidbody in its GameObject nor in any of its parents) and the collider must not be marked as Convex.
If you also want to move the inverted sphere while causing correct physics effects to the objects inside, then every face of the sphere must be an independent collider marked as Convex. All of them must be children of a Rigidbody marked as Kinematic, and this rigidbody must be moved with Rigidbody.MovePosition and Rigidbody.MoveRotation from FixedUpdate.

Makes it two

If you tell me where to, I could probably move this thread for you. Let me know.