Add files via upload

Uploading files for Endless Nodes V1.0
This commit is contained in:
tusharbhutt
2025-06-21 18:51:00 -06:00
committed by GitHub
parent 4a202db6db
commit df0c9d20c2
20 changed files with 2510 additions and 0 deletions

17
int_switches/__init__.py Normal file
View File

@@ -0,0 +1,17 @@
from .endless_int_switches import (
EndlessNode_FourInputIntSwitch,
EndlessNode_SixInputIntSwitch,
EndlessNode_EightInputIntSwitch,
)
NODE_CLASS_MAPPINGS = {
"Four_Input_Int_Switch": EndlessNode_FourInputIntSwitch,
"Six_Input_Int_Switch": EndlessNode_SixInputIntSwitch,
"Eight_Input_Int_Switch": EndlessNode_EightInputIntSwitch,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"Four_Input_Int_Switch": "Four Input Integer Switch",
"Six_Input_Int_Switch": "Six Input Integer Switch",
"Eight_Input_Int_Switch": "Eight Input Integer Switch",
}