Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
added guid references to all instanced types (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson authored Apr 28, 2020
1 parent 07af26c commit 45bd2dd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions Runtime/LuminPlatform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ namespace XRTK.Definitions.Platforms
/// <summary>
/// Used by the XRTK to signal that the feature is available on the Lumin platform.
/// </summary>
[System.Runtime.InteropServices.Guid("39EBB366-21A7-4D08-9412-036B32976D0C")]
public class LuminPlatform : BasePlatform
{
/// <inheritdoc />
Expand Down
1 change: 1 addition & 0 deletions Runtime/Providers/CameraSystem/LuminCameraDataProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

namespace XRTK.Lumin.Providers.CameraSystem
{
[System.Runtime.InteropServices.Guid("49E17DAC-C786-4B1A-A66A-54DA654923D5")]
public class LuminCameraDataProvider : BaseCameraDataProvider
{

Expand Down
4 changes: 3 additions & 1 deletion Runtime/Providers/Controllers/LuminController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@

namespace XRTK.Lumin.Providers.Controllers
{
[System.Runtime.InteropServices.Guid("6AC05D69-0E7A-4CFE-91E3-05BC0564458D")]
public class LuminController : BaseController
{
public LuminController() : base() { }
/// <inheritdoc />
public LuminController() { }

/// <inheritdoc />
public LuminController(IMixedRealityControllerDataProvider controllerDataProvider, TrackingState trackingState, Handedness controllerHandedness, MixedRealityControllerMappingProfile controllerMappingProfile)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

namespace XRTK.Lumin.Providers.Controllers
{
[System.Runtime.InteropServices.Guid("851006A2-0762-49AA-80A5-A01C9A8DBB58")]
public class LuminControllerDataProvider : BaseControllerDataProvider
{
/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

namespace XRTK.Lumin.Providers.Controllers
{
[System.Runtime.InteropServices.Guid("9511D571-2E24-41EF-AA7E-DF4432617DE1")]
public class LuminHandControllerDataProvider : BaseHandControllerDataProvider
{
/// <inheritdoc />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ namespace XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers
/// <summary>
/// Lumin Spatial Mesh Observer
/// </summary>
[System.Runtime.InteropServices.Guid("A1E7BFED-F290-43E3-84B6-01C740CC9614")]
public class LuminSpatialMeshObserver : BaseMixedRealitySpatialMeshObserver
{
/// <inheritdoc />
Expand Down

0 comments on commit 45bd2dd

Please sign in to comment.