This repository has been archived by the owner on Aug 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed teleport component * updated examples submodule * updated examples checkout * renamed IMixedRealityTeleportComponentHandler -> IMixedRealityTeleportProvider * updated examples * fixed unit tests
- Loading branch information
1 parent
99e939b
commit b706686
Showing
8 changed files
with
106 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Copyright (c) XRTK. All rights reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
using UnityEngine; | ||
using XRTK.EventDatum.Teleport; | ||
using XRTK.Interfaces.TeleportSystem.Handlers; | ||
|
||
public class TestTeleportProvider : MonoBehaviour, IMixedRealityTeleportProvider | ||
{ | ||
#region Implementation of IMixedRealityTeleportHandler | ||
|
||
/// <inheritdoc /> | ||
public void OnTeleportRequest(TeleportEventData eventData) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
/// <inheritdoc /> | ||
public void OnTeleportStarted(TeleportEventData eventData) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
/// <inheritdoc /> | ||
public void OnTeleportCompleted(TeleportEventData eventData) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
/// <inheritdoc /> | ||
public void OnTeleportCanceled(TeleportEventData eventData) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
|
||
#endregion | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters