I have a simple quiz game, which calculates user's score by using score = 100 - ((100*answerTime)/60); formula.
When I display user's score on the screen with a timer, it displays it like 100, 99, 97...
Is there a way to display this score smoother to the user? Like 100, 99, 98 I've searched it on the web but the closest answer i came up was a bézier curve algorithm which was for a flash animation.
Below is the sample code:
private function TimerHandler(e:TimerEvent):void
{
var ticks:int = e.target.currentCount;
var score:int = CalculateScore(ticks);
trace("Elapsed time: " + ticks + ", score: " + score);
if(ticks == 59)
{
trace("Time out! User got 0 points on this question");
e.target.stop();
}
}
private function CalculateScore(answerTime:uint):int
{
return 100 - ((100*answerTime)/60);
}
and in constructor:
var tmr:Timer = new Timer(1000);
tmr.addEventListener(TimerEvent.TIMER,TimerHandler);
tmr.start();