modular-avatar/Runtime/ArmatureAwase/IArmatureLock.cs
bd_ 648c9a9608
feat: improvements to armature tracking (#665)
* opti(armature-lock): parallelize burst jobs for armature lock processing

* feat: continue armature tracking when the MAMA GameObject is disabled

Closes: #500

* feat: add global toggle for armature locking

Closes: #484
2024-02-17 19:20:08 +09:00

11 lines
218 B
C#

using System;
namespace nadena.dev.modular_avatar.core.armature_lock
{
internal interface IArmatureLock : IDisposable
{
void Prepare();
LockResult Execute();
bool IsStable();
}
}