\$\begingroup\$

I’m making a racing game “on rails” that utilizes generated map (similar to outrun). The map is made out of chunks that appear every time player crosses a Trigger area on the chunk that is 3 chunks away from the end.
To make camera go steady through designed path I need something like Dolly track. The problem with using it is that it uses an Array to store all the waypoints of the track. Which means I cannot simply add another element to the Array end because it will replace the old array with a new one. (I tested it and indeed – Only the last chunk has any dolly points)
enter image description here
Do I need to write a new dollyTrack or is there a simpler way to have newly generated points added to DollyTrack ? Is there a better camera package for it ?

\$\endgroup\$

You must log in to answer this question.

Browse other questions tagged .