Update nodes.py

This commit is contained in:
kijai 2024-11-19 11:56:06 +02:00
parent 67c54b31e8
commit 5d7aaf93ce

View File

@ -55,7 +55,7 @@ class FloatConstant:
@classmethod
def INPUT_TYPES(s):
return {"required": {
"value": ("FLOAT", {"default": 0.0, "min": -0xffffffffffffffff, "max": 0xffffffffffffffff, "step": 0.001}),
"value": ("FLOAT", {"default": 0.0, "min": -0xffffffffffffffff, "max": 0xffffffffffffffff, "step": 0.00001}),
},
}