mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 06:36:08 +02:00
5 lines
202 B
JavaScript
5 lines
202 B
JavaScript
var timer = new Timer();
|
|
timer.interval = 1000;
|
|
timer.singleShot = true; // set this is you only want the timer to fire once
|
|
timer.timeout.connect(function() { print("TIMER FIRED!"); });
|
|
timer.start();
|