mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-04-04 19:49:02 +08:00
fix: transient NRE when opening reaction debugger
This commit is contained in:
parent
3ba0219430
commit
46d0052d4c
@ -128,7 +128,7 @@ namespace nadena.dev.modular_avatar.core.editor
|
||||
foreach (var cond in rule.ControllingConditions)
|
||||
{
|
||||
var paramName = cond.Parameter;
|
||||
if (ForcePropertyOverrides.TryGetValue(paramName, out var value))
|
||||
if (ForcePropertyOverrides?.TryGetValue(paramName, out var value) == true)
|
||||
{
|
||||
cond.InitialValue = value;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user