ecspresso
    Preparing search index...

    Interface UIPluginOptions<G>

    Common configuration options shared by most plugins. Plugin-specific options interfaces extend this with additional fields.

    interface UIPluginOptions<G extends string = "ui"> {
        anchorPriority?: number;
        interactionPriority?: number;
        phase?: SystemPhase;
        priority?: number;
        renderSyncPriority?: number;
        systemGroup?: G;
    }

    Type Parameters

    • G extends string = "ui"

    Hierarchy (View Summary)

    Index

    Properties

    anchorPriority?: number

    Priority for the anchor-resolve system in preUpdate (default: 0).

    interactionPriority?: number

    Priority for the pointer hit-test system in preUpdate (default: 200, after input's 100).

    phase?: SystemPhase

    Execution phase for the plugin's primary system

    priority?: number

    Priority for the plugin's primary system (default varies per plugin)

    renderSyncPriority?: number

    Priority for render-sync systems (default: 480, just before renderer2D's 500).

    systemGroup?: G

    System group name for all systems registered by this plugin