chore: set delete attached animator to true by default on MAMergeAnimator (#1092)

This commit is contained in:
bd_ 2024-09-03 15:26:52 -07:00 committed by GitHub
parent 466017c102
commit 22cff4ba3f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,6 +24,7 @@
#if MA_VRCSDK3_AVATARS
using System;
using UnityEngine;
using VRC.SDK3.Avatars.Components;
@ -51,6 +52,11 @@ namespace nadena.dev.modular_avatar.core
{
// no-op
}
private void Reset()
{
deleteAttachedAnimator = true;
}
}
}