Skip to content

Commit

Permalink
Fix mixer ui logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Sauceke committed Oct 25, 2023
1 parent 82962dd commit ae2e5b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KK_SexFaces/SexFacesGui.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private void ApplyExpression(int ptn1, int ptn2, float ratio, float openness,
{
var dict = new Dictionary<int, float>();
dict[ptn1] = 1f - ratio;
dict[ptn2] = ratio;
dict[ptn2] = ptn1 == ptn2 ? 1f : ratio;
apply(dict, openness);
}

Expand Down

0 comments on commit ae2e5b6

Please sign in to comment.