I've just started the flame, and I'd like to move a component from this position to a list of positions progressively over 7 seconds.
What I've managed to do so far has a latency of between the different points, I'd like something fluid.
void animate({
required PositionComponent component,
required List<Vector2> newPositions,
required double duration,
void Function()? onComplete,
}) async {
int index = 0;
while (index < newPositions.length) {
Vector2 newPosition = newPositions.elementAt(index);
double progress = 0.0;
while (progress <= 1.0) {
component.position.lerp(newPosition, progress);
await Future.delayed(const Duration(milliseconds: 100));
progress += (1.0 / duration);
}
index++;
}
onComplete?.call();
}
Flame version (1.10.0).
Thanks in advance!
You can use a
MoveAlongPathEffect
for that:Or if you don't want to use an effect you can use the
moveToTarget
(orlerp
) method which is in the Flame extension ofVector2
: