Character meshes
Note: Compatible with GASP 5.4, 5.5, 5.6. Add the latest Tactical Shooter Pack to your GASP project before starting.
Note: The “Mesh” skeletal component will generate a motion-matching pose (full-body movement), which will be blended with our tactical animations.
FPCamera and reset its transform:
Find the GetPlayerMesh interface function and return the new “Player” skeletal mesh component:
Cameras
The second step is to properly set up cameras in our player blueprint. If you use GASP 5.5 or 5.6, make sure to use this code snippet to disable other cameras: The Camera attached to Player is the main first‑person camera. Deactivate all other cameras that may be active at game start. If you are on 5.4, then simply set all other cameras’Auto Activate property to false:
Inputs
The next step is to properly update GASP inputs at runtime. Open theUpdate Player Movement function (it’s called on Tick):
Find some place at the end of the function, and set the value of the Gait property based on Movement State:
Then, we need to update bWantsToSprint, bWantsToWalk, bWantsToAim and bWantsToStrafe properties.
Note: The setup differs between 5.4 and 5.5/5.6; refer to the images below.
Animation blueprint
Now we need to create an animation blueprint (ABP) that will combine motion-matching pose and animations from the Tactical Shooter Pack. Create a new Animation Blueprint using the UE5 Manny skeleton from the pack: Go to the Event Graph and use this snippet for initialization: In the Anim Graph, add a Retarget Pose From Mesh node. Set theRetarget From to Custom Skeletal Mesh Component, and IK Retargeter Asset to RTG_UEFN_to_UE5_Mannequin:
After that, bind the Source Mesh Component using the “Mesh” property from the player blueprint.
Next, add the ABP_TacticalShooter_UE5 linked anim instance and blend it with the retargeted pose:
Tip: Feed the retargeted pose into Base Pose, and Tactical Shooter animations into Blend Pose 0.
Parkour adjustments
To properly blend parkour animations, we need to adjust our layering. First, create 2 cached poses: UpperBody carries Tactical Shooter animations; MotionMatchingPose carries full‑body motion. Next, add a new Layered Blend Per Bone node: Add a Blend by Bool node and plug the layered result into True: This will blend between parkour and normal poses using theDoingTraversalAction boolean from our character blueprint.
Finally, blend the result with the “MotionMatchingPose”:
