As of late 2021, we are in the process of updating Stencylpedia and fixing up outdated & broken content. Thanks for your patience!

96,759

Views

Beginner

Level

16

Comments

Regions

by Justin (Updated on 2018-11-29)


Contents

  • What are Regions?
  • Example: Entering a Door
  • Creating Regions
  • Detecting Entry/Exit
  • Region Types
  • Moving Regions
  • Resizing Regions

What are Regions?

Regions are invisible areas of a Scene that detect the entry and exit of Actors. In other words, we use regions when we want to know when certain actors reach certain parts of a scene.

In what situations would regions be useful?

  • Entering doors, pipes and other transportation devices
  • Entering an area that continually heals the player (Healing Zone)
  • Entering an area that continually harms the player (Lava Zone)
  • Stepping on a switch

Example: Entering a Door

Suppose that you are making an adventure game.

Your hero is walking outside, and he comes across a door to a house. You want to program your game so that when your hero walks to the door, he ends up inside the house.

How would you do this?

We want the game to detect that the hero walked on top of the door. When this happens, we want to transition to the house scene.

Regions do exactly what we want. Here's how we'd do this (going with our example scenario).

  1. Inside the Scene Designer, place a Region.


  2. Flip to the scene's Events page. Add a Specific Actor Enters Region event.


  3. Fill out the event with the desired values. In our case, we want to detect when our Hero enters the Door region.


  4. Finally, we add in the scene switch block (under Scene > Game Flow) to change the scene.

That's it! Here's a demo of the game in action. We've drawn the region for you, so you can see exactly where it is.

Creating Regions

Regions can be created in one of two ways.

Method 1: Place Directly

You can place a Region directly into a Scene, as we did in the demo above.

Method 2: Create on the fly

You can create a region on the fly from a Behavior or Event using a block. The block is under Scene > Regions.

If you'd like to refer to this newly created region, use the Last Created Region entry anytime you're asked to Choose Region.

Detecting Actors entering, exiting or being inside Regions

Once you place a Region, you can detect when an Actor enters or exits the Region using an Event.

Alternatively, you can detect if an actor is currently inside a given region.

What's the difference?

  • Event = I entered the house.
  • Is Inside = Are you currently inside your house?

Troubleshooting Tip: Be sure that collisions are enabled for the actor. Regions rely on the collision system to work.

Region Types

Regions come in 3 flavors: Box, Circle and Polygon.

Use the shape that best suits your game. For most games, box regions suffice.

Tip: Hold down SHIFT while placing a box region to force it to become a square.

Moving Regions

You can move regions around to a specific (x,y) coordinate or have a region "follow" an actor, which will reposition the region around the actor's center point.

In both cases, the operation happens instantly. If you wish to have a region continually follow an actor, you must continually move the region using either of these two blocks.

The difference is that the "follow" block centers the region on the target Actor's center point.

Example: Fiery Barrier

Suppose that in an adventure game, one of the hero's special moves is a fiery barrier in which all enemies approaching him within a 100 pixel radius automatically get killed.

(Play the Demo)

This could be implemented by creating a box region and having that region continually follow the Hero. When actors from the Enemy group enter this region, they get killed.

Resizing Regions

You can change the size of a Box or Circular region on the fly. Resizing uses the top-left corner as the origin.

Because boxes and circles are defined differently, you have to use the corresponding block depending on what kind of region you're working with.

If you need to reset a region's size back to its original, use the reset size of [ Region ] block. This block works on both box and circle regions.

Summary

  • Regions tell us when actors have reached certain parts of a scene.
  • You can detect when an actor enters, exits or is currently inside a region.
  • You can create regions either by placing them in the scene or creating them from a behavior.
  • You can move and resize regions.

Challenge: Pipes!

One of the signature moves in a Mario game is the ability to enter pipes. Implement this classic mechanic, using Regions.

Print Article Edit Article How to Edit an Article
Disclaimer: Use comments to provide feedback and point out issues with the article (typo, wrong info, etc.). If you're seeking help for your game, please ask a question on the forums. Thanks!

16 Comments

mikhog
t4u thanks! been wondering why this didn't work for a looooong time now! :)
0 10 years, 8 months ago
MickeytheGreat
For the challenge, I'm guessing you make a region above a pipe and do an "if the actor is in this region and they press the down key, transition to next scene. I'm pretty sure, but don't be mad if I'm wrong.
1 10 years, 11 months ago
t4u
IMPORTANT: you need to have collisions ON inorder to be able to detect ifactor is / enters the region
2 11 years, 10 months ago
Vectrex71
Ahh i guess, the polygon regions are not available for mobile projects (right?)
0 12 years, 3 months ago
Vectrex71
I use stencil 2.1 but i can't find polygon regions?! i only have circle and box !
0 12 years, 3 months ago
HarkBack
And about 'terrain' there is an article?
1 12 years, 4 months ago

Sign In to Comment