interface RenderPicOptions {
    forcePal?:
        | 0
        | 1
        | 2
        | 3;
    width?: number;
    height?: number;
}

Properties

forcePal?:
    | 0
    | 1
    | 2
    | 3

Force the selection of SCI0 palette 0–3.

width?: number

The stage width.

320
height?: number

The stage height.

190