I am rotating the wheel using tweenlite, below is the piece of code
TweenLite.to(wheel, 12, {rotation:720, immediateRender:true, useFrames:false, onUpdate:onTweenUpdate});
When wheel is spinning i want to know the wheel speed for some stuffs. Can i know the speed of the wheel when it is rotating?
Based on @DodgerThud's comment.. to avoid manual calculation you could put your numbers in
int
variables like soThen your tween code could look like..
Then like @BotMaster's comment said, inside your onTweenUpdate you could have..