erikwatson / Bramble

A little JS game engine for jamming on prototypes.
MIT License
0 stars 1 forks source link

Generic Object Pool #14

Open erikwatson opened 4 years ago

erikwatson commented 4 years ago

Applications build using Bramble are almost certainly going to require the use of a pooling system in order to avoid GC (Garbage Collection) stuttering when our dangling objects get cleaned up.

Object pools need the following features.

It should be easy, it was easy enough in Sky Panda and it made a huge difference.