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

21 lines
359 B
C#

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;
}
}
}