I want to know how to draw actors with textureRegion which is member of a group.
Let's say I've group of enemy.
private Group enemies;
private SpriteBatch batcher;
For just one Actor, I am drawing like this.
batcher = new SpriteBatch();
batcher.begin();
batcher.draw(textureRegion, actor position parameters vs vs);
batcher.end();
I want to know how to draw whole group's actors like this ? There is a method for drawing but this method does not take TextureRegion parameter.
public void draw(Batch batch,
float parentAlpha)
Can I draw group with TextureRegion like this ?
enemies.draw(textureRegion, vs vs);