File size: 1,242 Bytes
37d34c5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import custom_nodes.Derfuu_Nodes.types as type
import custom_nodes.Derfuu_Nodes.fields as field
from custom_nodes.Derfuu_Nodes.tree import TREE_DEBUG

class baseDebugNode:
    def __init__(self):
        pass

    @classmethod
    def INPUT_TYPES(cls):
        return {
            "required": {
                "FLOAT": (type.FLOAT,),
                "INTEGER": (type.INT,),
                "TUPLE": (type.TUPLE,),
            }
        }

    RETURN_TYPES = ()
    CATEGORY = TREE_DEBUG
    FUNCTION = "print_values"
    OUTPUT_NODE = True

    def print_values(self, FLOAT=0, INTEGER=0, TUPLE=(0, 0)):
        print(FLOAT, INTEGER, TUPLE, sep="\n")
        return (None,)


class extendedDebugNode:
    def __init__(self):
        pass

    @classmethod
    def INPUT_TYPES(cls):
        return {
            "required": {
                "FLOAT": (type.FLOAT,),
                "INTEGER": (type.INT,),
                "TUPLE": (type.TUPLE,),
                # "ABS": (type.ABS,),
            }
        }

    RETURN_TYPES = ()
    CATEGORY = TREE_DEBUG
    FUNCTION = "print_values"
    OUTPUT_NODE = True

    def print_values(self, FLOAT=0, INTEGER=0, TUPLE=(0, 0)):
        print(FLOAT, INTEGER, TUPLE, sep="\n")
        return (None,)