Protoype:
Objects fly in to the screen from left or right and you can shoot them. The spawning should be random.
What should it do?
Spawn different objects over different paths. The spawned objects need to move over the path from Start to End point of the Path.
There are 10 different paths already excisting in the scene. A path can have multiple objects moving on it as long as the objects are not overlapping with eachother.
What I have tried so far?
I am using a Timeline node to lerp an object from Start to End point of a path. However if I spawn another object on the path the Timeline will start to play again from start and the object that was already moving on the path will also be reset to the start point of the path.
I would like to have the functionality in the SpawnManager to keep everything in one place.
What I want to achieve is have like 20 objects all moving a long a random path starting at the Start point of the path and ending at the End point.
These are the objects I would like to spawn.
This is the overview of my current scene.
This is the current BP I made.
This is what it looks like when I run the scene.
I hope someone can guide me in the right direction to get this working.