Tags: #UnrealEngine #CPlusPlus #NavMesh #GameDev #AI

Pawns can avoid other pawns in the path-finding. Just set bUseRVOAvoidance to true

Example:

auto movementComponent = Cast<UCharacterMovementComponent>(viewer->GetMovementComponent());
movementComponent->bUseRVOAvoidance = true;

Next - Previous