interface ReticuleOptions {
    margin: number;
    alpha: number;
    size: number;
    color: number;
    border: {
        color: number;
        width: number;
    };
}

Properties

margin: number

The amount of margin between the targeting arrows and the token's bounding box, expressed as a fraction of an arrow's size.

alpha: number

The alpha value of the arrows.

size: number

The size of the arrows as a proportion of grid size.

color: number

The color of the arrows.

border: {
    color: number;
    width: number;
}

The arrows' border style configuration.

Type declaration

  • color: number

    The border color.

  • width: number

    The border width.