Type alias Parameter

Parameter: {
    defaultValue?: number;
    maxValue?: number;
    minValue?: number;
    name: string;
    numberOfSteps?: number;
    text?: string;
    unit?: "ms";
}

Type declaration

  • Optional defaultValue?: number

    Type an integer or floating point number to set a default value. If no value is typed, the default is 0.0.

  • Optional maxValue?: number

    Type an integer or floating point number to set a maximum value. If no value is typed, the default is 1.0.

  • Optional minValue?: number

    Type an integer or floating point number to set a minimum value. If no value is typed, the default is 0.0.

  • name: string
  • Optional numberOfSteps?: number

    Type an integer number to define the number of steps.

  • Optional text?: string

    Type text to create a divider or header in the plug-in UI.

  • Optional unit?: "ms"

    Type a string to present a unit description in the plug-in controls. If no value is typed, the default behavior is to display no unit.

Generated using TypeDoc