Closed AlexTiTanium closed 7 years ago
If you try call animate(...).clear() on paused animation, next call animate(...).pause() won't work. This happens because clear() doesn't reset paused state for the object.
animate(...).clear()
animate(...).pause()
clear()
@Snailprincess I made PR for native core, could you please check: https://github.com/gameclosure/native-core/pull/15
@AlexTiTanium this looks good, I'm going to merge now
If you try call
animate(...).clear()
on paused animation, next callanimate(...).pause()
won't work. This happens becauseclear()
doesn't reset paused state for the object.