Connect to signature forces greyed out pins

So, if we have Class / Process and we have a method that is exposed on
update we can see that method greyed out:

If we create another Class / Process and press Connect to Signature, we have our greyed out method forced:

This overrides the execution when you want to SetSomething using state output, e.g. SetSomething is going to be called on update in wrapping node by default.

Connect to signature issue.vl (7.4 KB)

It tries to connect to existing pins by name. If such a pin doesn’t exist it adds it to the Update operation. It does not add/create new operations where it would add such a pin. So if you want the wrapper to look the same as the wrapped node you’ll have to add those operations including their pins yourself. Once the operation including its pin exists it will also connect to it.

1 Like