Aim offset yaw bug after following official UE4 tutorial

Hello,

I was following the aim offset tutorial below in UE4.15, the aim offset previews look perfect however when I finished setting up the blueprint logic in the tutorial I get violent snapping when I move my camera to the sides of my character. If I keep the interpolation 15 it gets worse…

Now I’ve gone through the tutorial multiple times looking for what I did wrong but I don’t see anything wrong. It feels like some functionality changes have caused this from the newest version of UE4.15 between when the tutorial was created.

Aim offset tutorial I followed - Creating an Aim Offset | Unreal Engine Documentation

Video of my problem (the blue text on the left is the value of my yaw variable) - UE4 Yaw Snapping problem from tutorial - YouTube

Copy of my project (112MB only has the bare minimum, I started from a fresh 3rd person template) -

Is anyone else able to replicate this problem or know whats wrong?

I downloaded the project and found your error. In the Animation event graph where you construct the rotator from Aim Yaw and Aim Pitch, you accidentally set your Yaw as Roll.

128131-fel.png

Looks good to me know. Cheers!

Wow, good catch, that Z for Yaw must of threw me off since I was used to X being Yaw. Thank you so much for finding that.

If you don’t mind, can you point me towards the direction on how I could lessen the jump for how the character looks the other direction?

Is it some type of interpolation when setting the new Yaw or Pitch?

The transition between looking left and looking right is very fast, I’d like to smooth it out.

Example - Rough Yaw Rotation Snapping - YouTube

The easiest to achieve that is to lower your interpolation speed. This would however cause your gun and character to trail after your crosshair. Which could give a more unique look to your game. It all boils down to your intended design. If not… I would go about having one interpolation speed for the common case, meaning just aiming, and one for when your Yaw transitions between the extremes (-90 to 90 etc). Best of luck (•ᴗ•)

Awesome! I really like the slower speed, it looks great. Thank you so much.