Ejemplo n.º 1
0
 public void TurnDown(string clipName, float duration) => TurnDown(BlendShapeKeyCache.Get(clipName), duration);
Ejemplo n.º 2
0
 public void TurnDown(BlendShapePreset clipPreset, float duration) => TurnDown(BlendShapeKeyCache.Get(clipPreset), duration);
Ejemplo n.º 3
0
 public void Append(BlendShapePreset clipPreset, Transition <float> transition) => Append(BlendShapeKeyCache.Get(clipPreset), transition);
Ejemplo n.º 4
0
 public void Append(string clipName, Transition <float> transition) => Append(BlendShapeKeyCache.Get(clipName), transition);
Ejemplo n.º 5
0
 public bool IsAnimating(BlendShapePreset clipPreset) => IsAnimating(BlendShapeKeyCache.Get(clipPreset));
Ejemplo n.º 6
0
 public bool IsAnimating(string clipName) => IsAnimating(BlendShapeKeyCache.Get(clipName));
Ejemplo n.º 7
0
 public void Invoke(string clipName) => Invoke(BlendShapeKeyCache.Get(clipName));