/** * An animation will be inserted at the BEGINNING of the children list. So the last animation * added will be executed first by the renderer! * * @param animation */ public void addAnimation(GLAnimation animation) { addChildToTargetsChildGroup(this, animation, true); }
/** @param child */ public void addChild(RenderableEntity child) { addChildToTargetsChildGroup(this, child, false); }