Add camera path export (closes #391)

This commit is contained in:
Jonas Herzig
2020-11-05 14:23:59 +01:00
parent d8135d9038
commit d3230e1e38
8 changed files with 275 additions and 2 deletions

View File

@@ -166,6 +166,7 @@ public class RenderSettings {
private final int sphericalFovY;
private final boolean injectSphericalMetadata;
private final boolean depthMap;
private final boolean cameraPathExport;
private final AntiAliasing antiAliasing;
private final String exportCommand;
@@ -197,6 +198,7 @@ public class RenderSettings {
int sphericalFovY,
boolean injectSphericalMetadata,
boolean depthMap,
boolean cameraPathExport,
AntiAliasing antiAliasing,
String exportCommand,
String exportArguments,
@@ -218,6 +220,7 @@ public class RenderSettings {
this.sphericalFovY = sphericalFovY;
this.injectSphericalMetadata = injectSphericalMetadata;
this.depthMap = depthMap;
this.cameraPathExport = cameraPathExport;
this.antiAliasing = antiAliasing;
this.exportCommand = exportCommand;
this.exportArguments = exportArguments;
@@ -242,6 +245,7 @@ public class RenderSettings {
sphericalFovY,
injectSphericalMetadata,
depthMap,
cameraPathExport,
antiAliasing,
exportCommand,
exportArguments,
@@ -420,6 +424,10 @@ public class RenderSettings {
return depthMap;
}
public boolean isCameraPathExport() {
return cameraPathExport;
}
public AntiAliasing getAntiAliasing() {
return antiAliasing;
}