Skip to content

Commit

Permalink
Merge pull request #195 from RantiMess/master
Browse files Browse the repository at this point in the history
Parameter name consistency fix
  • Loading branch information
benaclejames authored Feb 16, 2024
2 parents 5050ef2 + 4a09361 commit ad06f29
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,12 +235,12 @@ private static (string paramName, Parameter paramLiteral)[] IsEyeParameter(IPara

// Compacted paramamters

new EParam("v2/MouthTightenStretch", exp =>
new EParam("v2/MouthTightenerStretch", exp =>
(exp.Shapes[(int)UnifiedExpressions.MouthTightenerRight].Weight + exp.Shapes[(int)UnifiedExpressions.MouthTightenerLeft].Weight) / 2.0f -
(exp.Shapes[(int)UnifiedExpressions.MouthStretchRight].Weight + exp.Shapes[(int)UnifiedExpressions.MouthStretchLeft].Weight) / 2.0f),

new EParam("v2/MouthTightenStretchLeft", exp => exp.Shapes[(int)UnifiedExpressions.MouthTightenerLeft].Weight - exp.Shapes[(int)UnifiedExpressions.MouthStretchLeft].Weight),
new EParam("v2/MouthTightenStretchRight", exp => exp.Shapes[(int)UnifiedExpressions.MouthTightenerRight].Weight - exp.Shapes[(int)UnifiedExpressions.MouthStretchRight].Weight),
new EParam("v2/MouthTightenerStretchLeft", exp => exp.Shapes[(int)UnifiedExpressions.MouthTightenerLeft].Weight - exp.Shapes[(int)UnifiedExpressions.MouthStretchLeft].Weight),
new EParam("v2/MouthTightenerStretchRight", exp => exp.Shapes[(int)UnifiedExpressions.MouthTightenerRight].Weight - exp.Shapes[(int)UnifiedExpressions.MouthStretchRight].Weight),
#endregion

#region Lip Corners Combined
Expand Down

0 comments on commit ad06f29

Please sign in to comment.