Toggle

Updated for version 3.36.

It's recommended to first read about the base item before reading about other items https://luffyyy.gitbook.io/beardlib/menuui/menuui-item

Toggle

Creation

MyRandomMenu:Toggle({
    name = "MyToggle",
    text = "This is a toggle",
    value = true,
    on_callback = function(item)
        log("I was toggled to", tostring(item:Value()))
    end
})

Parameters

ParameterTypeDescription

value

Boolean

Value of the toggle true for on false for off

Functions

Get

FunctionReturn TypeDescription

Value()

Boolean

Returns the boolean value of the toggle

Set

FunctionDescription

SetValue(Boolean value, Boolean run_callback)

Sets the value of the item. value is the boolean value and run_callback decides whether to run the callback after the value is set

Last updated