mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-07-06 20:24:08 -05:00
Merge pull request #2130 from Santarh/expressionBreaking
[API Behaviour Breaking Change] Don't change raw blendshapes immediately when calling `Vrm10RuntimeExpression.SetWeights()`
This commit is contained in:
commit
b74f28a4e1
|
|
@ -98,7 +98,6 @@ namespace UniVRM10
|
|||
_inputWeights[expressionKey] = weight;
|
||||
}
|
||||
}
|
||||
Apply();
|
||||
}
|
||||
|
||||
public void SetWeightsNonAlloc(Dictionary<ExpressionKey, float> weights)
|
||||
|
|
@ -110,7 +109,6 @@ namespace UniVRM10
|
|||
_inputWeights[expressionKey] = weight;
|
||||
}
|
||||
}
|
||||
Apply();
|
||||
}
|
||||
|
||||
public void SetWeight(ExpressionKey expressionKey, float weight)
|
||||
|
|
@ -119,7 +117,6 @@ namespace UniVRM10
|
|||
{
|
||||
_inputWeights[expressionKey] = weight;
|
||||
}
|
||||
Apply();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user