LookAt は DefaultExpressionValidator.Validate よりあとで処理されて IsBinary の閾値が 0 であった

see DefaultExpressionValidator.Validate
var weight = expression.IsBinary ? Mathf.Round(inputWeights[key]) : inputWeights[key];
This commit is contained in:
ousttrue 2025-02-26 19:42:34 +09:00
parent 4a40f0015b
commit 0dc81ba7a1

View File

@ -63,7 +63,7 @@ namespace UniVRM10
if (clip.IsBinary)
{
value = value > 0 ? 1 : 0;
value = value > 0.5f ? 1 : 0;
}
m_morphTargetBindingMerger.AccumulateValue(key, value);