1
|
An Interval has a defined duration, or start and stop values. An Interval also can be controlled in a similar fashion to animations. Neither of these is true for tasks.
|
2
|
A Sequence is a collection of Intervals that will be played one after another. A Parallel is a collection of Intervals that will all be played at the same time. Only Intervals may be put in either.
|
3
|
Func and Wait are used for creating scripts with Sequences and Parallels . The Func Interval simply calls a function or method. Wait does nothing, for a set amount of time.
|
4
|
isPlaying() and isStopped(). isPlaying() will return True if the Interval is paused; isStopped will return False in that case.
|
5
|
We use the getDuration() method.
|
6
|
We use the getT() method.
|