From 2faeb6328fe8190f038172ddcd8f021f511e547c Mon Sep 17 00:00:00 2001 From: aardschok Date: Wed, 21 Feb 2018 14:38:05 +0100 Subject: [PATCH] Changed plugin to Integrator, removed targets, updated families --- .../plugins/fusion/publish/publish_image_sequences.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/colorbleed/plugins/fusion/publish/publish_image_sequences.py b/colorbleed/plugins/fusion/publish/publish_image_sequences.py index 23495517f3..cd0835b3ce 100644 --- a/colorbleed/plugins/fusion/publish/publish_image_sequences.py +++ b/colorbleed/plugins/fusion/publish/publish_image_sequences.py @@ -24,14 +24,13 @@ def _get_script(): return module_path -class PublishImageSequence(pyblish.api.Extractor): +class PublishImageSequence(pyblish.api.Integrator): """Publish the generated local image sequences.""" - order = pyblish.api.ExtractorOrder + 0.1 + order = pyblish.api.IntegratorOrder label = "Publish Rendered Image Sequence(s)" hosts = ["fusion"] - targets = ["renderlocal"] - families = ["fusion.local"] + families = ["colorbleed.saver.renderlocal"] def process(self, instance):