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.

Constructors

Methods

  • 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.

    Returns undefined | Actor

  • Return the number of actors remaining

    Returns number

  • Place an actor into the pool. Note that this will disable the actor.

    Parameters

    • actor: Actor

      The actor to put into the pool

    Returns void

  • Set a limit on the total number of actors that can be used

    Parameters

    • number: number

      How many actors are available

    Returns void