AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
FeatureInProgressAttribute.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 System;
5 #if UNITY_EDITOR
6 using UnityEditor;
7 #endif
8 
9 namespace HoloToolkit.Unity
10 {
11  // Marks a field as 'not implemented' in editor without hiding it
12  // Used for features that are in-progress but not fully completed
13  [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
14  public sealed class FeatureInProgressAttribute : Attribute
15  {
17  }
18 }