FiE-Game/Assets/Scripts/Fie/Voice/FieEmotionAnimationData.cs

22 lines
359 B
C#
Raw Normal View History

2018-11-20 20:10:49 +01:00
using System;
using UnityEngine;
namespace Fie.Voice
{
[Serializable]
public class FieEmotionAnimationData
{
[SerializeField]
public string emotion;
[SerializeField]
public string animationName;
public FieEmotionAnimationData(string emotion, string animationName)
{
this.emotion = emotion;
this.animationName = animationName;
}
}
}