oscillode/blender_maxwell/node_trees/maxwell_sim_nodes/nodes/outputs/exporters/__init__.py

12 lines
235 B
Python
Raw Normal View History

from . import json_file_exporter
from . import tidy3d_web_exporter
BL_REGISTER = [
*json_file_exporter.BL_REGISTER,
*tidy3d_web_exporter.BL_REGISTER,
]
BL_NODES = {
**json_file_exporter.BL_NODES,
**tidy3d_web_exporter.BL_NODES,
}