Interface IntRenderableProvider

All Known Implementing Classes:
IntModelInstance

public interface IntRenderableProvider
Returns a list of IntRenderable instances to be rendered by a IntModelBatch.
  • Method Details

    • getRenderables

      void getRenderables(com.badlogic.gdx.utils.Array<IntRenderable> renderables, com.badlogic.gdx.utils.Pool<IntRenderable> pool)
      Returns IntRenderable instances. Renderables are obtained from the provided Pool and added to the provided array. The IntRenderables obtained using Pool.obtain() will later be put back into the pool, do not store them internally. The resulting array can be rendered via a IntModelBatch.
      Parameters:
      renderables - the output array
      pool - the pool to obtain IntRenderables from