Skip to content

Commit

Permalink
Small bugfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
emilianavt committed Mar 22, 2020
1 parent 14b4bd9 commit 381d3b6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Examples/OpenSeeVRMDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,9 @@ void ApplyMouthShape() {
float t = Mathf.Clamp((float)mouthInterpolationCount / openSeeIKTarget.averageInterpolations, 0f, 0.985f);
mouthInterpolationCount++;

if (currentExpression != null && !currentExpression.enableVisemes)
return;

float expressionFactor = 1f;
if (currentExpression != null)
expressionFactor = currentExpression.visemeFactor;
Expand Down

0 comments on commit 381d3b6

Please sign in to comment.