Skip to content

Release 1.2.32

Latest
Compare
Choose a tag to compare
@FlorianBorn71 FlorianBorn71 released this 26 Jul 15:06

Important Service Updates

  • SDK updated to version 1.2.32

API Changes

  • All spatial query methods now take a new parameter OverlapTestMode in SpatialQueryAabb/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.Primitives tests 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 PartBoundingBox mode 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