Add direction as output: IMAGE, path, direction, width, height, frame_count

This commit is contained in:
2026-04-22 14:14:59 -07:00
parent 84706e513f
commit cdc5979e3f

View File

@@ -128,8 +128,8 @@ class CompassImageLoader:
},
}
RETURN_TYPES = ("IMAGE", "STRING", "INT", "INT", "INT")
RETURN_NAMES = ("IMAGE", "path", "width", "height", "frame_count")
RETURN_TYPES = ("IMAGE", "STRING", "STRING", "INT", "INT", "INT")
RETURN_NAMES = ("IMAGE", "path", "direction", "width", "height", "frame_count")
FUNCTION = "load_images"
def load_images(
@@ -181,7 +181,7 @@ class CompassImageLoader:
tensors[0] if len(tensors) == 1 else torch.cat(tensors, dim=0)
)
return (image_batch, output_path, final_w, final_h, len(selected_files))
return (image_batch, output_path, direction, final_w, final_h, len(selected_files))
@classmethod
def IS_CHANGED(