This commit is contained in:
tamat
2018-03-07 11:58:26 +01:00
parent 6a040a21ef
commit 9f832ce8dc
4 changed files with 4 additions and 3 deletions

View File

@@ -1817,7 +1817,7 @@ LGraphNode.prototype.trigger = function( action, param )
var output = this.outputs[ slot ];
if(!output || output.type !== LiteGraph.EVENT || (action && output.name != action) )
continue;
this.triggerSlot( slot, param );
this.triggerSlot( i, param );
}
}