weasel API - v0.8.0
    Preparing search index...

    Interface DragRectController

    interface DragRectController {
        isActive: boolean;
        overlay:
            | {
                bounds: DragRectBounds;
                current: DragRectPoint;
                start: DragRectPoint;
            }
            | null;
        cancel(): void;
        end(): void;
        move(worldX: number, worldY: number, modifiers: ModifierState): boolean;
        start(worldX: number, worldY: number, modifiers: ModifierState): void;
    }
    Index

    Properties

    Methods

    Properties

    isActive: boolean
    overlay:
        | {
            bounds: DragRectBounds;
            current: DragRectPoint;
            start: DragRectPoint;
        }
        | null

    Methods