Equip-Unequip Weapon Animations

Hello everyone.

I have a problem with my Equip and Unequip animations. Equipping Montage works just fine (it changes Weapon position and plays the animation) but the Unequip one doesn’t work (it just move the Weapon without playing the animation).

Thanks!!

137480-interface.png

Update: A delay fixed the problem, but i don’t think this is the best solution to my problem, it has something to do with the Montage and AnimBP.

When you call ToggleCombat to disable combat mode, you set IsCombatMode to false. But when IsCombatMode is false, the WeaponLocomotion is not played. So I would set IsCombatMode to false after the unequip animation has finished, perhaps with an animation notify.

Yeah that was the problem!
Adding an animation notify did the trick!
Thanks alot :wink:

Hi guys,

I’m trying to do something similar where I can grab a heavy weapon and shoot it and then put it away. I tried playing the animation montage from the character BP and attaching the weapon the the hand socket in the anim BP, the montages were not playing but the weapon was switching sockets when the anim notify was triggered anyway. I trying to reproduce what you are doing with the instance, it works to message it in the character BP but I can’t seem to be able to call the event inside the anim BP.

What am I doing wrong?