Class ScyllaMenuItems
Defines all Scylla Framework menu items registered in the Unity Editor's main menu,
the GameObject context menu, and invocable keyboard shortcuts.
Inherited Members
Namespace: Scylla.Core.Editor
Assembly: ScyllaCore.Editor.dll
Syntax
public static class ScyllaMenuItems
Remarks
Menu items are organized into the following groups:
- Getting Started opens the Getting Started window (
Scylla/Getting Started...). - Setup Wizard opens the initial project setup wizard (
Scylla/Setup Wizard...). - Create creates a
ScyllaBootstrapGameObject in the active scene (Scylla/Create/). - Editor hosts framework operations (Module Browser, Debug Console, Validate Modules, Refresh Editor Styles, Inline Editor Descriptions, Capture Game View Screenshot) under
Scylla/Editor/. - Tools hosts standalone Scylla tool applications (Chroma, Font Character Extractor, ...) under
Scylla/Tools/. - Per-module submenus live under
Scylla/Camera/,Scylla/Data/,Scylla/Input/,Scylla/Stats/and contain that module's editor windows and wizards. - Help opens the online documentation and the About window (
Scylla/). - Context duplicates Create functionality in the
GameObject/Scylla/hierarchy context menu.
Internal factory methods (CreateCoreConfiguration(bool),
CreateLoggerConfiguration(bool), CreateTimeConfiguration(bool),
CreateEventConfiguration(bool)) are shared with the Setup Wizard and
Bootstrap inspector editors to create configuration UnityEngine.ScriptableObject
assets in the default Assets/Scylla/Resources/Config/ folder.
Methods
CreateScyllaCore()
Creates a new ScyllaBootstrap component on a new "Scylla" GameObject
in the active scene and selects it in the hierarchy. If a ScyllaBootstrap
already exists in the scene an informational dialog is shown and the existing object
is selected instead.
Accessible via Scylla > Create > Scylla Core.
Declaration
[MenuItem("Scylla/Create/Scylla Core", false, 100)]
public static void CreateScyllaCore()
Remarks
The creation is registered with Unity's Undo system so it can be undone via
Ctrl/Cmd+Z. Only one ScyllaBootstrap is permitted per scene;
the menu item is disabled when one already exists (see ValidateCreateScyllaCore()).
CreateScyllaCoreContext()
Creates a new ScyllaBootstrap GameObject from the GameObject/Scylla/
hierarchy context menu. Delegates to CreateScyllaCore().
Accessible by right-clicking in the Hierarchy window or via
GameObject > Scylla > Scylla Core.
Declaration
[MenuItem("GameObject/Scylla/Scylla Core", false, 10)]
public static void CreateScyllaCoreContext()
OpenAboutWindow()
Opens the Scylla About window, which displays version information, credits, and
links to documentation and support resources.
Accessible via Scylla > About Scylla….
Declaration
[MenuItem("Scylla/About Scylla...", false, 1000)]
public static void OpenAboutWindow()
OpenDebugWindow()
Opens the Scylla Debug Console window, which displays framework log output and
provides runtime diagnostic tools.
Accessible via Scylla > Editor > Debug Console... or
Ctrl/Cmd+Shift+D.
Declaration
[MenuItem("Scylla/Editor/Debug Console... %#d", false, 223)]
public static void OpenDebugWindow()
OpenDocumentation()
Opens the Scylla Framework documentation in the system's default web browser.
Navigates to URL_DOCUMENTATION.
Accessible via Scylla > Documentation.
Declaration
[MenuItem("Scylla/Documentation", false, 988)]
public static void OpenDocumentation()
OpenFontCharacterExtractor()
Opens the Font Character Extractor utility window, which allows inspection and
export of the Unicode character ranges covered by a selected font asset.
Accessible via Scylla > Tools > Font Character Extractor....
Declaration
[MenuItem("Scylla/Tools/Font Character Extractor...", false, 221)]
public static void OpenFontCharacterExtractor()
OpenGettingStartedWindow()
Opens the Scylla Getting Started Window, which provides an introduction to the
framework and quick-start instructions for new projects.
Accessible via Scylla > Getting Started... or
Ctrl/Cmd+Shift+G.
Declaration
[MenuItem("Scylla/Getting Started... %#g", false, 0)]
public static void OpenGettingStartedWindow()
OpenModuleWindow()
Opens the Scylla Module Browser window, which lists all Scylla modules present
in the active scene together with their initialization status and dependencies.
Accessible via Scylla > Editor > Module Browser... or
Ctrl/Cmd+Shift+M.
Declaration
[MenuItem("Scylla/Editor/Module Browser... %#m", false, 222)]
public static void OpenModuleWindow()
OpenSupport()
Opens the Scylla Discord server in the system's default web browser.
Navigates to URL_DISCORD.
Accessible via Scylla > Support.
Declaration
[MenuItem("Scylla/Support", false, 989)]
public static void OpenSupport()
RefreshEditorStyles()
Clears and rebuilds the cached ScyllaEditorStyles and
ScyllaEditorColors for the current editor theme. Use this after
switching between Unity's Light and Dark themes to ensure Scylla inspector and
window styles reflect the new theme immediately.
Accessible via Scylla > Editor > Refresh Editor Styles.
Declaration
[MenuItem("Scylla/Editor/Refresh Editor Styles", false, 235)]
public static void RefreshEditorStyles()
ShowSetupWizard()
Opens the Scylla Setup Wizard, which walks new users through creating the
ScyllaBootstrap GameObject and required configuration assets.
Accessible via Scylla > Setup Wizard… or the keyboard shortcut
Ctrl/Cmd+Shift+W.
Declaration
[MenuItem("Scylla/Setup Wizard... %#w", false, 1)]
public static void ShowSetupWizard()
ToggleInlineEditorDescriptions()
Toggles inline property descriptions across Scylla editor inspectors. When enabled, the tooltip text for each property is shown as a muted label above the field instead of only appearing on hover. Applies to configuration inspectors and any other Scylla inspector that opts in.
Declaration
[MenuItem("Scylla/Editor/Inline Editor Descriptions %#l", false, 237)]
public static void ToggleInlineEditorDescriptions()
ValidateCreateScyllaCore()
Validation callback for the Scylla > Create > Scylla Core menu item.
Disables the item when a ScyllaBootstrap is already present in the
active scene, enforcing the single-bootstrap constraint.
Declaration
[MenuItem("Scylla/Create/Scylla Core", true)]
public static bool ValidateCreateScyllaCore()
Returns
| Type | Description |
|---|---|
| bool |
|
ValidateCreateScyllaCoreContext()
Validation callback for the GameObject/Scylla/Scylla Core context menu item.
Delegates to ValidateCreateScyllaCore() to apply the same single-bootstrap
constraint as the main menu variant.
Declaration
[MenuItem("GameObject/Scylla/Scylla Core", true)]
public static bool ValidateCreateScyllaCoreContext()
Returns
| Type | Description |
|---|---|
| bool |
|
ValidateModules()
Inspects all ScyllaModule components in the active scene and verifies
that each is a direct child of the ScyllaBootstrap root GameObject, logging
an error for every module with invalid placement and displaying a summary dialog.
Accessible via Scylla > Editor > Validate Modules or
Ctrl/Cmd+Shift+V.
Declaration
[MenuItem("Scylla/Editor/Validate Modules %#v", false, 234)]
public static void ValidateModules()
Remarks
A dialog is shown if no ScyllaBootstrap is found, if no modules are found, or after validation completes (indicating either success or the number of invalid modules). See the Unity Console for per-module error details.
ValidateToggleInlineEditorDescriptions()
Validation method for the Inline Editor Descriptions menu item. Sets the checkmark state to reflect the current EditorPrefs value.
Declaration
[MenuItem("Scylla/Editor/Inline Editor Descriptions %#l", true)]
public static bool ValidateToggleInlineEditorDescriptions()
Returns
| Type | Description |
|---|---|
| bool |
ValidateValidateModules()
Validation callback for the Scylla > Editor > Validate Modules menu item.
Disables the item when no ScyllaBootstrap is present in the scene.
Declaration
[MenuItem("Scylla/Editor/Validate Modules %#v", true)]
public static bool ValidateValidateModules()
Returns
| Type | Description |
|---|---|
| bool |
|