Fix WebcamCapture IS_CHANGED signature

This commit is contained in:
Kent Mewhort 2025-06-03 21:59:58 -04:00
parent 47d55b8b45
commit 91fd0b045e

View File

@ -23,6 +23,10 @@ class WebcamCapture(nodes.LoadImage):
def load_capture(self, image, **kwargs):
return super().load_image(folder_paths.get_annotated_filepath(image))
@classmethod
def IS_CHANGED(cls, image, width, height, capture_on_queue):
return super().IS_CHANGED(image)
NODE_CLASS_MAPPINGS = {
"WebcamCapture": WebcamCapture,