Problem: Create an unlimited track.
I have two prefabs track1 and track2. Currently I destroy the current object and create a new one by adding some offset and translating them.
On the mobile there is no way I can create the entire track as once loaded it will slow down the system considerably. Was wondering how taxing this mechanism of Instantiate/destroy is?
Is there a better way of doing this for instance disable the same object, translate it and then enable it again? if yes how?
Any help would be appreciated.