Files
Endless-Nodes/__init__.py
2023-09-15 19:40:12 -06:00

18 lines
566 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,
}
__all__ = ['NODE_CLASS_MAPPINGS']
print("\033[34mEndelssSeaofStars Custom Nodes: \033[92mLoaded\033[0m")