How to override ACharacter CanJump()?

Hi! I’m trying to override the CanJump() function in C++ in order to add double jump but nothing seems to work.

The function header “bool CanJump();” doesn’t work, adding “override” gives the error that it doesn’t exist in the base class, which I don’t think is true. And I saw an old forum post from 2014 that suggested you have to use “CanJumpInternal_Implementation()” but that’s likely outdated and didn’t work.

Would love some help with this! I’m just working off of the default third person project. Thank you!

You can just set the Jump Max Count to 2 on your character

Thank you so much!

Also how was I supposed to know that? I feel like there’s no good source of documentation for things like this