Fixed: animation play count is wrong in iOS

This commit is contained in:
Tsvetan Raikov
2016-04-13 19:09:05 +03:00
parent efe9ff90de
commit 983571c6de

View File

@@ -335,7 +335,7 @@ export class Animation extends common.Animation implements definition.Animation
repeatCount = FLT_MAX;
}
else {
repeatCount = animation.iterations - 1;
repeatCount = animation.iterations;
}
}