Newer
Older
HoloAnatomy / Assets / HoloToolkit / Utilities / Scripts / Attributes / DrawLastAttribute.cs
SURFACEBOOK2\jackwynne on 25 May 2018 407 bytes v1
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System;
#if UNITY_EDITOR
using UnityEditor;
#endif

namespace HoloToolkit.Unity
{
    // Class used to send members to bottom of drawing queue
    [AttributeUsage(AttributeTargets.Field)]
    public sealed class DrawLastAttribute : Attribute { }
}