Skip to content

Commit ad06f29

Browse files
authored
Merge pull request #195 from RantiMess/master
Parameter name consistency fix
2 parents 5050ef2 + 4a09361 commit ad06f29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

VRCFaceTracking.Core/Params/Expressions/UnifiedExpressionsParameters.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,12 +235,12 @@ private static (string paramName, Parameter paramLiteral)[] IsEyeParameter(IPara
235235

236236
// Compacted paramamters
237237

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

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

246246
#region Lip Corners Combined

0 commit comments

Comments
 (0)