// Editor.IOverlayManager controls editor overlay panels (the dockable // tool panels that float over the viewport — Asset Library, AI Assistant, // etc.). Each overlay is registered by an OverlayPlugin; the overlayID // here is that plugin's descriptor id (the same string set on // OverlayPlugin.Descriptor.id), NOT a separate identifier. constoverlayManager = this.pluginSystem.findInterface( Editor.IOverlayManager ) asEditor.IOverlayManager;
// Replace with the id from your OverlayPlugin's descriptor(). overlayManager.requestShow('com.example.myOverlay');
Interface for managing viewport overlays.
Example