You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. bob.animate(0, 3, 250, 1, true);
2.
3.
What is the expected output?
the animation played once and stoped at the first frame.
What do you see instead?
the animation does not stop.
What version of Rokon are you using?
2-1-0
On which version of Android are you experiencing this?
Please provide any additional information below.
add one line in function updateAnimation() to fix it.
if(animationReturnToStart) {
textureTile = animationStartTile;
animated = false; // add this line
} else {
textureTile--;
animated = false;
return;
}
Original issue reported on code.google.com by [email protected] on 22 Nov 2010 at 9:25
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 22 Nov 2010 at 9:25The text was updated successfully, but these errors were encountered: