Jump to content
Search Community

basyg

Members
  • Posts

    4
  • Joined

  • Last visited

basyg's Achievements

0

Reputation

  1. Hello! I don't know much because I'm just refactoring an old code to the latest gsap. I think there is a need to stop/kill tweens (animation of characters) at they middle state but with firing complete handlers.
  2. Thank you for the answer! I tested "tween.totalProgress(1)" and found "tween.repeat(0)" is redundat. But "complete(skipRender:Boolean = false)" has the argument "skipRender". How to repeat the behavior of "skipRender true"? I can't provide an example because didn't find the old js version of gsap. I found only the ActionScript 3 source https://github.com/orta/virtualapps/blob/master/src/gs/TweenLite.as It seems "complete(true)" completes tweens without setting tweens to a finish state.
  3. Hello! I'm refactoring an old code. How can I reliably replace "tween.complete(true)"? Also I replaced "tween.complete(false)" by if (tween.repeat) { tween.repeat(0); } tween.totalProgress(1); Is it right?
×
×
  • Create New...