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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user