WuhuIslandTesting/Library/PackageCache/com.unity.splines@1.0.1/Runtime/SplineDataHandleAttribute.cs
2025-01-07 02:06:59 +01:00

12 lines
No EOL
429 B
C#

using System;
using UnityEngine;
namespace UnityEngine.Splines
{
/// <summary>
/// SplineDataHandleAttribute can be use to add custom handles to <see cref="SplineData{T}"/>.
/// The custom drawer class must inherit from SplineDataHandle and override one of the Draw static method.
/// </summary>
[AttributeUsage(AttributeTargets.Field)]
public abstract class SplineDataHandleAttribute : Attribute {}
}