Skip to content

Commit

Permalink
fix data nodes min and max value
Browse files Browse the repository at this point in the history
  • Loading branch information
chflame163 committed Oct 19, 2024
1 parent b3b7d80 commit 266445b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/data_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def __init__(self):
@classmethod
def INPUT_TYPES(self):
return {"required": {
"seed":("INT", {"default": 0, "min": 0, "max": 99999999999999999999, "step": 1}),
"seed":("INT", {"default": 0, "min": 0, "max": 1e18, "step": 1}),
},}

RETURN_TYPES = ("INT",)
Expand Down Expand Up @@ -345,7 +345,7 @@ def __init__(self):
@classmethod
def INPUT_TYPES(self):
return {"required": {
"float_value": ("FLOAT", {"default": 0, "min": -99999999999999999999, "max": 99999999999999999999, "step": 0.00001}),
"float_value": ("FLOAT", {"default": 0, "min": -1e18, "max": 1e18, "step": 0.00001}),
},}

RETURN_TYPES = ("FLOAT", "STRING",)
Expand Down

0 comments on commit 266445b

Please sign in to comment.