Forum Discussion
joetesta
8 years agoRoku Guru
yes it's because nodes are always "passed by reference" meaning there is only one instance of any given node and when you set a variable equal to the node, it's really just a pointer. There are workarounds such as copying the non-node contents bit by bit, or retaining the original data and regenerating a new node from it.