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