ProjectDDD/Assets/Behavior Designer/Runtime/Variables/SharedAnimationCurve.cs

10 lines
306 B (Stored with Git LFS)
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 }; }
}
}