change 'USE_AYON_ENTITIES' value and use cleaner deprecation marks

This commit is contained in:
Jakub Trllo 2024-03-08 16:30:25 +01:00
parent 0dc27825ce
commit f69d77c54c

View file

@ -3,10 +3,13 @@ import os
AYON_CORE_ROOT = os.path.dirname(os.path.abspath(__file__))
# TODO remove after '1.x.x'
# -------------------------
# DEPRECATED - Remove before '1.x.x' release
# -------------------------
PACKAGE_DIR = AYON_CORE_ROOT
PLUGINS_DIR = os.path.join(AYON_CORE_ROOT, "plugins")
AYON_SERVER_ENABLED = True
# Indicate if AYON entities should be used instead of OpenPype entities
USE_AYON_ENTITIES = False
USE_AYON_ENTITIES = True
# -------------------------