Hi all,
I was wondering if it’s possible to turn off jump capabilities for a character through blueprints.
Setting the jump velocity to 0 does not work, as although the player may not leave the ground, there is this weird stutter with the character. I’d rather turn this off completely through blueprints if possible.
Hi Mate,
Go in to character and unhook the jump section. If you want to turn on and off at will, you could use a bool and branches.


Narg
1 Like
The charactermovement component also has an ‘canJump’ variable. Is there any way to turn that off?
If not then this will do.
As far as I know, those variables are inherited and you can’t delete them unless you get in Engine Source code and delete from there.
If you just want to do it BP, what Mr Narghile says is more than enough. 
For some reason this variable isn’t editable through blueprint so you’ll have to just make a seemingly redundant variable in this case. It’s not a big deal in the long run but as far as I can tell that variable doesn’t have a “set” function through blueprint.