Mobile Performance
Experience performance on mobile devices is important for users to have a smooth and engaging gameplay. This page will cover some useful performance practices when creating a Genies Experience.
Object Pooling
Spawning and destroying Game Objects dynamically can be taxing on performance. Players may experience lag when this occurs. Unity has a term called object pooling that can help remedy this problem.
Object pooling is the practice of spawning a large amount of items needed at the start of a project and leave them deactivated. Instead of spawning a new object, you simply grab a deactivated object from the pool and activate it as if it spawned. Also instead of destroying the object, you simply deactivate it and return it to the pool.
Read the Object Pooling Unity tutorial for more information.
Profiler Window
Unity has a Profiler window that displays different metrics including update loop, rendering, and other useful information.
Read this Unity manual for more information: