Skip to content

Commit

Permalink
fix: crouch eye height from missing override
Browse files Browse the repository at this point in the history
  • Loading branch information
mastercoms committed Jun 6, 2019
1 parent 0ecd076 commit 9dc7f4c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Binary file modified Binaries/Win64/UE4Editor-PBCharacterMovement.dll
Binary file not shown.
Binary file modified Binaries/Win64/UE4Editor-PBCharacterMovement.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -149,5 +149,11 @@ class PBCHARACTERMOVEMENT_API APBPlayerCharacter : public ACharacter
UFUNCTION()
void LookUp(bool bIsPure, float Rate);

/** Change camera height */
void RecalculateBaseEyeHeight() override
{
Super::Super::RecalculateBaseEyeHeight();
}

bool CanCrouch() override;
};

0 comments on commit 9dc7f4c

Please sign in to comment.