Interface ITextureBorders

Stores the width of the non-scalable borders, for example when used with PIXI.NineSlicePlane texture.

Memberof

PIXI

Since

7.2.0

interface ITextureBorders {
    bottom: number;
    left: number;
    right: number;
    top: number;
}

Properties

Properties

bottom: number

bottom border in pixels

left: number

left border in pixels

right: number

right border in pixels

top: number

top border in pixels

Generated using TypeDoc