Files
GameDevTVObstacleDodge/Library/PackageCache/com.unity.splines@1cb7d86fc7ff/Runtime/SplineDataHandleAttribute.cs

13 lines
543 B
C#
Raw Normal View History

2026-01-08 16:50:20 +00:00
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>
[Obsolete("Use SplineDataHandles.DataPointHandles instead and EditorTools to interact with SplineData.", false)]
[AttributeUsage(AttributeTargets.Field)]
public abstract class SplineDataHandleAttribute : Attribute {}
}