/
component.setTimer{}
component.setTimer{}
component.setTimer{ } is used to set a component or function poll time
By default, it sets time (delay in milliseconds) for the main function, unless the callback parameter is specified with another function.
local TimerId = component.setTimer{delay=1000, callback=OnTimer, data="Some Data"}
function OnTimer(Data)
-- This function will be called when the timer is triggered
end
, multiple selections available,
Related content
setTimeout and setInterval - timed events
setTimeout and setInterval - timed events
More like this
How can I change variables outside of my function with my timer?
How can I change variables outside of my function with my timer?
More like this
Create a Component
Create a Component
Read with this
component.isStopping()
component.isStopping()
More like this
Timer (polling)
Timer (polling)
More like this
os.difftime()
os.difftime()
More like this