Can you drag a single variable from a struct?

Every time I want to make a change in one of the many variables that I’ve put in a struct, I have to drag out the Getter so I can break it down and then tie them to Make struct and then to the setter.

In this example, I want to change the last boolean variable at the bottom, but as you can see, I have to Get, Break, Connect to Make and finally connect to the Setter.

So I want to be able to drag out just the one single variable and not go through this over and over again.

You can do it like so:

The struct members you do not expose will preserve their values.

Works like a charm, thank you :slight_smile:

Edit: I just found out that you can also remove pins from the Break and Make nodes. I assume they will still preserve their values if left unchecked.