34 lines
1.2 KiB
Python
34 lines
1.2 KiB
Python
# #### BEGIN GPL LICENSE BLOCK #####
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
BUILD_OPTION_BOB = True
|
|
BUILD_OPTION_P4B = not BUILD_OPTION_BOB
|
|
ADDON_NAME = "polydex-blender"
|
|
|
|
NAME_PANEL = "Polydex"
|
|
NAME_PANEL_CATEGORY = "Polydex"
|
|
NAME_PREFS = "Polydex"
|
|
PREFIX_MT = "BOB" # only in source
|
|
PREFIX_OP = "bob" # only in source
|
|
PREFIX_PT = "BOB" # only in source
|
|
PREFIX_ICON = "BOB_" # only in source
|
|
PREFIX_FILENAME_SETTINGS = "polydex_"
|
|
PREFIX_FILENAME_BL_SETTINGS = "Polydex_"
|
|
|
|
URL_SENTRY = "https://060645be7fb64867bf9b8124b8e9a0f0@sentry.poliigon.com/12"
|