lot's of fixes, fixed animation retargetting, fixed FSM

This commit is contained in:
2025-07-24 17:19:42 +02:00
parent 802eb5ac1d
commit d4d01dfb69
27 changed files with 4381 additions and 2990 deletions

View File

@@ -904,6 +904,10 @@ namespace Invector.vCharacterController.AI
//_rigidbody.velocity = Vector3.zero;
_rigidbody.position = animator.rootPosition;
if (lockRotation)
{
_rigidbody.rotation = animator.rootRotation;
}
else
{
transform.rotation = animator.rootRotation;
}