public class ProxyAnimation extends Animation
RenderableObject
Modifier and Type | Field and Description |
---|---|
private java.util.List<RenderableObject> |
objects
List of objects to render.
|
Constructor and Description |
---|
ProxyAnimation(RenderableObject... objs)
Constructs a new proxy animation with the
given list of objects to render.
|
ProxyAnimation(RenderableObject obj1,
RenderableObject obj2,
java.util.List<? extends RenderableObject> other)
Constructs a new proxy animation with the
given objects to render.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
render(java.awt.Graphics2D g)
Renders the next frame of this animation.
|
private java.util.List<RenderableObject> objects
public ProxyAnimation(RenderableObject... objs)
objs
- The list of objects to render.public ProxyAnimation(RenderableObject obj1, RenderableObject obj2, java.util.List<? extends RenderableObject> other)
obj1
- The first object to render.obj2
- The second object to render.other
- Other objects to render.