This commit is contained in:
kijai 2026-07-22 23:12:55 +03:00
parent a6f8170a6e
commit 389ac9e638
1 changed files with 4 additions and 4 deletions

View File

@ -49,8 +49,8 @@ class TensorLoopOpen(io.ComfyNode):
def define_schema(cls) -> io.Schema:
return io.Schema(
node_id="TensorLoopOpen",
display_name="Tensor Loop Open",
category="looping/accumulation",
display_name="Open Tensor Loop",
category="advanced/looping/accumulation",
inputs=[
io.DynamicCombo.Input("mode", tooltip="Loop termination mode.", options=[
io.DynamicCombo.Option("iterations", [
@ -132,8 +132,8 @@ class TensorLoopClose(io.ComfyNode):
def define_schema(cls) -> io.Schema:
return io.Schema(
node_id="TensorLoopClose",
display_name="Tensor Loop Close",
category="looping/accumulation",
display_name="Close Tensor Loop",
category="advanced/looping/accumulation",
inputs=[
io.FlowControl.Input("flow_control", raw_link=True),
io.MatchType.Input("processed", template=cls.MATCHTYPE, raw_link=True, tooltip="Output generated this iteration."),