This commit is contained in:
justumen
2025-01-11 12:11:11 +01:00
parent 38b83ed8f5
commit efd4105287
20 changed files with 366 additions and 19 deletions

View File

@@ -5,11 +5,9 @@ class CombineTexts:
"required": {
"number_of_inputs": ("INT", {"default": 2, "min": 2, "max": 50, "step": 1}),
"delimiter": (["newline", "comma", "space", "slash", "nothing"], {"default": "newline"}),
"text_1": ("STRING", {"forceInput": True}),
"text_2": ("STRING", {"forceInput": True}),
},
"hidden": {
**{f"text_{i}": ("STRING", {"forceInput": True}) for i in range(3, 51)}
**{f"text_{i}": ("STRING", {"forceInput": True}) for i in range(1, 51)}
}
}