FadeImage node didn't have output pin

I replaced the pin from input to output. worked fine for me.
This commit is contained in:
plpl
2017-12-22 08:52:39 +02:00
committed by GitHub
parent 54457e8d7b
commit a4666e5abc

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 );
})();
})();