AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
SourceStateEventData.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 using UnityEngine.EventSystems;
5 
6 namespace HoloToolkit.Unity.InputModule
7 {
12  {
13  public SourceStateEventData(EventSystem eventSystem) : base(eventSystem) { }
14 
15  public void Initialize(IInputSource inputSource, uint sourceId, object tag)
16  {
17  BaseInitialize(inputSource, sourceId, tag);
18  }
19  }
20 }
void Initialize(IInputSource inputSource, uint sourceId, object tag)
Interface for an input source. An input source can be anything that a user can use to interact with a...
Definition: IInputSource.cs:12
Describes an source state event that has a source id.