Creating an animated game instruction speech bubble
In this tutorial we will look at how you can create animated game instruction speech bubble for your start screen using the website https://pixelspeechbubble.com/
- Go to the website https://pixelspeechbubble.com/
- Type in your game instructions and click the check box animated
- Click Create
- Under the animated GIF click download and download the GIF to your computer
- In GameMaker, add a new sprite asset to the asset browser, name it sprGameInstructions
- Change the frame rate of the sprite to 10 Frames per second
- Note the number of frames on the sprite, this will come in useful later.
- Edit the image, click Edit Image. Go to the Image menu that appears along the top bar and click Resize all frames. Reduce the width to half the size. Click Apply.
- Create an object called objGameInstructions.
- If you want the sprite to constantly animate you can now drag this object into your start room
- If you want the sprite to stop animating when the last frame is reached, add a Step Step event to this object with the following code:
if(image_index == 82){//check if it has reached the last frame image_speed = 0; }