by Jon (Updated on 2016-01-19)
Text is an essential element of most games. Text conveys information to the player in real-time. This article will teach you how to draw text to the screen and how to style it.
Fonts are a term used to describe the styling of text. Stencyl uses bitmap fonts to display text. Bitmap fonts are a special kind of font in which the font is pre-rendered to pixels.
Pros
Cons
To create a font, use our Font Editor. You can create a new font by heading to File > Create New > Font.
This will bring up the Font Editor. Our Font Editor lets you style fonts based on both TrueType (TTF) font faces as well as images / sprite sheets.
If you'd like to learn more about creating fonts, read our Font Editor article.
Once your game has a font, the easiest way to draw text is to draw it directly via the “when drawing” event. All text drawing blocks are found under Drawing > Drawing and Drawing > Styles.
Never attempt to draw text without first telling the engine what font to use. If you fail to do this, the game may crash.
Now, draw the text. Pass in the text and the (x,y) coordinates where you want it to draw.
If you need to position the text more precisely or make calculations based on the text's size, we provide a few blocks to help you out under Drawing > Styles.
A HUD (heads up display) is a transparent, graphical dashboard that displays on top of everything else.
HUDs usually display statistics. Think of the dashboard on your car, the one that displays how fast your car is going, how much gas you have left, your engine's temperature, etc.
One aspect of HUDs that’s unique is that they don’t follow the camera. They always draw at the same place on screen, regardless of where you are. Think of them as being this piece of glass that's on top of the game but not part of the game itself.
Have you seen this block? (under Actor > Drawing)
The ability to anchor an actor to the screen was made specifically for creating HUDs. As the name suggests, anchoring an actor makes the actor ignore the camera, so it always is drawn at the same place on screen.
HUDs aren’t a part of Stencyl or a specific feature. They’re just a common aspect of most games that they deserved special mention and to establish how to make them using the anchor block.
In this example, we’ll talk about how to do something common: drawing a timer.
Controls: Left/Right to move, Up to jump
We want to draw the Timer shown in the demo.
Download this project. (Use File > Import... to import it)
Open the demo project. This project is mostly built up (run it!). All you need to do is create the Timer feature.
Open up the Timer actor and flip to its Events tab.
Add a Number attribute called Time - and make it hidden.
Add an Every N Seconds event. Make it increment the Time attribute by 1.
Add a When Drawing event. Make it draw the time, like this.
Wait, something's wrong. If you walk to the right, as the screen scrolls, the timer gets left behind. That's not right. Given what you've learned about making a HUD (heads up display), what do you need to do?
Fix up the actor's behavior, so it "sticks" to the screen.
Stuck? Here's a hint.
One of Stencyl's developers has independently created a fully-fledged dialog system. While it's technically a separate effort, it's officially endorsed by us.
Visit their site to learn more.
While Stencyl is home to a powerful dialog system, for learning purposes, you may want to implement simple dialog system on your own to check your mastery of text drawing.
Create a simple system for displaying dialog, in which you pass in a list of text (1 sentence per entry) to display.
The dialog system should display 1 sentence at a time. The player has to hit a key to proceed.
Bonus: Bonus points for auto-wrapping text and displaying a little blinking arrow to indicate to the player that the sentence is “finished” and the system is waiting for the player’s go to continue.