How can I make a first person movement system similar to COD WW2?

Hello!

I recently played Call of Duty WWII/Wolfenstein and was wondering if someone knew a way to get similar results using the Unreal Engine 4.19. To be more specific, the movements that I want to achieve are:


  • Run
  • Walk
  • Jump
  • Jump-prone
  • Peak (can peak left/right/up)
  • Slide

If possible I need them to be un blueprints instead of C++, I just need to get these working for a school project (Just a High School project), I want to do a simulator and really just need the movement system which is the part that I have less knowledge about.

the basic movements (run, walk, jump) are pretty simple and you can learn how to implement some of that Here. the others are much more complex and are something that you would either need to figure out or but an asset pack for. try checking out mixamo though as they may have a slide and prone animation there. otherwise for the jump to prone the only thing i can think of would be to ragdoll but that may not look right. as for the peak that seems even more complex and isnt something ive tried before.