This commit is contained in:
CortexCore
2024-11-03 16:42:23 +08:00
commit b125894cc3
5904 changed files with 1070129 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
// Animancer // https://kybernetik.com.au/animancer // Copyright 2018-2023 Kybernetik //
using System;
namespace Animancer
{
/// <summary>[Editor-Conditional]
/// Causes an Inspector field in an <see cref="ITransition"/> to be drawn after its events where the events would
/// normally be drawn last.
/// </summary>
/// https://kybernetik.com.au/animancer/api/Animancer/DrawAfterEventsAttribute
///
[AttributeUsage(AttributeTargets.Field)]
[System.Diagnostics.Conditional(Strings.UnityEditor)]
public sealed class DrawAfterEventsAttribute : Attribute { }
}