LipSyncMapping.cs 385 B

12345678910111213
  1. using UnityEngine;
  2. namespace TriLibCore
  3. {
  4. /// <summary>Represents the Viseme to Blend-Shape Keys mapped indices. The indices are generated from the Lip Sync Mappers.</summary>
  5. public class LipSyncMapping : MonoBehaviour
  6. {
  7. /// <summary>
  8. /// Viseme to blend-targets mapped indices.
  9. /// </summary>
  10. public int[] VisemeToBlendTargets;
  11. }
  12. }