DOTween transform.DOMove function changes scale of object

1.4k Views Asked by At

Hi I am using DOTween for some smooth transformation.

Collider _leftForeArmBounds = leftForeArm.GetComponent<Collider>();
    for (int i = 0; i < leftForeArmCubes.Count; i++)
        leftForeArmCubes[i].transform.DOMove(ExtensionMethods.RandomPointInBounds(_leftForeArmBounds), cubeMoveDuration);

I have this code and the cubes in the list are child of a game object. The problem starts here. While cubes are moving their scale also smoothly increasing to the parent's.

I have used this very same code before in one of my previous game but it didn't happen then. This is not the first time I am using DOTween but I really don't understand what is going on is this some kind of bug?

Thank you

1

There are 1 best solutions below

1
On

Maybe you can try DOLocalMove method.