I’ve recently used HOTween in a project. It works out really well. But I’ve lost hours to find the way to include tweens’ loops in a sequence. For example I have tween1 which has 10 loops in it, tween2 which has 5 loops in it. Then I compose a sequence with those tweens. Turns out it plays 2 times tween1 (???) and then 1 time tween2 when tween1 is finish it’s first loop. Is it the way it works or I doing something wrong?
Sequence seq = new Sequence(new SequenceParms());
seq.Append(HOTween.To(transform, 1f, new TweenParms().Prop("position", new Vector3(2f, 2f, 2f)).Loops(10, LoopType.Yoyo)));
seq.Append(HOTween.To(transform, 1f, new TweenParms().Prop("localScale", new Vector3(2f, 2f, 2f)).Loops(5, LoopType.Yoyo)));
seq.Play();
P/S: Sorry for my English