first commit

This commit is contained in:
justumen
2024-07-06 12:05:16 +02:00
commit 643bf5d843
74 changed files with 1553 additions and 0 deletions

18
show_int.py Normal file
View File

@@ -0,0 +1,18 @@
class ShowInt:
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"int_value": ("INT", {"forceInput": True}),
},
}
INPUT_IS_LIST = True
RETURN_TYPES = ()
FUNCTION = "show_int"
OUTPUT_NODE = True
INPUT_IS_LIST = (True,)
CATEGORY = "Bjornulf"
def show_int(self, int_value):
return {"ui": {"text": int_value}}