Interpolate score problem!
![app-etite](http://forums.gamesalad.com/applications/dashboard/design/images/defaulticon.png)
Hi
Instead of using..
change attribute... game.score to game.score+125 (which works)
I tried interpolate.. game.score to game.score+125 but my score zooms up to random numbers in the 900's
Is that just another 0.9.3 bug or am I missing something here??
thanks
Instead of using..
change attribute... game.score to game.score+125 (which works)
I tried interpolate.. game.score to game.score+125 but my score zooms up to random numbers in the 900's
Is that just another 0.9.3 bug or am I missing something here??
thanks
Comments
You will need to do:
change attribute: self.newscore to game.score+125
then
interpolate game.score to self.newscore
Im not touching my game anymore until 0.9.4
try that now
that worked
Interpolate constantly counts up or down so when you interpolateing to say + or - a number that numbers changing with the interpolate as well
so you need the attribute with the expression in it so the ending value doesnt change
That's not really a bug, it's a limitation of the interpolate function. TSB's video on the scoring of it is good, but isn't quite right for "specific" scoring. If you want random scoring then that's cool. :-)
Good luck.
Thanks all.