Open GoogleCodeExporter opened 8 years ago
[deleted comment]
I Agree with this issue!
System: W7 64, VS2010
On my systen a got not initialized lastTime about -842150451;
So at Tweener::step we get dif with an very huge number
int dif = (currentMillis - lastTime); => about +842150451
So our animation is killed right after starting;
Besides it, I have an assertion error at main cycle declaration:
for (tweensIT = tweens.begin(); tweensIT != tweens.end(); ++tweensIT )
after tweensIT removed from tweens at the end of cylce (tweens size becomes 0)
Original comment by gasu.basu
on 2 Feb 2011 at 1:38
Attachments:
Fixed with Etienne Mouchel Solution
Original comment by wesley.m...@gmail.com
on 17 Feb 2011 at 6:43
On function
Tweener::step() {
....
removeTween(&(*tweensIT));
....
}
you must add a Statement:
"if (0 == tweens.size()){break;}"
Original comment by weolar@gmail.com
on 28 Feb 2011 at 8:15
Original issue reported on code.google.com by
manuel....@gmail.com
on 14 Feb 2010 at 3:34