ActorPool stores a bunch of actors. We can get into trouble in Box2d if we make too many single-use actors, so the ActorPool is a useful mechanism for recycling / reusing actors.
Return an actor from the pool, if there is one available
Note that this can return undefined. If you don't want that behavior, consider adding more actors to the pool.
undefined
Return the number of actors remaining
Place an actor into the pool. Note that this will disable the actor.
The actor to put into the pool
Set a limit on the total number of actors that can be used
How many actors are available
ActorPool stores a bunch of actors. We can get into trouble in Box2d if we make too many single-use actors, so the ActorPool is a useful mechanism for recycling / reusing actors.