Polyend Tracker Library - v0.1.1
    Preparing search index...

    Interface FXRecord

    Represents a single FX record.

    See the Effects reference linked below for more information.

    interface FXRecord {
        default: number;
        index: number;
        max: number;
        min: number;
        name: string;
        scaled?: { max: number; min: number };
        symbol: string;
    }
    Index

    Properties

    default: number

    The default value of the effect.

    index: number

    The index of the effect. This is what is actually stored in the pattern.

    max: number

    The maximum value of the effect.

    min: number

    The minimum value of the effect.

    name: string

    The name of the effect.

    scaled?: { max: number; min: number }

    Some effects present a scaled min/max value to the user. In this object you will find these values. Scale accordingly.

    Type Declaration

    • max: number

      The maximum value of the effect.

    • min: number

      The minimum value of the effect.

    symbol: string

    The symbol of the effect. Which is what is presented to the user.