Releases: ExtendRealityLtd/VRTK.Prefabs
v1.1.11
1.1.11 (2020-04-03)
Miscellaneous Chores
- deps: bump io.extendreality.zinnia.unity from 1.14.0 to 1.14.1 (ea8d759)
Bumps io.extendreality.zinnia.unity from 1.14.0 to 1.14.1. - Release notes - Changelog - Commits
Signed-off-by: dependabot-preview[bot] [email protected]
v1.1.10
1.1.10 (2020-03-05)
Miscellaneous Chores
- deps: bump io.extendreality.zinnia.unity from 1.12.0 to 1.14.0 (d977447)
Bumps io.extendreality.zinnia.unity from 1.12.0 to 1.14.0. - Release notes - Changelog - Commits
Signed-off-by: dependabot-preview[bot] [email protected]
v1.1.9
1.1.9 (2020-02-24)
Miscellaneous Chores
- deps: bump io.extendreality.zinnia.unity from 1.11.0 to 1.12.0 (4b43084)
Bumps io.extendreality.zinnia.unity from 1.11.0 to 1.12.0. - Release notes - Changelog - Commits
Signed-off-by: dependabot-preview[bot] [email protected]
v1.1.8
1.1.8 (2020-01-02)
Miscellaneous Chores
- deps: bump io.extendreality.zinnia.unity from 1.9.0 to 1.11.0 (2bfd787)
Bumps io.extendreality.zinnia.unity from 1.9.0 to 1.11.0. - Release notes - Changelog - Commits
Signed-off-by: dependabot-preview[bot] [email protected]
v1.1.7
1.1.7 (2019-12-02)
Miscellaneous Chores
- deps: bump io.extendreality.zinnia.unity from 1.8.1 to 1.9.0 (65ac9aa)
Bumps io.extendreality.zinnia.unity from 1.8.1 to 1.9.0. - Release notes - Changelog - Commits
Signed-off-by: dependabot-preview[bot] [email protected]
v1.1.6
1.1.6 (2019-11-27)
Miscellaneous Chores
- deps: bump io.extendreality.zinnia.unity from 1.8.0 to 1.8.1 (b9ac89a)
Bumps io.extendreality.zinnia.unity from 1.8.0 to 1.8.1. - Release notes - Changelog - Commits
Signed-off-by: dependabot-preview[bot] [email protected]
v1.1.5
1.1.5 (2019-11-10)
Miscellaneous Chores
- deps: bump io.extendreality.zinnia.unity from 1.7.0 to 1.8.0 (8cc9f18)
Bumps io.extendreality.zinnia.unity from 1.7.0 to 1.8.0. - Release notes - Changelog - Commits
Signed-off-by: dependabot-preview[bot] [email protected]
v1.1.4
1.1.4 (2019-11-05)
Miscellaneous Chores
- deps: bump io.extendreality.zinnia.unity from 1.6.0 to 1.7.0 (a949a82)
Bumps io.extendreality.zinnia.unity from 1.6.0 to 1.7.0. - Release notes - Changelog - Commits
Signed-off-by: dependabot-preview[bot] [email protected]
v1.1.3
1.1.3 (2019-10-29)
Miscellaneous Chores
- deps: bump io.extendreality.zinnia.unity from 1.1.0 to 1.6.0 (72fb06c)
Bumps io.extendreality.zinnia.unity from 1.1.0 to 1.6.0. - Release notes - Changelog - Commits
Signed-off-by: dependabot-preview[bot] [email protected]
v1.1.2
1.1.2 (2019-10-29)
Bug Fixes
- Locomotion: disable snap to floor during teleport action (7193f18)
There was an issue where the Snap To Floor logic would run every update frame utilizing the HMD as the origin of the surface location cast, but when the PlayArea was teleported, the HMD position would not be updated until the next frame due to the underlying SDK positional update needing a frame and then for the headset alias needing to catch up.
This caused the Snap To Floor calculation to use the previous headset position as the origin to look for the nearest floor because the Headset alias was still at the old position at that point in the moment process.
The fix is to utilize the new EventProcess and when the Teleporting event is emitted to disable the SnapToFloor and the SurfaceLocator within the SnapToFloor so no floor snapping can occur whilst the teleport is in progress. Then upon the Teleported event being emitted to just turn on the SnapToFloor process but to leave the SurfaceLocator still disabled. This means the SnapToFloor MomentProcessor will do a complete run of all the moments to process and the last moment is now set to emit an event which turns on the SurfaceLocator so it is available the next time the moment processor runs.