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

11
CUSTOM_STRING.py.txt Normal file
View File

@@ -0,0 +1,11 @@
class CustomStringType:
@classmethod
def INPUT_TYPES(s):
return {"required": {"value": ("STRING", {"multiline": True})}}
RETURN_TYPES = ("CUSTOM_STRING",)
FUNCTION = "passthrough"
CATEGORY = "Bjornulf"
def passthrough(self, value):
return (value,)