From de2d6dd83d9b89574bdfb28d0f9a61fffa8956cc Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 3 Feb 2022 10:45:59 +0100 Subject: [PATCH] image loaders also work on review family --- openpype/hosts/tvpaint/plugins/load/load_image.py | 2 +- openpype/hosts/tvpaint/plugins/load/load_reference_image.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openpype/hosts/tvpaint/plugins/load/load_image.py b/openpype/hosts/tvpaint/plugins/load/load_image.py index 1246fe8248..7dba1e3619 100644 --- a/openpype/hosts/tvpaint/plugins/load/load_image.py +++ b/openpype/hosts/tvpaint/plugins/load/load_image.py @@ -5,7 +5,7 @@ from openpype.hosts.tvpaint.api import lib, plugin class ImportImage(plugin.Loader): """Load image or image sequence to TVPaint as new layer.""" - families = ["render", "image", "background", "plate"] + families = ["render", "image", "background", "plate", "review"] representations = ["*"] label = "Import Image" diff --git a/openpype/hosts/tvpaint/plugins/load/load_reference_image.py b/openpype/hosts/tvpaint/plugins/load/load_reference_image.py index b5e0a86686..0a85e5dc76 100644 --- a/openpype/hosts/tvpaint/plugins/load/load_reference_image.py +++ b/openpype/hosts/tvpaint/plugins/load/load_reference_image.py @@ -7,7 +7,7 @@ from openpype.hosts.tvpaint.api import lib, pipeline, plugin class LoadImage(plugin.Loader): """Load image or image sequence to TVPaint as new layer.""" - families = ["render", "image", "background", "plate"] + families = ["render", "image", "background", "plate", "review"] representations = ["*"] label = "Load Image"