Contents
- Collisions are Automatic
- Groups
- Shapes
- Sensors
- Handling Collisions
- More Collision Handling (Sides, Groups, Points)
Collisions are Automatic
Because Stencyl is powered by Box2D, collisions happen automatically, as if every object existed in “real-life.” For the default cases, no action is required on your part to make collisions happen.
Groups
However, what if you only want certain collisions to happen? For example, if any enemy shoots a bullet, the bullet should only collide with the player, not other enemies.
To do this, you have to set up Groups.
Groups are arbitrary collections of Actors. Groups tend to be named after certain classes of Actors, such as “Players” and “Enemies.”
Collisions happen between groups that are set up to collide with each other. Conversely, collisions are ignored between groups that are not set up to collide with each other.
How To: Setting up Groups
You can set up Groups in the Settings dialog. Click the Settings button to open the dialog.
Next, click the Groups button (shown below), and you'll see a dialog that shows the Collision Groups in your game, the green Create New button that lets you make a new Group, and other settings.
How To: Assigning Actors to Groups
You can set an Actor's collision properties, and specify the group it belongs to, in the Properties page of the Actor Editor.
Default Groups
Every Stencyl game starts out with a default set of Groups to help you get started. These groups have a lock next to them. Default groups cannot be edited or removed.
- Players
- Tiles
- Doodads (Scenery)
- Actors
- Regions
By default, Doodads and Regions never get involved in collisions. They may be useful if you want a quick way to designate an actor as "non-colliding"
Shapes
As we talked about in the Animations section, Actors can take on different Animation states. For each Animation state, the Actor can have different collision bounds.
For example, if a character is standing, he may be taller. If he’s ducking, he may be shorter.
Stencyl supports 3 kinds of collision shapes: Boxes, Circles and Polygons. (For Polygons, only convex shapes are allowed!)
You can place an arbitrary number of these shapes, in order to form more complex ones.
In this example, we’ve made an “L” shape using 2 boxes.
Sensors
What if you want to detect collisions, without the shapes actually colliding? For example, in Tower Defense games, the towers shoot at targets that come into range.
You’d use Sensors to make this happen. Sensors are special kinds of shapes (a yes/no flag on any shape to be precise), in which an Actor does not physically collide with another Actor, but still detects the collision.
Just check this box in the right-hand pane of an Actor’s Collision Page to make a certain shape a Sensor.
Handling Collisions
Use Events to handle collisions. By "handling", we mean responding to collisions with logic. For example, if a Fireball crashes into Mario, Mario will die.
We support the following collision events.
Regardless of which Event you pick, you’ll typically see a block similar to this.
1st actor always pertains to the first actor in the “sentence.” The same goes for the 2nd actor.
For example....
Then, when this kind of collision happens, the 1st actor will refer to the Hero and the 2nd actor will refer to the Button.
Just in case, you didn’t know, you can drag the “1st actor” and “2nd actor” blocks out and use them anywhere within this event.
More Collision Handling
For any kind of collision, you can check on 3 additional bits of info.
- What side the collisions happened on
- What Groups were involved
- Collision Points (where the collisions happened)
Collision Sides
One point to watch out for is that collision sides are based on the rectangular, bounding box of the shape that collided, so if you used a circle or a polygon, pay attention to the results.
Exercise: Stomping is one common use case for collision sides. Something is "stomped" if it was hit from the top. Can you think of other use cases for collision sides?
Groups for Colliding Shapes
What is this “colliding shape” business about? It stems from the ability to override an Actor’s default group on a per-shape basis, so that a particular shape can take on a different group.
When working with the “Collision Group for colliding shape” block, be sure to compare groups directly, rather than comparing the textual name of the Group, which can lead to bugs and crashes.
(This is the right way)
(This is the wrong way, don’t do this!)
You can find all Group and Type “getter” blocks under Actor > Properties.
Collision Points
Last but not least, you can grab exactly where collisions happened. This isn’t done very often, but it’s here in case you want to do any additional logic based on the collision location.
Summary
- Thanks to physics, collisions are automatic.
- Groups help you filter out collisions by specifying who collides with who else.
- Use sensors to detect collisions without the actor being “solid.”
18 Comments
This program is great compared to game maker 2.1 and The game factory 2 but there needs to be a way for you to get to the ALL the game attributes and be able to chose from one and not have so much grid and guessing to do on creating your games my game right now is set up but i have no idea how to get anything to happen in it.
0
When I create collision groups for a certain object and then go to the objects collision page it only lists stencyl's already made collision groups and not the ones i have recently made. and I am stuck on what to do?
0
hmm. i did the the whole actor collides with actor but my player keeps passing right through the NPC.
Where should I should I put the collision even with "when actor 1 hit actor 2"? in both the player and NPC? or one of them?
1
so i don't need to worry about that last question i figured it out but i was wondering will stencyl ever allow you to make concave collision shapes?
0
so if my collision groups are set right but my main player keeps passing through my NPC's what should i do ? i mean i am pretty sure the collision is being recognized because i used one of the print blocks to make sure but i still pass right through help please :)
0
I recommend the permanently renaming of the 'Doodads (Scenery)' group to 'Items' or something else.
0
How can I make it so that certains platforms only collide when a certain value is true?
0