mirror of
https://github.com/justUmen/Bjornulf_custom_nodes.git
synced 2026-03-21 12:42:11 -03:00
11 lines
293 B
Plaintext
11 lines
293 B
Plaintext
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,) |