Making promoted variables from structures

Hello. I often try to promote unchanged variables to use them as regular without calling their structures, but there is an issue: if i want to change them i have to do it to the promoted variables and the structures so that they will be the same. Can i promote variables from structures and after that change them but with changing the variables in structures which they were promoted from?

Use [Set By-Ref Var] node, it allows referencing the variable instead of making a copy of it.
I’m not sure if it works with all types though, you’ll need to check it for yourself.

2 Likes

Thanks.