mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 15:27:59 +01:00
21 lines
361 B
C#
21 lines
361 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Fie.Voice
|
|
{
|
|
[Serializable]
|
|
public class FiePhonemeAnimationData
|
|
{
|
|
[SerializeField]
|
|
public Phoneme phoneme;
|
|
|
|
[SerializeField]
|
|
public string animationName;
|
|
|
|
public FiePhonemeAnimationData(Phoneme phoneme, string animationName)
|
|
{
|
|
this.phoneme = phoneme;
|
|
this.animationName = animationName;
|
|
}
|
|
}
|
|
}
|