Object Pooling Flashcards
1
Q
Object Pooling
A
Object Pooling is great for mobile games
Used for reoccurring bullets, waves of enemies, etc, most reoccurring objects
2
Q
Why use Object Pooling
A
Instantiating and deleting a great many objects at run time can be a strain on performance, as it can involve relatively costly code, and it can lead to frequent and time consuming garbage collection.
3
Q
Where is Object Pooling used
A
Object Pooling is a technique where objects are temporarily deactivated and then recycled as needed, instead of being created and destroyed.