AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
DrawLastAttribute.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  // Class used to send members to bottom of drawing queue
12  [AttributeUsage(AttributeTargets.Field)]
13  public sealed class DrawLastAttribute : Attribute { }
14 }