Skip to content

Commit 37e94ed

Browse files
committed
Make primitive float's step make more sense
1 parent 847c278 commit 37e94ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comfy_extras/nodes_primitive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def define_schema(cls):
6666
display_name="Float",
6767
category="utils/primitive",
6868
inputs=[
69-
io.Float.Input("value", min=-sys.maxsize, max=sys.maxsize),
69+
io.Float.Input("value", min=-sys.maxsize, max=sys.maxsize, step=0.1),
7070
],
7171
outputs=[io.Float.Output()],
7272
)

0 commit comments

Comments
 (0)