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