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

10 lines
306 B
C#
Raw Normal View History

2024-06-03 18:26:03 +00:00
using UnityEngine;
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedAnimationCurve : SharedVariable<AnimationCurve>
{
public static implicit operator SharedAnimationCurve(AnimationCurve value) { return new SharedAnimationCurve { mValue = value }; }
}
}