Interface IGraphicOptions

interface IGraphicOptions {
    color?: Color | Color[];
    drawType?: number;
    points: Vec2[];
    shader?: GLShader;
    texture?: Texture;
    uv?: Vec2[];
}

Properties

color?: Color | Color[]
drawType?: number
points: Vec2[]
shader?: GLShader
texture?: Texture
uv?: Vec2[]