10 lines
306 B
C#
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 }; }
|
|
}
|
|
} |