fix: shape changer preview overrides default blendshape values inappropriately

Closes: #1227
This commit is contained in:
bd_ 2024-10-02 19:40:54 -07:00
parent a71af7ae0a
commit e27e04f34c

View File

@ -101,6 +101,7 @@ namespace nadena.dev.modular_avatar.core.editor
var activeRule = prop.actionGroups.LastOrDefault(rule => rule.InitiallyActive);
if (activeRule == null || activeRule.Value is not float value) continue;
if (activeRule.ControllingObject == null) continue; // default value is being inherited
value = Math.Clamp(value, 0, 100);