diff --git a/pype/tools/pyblish_pype/settings.py b/pype/tools/pyblish_pype/settings.py index a3ae83ff0a..dd7c820f56 100644 --- a/pype/tools/pyblish_pype/settings.py +++ b/pype/tools/pyblish_pype/settings.py @@ -1,3 +1,6 @@ +from .util import env_variable_to_bool + + WindowTitle = "Pyblish" # Customize the window of the pyblish-lite window. UseLabel = True # Customize whether to show label names for plugins. @@ -17,3 +20,5 @@ TerminalFilters = { "log_critical": True, "traceback": True, } + +Animated = env_variable_to_bool("PYPE_PYBLISH_ANIMATED", True)