Really poor performance, please help.

Hello Everyone, i just started working on a company with a project at 70% but they the game performance is sooo poor, it’s very common to see the app shutting down everytime.

They have do something that i had never do in my games, Do all the game (Screens, Gameplay, Store…) in the same scene!, i think this can be the problem of the low performance, what do you say? It’s a 2D Game, lots of texture loading everytime.

Excuse my english, thanks.

Loading everything into one scene, if it’s all in memory at the same time, will nuke the memory and cause a lot of crashes. You’ll probably need to write some loading management code to control what’s loaded and when, and possibly build out sprite atlases to better manage the textures.