mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-04 13:45:04 +08:00
648c9a9608
* 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
11 lines
218 B
C#
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();
|
|
}
|
|
} |