Package gaia.cu9.ari.gaiaorbit.util.gdx
Interface IntRenderableProvider
-
- All Known Implementing Classes:
IntModelInstance
public interface IntRenderableProvider
Returns a list ofIntRenderable
instances to be rendered by aIntModelBatch
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
getRenderables(com.badlogic.gdx.utils.Array<IntRenderable> renderables, com.badlogic.gdx.utils.Pool<IntRenderable> pool)
ReturnsIntRenderable
instances.
-
-
-
Method Detail
-
getRenderables
void getRenderables(com.badlogic.gdx.utils.Array<IntRenderable> renderables, com.badlogic.gdx.utils.Pool<IntRenderable> pool)
ReturnsIntRenderable
instances. Renderables are obtained from the providedPool
and added to the provided array. The IntRenderables obtained usingPool.obtain()
will later be put back into the pool, do not store them internally. The resulting array can be rendered via aIntModelBatch
.- Parameters:
renderables
- the output arraypool
- the pool to obtain IntRenderables from
-
-