Changing Animation blueprint during game play?

I can build the animation blueprints pretty well, but I haven’t figured out how to switch from one to another during game play.

At the mission start, the player can choose which weapon to use. The weapon chosen determines which anim bp is needed once the mission starts and I have no idea how to set that in blueprints.

This is probably easy, but I’m fairly new to the animation part of unreal, so any help would be appreciated.

Thanks

C++:

USkeletalMeshComponent::SetAnimClass(UClass* NewClass)

Blueprint:
screenshot

Pass in the desired AnimBP class.

1 Like

Much appreciated.