diff --git a/openpype/hosts/max/plugins/publish/save_scenes_for_cameras.py b/openpype/hosts/max/plugins/publish/save_scenes_for_cameras.py index c39109417be..f089bf663cc 100644 --- a/openpype/hosts/max/plugins/publish/save_scenes_for_cameras.py +++ b/openpype/hosts/max/plugins/publish/save_scenes_for_cameras.py @@ -21,6 +21,11 @@ class SaveScenesForCamera(pyblish.api.InstancePlugin): families = ["maxrender"] def process(self, instance): + if not instance.data.get("multiCamera"): + self.log.debug( + "Multi Camera disabled. " + "Skipping to save scene files for cameras") + return current_folder = rt.maxFilePath current_filename = rt.maxFileName current_filepath = os.path.join(current_folder, current_filename)