A place to grow.

tutorial

Blinking Sprite

Written by Sam Baylus on March 23, 2025

Sometimes, you want a sprite to blink! It's often seen after a character is hit from an attack to show there's a period where they can't get hit again. Here's one way to do it.

Read more →

Position

Written by Sam Baylus on January 23, 2025

Position

Read more →
concept

direction

Written by Sam Baylus on July 29, 2024

direction is a built-in variable that determines which direction the instance will move in when speed is greater than 0.

Read more →
tutorial

Make a Dashed Trail

Written by Sam Baylus on July 23, 2024

Make a dashed trail follow a bee!

Read more →
function

irandom()

Written by Sam Baylus on July 23, 2024

irandom() gives you a random number between 0 and whatever number you want without all of those extra stinky decimals.

Read more →
function

clamp()

Written by Sam Baylus on July 23, 2024

clamp() limits a number to a range.

Read more →
play

Space Toy

Written by Sam Baylus on July 22, 2024

Rocket around outer space!

Read more →
tutorial

Coloring Effects

Written by Sam Baylus on July 21, 2024

What if you wanted to use many different colors with one sprite? We can do this using image_blend and one rule...

Read more →
concept

Angles

Written by Sam Baylus on May 21, 2024

If you're dealing with rotation, you'll want to be familiar with angles!

Read more →
tutorial

Turn a Projectile Along Its Path

Written by Sam Baylus on April 18, 2024

Do you want to make an object face the direction it's moving? Find out how!

Read more →