I’m creating a scroller-style game. I will have 100-200 objects as the player moves through the level. The level technically doesn’t move (think 1942 - the game). Is it better, performance-wise, to have these items laid out beforehand or instantiate them as the level progresses? If I need to instantiate, what is a good method for storing the when/where variables?
Thanks in advance.