com.codingame.gameengine.module.entities.BufferedGroup Maven / Gradle / Ivy
package com.codingame.gameengine.module.entities;
/**
* A BufferedGroup is an Entity which acts as a container for other entities.
*
* Its children are rendered into a dynamic texture before being displayed.
* This reduces artifacts caused by rounding errors at the cost of lower performance.
*
*/
public class BufferedGroup extends ContainerBasedEntity {
@Override
Entity.Type getType() {
return Entity.Type.BUFFERED_GROUP;
}
}