Add files via upload

This commit is contained in:
tusharbhutt
2023-09-15 19:40:12 -06:00
committed by GitHub
parent d54d08ed8e
commit bdbf791f23
2 changed files with 194 additions and 0 deletions

17
__init__.py Normal file
View File

@@ -0,0 +1,17 @@
"""
@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")