Creating User Interfaces

Most interactive 3D projects need to use a variety of 2D elements to communicate information to the player, and to give the player a simple way to communicate intentions or commands back to the gameplay logic. For example, you might want to use 2D elements to provide:

You have a few different options for creating and managing these UI elements in Stingray.

Scaleform Studio

Stingray ships with a standalone UI creation tool called Scaleform Studio, and a plug-in integration that makes the UIs you create in Scaleform Studio show in the engine viewport.

You use the Scaleform Studio editor to create .s2d projects that contain visual elements like images, text, and drawings. You can create timeline animations that move these visual elements around and change their state, and assign Lua scripts to the elements in order to make them respond to triggers that happen during the project. You can then import your Scaleform project into your Stingray project, and use Flow or Lua in Stingray to launch the UI and handle its events.

Scaleform Studio is a great option for you if:

The other topics in this section explain the basics of integrating a Scaleform Studio UI into your game in Stingray.

For complete information about working in Scaleform Studio to set up the visual elements of your UI, visit the Scaleform Studio Help. (Also available from the Help menu in the Scaleform Studio editor.)

The built-in Gui system

The Stingray engine offers a built-in system for drawing 2D shapes, images, and text in the engine viewport. The editor uses this system to draw things like menus, volumes, prototypes, and triggers in its embedded viewport. You can also use it in your own gameplay and plug-in code.

The Gui system is a great option for you if:

For more information about the Gui system and how it works, see the documentation for the stingray.Gui Lua object.

Community-supported options

If you're willing to try a community-supported alternative to the built-in Stingray UI tools, you might be interested in this option.

HTML5 and JavaScript

The Stingray HTML5 plug-in lets you create your UI elements in HTML and JavaScript. This plug-in integrates the Chrome Embedded Framework (CEF) into the Stingray engine. It uses CEF to load HTML content either from a project folder or from a URL, and to render that content inside the engine. It also passes player mouse clicks through to CEF, so that your web content can respond by triggering JavaScript.

This is a great option for you if: