Skip to content

v1.46.0

Compare
Choose a tag to compare
@ExtendReality-Bot ExtendReality-Bot released this 14 Feb 12:50
· 123 commits to master since this release

1.46.0 (2022-02-14)

Features

  • Collision: add (un)changed list events to slicer (0009a4f)

    The Slicer component now has some additional events that are raised when the Sliced and Remaining lists change or stay unchanged when a slice operation is called.

  • Data: add missing data transformation types (0293373)

    A number of new data transformations have been added to fill the gaps where they were missing but existed for other similar data types or the data type had a certain transformation operation but was lacking in another (e.g. had an adder but no subtractor).

Bug Fixes

  • Collision: prevent Transform creation every call (659dee7)

    There was a new Transform object being created every call which could have caused issues with garbage collection. The transform is now just a reused reference which shouldn't need to create a new object every call.

  • Tracking: add time limit to rigidbody velocity tests (c8141a3)

    The RigidbodyVelocityTest can occasionally fail in the diverge tests as it's relying on the physics engine to work perfectly under test conditions and it causes the test to hang indefinitely. This has been fixed by simply adding a counter that will cause the while loop to end if the timer exceeds the limit.