Skip to main content

🎬 Welcome to Studio

Studio is where you build. It runs in your browser, saves as you work, and lets your whole team edit the same scene at once.

This section is a tour of the interface and what each part is for. If you are looking for how the engine behaves (components, physics, scripting) that lives in Creators Engine.


🧱 How a project is organised

Project
└── Space background · lighting · grid · units · camera
└── Scene an entity with an Anchor — the trigger that makes it appear
└── Entity

A project holds spaces. A space holds scenes and owns everything they share. A scene is an entity carrying an Anchor component, which is the only thing that makes it a scene. Everything in it is an ordinary entity.

Components are not levels of this tree

An entity is made of components. They are not children, and they do not appear in the hierarchy — they are what the entity is:

Entity  "Lamp"
◆ Transform where it is
◆ Geometry its shape
◆ Material how it looks
◆ Events what it reacts to
◆ UI an interface card attached to it
◆ Script behaviour

UI, Events, Script, Patch, Animation, States — all of these are components, sitting alongside Transform and Geometry. A scene's interface is a UI component on the scene entity, not a separate layer beside it.

The one distinction to hold on to

Containment — an entity inside another entity. Moving the parent moves the child.

Composition — a component on an entity. It is an aspect of that entity, one of each kind, added with + New component.

Both look like "inside" in the editor, and telling them apart is most of understanding this engine.

So the three things you will meet are all the same kind of object:

It isBecause it hasAnd it lacks
a scenean Anchor componenta Transform
an ordinary entitya Transform, plus whatever else you addedan Anchor
space-level logica Script or Patch component, and no parentboth

Objects and scenes explains the model in full.


🚀 Start here

🗺️ First project

Build and publish something small, end to end, in about ten minutes.

Get started

🧭 Interface tour

What every panel, rail and button in the editor does.

Take the tour

⌨️ Shortcuts

The keys that make editing fast.

See shortcuts


🧰 The specialised editors

Studio has four editors inside it, each opened from the left rail:

EditorFor
Animation Controllerchoreographing movement on a timeline
Patch Editorbuilding logic as a node graph
UI Editordesigning the 2D interface over your scene
Material Editorthe look of a surface

And Studio itself can be extended: plugins add panels, generators and even your own kinds of component.


👥 Working together

Studio is collaborative. Everyone editing a project sees each other's avatars in the top bar and each other's changes as they happen. Undo is your own — it will not roll back a colleague's work, but note that it also does not know they changed the same object in between.

Comments let you leave a note pinned to a spot in the scene, which is usually a better way to hand over feedback than describing where something is.