Created CustomObjectRenderer to allow for BufferedImages to be rendered at a given Position. This supports Zoom and Rotation on all 3 axes.

This commit is contained in:
CrushedPixel
2015-07-06 00:28:57 +02:00
parent 49e391555c
commit 013d5963ff
6 changed files with 208 additions and 7 deletions

View File

@@ -52,6 +52,8 @@ public class ReplayHandler {
private static KeyframeSet[] keyframeRepository = new KeyframeSet[]{};
private static List<CustomImageObject> customImageObjects = new ArrayList<CustomImageObject>();
/**
* The file currently being played.
*/
@@ -734,4 +736,12 @@ public class ReplayHandler {
setRealTimelineCursor(newCursorPos);
}
public static List<CustomImageObject> getCustomImageObjects() {
return customImageObjects;
}
public static void addCustomImageObject(CustomImageObject object) {
customImageObjects.add(object);
}
}