ecspresso
    Preparing search index...

    Interface TilemapPluginOptions<G>

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

    interface TilemapPluginOptions<G extends string = "rendering"> {
        collidesWith?: readonly string[];
        collisionLayer?: string;
        phase?: SystemPhase;
        priority?: number;
        systemGroup?: G;
    }

    Type Parameters

    • G extends string = "rendering"

    Hierarchy (View Summary)

    Index

    Properties

    collidesWith?: readonly string[]

    Layers the auto-generated tile bodies collide with.

    collisionLayer?: string

    Optional collision layer name. When set, solid tiles auto-spawn aabbCollider strips.

    phase?: SystemPhase

    Execution phase for the plugin's primary system

    priority?: number

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

    systemGroup?: G

    System group name for all systems registered by this plugin