Can I use multiple sprites on a single path2d line?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Uralkemal

I want to use multiple sprites to follow path2d line. But different sprites should be on different parts(offset) of the same line at the same time. Is it possible?

What have you tried? I’m on mobile now, so haven’t tested anything, but you be able to do something like:

Path2D
  > PathFollow2D
    > Sprite1
  > PathFollow2D
    > Sprite2

Eric Ellingson | 2019-10-20 08:43

:bust_in_silhouette: Reply From: Uralkemal

Thank you that worked :slight_smile: