Blockbench Reference Docs
    Preparing search index...
    interface SettingOptions {
        category?: string;
        condition?: any;
        description?: string;
        icon?: string;
        launch_setting?: boolean;
        max?: number;
        min?: number;
        name?: string;
        options?: { [id: string]: string };
        plugin?: string;
        requires_restart?: boolean;
        step?: number;
        type?:
            | "number"
            | "select"
            | "click"
            | "text"
            | "password"
            | SettingsType
            | "toggle";
        value?: string
        | number
        | boolean;
        click?(): void;
        onChange?(value: any): void;
    }
    Index

    Properties

    category?: string
    condition?: any
    description?: string
    icon?: string
    launch_setting?: boolean
    max?: number
    min?: number
    name?: string
    options?: { [id: string]: string }
    plugin?: string
    requires_restart?: boolean
    step?: number
    type?:
        | "number"
        | "select"
        | "click"
        | "text"
        | "password"
        | SettingsType
        | "toggle"
    value?: string | number | boolean

    Methods

    • Returns void

    • Parameters

      • value: any

      Returns void