This repository was archived by the owner on Oct 1, 2025. It is now read-only.
Important Service Updates
- SDK updated to version 1.2.32
API Changes
- All spatial query methods now take a new parameter
OverlapTestModeinSpatialQueryAabb/SpatialQuerySphere/SpatialQueryObb.- This mode determines the granularity at which overlap tests are performed.
- Default mode is
OverlapTestMode.PartBoundingBox, which uses old behavior. - The new mode,
OverlapTestMode.Primitivestests the volume against actual triangles/points of the mesh parts. - While the new mode is much more accurate when testing against actual model surfaces, the
PartBoundingBoxmode has its justification when the test should report hits when the test volume is completely inside a closed shape without touching the surface.
Sample Updates
- The near interaction in Showcase now makes use of the new
OverlapTestMode. This addresses Issue #124: Hand ray and pointer don't work when inside a 3D model in ShowCase. - Sample scripts: Conversions through the
Conversion.ps1script can now use Entra authentication if-UseConnectedStorageAccountis specified.