Camera Shake

I’m not sure if this is the right section to post this in.
I’m trying to get this kind of walking effect shown in this video https://youtu.be/bXlTET9FXVw?t=1m8s

Any help regarding this would be extremely helpfull :slight_smile:

This might help you out.

I haven’t used that method in terms of just walking camera shake, but if that doesn’t work you could make a blueprint to offset your camera rotation/position from it’s ‘root’.
I’ve made stuff like this in unity from scratch, but not in UE4, it’s not too hard, it does take some tweaking though. Basically you pick a sequence of vectors to loop through that act as offsets to the main position of the camera and then you lerp between them as your character is walking in the update/tick loop.

Or I guess you could also just parent your camera to a joint in an animation and just animate the motion you want, I’ve never tried that before though.