oscillode/blender_maxwell/node_trees/maxwell_sim_nodes/nodes/structures/primitives/__init__.py

15 lines
316 B
Python
Raw Normal View History

from . import box_structure
#from . import cylinder_structure
#from . import sphere_structure
BL_REGISTER = [
*box_structure.BL_REGISTER,
# *cylinder_structure.BL_REGISTER,
# *sphere_structure.BL_REGISTER,
]
BL_NODES = {
**box_structure.BL_NODES,
# **cylinder_structure.BL_NODES,
# **sphere_structure.BL_NODES,
}