mirror of
https://git.datalinker.icu/kijai/ComfyUI-KJNodes.git
synced 2025-12-21 10:44:32 +08:00
Allow negative values in INTConstant
This commit is contained in:
parent
f7eb33abc8
commit
fbc779a7bd
@ -41,7 +41,7 @@ class INTConstant:
|
|||||||
@classmethod
|
@classmethod
|
||||||
def INPUT_TYPES(s):
|
def INPUT_TYPES(s):
|
||||||
return {"required": {
|
return {"required": {
|
||||||
"value": ("INT", {"default": 0, "min": 0, "max": 0xffffffffffffffff}),
|
"value": ("INT", {"default": 0, "min": -0xffffffffffffffff, "max": 0xffffffffffffffff}),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
RETURN_TYPES = ("INT",)
|
RETURN_TYPES = ("INT",)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user