Skip to Content
The interface

Anatomy of the screen

┌──────────────────────────────────────────────────────────────┐ │ TitleBar window chrome: minimize / maximize / close │ ├──────────────────────────────────────────────────────────────┤ │ TopNav menu bar + tool rail + Animate/Insert menus │ │ ToolOptionsBar contextual options for the active tool │ ├───────────┬──────────────────────────────┬───────────────────┤ │ │ │ │ │ Left │ Workspace (viewport) │ Right Inspector │ │ Sidebar │ • ViewportHeader │ (7 panels) │ │ (4 tabs) │ • Canvas + overlays │ │ │ │ • corner overlays │ │ ├───────────┴──────────────────────────────┴───────────────────┤ │ BottomTimeline Timeline / Graph Editor + transport │ ├──────────────────────────────────────────────────────────────┤ │ StatusBar info readout · FPS meter · VU meter · account │ └──────────────────────────────────────────────────────────────┘

Docking

Every region is a dock. Panels register themselves into a region rather than being hard-coded into it, which means:

  • Tabs reorder by dragging.
  • Panels move between the left and right sidebars.
  • Panels close and reopen from the Window menu.
  • Any panel can be popped out into its own window. The pop-out stays live-synced with the editor, so a second monitor is genuinely useful.

The layout is JSON-serialisable and persisted between sessions. View → Reset Layout restores the defaults, and Window → Customize → Workspaces saves the current arrangement as a named preset you can switch back to later.

Region toggles

Menu itemRegion
View → Toggle Scene PanelLeft sidebar
View → Toggle InspectorRight sidebar
View → Toggle TimelineBottom timeline

Global overlay hosts

Four things are mounted once at the root of the app rather than inside any panel:

HostWhat it does
ModalHostThe modal stack — export dialog, composition settings, Customize, Plugins
ContextMenuHostRight-click menus, clamped to the viewport, closing on Esc or an outside click
NotificationHostThe toast stack, with auto-dismiss
OnboardingOverlayThe first-run tour

Plus the command palette, which owns its own key listener so it opens even while a text field has focus.

Where every panel lives by default

PanelDefault home
Scene · Assets · Library · AILeft sidebar
Transform · Style · Rigging · Effects · Graph · Presets · SettingsRight inspector
Timeline / Graph EditorBottom
ProjectLeft sidebar, on demand — Window → Project
History · Render · PluginsRight inspector, on demand

A panel that is registered but not docked is not missing — open it from Window, and it will dock wherever you drop it and stay there.

Last updated on