19 lines
375 B
C#
19 lines
375 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace NeoFPS.CharacterMotion
|
|||
|
{
|
|||
|
public class MotionGraphDataKeyAttribute : PropertyAttribute
|
|||
|
{
|
|||
|
public MotionGraphDataType dataType
|
|||
|
{
|
|||
|
get;
|
|||
|
private set;
|
|||
|
}
|
|||
|
|
|||
|
public MotionGraphDataKeyAttribute(MotionGraphDataType dataType)
|
|||
|
{
|
|||
|
this.dataType = dataType;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|