mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-08-20 09:34:42 -05:00
fix procedural expression weights
This commit is contained in:
@@ -69,15 +69,15 @@ namespace UniVRM10
|
||||
{
|
||||
if (key.IsBlink)
|
||||
{
|
||||
actualWeights[key] = inputWeights[key] * blinkMultiplier;
|
||||
actualWeights[key] = actualWeights[key] * blinkMultiplier;
|
||||
}
|
||||
else if (key.IsLookAt)
|
||||
{
|
||||
actualWeights[key] = inputWeights[key] * lookAtMultiplier;
|
||||
actualWeights[key] = actualWeights[key] * lookAtMultiplier;
|
||||
}
|
||||
else if (key.IsMouth)
|
||||
{
|
||||
actualWeights[key] = inputWeights[key] * mouthMultiplier;
|
||||
actualWeights[key] = actualWeights[key] * mouthMultiplier;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user