
[ad_1]
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It only takes a minute to sign up.
Anybody can ask a question
Anybody can answer
The best answers are voted up and rise to the top
Asked
Viewed
6 times
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)
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\$
lang-cs
[ad_2]