Character animation

    We’ll start with an introduction to using the animation editor.

    The engine comes with tools to author animations in the editor. You can then use the code to play and control them at runtime.

    Open the player scene, select the player node, and add an AnimationPlayer node.

    The Animation dock appears in the bottom panel.

    image1

    It features a toolbar and the animation drop-down menu at the top, a track editor in the middle that’s currently empty, and filter, snap, and zoom options at the bottom.

    Let’s create an animation. Click on Animation -> New.

    Name the animation “float”.

    image3

    Once you created the animation, the timeline appears with numbers representing time in seconds.

    We want the animation to start playback automatically at the start of the game. Also, it should loop.

    To do so, you can click the button with an “A+” icon in the animation toolbar and the looping arrows, respectively.

    image5

    You can also pin the animation editor by clicking the pin icon in the top-right. This prevents it from folding when you click on the viewport and deselect the nodes.

    Set the animation duration to seconds in the top-right of the dock.

    image7

    You should see the gray ribbon widen a bit. It shows you the start and end of your animation and the vertical blue line is your time cursor.

    You can click and drag the slider in the bottom-right to zoom in and out of the timeline.

    image9

    With the animation player node, you can animate most properties on as many nodes as you need. Notice the key icon next to properties in the Inspector. You can click any of them to create a keyframe, a time and value pair for the corresponding property. The keyframe gets inserted where your time cursor is in the timeline.

    Let’s insert our first keys. Here, we will animate both the translation and the rotation of the Character node.

    Two tracks appear in the editor with a diamond icon representing each keyframe.

    image11

    You can click and drag on the diamonds to move them in time. Move the translation key to 0.2 seconds and the rotation key to 0.1 seconds.

    Move the time cursor to 0.5 seconds by clicking and dragging on the gray timeline. In the Inspector, set the Translation‘s Y axis to about 0.65 meters and the Rotation DegreesX axis to 8.

    image13

    Create a keyframe for both properties and shift the translation key to 0.7 seconds by dragging it on the timeline.

    Note

    A lecture on the principles of animation is beyond the scope of this tutorial. Just note that you don’t want to time and space everything evenly. Instead, animators play with timing and spacing, two core animation principles. You want to offset and contrast in your character’s motion to make them feel alive.

    Move the time cursor to the end of the animation, at 1.2 seconds. Set the Y translation to about 0.35 and the X rotation to -9 degrees. Once again, create a key for both properties.

    You can preview the result by clicking the play button or pressing Shift + D. Click the stop button or press S to stop playback.

    image15

    You can see that the engine interpolates between your keyframes to produce a continuous animation. At the moment, though, the motion feels very robotic. This is because the default interpolation is linear, causing constant transitions, unlike how living things move in the real world.

    We can control the transition between keyframes using easing curves.

    Click and drag around the first two keys in the timeline to box select them.

    You can edit the properties of both keys simultaneously in the Inspector, where you can see an Easing property.

    image17

    Click and drag on the curve, pulling it towards the left. This will make it ease-out, that is to say, transition fast initially and slow down as the time cursor reaches the next keyframe.

    Play the animation again to see the difference. The first half should already feel a bit bouncier.

    Apply an ease-out to the second keyframe in the rotation track.

    image19

    Do the opposite for the second translation keyframe, dragging it to the right.

    Your animation should look something like this.

    Note

    Animations update the properties of the animated nodes every frame, overriding initial values. If we directly animated the Player node, it would prevent us from moving it in code. This is where the Pivot node comes in handy: even though we animated the Character, we can still move and rotate the Pivot and layer changes on top of the animation in a script.

    If you play the game, the player’s creature will now float!

    If the creature is a little too close to the floor, you can move the Pivot up to offset it.

    We can use code to control the animation playback based on the player’s input. Let’s change the animation speed when the character is moving.

    Open the Player‘s script by clicking the script icon next to it.

    image22

    In _physics_process(), after the line where we check the direction vector, add the following code.

    GDScript   C#

    1. public override void _PhysicsProcess(float delta)
    2. {
    3. // ...
    4. if (direction != Vector3.Zero)
    5. {
    6. // ...
    7. GetNode<AnimationPlayer>("AnimationPlayer").PlaybackSpeed = 4;
    8. }
    9. else
    10. {
    11. GetNode<AnimationPlayer>("AnimationPlayer").PlaybackSpeed = 1;
    12. }
    13. }

    This code makes it so when the player moves, we multiply the playback speed by 4. When they stop, we reset it to normal.

    We mentioned that the pivot could layer transforms on top of the animation. We can make the character arc when jumping using the following line of code. Add it at the end of _physics_process().

    GDScript   C#

    1. func _physics_process(delta):
    2. #...
    3. $Pivot.rotation.x = PI / 6 * velocity.y / jump_impulse

    Here’s another nice trick with animations in Godot: as long as you use a similar node structure, you can copy them to different scenes.

    For example, both the Mob and the Player scenes have a Pivot and a Character node, so we can reuse animations between them.

    Open the Player scene, select the animation player node and open the “float” animation. Next, click on Animation > Copy. Then open Mob.tscn and open its animation player. Click Animation > Paste. That’s it; all monsters will now play the float animation.

    We can change the playback speed based on the creature’s random_speed. Open the Mob‘s script and at the end of the initialize() function, add the following line.

    GDScript   C#

    1. func initialize(start_position, player_position):
    2. #...
    3. $AnimationPlayer.playback_speed = random_speed / min_speed
    1. public void Initialize(Vector3 startPosition, Vector3 playerPosition)
    2. {
    3. // ...
    4. GetNode<AnimationPlayer>("AnimationPlayer").PlaybackSpeed = randomSpeed / MinSpeed;
    5. }

    And with that, you finished coding your first complete 3D game.

    Congratulations!

    In the next part, we’ll quickly recap what you learned and give you some links to keep learning more. But for now, here are the complete Player.gd and Mob.gd so you can check your code against them.

    Here’s the Player script.

    GDScript   C#

    1. public class Player : KinematicBody
    2. {
    3. // Emitted when the player was hit by a mob.
    4. [Signal]
    5. public delegate void Hit();
    6. // How fast the player moves in meters per second.
    7. [Export]
    8. public int Speed = 14;
    9. // The downward acceleration when in the air, in meters per second squared.
    10. [Export]
    11. public int FallAcceleration = 75;
    12. // Vertical impulse applied to the character upon jumping in meters per second.
    13. [Export]
    14. // Vertical impulse applied to the character upon bouncing over a mob in meters per second.
    15. [Export]
    16. public int BounceImpulse = 16;
    17. private Vector3 _velocity = Vector3.Zero;
    18. public override void _PhysicsProcess(float delta)
    19. {
    20. if (Input.IsActionPressed("move_right"))
    21. {
    22. direction.x += 1f;
    23. }
    24. if (Input.IsActionPressed("move_left"))
    25. {
    26. direction.x -= 1f;
    27. }
    28. if (Input.IsActionPressed("move_back"))
    29. {
    30. direction.z += 1f;
    31. }
    32. if (Input.IsActionPressed("move_forward"))
    33. {
    34. direction.z -= 1f;
    35. }
    36. if (direction != Vector3.Zero)
    37. {
    38. direction = direction.Normalized();
    39. GetNode<Spatial>("Pivot").LookAt(Translation + direction, Vector3.Up);
    40. GetNode<AnimationPlayer>("AnimationPlayer").PlaybackSpeed = 4;
    41. }
    42. else
    43. {
    44. GetNode<AnimationPlayer>("AnimationPlayer").PlaybackSpeed = 1;
    45. }
    46. _velocity.x = direction.x * Speed;
    47. _velocity.z = direction.z * Speed;
    48. // Jumping.
    49. if (IsOnFloor() && Input.IsActionJustPressed("jump"))
    50. {
    51. _velocity.y += JumpImpulse;
    52. }
    53. _velocity.y -= FallAcceleration * delta;
    54. _velocity = MoveAndSlide(_velocity, Vector3.Up);
    55. for (int index = 0; index < GetSlideCount(); index++)
    56. {
    57. KinematicCollision collision = GetSlideCollision(index);
    58. if (collision.Collider is Mob mob && mob.IsInGroup("mob"))
    59. {
    60. if (Vector3.Up.Dot(collision.Normal) > 0.1f)
    61. mob.Squash();
    62. _velocity.y = BounceImpulse;
    63. }
    64. }
    65. var pivot = GetNode<Spatial>("Pivot");
    66. pivot.Rotation = new Vector3(Mathf.Pi / 6f * _velocity.y / JumpImpulse, pivot.Rotation.y, pivot.Rotation.z);
    67. }
    68. private void Die()
    69. {
    70. EmitSignal(nameof(Hit));
    71. QueueFree();
    72. }
    73. public void OnMobDetectorBodyEntered(Node body)
    74. {
    75. Die();
    76. }
    77. }

    And the Mob‘s script.

    GDScript   C#

    1. extends KinematicBody
    2. # Emitted when the player jumped on the mob.
    3. signal squashed
    4. # Minimum speed of the mob in meters per second.
    5. export var min_speed = 10
    6. # Maximum speed of the mob in meters per second.
    7. export var max_speed = 18
    8. var velocity = Vector3.ZERO
    9. func _physics_process(_delta):
    10. move_and_slide(velocity)
    11. func initialize(start_position, player_position):
    12. look_at_from_position(start_position, player_position, Vector3.UP)
    13. rotate_y(rand_range(-PI / 4, PI / 4))
    14. var random_speed = rand_range(min_speed, max_speed)
    15. velocity = Vector3.FORWARD * random_speed
    16. velocity = velocity.rotated(Vector3.UP, rotation.y)
    17. $AnimationPlayer.playback_speed = random_speed / min_speed
    18. func squash():
    19. emit_signal("squashed")
    20. queue_free()
    21. func _on_VisibilityNotifier_screen_exited():