settings has Animated variable based on PYPE_PYBLISH_ANIMATED env variable

This commit is contained in:
iLLiCiTiT 2020-10-28 19:14:43 +01:00
parent 8753dcfffc
commit 576c2726e5

View file

@ -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)