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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly