20 lines
797 B
Python
20 lines
797 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
|
|
SCRIPTS_PATH = os.path.dirname(os.path.abspath(__file__)).replace("\\", "/")
|
|
ROOT_PATH = os.path.dirname(SCRIPTS_PATH).replace("\\", "/")
|
|
TOOL_PATH = ROOT_PATH
|
|
TOOL_NAME = "MetaBox"
|
|
TOOL_VERSION = "Beta v1.0.0"
|
|
TOOL_AUTHOR = "Virtuos Games"
|
|
TOOL_LANG = 'en_US'
|
|
ICONS_PATH = os.path.join(ROOT_PATH, "icons").replace("\\", "/")
|
|
TOOL_ICON = os.path.join(ICONS_PATH, "mtblogo.png").replace("\\", "/")
|
|
DEFAULT_ICON = "commandButton.png"
|
|
TOOL_HELP_URL = f"http://10.72.61.59:3000/ArtGroup/{TOOL_NAME}/wiki"
|
|
TOOL_WSCL_NAME = "ToolBoxWorkSpaceControl"
|
|
MOD_FILE_NAME = f"{TOOL_NAME}.mod".replace("\\", "/")
|
|
MAIN_SCRIPT_NAME = f"{TOOL_NAME}.py".replace("\\", "/")
|
|
LDMT_PATH = os.path.join(SCRIPTS_PATH, "Modeling", "Edit", "LDMT").replace("\\", "/") |