From 6979b4955a70c8194b22fc438cf5306d81cceb41 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 23 Jun 2021 10:14:06 +0200 Subject: [PATCH] auto creator idea --- openpype/pipeline/creator_plugins.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/openpype/pipeline/creator_plugins.py b/openpype/pipeline/creator_plugins.py index 5faff999d7..afcd14741e 100644 --- a/openpype/pipeline/creator_plugins.py +++ b/openpype/pipeline/creator_plugins.py @@ -193,3 +193,10 @@ class Creator(BaseCreator): short description. """ return self.description + + +class AutoCreator(BaseCreator): + """Creator which is automatically triggered without user interaction. + + Can be used e.g. for `workfile`. + """