Preparing search index...

    Interface for managing viewport overlays.

        // 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.
    const overlayManager = this.pluginSystem.findInterface(
    Editor.IOverlayManager
    ) as Editor.IOverlayManager;

    // Replace with the id from your OverlayPlugin's descriptor().
    overlayManager.requestShow('com.example.myOverlay');

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    interfaceId: InterfaceId

    Methods

    • Returns true if the object is of the specified type.

      Parameters

      • type: string

      Returns boolean

    • Beta

      Parameters

      • overlayID: string

      Returns void