I've got a tween of a flag...
TweenMax.fromTo('#flagImage'+ whichFlag, theSpeed, {
rotationX:20, transformOrigin:"left top"
},{
rotationX:-20,
repeat: -1,
});
}
Which basically flaps backwards and forwards... is there a way of amplifying the rotationX so that the tween still continues... but I can increase it by a factor, e.g. double it when I need to? or intact tween that value of rotation X, so it slowly goes from tweening rotationX=20 to rotationX=60 for example?
James