TimerComp:
The timer component.
wait(time: number, action?: ()=>void): TimerController
Run the callback after n seconds.loop(time: number, action: ()=>void): KEventController
Run the callback every n seconds.since
tween<V>(from: V, to: V, duration: number, setValue: (value: V)=>void, easeFunc?: (t: number)=>number): TweenController
Tweeeeen! Note that this doesn't specifically mean tweening on this object's property, this just registers the timer on this object, so the tween will cancel with the object gets destroyed, or paused when obj.paused is true.since