We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddc5b12 commit faacf26Copy full SHA for faacf26
Assets/com.alelievr.NodeGraphProcessor/Editor/Utils/NodeProvider.cs
@@ -335,7 +335,7 @@ public static IEnumerable<PortDescription> GetEdgeCreationNodeMenuEntry(PortView
335
336
bool IsPortCompatible(PortDescription description)
337
{
338
- if (portView.direction == Direction.Input && description.isInput || portView.direction == Direction.Output && !description.isInput)
+ if ((portView.direction == Direction.Input && description.isInput) || (portView.direction == Direction.Output && !description.isInput))
339
return false;
340
341
if (!BaseGraph.TypesAreConnectable(description.portType, portView.portType))
0 commit comments