EditorTool3D/Assets/TriLib/TriLibCore/Scripts/LipSyncMapping.cs

13 lines
385 B
C#
Raw Normal View History

2024-12-17 23:11:00 +08:00
using UnityEngine;
namespace TriLibCore
{
/// <summary>Represents the Viseme to Blend-Shape Keys mapped indices. The indices are generated from the Lip Sync Mappers.</summary>
public class LipSyncMapping : MonoBehaviour
{
/// <summary>
/// Viseme to blend-targets mapped indices.
/// </summary>
public int[] VisemeToBlendTargets;
}
}