18 lines
303 B
Python
18 lines
303 B
Python
import bpy
|
|
|
|
from . import types, constants
|
|
|
|
class MaxwellSimTree(bpy.types.NodeTree):
|
|
bl_idname = types.MaxwellSimTreeType
|
|
bl_label = "Maxwell Sim Editor"
|
|
bl_icon = constants.ICON_SIM ## Icon ID
|
|
|
|
|
|
|
|
####################
|
|
# - Blender Registration
|
|
####################
|
|
BL_REGISTER = [
|
|
MaxwellSimTree,
|
|
]
|