2024-02-06 21:44:43 +01:00
|
|
|
import bpy
|
|
|
|
|
|
|
|
from . import types, constants
|
|
|
|
|
|
|
|
class MaxwellSimTree(bpy.types.NodeTree):
|
2024-02-10 17:59:16 +01:00
|
|
|
bl_idname = types.TreeType.MaxwellSim
|
2024-02-06 21:44:43 +01:00
|
|
|
bl_label = "Maxwell Sim Editor"
|
|
|
|
bl_icon = constants.ICON_SIM ## Icon ID
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
####################
|
|
|
|
# - Blender Registration
|
|
|
|
####################
|
|
|
|
BL_REGISTER = [
|
|
|
|
MaxwellSimTree,
|
|
|
|
]
|