AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
CollectionNode.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;
5 
6 namespace HoloToolkit.Unity.Collections
7 {
11  [System.Serializable]
12  public class CollectionNode
13  {
14  public string Name;
15  public Vector2 Offset;
16  public float Radius;
18  }
19 }
20 
Collection node is a data storage class for individual data about an object in the collection...