mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-12-02 17:57:59 +01:00
22 lines
361 B
C#
22 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;
|
||
|
}
|
||
|
}
|
||
|
}
|