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_text.py Normal file
View File

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