mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-04-04 19:49:02 +08:00
fix: NRE when AnimatorControllerLayer.stateMachine
is null
Closes: #1056
This commit is contained in:
parent
1024f626e8
commit
c4b3036e50
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user