ProjectDDD/Assets/External/Behavior Designer/Runtime/Variables/SharedAnimationCurve.cs
2025-07-08 19:46:31 +09:00

10 lines
306 B
C#

using UnityEngine;
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedAnimationCurve : SharedVariable<AnimationCurve>
{
public static implicit operator SharedAnimationCurve(AnimationCurve value) { return new SharedAnimationCurve { mValue = value }; }
}
}