Merge pull request #10 from shor-ofer/patch-1

FadeImage node didn't have output pin
This commit is contained in:
Javi Agenjo
2017-12-22 18:27:27 +01:00
committed by GitHub

View File

@@ -313,7 +313,7 @@ LiteGraph.registerNodeType("visualization/graph", {
function ImageFade()
{
this.addInputs([["img1","image"],["img2","image"],["fade","number"]]);
this.addInput("","image");
this.addOutput("","image");
this.properties = {fade:0.5,width:512,height:512};
}
@@ -714,4 +714,4 @@ ImageWebcam.prototype.onDrawBackground = function(ctx)
LiteGraph.registerNodeType("graphics/webcam", ImageWebcam );
})();
})();