Skip to content

Releases: ExtendRealityLtd/Tilia.Interactions.Interactables.Unity

v2.17.1

11 May 14:14
Compare
Choose a tag to compare

2.17.1 (2024-05-11)

Miscellaneous Chores

v2.17.0

11 May 13:00
Compare
Choose a tag to compare

2.17.0 (2024-05-11)

Features

  • Facade: control rigidbody kinematic state from IsVisible (e89ba29)

    The IsVisible property also now controls the rigidbody kinematic state otherwise an invisible object will just fall through all other colliders in the scene.

    A helper component of InteractableVisibilityStatusTag has also been added to the top level of the Interactable prefab that is enabled when the Interactable is visible and disabled when the Interactable is hidden.

    This can be used in rules to ignore hidden Interactables if needed.

Bug Fixes

  • Editor: disable custom inspector if ignore custom editor is set (59bd286)

    If the ZINNIA_IGNORE_CUSTOM_INSPECTOR_EDITOR ifdef is set then the custom editor must also be disabled otherwise an error will occur.

v2.16.7

17 Apr 16:02
Compare
Choose a tag to compare

2.16.7 (2024-04-17)

Miscellaneous Chores

v2.16.6

10 Jul 12:48
Compare
Choose a tag to compare

2.16.6 (2023-07-10)

Miscellaneous Chores

v2.16.5

08 Jul 14:53
Compare
Choose a tag to compare

2.16.5 (2023-07-08)

Miscellaneous Chores

v2.16.4

05 Jul 14:34
Compare
Choose a tag to compare

2.16.4 (2023-07-05)

Miscellaneous Chores

v2.16.3

06 Jun 11:37
Compare
Choose a tag to compare

2.16.3 (2023-06-06)

Bug Fixes

  • Grab: prevent infinite loop in grab drop restrictor (87450b5)

    When calling DoEnableDrop it would go into an infinite loop as the main method was being called rather than the sub method.

v2.16.2

06 May 10:44
Compare
Choose a tag to compare

2.16.2 (2023-05-06)

Bug Fixes

  • Interactors: prevent grab on disabled game object (7023269)

    The Grab method on the GrabInteractorConfigurator was able to be run even when the GameObject was disabled, which is not in keeping with Zinnia patterns. This has now been fixed.

v2.16.1

06 May 09:32
Compare
Choose a tag to compare

2.16.1 (2023-05-06)

Miscellaneous Chores

v2.16.0

02 May 11:33
Compare
Choose a tag to compare

2.16.0 (2023-05-02)

Features

  • Editor: add restriction options for scale action (a983813)

    The Scale action now has restrictions for scale axis and min/max scale values which are now present on the custom inspector window.

Bug Fixes

  • Interactables: ensure reference properties are public (86f092a)

    There is no point in having reference properties as protected as this just makes it harder to set these elements via code and they should be available to do so.