Files
blender-portable-repo/extensions/blender_org/bool_tool/constants.py
T
2026-07-14 14:44:58 -06:00

16 lines
346 B
Python

import os
# Paths
ICONS_PATH = os.path.join(os.path.dirname(__file__), "ui", "icons")
# Object types that can have evaluated mesh, and can be converted to Mesh.
CONVERTABLE_TYPES = (
'CURVE',
'CURVES',
'FONT',
# 'POINTCLOUD', # Doesn't work in Blender 5.2
# 'GREASEPENCIL' # Doesn't work in Blender 5.2
'EMPTY',
)