pokemon-rogue-battle
    Preparing search index...

    Interface MoveInfoOverlaySettings

    interface MoveInfoOverlaySettings {
        delayVisibility?: boolean;
        hideBg?: boolean;
        hideEffectBox?: boolean;
        onSide?: boolean;
        right?: boolean;
        top?: boolean;
        width?: number;
        x?: number;
        y?: number;
    }
    Index

    Properties

    delayVisibility?: boolean

    If true, showing the overlay will only set it to active and populate the fields and the handler using this field has to manually call setVisible later.

    hideBg?: boolean
    hideEffectBox?: boolean

    Whether to display the small secondary box

    onSide?: boolean

    Whether the effect box should be on the side. Overrides the top param if true.

    right?: boolean

    Whether the effect box should be on the right

    top?: boolean

    Whether the effect box should be on top

    width?: number

    Width of the component, unaffected by scaling. Defaults to half the screen width.

    x?: number

    x position of the component, unaffected by scaling

    y?: number

    y position of the component, unaffected by scaling