We've moved!

Starting from MRTK 2.6, we are publishing both conceptual docs and API references on docs.microsoft.com. For conceptual docs, please visit our new landing page. For API references, please visit the MRTK-Unity section of the dot net API explorer. Existing content will remain here but will not be updated further.

    Show / Hide Table of Contents

    Interface IMixedRealityTeleportHandler

    Interface to implement for teleport events.

    Namespace: Microsoft.MixedReality.Toolkit.Teleport
    Assembly: cs.temp.dll.dll
    Syntax
    public interface IMixedRealityTeleportHandler : IEventSystemHandler

    Methods

    OnTeleportCanceled(TeleportEventData)

    Raised when a teleport request has been canceled.

    Declaration
    void OnTeleportCanceled(TeleportEventData eventData)
    Parameters
    Type Name Description
    TeleportEventData eventData

    OnTeleportCompleted(TeleportEventData)

    Raised when a teleport has successfully completed.

    Declaration
    void OnTeleportCompleted(TeleportEventData eventData)
    Parameters
    Type Name Description
    TeleportEventData eventData

    OnTeleportRequest(TeleportEventData)

    Raised when a pointer requests a teleport target, but no teleport has begun.

    Declaration
    void OnTeleportRequest(TeleportEventData eventData)
    Parameters
    Type Name Description
    TeleportEventData eventData

    OnTeleportStarted(TeleportEventData)

    Raised when a teleport has started.

    Declaration
    void OnTeleportStarted(TeleportEventData eventData)
    Parameters
    Type Name Description
    TeleportEventData eventData
    Back to top Generated by DocFX