pub unsafe extern "C" fn phys_PxCreateExternalSceneQuerySystem(
    desc: *const PxSceneQueryDesc,
    contextID: u64
) -> *mut PxSceneQuerySystem
Expand description

Creates an external scene query system.

An external SQ system is the part of a PxScene that deals with scene queries (SQ). This is usually taken care of by an internal implementation inside PxScene, but it is also possible to re-route all SQ calls to an external implementation, potentially opening the door to some customizations in behavior and features for advanced users.

The following external SQ system is an example of how an implementation would look like. It re-uses much of the same code as the internal version, but it could be re-implemented in a completely different way to match users’ specific needs.

An external SQ system instance