Animations
Animation is essential for adding life and richness to a game. Superb animations are one of the major factors that differentiate average games from the good and the great from the best. Visual fidelity is what keeps gamers excited and immersed in games, and hence animations are a core part of all games and experiences created in Unreal Engine.
Note
This chapter seeks to cover animation basics. A more in-depth approach to animation will be taken in Chapter 13, Blend Spaces 1D, Key Bindings, and State Machines.
Animation Blueprints
An Animation Blueprint is a specific kind of blueprint that allows you to control the animation of a Skeletal Mesh. It provides users with a graph specifically for animation-related tasks. Here, you can define the logic for computing the poses of a skeleton.
Note
A Skeletal Mesh is a skeleton-based mesh that has bones, all of which come together to give form to the mesh, whereas a Static Mesh (as the name suggests) is an un-animatable mesh. Skeletal Meshes are normally used for characters and life-like objects (for example, a player hero), whereas Static Meshes are used for basic or lifeless objects (for example, a wall).
Animation Blueprints provide two kinds of graphs: EventGraph
and AnimGraph
.
Event Graph
The Event Graph within an Animation Blueprint provides setup events related to animations, as we learned in Chapter 1, Unreal Engine Introduction, that can be used for variable manipulation and logic. Event graphs are mostly used within Animation Blueprints to update Blend Space values, which, in turn, drive the animations within AnimGraph
. The most common events that are used here are as follows:
- Blueprint Initialize Animation: Used to initialize the animation.
- Blueprint Update Animation: This event is executed every frame, giving developers the ability to perform calculations and update its values as required:
In the preceding screenshot, you can see the default Event Graph. There are Event Blueprint Update Animation
and Try Get Pawn Owner
nodes here. You created new nodes and appended them to a graph to complete some meaningful tasks in Exercise 2.04, Setting Up the Game Mode, Player Controller, and Pawn.
The Anim Graph
The Anim Graph is dedicated to and responsible for playing animations and outputting the final pose of the skeleton, on a per-frame basis. It provides developers with special nodes to execute different logic. For example, the Blend node takes in multiple inputs and is used to decide which input is currently being used in the execution. This decision is usually dependent on some external input (such as an alpha value).
The Anim Graph works by evaluating nodes by following the flow of execution between the exec pins on the nodes being used.
In the following screenshot, you can see a single Output Pose
node on the graph. This is the final pose output of the animation that will be visible on the relevant Skeletal Mesh within the game. We will be using this in Exercise 2.05, Creating a Mannequin Animation:
State Machines
You have already learned how animation nodes and logic can be set up, but one essential component is missing. Who decides when a particular animation or piece of logic should play or execute? This is where State Machines come into the picture. For example, a player may need to shift from crouching to a standing pose, so the animation needs to be updated. The code will call the Animation Blueprint, access the State Machine, and let it know that the state of the animation needs to be changed, resulting in a smooth animation transition.
A State Machine consists of states and rules that can be thought of as depicting the state of an animation. A State Machine can always be in one state at a particular time. A transition from one state to another is carried out when certain conditions (which are defined by rules) are met.
Transition Rules
Each Transition Rule contains a Boolean node by the name of Result
. If the Boolean is true, the transition can occur and vice versa:
Blend Spaces
When you're provided with a bunch of animations, you can create a State Machine and run those animations. However, a problem is presented when you need to transition from one animation to another. If you simply switch the animation, it will glitch since the new animation's starting pose might be different from the old animation's ending pose.
Blend Spaces are special assets used to interpolate between different animations based on their alpha values. This, in turn, removes the glitch issue and interpolates between the two animations, causing a swift and smooth change in animation.
Blend Spaces are created either in one dimension, known as a Blend Space 1D, or two dimensions, known as a Blend Space. These blend any number of animations based on one or two input(s), respectively.
Exercise 2.05: Creating a Mannequin Animation
Now that you've gone through most of the concepts related to animations, we'll be diving in hands-on by adding some animation logic to the default mannequin. We'll be creating a Blend Space 1D, a State Machine, and Animation logic.
Our goal here is to create a running animation of our characters and thus gain insight into how animations work, as well as the way they are bound to the actual character in a 3D world.
The following steps will help you complete this exercise:
- Download and extract all the contents of the
Chapter02
->Exercise2.05
->ExerciseFiles
directory, which can be found on GitHub. You can extract this to any directory you're comfortable with using on your machine.Note
The
ExerciseFiles
directory can be found on GitHub at the following link: https://packt.live/32tIFGJ. - Double-click the
CharAnim.uproject
file to start the project. - Press
Play
. Use the keyboard's W, A, S, D keys to move and the Spacebar to jump. Notice that, currently, there are no animations on the mannequin. - In the
Content
folder, browse toContent
->Mannequin
->Animations
. - Right-click the
Content
folder, and from theAnimation
section, selectBlend Space 1D
. - Select
UE4_Mannequin_Skeleton
. - Rename the newly created file to
BS_IdleRun
. - Double-click
BS_IdleRun
to open it. - Under the
Asset Details
tab, inside theAxis Settings
section, expand theHorizontal Axis
section and setName
toSpeed
andMaximum Axis Value
to375.0
: - Head down to the
Sample Interpolation
section and setTarget Weight Interpolation Speed Per Sec
to5.0
. - Drag and drop the
ThirdPersonIdle
,ThirdPersonWalk
, andThirdPersonRun
animations into the graph separately: - Under the
Asset Details
tab, inBlend Samples
, set the following variable values: - Click
Save
and close thisAsset
. - Right-click inside the
Content
folder, and from theAnimation
section, selectAnimation Blueprint
. - In the
Target Skeleton
section, selectUE4_Mannequin_Skeleton
and then click theOK
button: - Name the file
Anim_Mannequin
and press Enter. - Double-click the newly created
Anim_Mannequin
file. - Next, go to the
Event Graph
tab. - Create a
boolean
variable calledIsInAir?
by clicking the+
icon in the variable section on the bottom left side. Be sure to assign the proper type: - Create a float variable called
Speed
. - Drag off the
Try Get Pawn Owner
return value node and type inIs Valid
. Select the bottom one: - Connect the
Exec
pin from theEvent Blueprint Update Animation
node to theIs Valid
node: - From the
Try Get Pawn Owner
node, use theGet Movement Component
 node. - From the node obtained in Step 22, get the
