NLDClient-yudde/ProjectNLD/Assets/ThirdParty/Behavior Designer/Runtime/Variables/SharedAnimationCurve.cs

10 lines
315 B
C#
Executable File

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