This course is for creating new 2D sprite characters.
You can learn the basic operations of 2D sprite animation.
In this course as well, we will use the tutorial project used in the first tutorial.
Please open the project and get ready.
This course is for creating new 2D sprite characters.
You can learn the basic operations of 2D sprite animation.
In this course as well, we will use the tutorial project used in the first tutorial.
Please open the project and get ready.
First, prepare an image for your 2D sprite character. If you don’t have one, please download and use the sample image below.
Drag and drop the image into the File System window to load it.
Create a new Game Object scene. Click the + button on the tab in the central Editor window to open a new tab. Then, select “Game Object” in the Scene window.
The Settings window will open. Configure it as follows:
Object Name: Set as desired.
Template: characters
Template Type: 2DSprite Character Base
Group: Player
Objects to be manipulated by input devices: On
A Game Object scene with basic settings applied will be generated. First, save it. Right-click the unsaved tab or use the Ctrl+S shortcut to save it to your desired location.
Load the character image. Click “Sprite2D” in the Scene window.
In the Inspector window, drag and drop the character image loaded in step 2 from the File System into the “Texture” field.
The character has been loaded, but the sprite sheet should be displayed as is. Let’s split it.
Set “Animation > Hframes, Vframes” in the Inspector window.
Hframes: The number of frames arranged horizontally. For the sample image, set this to 5.
Vframes: The number of frames arranged vertically. For the sample image, set this to 4.
Try moving the “Frame” setting below one by one. If split correctly, it should play frame-by-frame starting from 0. Note that in Godot, as a general rule, the first piece of data starts at 0. Frame 7 corresponds to the 8th frame, so there will be an offset of one. Please be aware of this.
Next, adjust the collision shapes which are currently too large. Select “CollisionShape2D” in the Scene window. You should be able to select the light blue rectangle. This is the wall collision used to detect collisions with the ground or enemies.
Adjust the wall collision to match the character’s size. Select the points at the four corners and move them to adjust the size.
Next, adjust “HitCollision” in the same way. This is the hitbox used to detect collisions with attacks, so it is recommended to set it slightly larger than the wall collision.
Finally, there is “AttackCollision”. This indicates the attack range, but its handling varies greatly depending on the animation created, so for now, let’s disable it. Select “AttackCollision” and turn on “Disabled” in the Inspector.
Once completed up to this point, save the tab by right-clicking it or using Ctrl+S.
You can toggle visibility using the
icon in the Scene window, but this only controls how things appear in the editor. Simply hiding an object makes it invisible, but it continues to function. If you want to stop its operation, disable it in the Inspector or delete the node.



Animation Set Detailed Settings
ACTION GAME MAKER’s animations are designed to automatically flip according to the object’s display direction by default. This is usually fine for standard side-view animations.
However, if you want to change the animation played for forward and backward steps, or assign movement animations in 4 (or 8) directions for a top-down game, manual detailed settings are necessary. The details of each setting item are as follows:
Animation: Specifies the animation to play.
Auto Y Flip: Sets automatic flipping. Turn it off if you want to set it manually.
Display Direction Settings (Eight Direction): Selects the specified animation when the character faces the selected direction.
Add Direction (+Add Direction Variant): By default, one animation is set per category. Use this button to add more animations.
Add Animation Category (+Add Animation Category): Used to manually add animation categories, but is usually not needed.
Top-Down Game Settings Example (4 Directions)
Character Orientation
In the previous section, we mentioned that the character flips according to the display direction. By default, the character is set to face the “right direction.”
Characters drawn facing right, like in the sample image, are fine. However, for characters drawn facing left, the following manual settings are required:
Enable the Enable Auto HFlip checkbox in BaseSettings.
AnimationPlayer and AnimatedSprite2D
In Godot, there is a dedicated node called AnimatedSprite2D for sprite animations, but ACTION GAME MAKER cannot play it directly. However, you can indirectly use it with the following method. This method is recommended when switching between multiple sprite sheets.
That concludes the graphics course.
The tutorial only covered basic handling, but combined with Godot’s AnimationPlayer functionality, you can create very rich expressions.
Please try various things and share your creations on social media or the guild if you achieve good results.
For those interested in other courses:
2. Script Course
For those who want to create various movements and systems using default characters.
3. Expression Enhancement Course
For those who want to create cool, Godot-like expressions.