fix: NRE when AnimatorControllerLayer.stateMachine is null

Closes: #1056
This commit is contained in:
bd_ 2024-10-12 17:13:35 -07:00
parent 1024f626e8
commit c4b3036e50

View File

@ -573,6 +573,8 @@ namespace nadena.dev.modular_avatar.animation
private AnimatorStateMachine mapStateMachine(string basePath, AnimatorStateMachine layerStateMachine)
{
if (layerStateMachine == null) return null;
var cacheKey = new KeyValuePair<string, AnimatorStateMachine>(basePath, layerStateMachine);
if (_stateMachines.TryGetValue(cacheKey, out var asm))