AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
IInputSourceInfoProvider.cs
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // Licensed under the MIT License. See LICENSE in the project root for license information.
3 
4 namespace HoloToolkit.Unity.InputModule
5 {
10  public interface IInputSourceInfoProvider
11  {
12  IInputSource InputSource { get; }
13  uint SourceId { get; }
14  }
15 }
IInputSourceInfoProvider gives you the input source like hands or motion controller. It will also report the source id for that source.
Interface for an input source. An input source can be anything that a user can use to interact with a...
Definition: IInputSource.cs:12