Files
Endless-Nodes/__init__.py
2023-09-17 23:03:36 -06:00

20 lines
708 B
Python

"""
@author: Endless Sea of Stars
@title: Endless Nodes
@nickname: Endless Nodes
@description: A small set of nodes I created for various numerical and text inputs.
"""
from .endless_nodes import *
NODE_CLASS_MAPPINGS = {
"Endless Nodes Six Input Text Switch": EndlessNode_SixTextInputSwitch,
"Endless Nodes Six Integer IO Switch": EndlessNode_SixIntIOSwitch,
"Endless Nodes Six Integer IO Widget": EndlessNode_SixIntIOWidget,
"Endless Nodes Parameteriizer": EndlessNode_XLParameterizer,
"Endless Nodes Parameterizer & Prompts": EndlessNode_XLParameterizerPrompt,
}
__all__ = ['NODE_CLASS_MAPPINGS']
print("\033[34mEndelssSeaofStars Custom Nodes: \033[92mLoaded\033[0m")