14 lines
582 B
Lua
14 lines
582 B
Lua
|
|
local plugin = {}
|
||
|
|
|
||
|
|
function test(newValue)
|
||
|
|
berry.ui.notify(tostring(newValue))
|
||
|
|
end
|
||
|
|
|
||
|
|
function plugin.run()
|
||
|
|
berry.config.defineSetting("Test Plugin", "test setting", "this is a description", "string", "hi, this is the default value", test)
|
||
|
|
berry.config.defineSetting("Test Plugin", "another setting!", "woah!", "boolean", "1", test)
|
||
|
|
berry.config.defineSetting("Test Plugin", "integer setting", "i love integers :O", "integer", "123", test)
|
||
|
|
berry.config.defineSetting("Test Plugin", "float setting", "i love floating point numbers :O", "float", "123.456", test)
|
||
|
|
end
|
||
|
|
|
||
|
|
return plugin
|