// Copyright (c) 2012-2020 Wojciech Figat. All rights reserved. using System; namespace FlaxEngine { /// /// Overrides default editor provided for the target object/class/field/property. Allows to extend visuals and editing experience of the objects. /// /// /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Struct | AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Delegate | AttributeTargets.Event | AttributeTargets.Method)] public sealed class CustomEditorAliasAttribute : Attribute { /// /// Custom editor class typename. /// public readonly string TypeName; /// /// Overrides default editor provided for the target object. /// /// The custom editor class typename. public CustomEditorAliasAttribute(string typeName) { TypeName = typeName; } } }