mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-04-20 22:17:41 -05:00
fix procedural expression weights
This commit is contained in:
parent
d42c235eee
commit
692ccfee49
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user