// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2024 Kybernetik // using System; namespace Animancer { /// [Editor-Conditional] /// Causes an Inspector field in an /// to be drawn after its events where the events would normally be drawn last. /// /// https://kybernetik.com.au/animancer/api/Animancer/DrawAfterEventsAttribute /// [AttributeUsage(AttributeTargets.Field)] [System.Diagnostics.Conditional(Strings.UnityEditor)] public sealed class DrawAfterEventsAttribute : Attribute { } }