Skip to content

Commit

Permalink
fix Integer node force output type
Browse files Browse the repository at this point in the history
  • Loading branch information
chflame163 committed Oct 19, 2024
1 parent d0aa4df commit b3b7d80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/data_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def __init__(self):
@classmethod
def INPUT_TYPES(self):
return {"required": {
"int_value":("INT", {"default": 0, "min": -99999999999999999999, "max": 99999999999999999999, "step": 1}),
"int_value":("INT", {"default": 0, "min": -1e18, "max": 1e18, "step": 1}),
},}

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

0 comments on commit b3b7d80

Please sign in to comment.