This commit is contained in:
SDraw 2022-10-22 12:07:50 +03:00
parent 0a298b853b
commit 6ba4502319
No known key found for this signature in database
GPG key ID: BB95B4DAB2BB8BB5

View file

@ -188,10 +188,10 @@ namespace ml_amt
switch(l_param.m_sync)
{
case ParameterSyncType.Local:
PlayerSetup.Instance._animator.SetBool(l_param.m_hash, m_grounded);
PlayerSetup.Instance._animator.SetBool(l_param.m_hash, m_groundedRaw);
break;
case ParameterSyncType.Synced:
PlayerSetup.Instance.animatorManager.SetAnimatorParameterBool(l_param.m_name, m_grounded);
PlayerSetup.Instance.animatorManager.SetAnimatorParameterBool(l_param.m_name, m_groundedRaw);
break;
}
}