Jump to content
Search Community

cheister

Members
  • Posts

    2
  • Joined

  • Last visited

cheister's Achievements

0

Reputation

  1. "Immediate" was misleading, it just meant that transition between the two states / tweens should start immediately, e.g. on click. Many thanks for your solution which looks perfectly what I was looking for!
  2. Hi, I am currently building GUI elements which should show different animations on different states but I need a smooth transition. How can I achieve a immediate but smooth transition between e.g. the following tweens State 1: Should rotate only and should not scale tween = TweenLite.fromTo(box, 10, {rotation: 0}, {rotation: 360, ease: "linear" , repeat: -1}) State 2 Should yoyo scale only should not scale tween = TweenLite.fromTo(box, 1, {scaleX: 1, scaleY: 1}, {scaleX: 0.8, scaleY: 0.8, ease: "bezier", yoyo: true, repeat: -1 State 3 ... I tried several methods by just changing the tween, but then I need to kill() the current tween and restart() the tween which creates jumps in the animation. Any help appreciated!
×
×
  • Create New...