AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
UserPresenceManagerAdapter.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.Sharing
5 {
11  {
12  public event System.Action<User> UserPresenceChangedEvent;
13 
15 
16  public override void OnUserPresenceChanged(User user)
17  {
18  if (this.UserPresenceChangedEvent != null)
19  {
20  this.UserPresenceChangedEvent(user);
21  }
22  }
23  }
24 }
Allows users of UserPresenceManager to register to receive event callbacks without having their class...