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.
* Implement BoundaryVisibility * updated submodules updated packages Co-authored-by: Stephen Hodgson <hodgson.designs@gmail.com>
- Loading branch information
1 parent
68fb935
commit b875074
Showing
5 changed files
with
48 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright (c) XRTK. All rights reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
namespace XRTK.Definitions.BoundarySystem | ||
{ | ||
/// <summary> | ||
/// Defines available visibility state for platform boundaries used by the | ||
/// <see cref="Interfaces.BoundarySystem.IMixedRealityBoundarySystem"/>. | ||
/// </summary> | ||
public enum BoundaryVisibility | ||
{ | ||
/// <summary> | ||
/// The boundaries visibility status is unknown. Platform boundaries visibility | ||
/// may be unknown e.g. when the platform does not provide an API for XRTK to query | ||
/// boundary visibility state. | ||
/// </summary> | ||
Unknown = 0, | ||
/// <summary> | ||
/// The boundaries are hidden. | ||
/// </summary> | ||
Hidden, | ||
/// <summary> | ||
/// The boundaries are visible. | ||
/// </summary> | ||
Visible | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Runtime/Definitions/BoundarySystem/BoundaryVisibility.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
14 changes: 8 additions & 6 deletions
14
Runtime/Interfaces/BoundarySystem/IMixedRealityBoundaryDataProvider.cs
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