Interface LayerOptions

Options available for a Layer.

interface LayerOptions {
    isLocked?: boolean;
    isSolo?: boolean;
    name?: string;
    stereo?: number;
    volume?: number;
}

Properties

isLocked?: boolean

Whether this layer has been marked as locked.

isSolo?: boolean

Whether this layer has been marked as solo.

name?: string

Name of the layer.

stereo?: number

How much this layer is panned to the left or right.

volume?: number

Volume percentage of the layer.