PokéRogue
    Preparing search index...

    Type Alias StyleConfig

    type StyleConfig = {
        collidingTileColor?: Color | number | null | null;
        faceColor?: Color | number | null | null;
        tileColor?: Color | number | null | null;
    }
    Index

    Properties

    collidingTileColor?: Color | number | null | null

    Color to use for drawing a filled rectangle at colliding tile locations. If set to null, colliding tiles will not be drawn.

    faceColor?: Color | number | null | null

    Color to use for drawing a line at interesting tile faces. If set to null, interesting tile faces will not be drawn.

    tileColor?: Color | number | null | null

    Color to use for drawing a filled rectangle at non-colliding tile locations. If set to null, non-colliding tiles will not be drawn.