mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 06:17:58 +01:00
22 lines
359 B
C#
22 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;
|
||
|
}
|
||
|
}
|
||
|
}
|