Timer class 0.3
Just a quick note to let you know that I updated my Timer class to version 0.3. Most important update is loop progress reporting. This is now off by default, as that feature may get quite CPU intensive.
In order to report progress, the Timer needs to send events on each internal loop check, which, obviously causes a lot of events to be fired.
You can switch this back on with:
[as]myTimer.reportProgress = true;[/as]
Besides this change, I also made sure the Timer class now extends a base Dispatcher class.
I placed a preview online, as well as the source files. I also wrote some documentation for this class, which can be found here.
