-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmappings.py
23 lines (21 loc) · 1.1 KB
/
mappings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from .otonx_nodes import *
# ########################################################################################################################
# # NODE MAPPING
NODE_CLASS_MAPPINGS = {
"OTX Integer Multiple Inputs 4": OTX_IntegerMultipleInputs_4,
"OTX Integer Multiple Inputs 5": OTX_IntegerMultipleInputs_5,
"OTX Integer Multiple Inputs 6": OTX_IntegerMultipleInputs_6,
"OTX Versatile Multiple Inputs 4": OTX_VersatileMultipleInputs_4,
"OTX Versatile Multiple Inputs 5": OTX_VersatileMultipleInputs_5,
"OTX Versatile Multiple Inputs 6": OTX_VersatileMultipleInputs_6,
"OTX KSampler Feeder" : OTX_KSampler_Feeder,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"OTX Integer Multiple Inputs 4": "OTX Integer Multiple Inputs 4",
"OTX Integer Multiple Inputs 5": "OTX Integer Multiple Inputs 5",
"OTX Integer Multiple Inputs 6": "OTX Integer Multiple Inputs 6",
"OTX Versatile Multiple Inputs 4": "OTX Versatile Multiple Inputs 4",
"OTX Versatile Multiple Inputs 5": "OTX Versatile Multiple Inputs 5",
"OTX Versatile Multiple Inputs 6": "OTX Versatile Multiple Inputs 6",
"OTX KSampler Feeder": "OTX KSampler Feeder",
}