Overview
Excerpt |
---|
...
Queue a call to a function until a later frame.
Unlike setTimer(), queue() does not repeat. It will make a single call to the named function at a later frame in the game.
...
Invoke a function at some point in the future... |
...
...
...
...
...
...
The function must be defined on the global scope - it cannot be a method of an object or anything like that.
If you pass in a function, or the name of a function not on the global scope, an exception will be thrown.
...
...
...
...
...
...
...
...
...
See also