Switch to Book Layout1: Getting Started2: Building Logic
3: Actors
4: Scenes
5: Game Mechanics6: Advanced Topics7: Testing & Tuning8: The Last 10%M1: Mobile - IntroM2: Mobile - BasicsM3: Mobile - ServicesM4: Mobile - PublishingA: Troubleshooting
B: How-To Guides
C: ReferenceD: Resources3.0 Drafts (In Progress)
|
||
|
Level: Beginner
Introduction to BehaviorsAs a game creator, it’s not enough to add a bunch of resources to a Scene and call it a day; you have to define gameplay that will engage your players and make your game interactive.
To do this, you’ll use Stencyl’s Behavior Designer to build self-contained snippets of logic called Behaviors and attach them to your Actor Types and Scenes. Note: In response to our readers, we would like to clarify that there is no associated demo/source with this article. Our apologies for the confusion!
Contents
What are Behaviors?Behaviors are reusable, configurable “abilities” that you attach to Actor Types or Scenes. Together, they make up the “brains” of a game, handling all interactions that occur in the world. Say we’re making a vertical shoot 'em up where the player controls a ship that can fire lasers.
Let’s attach a Behavior that will allow the player to fire a laser when the spacebar button is pressed.
Attaching a BehaviorTo attach a Behavior, perform the following steps:
Configuring a BehaviorBehaviors can be reused and configured individually for different Actor Types or Scenes. For example, if you attach a Walking behavior to an Actor Type, you'd like to be able to configure its walking speed. The customization occurs on the Behaviors tab, by modifying parameters called Attributes. Let’s configure the Fire Laser Behavior for our ship Actor. First, select the Behavior you want to customize, and then fill in values for each field that’s displayed. In this ship example, we...
Now that the Fire Laser Behavior has now been attached and configured, let's see this in action.
The Demo Game(Press spacebar to fire the laser)
Actor Type vs. Scene BehaviorsThe Behavior we created was an Actor Type Behavior and thus is available to be attached to any Actor Type (e.g., the ship). We also have the ability to create Scene Behaviors that can get attached to any Scene. An example of this would be a "spawn" Behavior that periodically creates new enemies at the top of the screen.
Peeking under the HoodLet’s take a look at a typical Behavior.
On the left you see a list of Events that can happen, and on the right, you see the response to the currently selected event. You can click on other events to display their associated responses. We'll talk much more about what's happening on the right side later in this chapter.
What are Events?Events are the building blocks of Behaviors. In short, they’re things that happen in your game that can trigger some kind of action, or response. Returning to our vertical shoot ‘em up example, remember that when the player presses the spacebar, the player’s ship fires a laser.
In this case, hitting the spacebar is the event, and firing the laser is the response. The event and response are related by cause and effect.
Summary
Last Updated: 2013-01-29 by Jon
40974 have read this article
Disclaimer: The Stencyl Team does not actively monitor comments on articles. If you're seeking help for your game,
please ask a question on the forums. Thanks!
8 Comments
Stotch
It seems like this was written as a general guideline for adding behaviors rather than as a step by step tutorial. I managed to follow along anyway by making a ship actor type and bullet actor type from the resources in Crash Course 2, creating a scene and placing the ship actor type into the scene. Then I attached the Fire Bullet behavior from the library included with Stencyl, to my ship actor, since I didn't find the Fire Laser behavior in the library. Worked same as the example except there is no sound option in the Fire Bullet behavior. I found it helpful to review Crash Course 1 to remind me how to add behaviors. 1 4 months, 1 week ago
Blacksmith
I could not find a demo to download in order to do the modifications in this and the next tutorials. The only thing on Stencylforge available was a completely finished game called Shoot Em Up (and a much much more complicated game than the examples used here). 0 10 months, 2 weeks ago
moonw
if you download the "Shoot em Up Example" you will find that the game is already finished with lots of additional things and task already made, so I think that the source code could be necessary to beginners. Please let me know if I am in a mistake with the source code. 0 1 year, 3 weeks ago |

















