Hi Alessio,
Sorry for being late, these are crunch days for me.
You would do something like this:
// Assuming you have two arrays "posArray" and "rotArray", one for positions and one for rotations
Sequence s = DOTween.Sequence();
for (int i = 0; i < posArray.Length; ++i) {
Vector3 toPos = posArray[i];
Vector3 toRot = rotArray[i];
s.Append(myTransform.DOMove(toPos, duration));
s.Join(myTransform.DORotate(toRot, duration));
}
Cheers,
Daniele