Adding more to the Custom MovementMode

How do I create a new MovementMode? I know that the charactermovement has Falling, Flying, Walking, Swimming, Custom. How do I add more to this?

Thanks.

You can’t really override it, you would need to create your own enum and use MOVE_Custom in which your enum will be extension to it which you keep in some variable

And how can I do that with BP?

Right click “My Blueprint” and then “Create Enum Asset” and there oyu go your own enum :slight_smile: now use MOVE_Custom as indication to use your enum which as more states

Thank you .