Better T-posed bind hierarchy

Fingers rotation limits
Update README.md
This commit is contained in:
SDraw 2024-03-30 16:12:32 +00:00 committed by SDraw
parent 55d7aa465a
commit 5bec2fcdb1
No known key found for this signature in database
GPG key ID: BB95B4DAB2BB8BB5
7 changed files with 36 additions and 7 deletions

View file

@ -125,12 +125,12 @@ namespace ml_bft
}
}
static void OnIKSystemLateUpdate_Postfix(HumanPoseHandler ____humanPoseHandler) => ms_instance?.OnIKSystemLateUpdate(____humanPoseHandler);
void OnIKSystemLateUpdate(HumanPoseHandler p_handler)
static void OnIKSystemLateUpdate_Postfix(HumanPoseHandler ____humanPoseHandler, Transform ____hipTransform) => ms_instance?.OnIKSystemLateUpdate(____humanPoseHandler, ____hipTransform);
void OnIKSystemLateUpdate(HumanPoseHandler p_handler, Transform p_hips)
{
try
{
m_fingerSystem?.OnIKSystemLateUpdate(p_handler);
m_fingerSystem?.OnIKSystemLateUpdate(p_handler, p_hips);
}
catch(Exception e)
{