Files
Basalt/docs/objects/Basalt/setVariable.md
Robert Jelic 4d614372a1 Updated docs
There is still stuff to do
2022-08-28 18:18:26 +02:00

427 B

basalt.setVariable

This stores a variable which you're able to access via xml. You are also able to add a function, which then gets called by object events created in XML.

Parameters:

  1. string a key name
  2. any any variable

Usage:

  • Adds a function to basalt.
basalt.setVariable("clickMe", function()
    basalt.debug("I got clicked")
end)
<button onClick="clickMe" text="Click me" />