I have followed a basic tutorial about teleporting and it was working well: I was able to use the left thumbstick to define the new target & orientation of the avatar teleportation. However, after updating the Oculus Integration for Unity to the latest version (v12), it stopped working.
This is the structure of my LocalPlayerController prefab:
and this was the previous (working) configuration of the LocomotionController object:
after the update, I noticed that 2 scripts changed: LocomotionController.cs and TeleportInputHandlerAvatarTouch.cs:
LocomotionController.cs
if we analyse this script more in detail we can notice that two fields (`CharacterController` and `PlayerController`) have changed type.
I was used to set those fields simply by dragging the `LocalPlayerController` prefab into the unity editor fields, but now it's not possible. Not sure where should I pick that `CapsuleCollider` and `SimpleCapsuleWithStickMovement`. If I touch the left thumbstick my player moves around, which is not the intended behaviour and I don't know how to change it.
TeleportInputHandlerAvatarTouch.cs
This script just add two new fields were added (I guess for the new hand tracking system) but I don't think it's creating problems with the current configuration.
I'm completely stuck and not sure how to proceed from here. No other scripts seem to have been updated with the last upgrade and all my researches were unsuccessful.
Update
After reading this post I have tried to add the two components (CapsuleCollider and SimpleCapsuleWithStickMovements) to LocalPlayerController, reference them in the LocomotionController script, then disabling them as suggested: the teleport ray now appears but it seems not working. For some reason, the left thumbstick makes me move around while the right thumbstick makes me turn quickly, both behaviours which don't seem specified anywhere in the other script. Clearly there is some collision between the scripts. To be honest I'm surprised by the poor quality of the edits in the upgrade. The source code was just disabled without any comments or indications