• Remove a listener for when an XR session ends

    Parameters

    • fn: (evt: XRSessionEventArgs) => void

      The function to remove from the listeners

    Returns void

    const myFunction = (evt) => {
    console.log("XR session ended", evt);
    };
    onXRSessionEnd(myFunction);
    offXRSessionEnd(myFunction);