Correct cond combine order

This commit is contained in:
kijai 2025-12-19 18:21:36 +02:00
parent 16cbf238a7
commit 925f1d7514

View File

@ -212,7 +212,7 @@ Combines multiple conditioning nodes into one
for c in range(1, inputcount): for c in range(1, inputcount):
new_cond = kwargs[f"conditioning_{c + 1}"] new_cond = kwargs[f"conditioning_{c + 1}"]
if operation == "combine": if operation == "combine":
cond = cond_combine_node.combine(new_cond, cond)[0] cond = cond_combine_node.combine(cond, new_cond)[0]
elif operation == "concat": elif operation == "concat":
cond = cond_concat_node.concat(cond, new_cond)[0] cond = cond_concat_node.concat(cond, new_cond)[0]
return (cond, inputcount,) return (cond, inputcount,)