Whoops, forgot to change tk_scene.py

This commit is contained in:
Grant Sanderson 2017-05-09 14:21:03 -07:00
parent 5c6c245fa1
commit b1e6c9c916

View file

@ -52,7 +52,7 @@ def get_configuration(sys_argv):
"frame_duration" : PRODUCTION_QUALITY_FRAME_DURATION, "frame_duration" : PRODUCTION_QUALITY_FRAME_DURATION,
"preview" : False, "preview" : False,
"write_to_movie" : False, "write_to_movie" : False,
"save_all_frames" : False, "save_frames" : False,
"save_image" : False, "save_image" : False,
"quiet" : False, "quiet" : False,
"write_all" : False, "write_all" : False,
@ -67,7 +67,7 @@ def get_configuration(sys_argv):
config["frame_duration"] = LOW_QUALITY_FRAME_DURATION config["frame_duration"] = LOW_QUALITY_FRAME_DURATION
if opt == '-p': if opt == '-p':
config["preview"] = True config["preview"] = True
config["save_all_frames"] = True config["save_frames"] = True
if opt == '-m': if opt == '-m':
config["camera_config"] = MEDIUM_QUALITY_CAMERA_CONFIG config["camera_config"] = MEDIUM_QUALITY_CAMERA_CONFIG
config["frame_duration"] = MEDIUM_QUALITY_FRAME_DURATION config["frame_duration"] = MEDIUM_QUALITY_FRAME_DURATION
@ -178,7 +178,7 @@ def main():
"frame_duration", "frame_duration",
"skip_animations", "skip_animations",
"write_to_movie", "write_to_movie",
"save_all_frames", "save_frames",
"output_directory", "output_directory",
] ]
]) ])