Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagelua
local TimerId = component.setTimer{delay=1000, callback=OnTimer, data="Some Data"}

function OnTimer(Data)
   -- This function will be called when the timer is triggered
   trace(Data) -- "Some Data"
end