Updates Crouching animations for ABP

This commit is contained in:
LongLy 2024-11-14 15:47:23 -07:00
parent 740a8f0fd8
commit fc4d09e3b1
7 changed files with 1092 additions and 823 deletions

File diff suppressed because it is too large Load Diff

View File

@ -277,7 +277,7 @@ bool UOLSLocomotionComponent::CanJog() const
return false;
}
const bool isCrouching = (GetStance() == EOLSStance::ECrouching);
const bool isCrouching = (GetStance() == EOLSStance::EStanding);
const bool canJog = (MovementInputAmount > .8f && isCrouching);
return canJog;
}