Is Falling
node and connect the Boolean return value to a set node for theIs in Air?
Boolean. Connect theSET
node exec pin with theIs Valid
exec pin: - From the
Try Get Pawn Owner
node, use theGet Velocity
node, get itsVectorLength
, and connect the output to theA Variable Set
node ofÂSpeed
: - Next, head to the
Anim Graph
tab. - Right-click anywhere inside
AnimGraph
, typestate machine
, and click onAdd New State Machine
: - Make sure the node is selected and then press F2 to rename it
MannequinStateMachine
. - Connect the output pin of
MannequinStateMachine
to the input pin for theOutput Pose
node and click the compile button on the top bar: - Double-click the
MannequinstateMachine
node to enter the State Machine. You will see anEntry
node. The state that will be connected to it will become the default state of the mannequin. In this exercise, this will be ourIdle Animation
. - Right-click on an empty area inside the State Machine, and from the menu, select
Add State
. Press F2 to rename itIdle/Run
. - Drag from the icon next to the
Entry
text, point it inside theIdle/Run
node, and then release it to connect it: - Double-click on the
Idle/Run
state to open it. - From the
Asset Browser
menu in the bottom-right corner, select and drag theBS_IdleRun
Animation onto the graph. Get theSpeed
variable from theVariable
section on the left and connect it, as shown here: - Head back to
MannequinStateMachine
by clicking on its breadcrumb in the top banner: - From the
Asset Browser
menu, drag and drop theThirdPersonJump_Start
Animation into the graph. Rename itJump_Start
. - Repeat Step 35 for
ThirdPersonJump_Loop
andThirdPerson_Jump
and rename themJump_Loop
andJump_End
, respectively: - Open the
Jump_Start
state. Click on thePlay ThirdPersonJump_Start
node. UncheckLoop Animation
in theSettings
section. - Open the
Jump_Loop
state and click on thePlay ThirdPersonJump_Loop
node. SetPlay Rate
to0.75
. - Open the
Jump_End
state and click on thePlay ThirdPerson_Jump
node. Uncheck theLoop Animation
Boolean. - Since we can shift from
Idle/Run
toJump_Start
, drag from theIdle/Run
state and drop it to theJump_Start
state. Similarly,Jump_Start
leads toJump_Loop
, then toJump_End
, and finally back toIdle/Run
.Drag and drop the arrows to set up the State Machine, as follows:
- Double-click the
Idle/Run
toJump_Start
transition rule icon and connect the output of theIs in Air?
variable to the result: - Open the
Jump_Start
toJump_Loop
transition rule. Get theTime Remaining (ratio)
node forThirdPersonJump_Start
and check whether it is less than0.1
. Connect the resulting bool to the result: - Open the
Jump_Loop
toJump_End
transition rule. Connect the output of the inverse of theIs in Air?
variable to the result: - Open the
Jump_End
toIdle/Run
transition rule. Get theTime Remaining (ratio)
node forThirdPerson_Jump
and check whether it is less than0.1
. Connect the resulting bool to the result: - Close the Animation Blueprint.
- In the
Content
folder, browse toContent
->ThirdPersonBP
->Blueprints folder
and open theThirdPersonCharacter
Blueprint. - Select
Mesh
in theComponents
tab: - In the
Details
tab, setAnim Class
to theAnimation Blueprint
class that you created: - Close the Blueprint.
- Play the game again and notice the animations.
The following should be the output you achieve. As you can see, our character is running, and the running animation is being shown:
Note
You can find the complete exercise code files on GitHub, in the Chapter02
-> Exercise2.05
-> Ex2.05-Completed.rar
directory, at the following link: https://packt.live/3kdIlSL
After extracting the .rar
file, double-click the .uproject
file. You will see a prompt asking Would you like to rebuild now?
. Click Yes
on that prompt so that it can build the necessary intermediate files, after which it should open the project in Unreal Editor automatically.
By completing this exercise, you've understood how to create State Machines, a Blend Space 1D, the Animation Blueprint, and how to tie it all together with the Skeletal Mesh of a character. You've also worked on play rates, transitional speed and the transitional states, helping you understand how the world of animation intricately ties in together.
We kicked off this section by understanding how State Machines are used to represent and transition in-between Animation States. Next, we got to know how a Blend Space 1D gives us blending in-between those transitions. All this is used by the Animation Blueprint to decide what the current animation of the character is. Now, let's combine all these concepts together in an activity.
Activity 2.01: Linking Animations to a Character
Let's say, as an Unreal games developer, you've been provided with a character skeletal mesh and its animations, and you've been tasked with integrating them inside a project. In order to do that, in this activity, you'll be creating an Animation Blueprint, State Machines, and a Blend Space 1D of a new character. By completing this activity, you should be able to work with animations in Unreal Engine and link them to skeletal meshes.
The activity project folder contains a Third Person Template project, along with a new character, Ganfault
.
Note
This character and its animations were downloaded from mixamo.com. These have been placed in the Content
-> Ganfault
folder on our GitHub repository: https://packt.live/35eCGrk
Mixamo.com is a website that sells 3D characters with animations and is sort of an asset marketplace only for 3D models. It also contains a library of free models, alongside the paid ones.
The following steps will help you complete this activity:
- Create a Blend Space 1D for the Walking/Running animation and to set up the Animation Blueprint.
- Next, go to
Content
->ThirdPersonBP
->Blueprints
and open theThirdPersonCharacter
Blueprint. - Click the Skeletal Mesh component on the left, and inside the
Details
tab on the right, replace theSkeletalMesh
reference withGanfault
. - Similarly, update the
Animations Blueprint
section of the skeletal mesh component with the Animation Blueprint you created forGanfault
.Note
For the State Machine, implement only Idle/Run and Jump State.
Once you've completed this activity, the Walk/Run and Jump animations should be working properly, as shown in the following output:
Note
The solution to this activity can be found at: https://packt.live/338jEBx.
By completing this activity, you now know how to navigate your way around Unreal Engine with regard to the project, debugging code, and working with Animations. You also understand State Machines, which represent transitions between the Animation States and the Blend Spaces 1D used in that transition. You are now able to add animation to 3D models based on gameplay events and inputs.