Interface MoveRotateScaleModeParams

Partial params for Tween.Mode.MoveRotateScale(). At least one of position, rotation, or scale must be provided. Use this when building a mode for Tween.createOrReplace() or TweenSequence (e.g. only positionStart/positionEnd).

Hierarchy

Properties

position?: {
    end: PBVector3;
    start: PBVector3;
}

Position tween (start → end). Optional.

Type declaration

rotation?: {
    end: PBQuaternion;
    start: PBQuaternion;
}

Rotation tween (start → end). Optional.

Type declaration

scale?: {
    end: PBVector3;
    start: PBVector3;
}

Scale tween (start → end). Optional.

Type declaration